CURLOPT_XFERINFO{FUNCTION,DATA}
[m6w6/ext-http] / php_http_client_curl.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-2014, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 #include "php_http_api.h"
14 #include "php_http_client.h"
15
16 #if PHP_HTTP_HAVE_CURL
17
18 #if PHP_HTTP_HAVE_EVENT
19 # if !PHP_HTTP_HAVE_EVENT2 && /* just be really sure */ !(LIBEVENT_VERSION_NUMBER >= 0x02000000)
20 # include <event.h>
21 # define event_base_new event_init
22 # define event_assign(e, b, s, a, cb, d) do {\
23 event_set(e, s, a, cb, d); \
24 event_base_set(b, e); \
25 } while(0)
26 # else
27 # if PHP_HTTP_HAVE_EVENT2
28 # include <event2/event.h>
29 # include <event2/event_struct.h>
30 # else
31 # error "libevent presence is unknown"
32 # endif
33 # endif
34 # ifndef DBG_EVENTS
35 # define DBG_EVENTS 0
36 # endif
37 #endif
38
39 #ifdef PHP_HTTP_HAVE_OPENSSL
40 # include <openssl/ssl.h>
41 #endif
42 #ifdef PHP_HTTP_HAVE_GNUTLS
43 # include <gnutls.h>
44 #endif
45
46 typedef struct php_http_client_curl {
47 CURLM *handle;
48
49 int unfinished; /* int because of curl_multi_perform() */
50
51 #if PHP_HTTP_HAVE_EVENT
52 struct event *timeout;
53 unsigned useevents:1;
54 #endif
55 } php_http_client_curl_t;
56
57 typedef struct php_http_client_curl_handler {
58 CURL *handle;
59 php_resource_factory_t *rf;
60 php_http_client_t *client;
61 php_http_client_progress_state_t progress;
62
63 php_http_client_enqueue_t queue;
64
65 struct {
66 php_http_message_parser_t *parser;
67 php_http_message_t *message;
68 php_http_buffer_t *buffer;
69 } request;
70
71 struct {
72 php_http_message_parser_t *parser;
73 php_http_message_t *message;
74 php_http_buffer_t *buffer;
75 } response;
76
77 struct {
78 HashTable cache;
79
80 struct curl_slist *headers;
81 struct curl_slist *resolve;
82 php_http_buffer_t cookies;
83 php_http_buffer_t ranges;
84
85 long redirects;
86 unsigned range_request:1;
87 unsigned encode_cookies:1;
88
89 struct {
90 uint count;
91 double delay;
92 } retry;
93
94 } options;
95
96 } php_http_client_curl_handler_t;
97
98 typedef struct php_http_curle_storage {
99 char *url;
100 char *cookiestore;
101 char errorbuffer[0x100];
102 } php_http_curle_storage_t;
103
104 static inline php_http_curle_storage_t *php_http_curle_get_storage(CURL *ch) {
105 php_http_curle_storage_t *st = NULL;
106
107 curl_easy_getinfo(ch, CURLINFO_PRIVATE, &st);
108
109 if (!st) {
110 st = pecalloc(1, sizeof(*st), 1);
111 curl_easy_setopt(ch, CURLOPT_PRIVATE, st);
112 curl_easy_setopt(ch, CURLOPT_ERRORBUFFER, st->errorbuffer);
113 }
114
115 return st;
116 }
117
118 static void *php_http_curle_ctor(void *opaque, void *init_arg TSRMLS_DC)
119 {
120 void *ch;
121
122 if ((ch = curl_easy_init())) {
123 php_http_curle_get_storage(ch);
124 return ch;
125 }
126 return NULL;
127 }
128
129 static void *php_http_curle_copy(void *opaque, void *handle TSRMLS_DC)
130 {
131 void *ch;
132
133 if ((ch = curl_easy_duphandle(handle))) {
134 curl_easy_reset(ch);
135 php_http_curle_get_storage(ch);
136 return ch;
137 }
138 return NULL;
139 }
140
141 static void php_http_curle_dtor(void *opaque, void *handle TSRMLS_DC)
142 {
143 php_http_curle_storage_t *st = php_http_curle_get_storage(handle);
144
145 curl_easy_cleanup(handle);
146
147 if (st) {
148 if (st->url) {
149 pefree(st->url, 1);
150 }
151 if (st->cookiestore) {
152 pefree(st->cookiestore, 1);
153 }
154 pefree(st, 1);
155 }
156 }
157
158 static php_resource_factory_ops_t php_http_curle_resource_factory_ops = {
159 php_http_curle_ctor,
160 php_http_curle_copy,
161 php_http_curle_dtor
162 };
163
164 static void *php_http_curlm_ctor(void *opaque, void *init_arg TSRMLS_DC)
165 {
166 return curl_multi_init();
167 }
168
169 static void php_http_curlm_dtor(void *opaque, void *handle TSRMLS_DC)
170 {
171 curl_multi_cleanup(handle);
172 }
173
174 static php_resource_factory_ops_t php_http_curlm_resource_factory_ops = {
175 php_http_curlm_ctor,
176 NULL,
177 php_http_curlm_dtor
178 };
179
180 /* curl callbacks */
181
182 static size_t php_http_curle_read_callback(void *data, size_t len, size_t n, void *ctx)
183 {
184 php_http_message_body_t *body = ctx;
185
186 if (body && body->stream_id) {
187 php_stream *s = php_http_message_body_stream(body);
188
189 if (s) {
190 TSRMLS_FETCH_FROM_CTX(body->ts);
191 return php_stream_read(s, data, len * n);
192 } else abort();
193 }
194 return 0;
195 }
196
197 #if PHP_HTTP_CURL_VERSION(7,32,0)
198 static int php_http_curle_xferinfo_callback(void *ctx, curl_off_t dltotal, curl_off_t dlnow, curl_off_t ultotal, curl_off_t ulnow)
199 #else
200 static int php_http_curle_progress_callback(void *ctx, double dltotal, double dlnow, double ultotal, double ulnow)
201 #endif
202 {
203 php_http_client_curl_handler_t *h = ctx;
204 zend_bool update = 0;
205
206 if (h->progress.dl.total != dltotal
207 || h->progress.dl.now != dlnow
208 || h->progress.ul.total != ultotal
209 || h->progress.ul.now != ulnow
210 ) {
211 update = 1;
212
213 h->progress.dl.total = dltotal;
214 h->progress.dl.now = dlnow;
215 h->progress.ul.total = ultotal;
216 h->progress.ul.now = ulnow;
217 }
218
219 if (update && h->client->callback.progress.func) {
220 h->client->callback.progress.func(h->client->callback.progress.arg, h->client, &h->queue, &h->progress);
221 }
222
223 return 0;
224 }
225
226 static curlioerr php_http_curle_ioctl_callback(CURL *ch, curliocmd cmd, void *ctx)
227 {
228 php_http_message_body_t *body = ctx;
229
230 if (cmd != CURLIOCMD_RESTARTREAD) {
231 return CURLIOE_UNKNOWNCMD;
232 }
233
234 if (body) {
235 TSRMLS_FETCH_FROM_CTX(body->ts);
236
237 if (SUCCESS == php_stream_rewind(php_http_message_body_stream(body))) {
238 return CURLIOE_OK;
239 }
240 }
241
242 return CURLIOE_FAILRESTART;
243 }
244
245 static int php_http_curle_raw_callback(CURL *ch, curl_infotype type, char *data, size_t length, void *ctx)
246 {
247 php_http_client_curl_handler_t *h = ctx;
248 unsigned flags = 0;
249
250 /* catch progress */
251 switch (type) {
252 case CURLINFO_TEXT:
253 if (data[0] == '-') {
254 } else if (php_memnstr(data, ZEND_STRL("Adding handle:"), data + length)) {
255 h->progress.info = "setup";
256 } else if (php_memnstr(data, ZEND_STRL("addHandle"), data + length)) {
257 h->progress.info = "setup";
258 } else if (php_memnstr(data, ZEND_STRL("About to connect"), data + length)) {
259 h->progress.info = "resolve";
260 } else if (php_memnstr(data, ZEND_STRL("Trying"), data + length)) {
261 h->progress.info = "connect";
262 } else if (php_memnstr(data, ZEND_STRL("Found bundle for host"), data + length)) {
263 h->progress.info = "connect";
264 } else if (php_memnstr(data, ZEND_STRL("Connected"), data + length)) {
265 h->progress.info = "connected";
266 } else if (php_memnstr(data, ZEND_STRL("Re-using existing connection!"), data + length)) {
267 h->progress.info = "connected";
268 } else if (php_memnstr(data, ZEND_STRL("blacklisted"), data + length)) {
269 h->progress.info = "blacklist check";
270 } else if (php_memnstr(data, ZEND_STRL("SSL"), data + length)) {
271 h->progress.info = "ssl negotiation";
272 } else if (php_memnstr(data, ZEND_STRL("upload"), data + length)) {
273 h->progress.info = "uploaded";
274 } else if (php_memnstr(data, ZEND_STRL("left intact"), data + length)) {
275 h->progress.info = "not disconnected";
276 } else if (php_memnstr(data, ZEND_STRL("closed"), data + length)) {
277 h->progress.info = "disconnected";
278 } else if (php_memnstr(data, ZEND_STRL("Issue another request"), data + length)) {
279 h->progress.info = "redirect";
280 } else if (php_memnstr(data, ZEND_STRL("Operation timed out"), data + length)) {
281 h->progress.info = "timeout";
282 } else {
283 #if PHP_DEBUG
284 h->progress.info = data;
285 data[length - 1] = '\0';
286 #endif
287 }
288 if (h->client->callback.progress.func) {
289 h->client->callback.progress.func(h->client->callback.progress.arg, h->client, &h->queue, &h->progress);
290 }
291 break;
292 case CURLINFO_HEADER_OUT:
293 case CURLINFO_DATA_OUT:
294 case CURLINFO_SSL_DATA_OUT:
295 h->progress.info = "send";
296 break;
297 case CURLINFO_HEADER_IN:
298 case CURLINFO_DATA_IN:
299 case CURLINFO_SSL_DATA_IN:
300 h->progress.info = "receive";
301 break;
302 default:
303 break;
304 }
305 /* process data */
306 switch (type) {
307 case CURLINFO_HEADER_IN:
308 case CURLINFO_DATA_IN:
309 php_http_buffer_append(h->response.buffer, data, length);
310
311 if (h->options.redirects) {
312 flags |= PHP_HTTP_MESSAGE_PARSER_EMPTY_REDIRECTS;
313 }
314
315 if (PHP_HTTP_MESSAGE_PARSER_STATE_FAILURE == php_http_message_parser_parse(h->response.parser, h->response.buffer, flags, &h->response.message)) {
316 return -1;
317 }
318 break;
319
320 case CURLINFO_HEADER_OUT:
321 case CURLINFO_DATA_OUT:
322 php_http_buffer_append(h->request.buffer, data, length);
323
324 if (PHP_HTTP_MESSAGE_PARSER_STATE_FAILURE == php_http_message_parser_parse(h->request.parser, h->request.buffer, flags, &h->request.message)) {
325 return -1;
326 }
327 break;
328 default:
329 break;
330 }
331
332 #if 0
333 /* debug */
334 _dpf(type, data, length);
335 #endif
336
337 return 0;
338 }
339
340 static int php_http_curle_dummy_callback(char *data, size_t n, size_t l, void *s)
341 {
342 return n*l;
343 }
344
345 static STATUS php_http_curle_get_info(CURL *ch, HashTable *info)
346 {
347 char *c;
348 long l;
349 double d;
350 struct curl_slist *s, *p;
351 zval *subarray, array;
352 INIT_PZVAL_ARRAY(&array, info);
353
354 /* BEGIN::CURLINFO */
355 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_EFFECTIVE_URL, &c)) {
356 add_assoc_string_ex(&array, "effective_url", sizeof("effective_url"), c ? c : "", 1);
357 }
358 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_RESPONSE_CODE, &l)) {
359 add_assoc_long_ex(&array, "response_code", sizeof("response_code"), l);
360 }
361 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_TOTAL_TIME, &d)) {
362 add_assoc_double_ex(&array, "total_time", sizeof("total_time"), d);
363 }
364 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_NAMELOOKUP_TIME, &d)) {
365 add_assoc_double_ex(&array, "namelookup_time", sizeof("namelookup_time"), d);
366 }
367 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONNECT_TIME, &d)) {
368 add_assoc_double_ex(&array, "connect_time", sizeof("connect_time"), d);
369 }
370 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PRETRANSFER_TIME, &d)) {
371 add_assoc_double_ex(&array, "pretransfer_time", sizeof("pretransfer_time"), d);
372 }
373 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SIZE_UPLOAD, &d)) {
374 add_assoc_double_ex(&array, "size_upload", sizeof("size_upload"), d);
375 }
376 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SIZE_DOWNLOAD, &d)) {
377 add_assoc_double_ex(&array, "size_download", sizeof("size_download"), d);
378 }
379 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SPEED_DOWNLOAD, &d)) {
380 add_assoc_double_ex(&array, "speed_download", sizeof("speed_download"), d);
381 }
382 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SPEED_UPLOAD, &d)) {
383 add_assoc_double_ex(&array, "speed_upload", sizeof("speed_upload"), d);
384 }
385 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_HEADER_SIZE, &l)) {
386 add_assoc_long_ex(&array, "header_size", sizeof("header_size"), l);
387 }
388 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_REQUEST_SIZE, &l)) {
389 add_assoc_long_ex(&array, "request_size", sizeof("request_size"), l);
390 }
391 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SSL_VERIFYRESULT, &l)) {
392 add_assoc_long_ex(&array, "ssl_verifyresult", sizeof("ssl_verifyresult"), l);
393 }
394 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_FILETIME, &l)) {
395 add_assoc_long_ex(&array, "filetime", sizeof("filetime"), l);
396 }
397 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d)) {
398 add_assoc_double_ex(&array, "content_length_download", sizeof("content_length_download"), d);
399 }
400 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONTENT_LENGTH_UPLOAD, &d)) {
401 add_assoc_double_ex(&array, "content_length_upload", sizeof("content_length_upload"), d);
402 }
403 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_STARTTRANSFER_TIME, &d)) {
404 add_assoc_double_ex(&array, "starttransfer_time", sizeof("starttransfer_time"), d);
405 }
406 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONTENT_TYPE, &c)) {
407 add_assoc_string_ex(&array, "content_type", sizeof("content_type"), c ? c : "", 1);
408 }
409 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_REDIRECT_TIME, &d)) {
410 add_assoc_double_ex(&array, "redirect_time", sizeof("redirect_time"), d);
411 }
412 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_REDIRECT_COUNT, &l)) {
413 add_assoc_long_ex(&array, "redirect_count", sizeof("redirect_count"), l);
414 }
415 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_HTTP_CONNECTCODE, &l)) {
416 add_assoc_long_ex(&array, "connect_code", sizeof("connect_code"), l);
417 }
418 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_HTTPAUTH_AVAIL, &l)) {
419 add_assoc_long_ex(&array, "httpauth_avail", sizeof("httpauth_avail"), l);
420 }
421 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PROXYAUTH_AVAIL, &l)) {
422 add_assoc_long_ex(&array, "proxyauth_avail", sizeof("proxyauth_avail"), l);
423 }
424 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_OS_ERRNO, &l)) {
425 add_assoc_long_ex(&array, "os_errno", sizeof("os_errno"), l);
426 }
427 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_NUM_CONNECTS, &l)) {
428 add_assoc_long_ex(&array, "num_connects", sizeof("num_connects"), l);
429 }
430 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SSL_ENGINES, &s)) {
431 MAKE_STD_ZVAL(subarray);
432 array_init(subarray);
433 for (p = s; p; p = p->next) {
434 if (p->data) {
435 add_next_index_string(subarray, p->data, 1);
436 }
437 }
438 add_assoc_zval_ex(&array, "ssl_engines", sizeof("ssl_engines"), subarray);
439 curl_slist_free_all(s);
440 }
441 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_COOKIELIST, &s)) {
442 MAKE_STD_ZVAL(subarray);
443 array_init(subarray);
444 for (p = s; p; p = p->next) {
445 if (p->data) {
446 add_next_index_string(subarray, p->data, 1);
447 }
448 }
449 add_assoc_zval_ex(&array, "cookies", sizeof("cookies"), subarray);
450 curl_slist_free_all(s);
451 }
452 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_REDIRECT_URL, &c)) {
453 add_assoc_string_ex(&array, "redirect_url", sizeof("redirect_url"), c ? c : "", 1);
454 }
455 #if PHP_HTTP_CURL_VERSION(7,19,0)
456 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PRIMARY_IP, &c)) {
457 add_assoc_string_ex(&array, "primary_ip", sizeof("primary_ip"), c ? c : "", 1);
458 }
459 #endif
460 #if PHP_HTTP_CURL_VERSION(7,19,0)
461 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_APPCONNECT_TIME, &d)) {
462 add_assoc_double_ex(&array, "appconnect_time", sizeof("appconnect_time"), d);
463 }
464 #endif
465 #if PHP_HTTP_CURL_VERSION(7,19,4)
466 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONDITION_UNMET, &l)) {
467 add_assoc_long_ex(&array, "condition_unmet", sizeof("condition_unmet"), l);
468 }
469 #endif
470 #if PHP_HTTP_CURL_VERSION(7,21,0)
471 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PRIMARY_PORT, &l)) {
472 add_assoc_long_ex(&array, "primary_port", sizeof("primary_port"), l);
473 }
474 #endif
475 #if PHP_HTTP_CURL_VERSION(7,21,0)
476 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_LOCAL_IP, &c)) {
477 add_assoc_string_ex(&array, "local_ip", sizeof("local_ip"), c ? c : "", 1);
478 }
479 #endif
480 #if PHP_HTTP_CURL_VERSION(7,21,0)
481 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_LOCAL_PORT, &l)) {
482 add_assoc_long_ex(&array, "local_port", sizeof("local_port"), l);
483 }
484 #endif
485
486 /* END::CURLINFO */
487
488 #if PHP_HTTP_CURL_VERSION(7,34,0)
489 {
490 int i;
491 zval *ti_array;
492 struct curl_tlssessioninfo *ti;
493
494 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_TLS_SESSION, &ti)) {
495 const char *backend;
496
497 MAKE_STD_ZVAL(subarray);
498 ZVAL_NULL(subarray);
499 MAKE_STD_ZVAL(ti_array);
500 array_init(ti_array);
501
502 switch (ti->backend) {
503 case CURLSSLBACKEND_NONE:
504 backend = "none";
505 break;
506 case CURLSSLBACKEND_OPENSSL:
507 backend = "openssl";
508 #ifdef PHP_HTTP_HAVE_OPENSSL
509 {
510 SSL_CTX *ctx = ti->internals;
511
512 array_init(subarray);
513 add_assoc_long_ex(subarray, ZEND_STRS("number"), SSL_CTX_sess_number(ctx));
514 add_assoc_long_ex(subarray, ZEND_STRS("connect"), SSL_CTX_sess_connect(ctx));
515 add_assoc_long_ex(subarray, ZEND_STRS("connect_good"), SSL_CTX_sess_connect_good(ctx));
516 add_assoc_long_ex(subarray, ZEND_STRS("connect_renegotiate"), SSL_CTX_sess_connect_renegotiate(ctx));
517 add_assoc_long_ex(subarray, ZEND_STRS("hits"), SSL_CTX_sess_hits(ctx));
518 add_assoc_long_ex(subarray, ZEND_STRS("cache_full"), SSL_CTX_sess_cache_full(ctx));
519 }
520 #endif
521 break;
522 case CURLSSLBACKEND_GNUTLS:
523 backend = "gnutls";
524 #ifdef PHP_HTTP_HAVE_GNUTLS
525 {
526 gnutls_session_t sess = ti->internals;
527 char *desc;
528
529 array_init(subarray);
530 if ((desc = gnutls_session_get_desc(sess))) {
531 add_assoc_string_ex(subarray, ZEND_STRS("desc"), desc, 1);
532 gnutls_free(desc);
533 }
534 add_assoc_bool_ex(subarray, ZEND_STRS("resumed"), gnutls_session_is_resumed(sess));
535 }
536 #endif
537 break;
538 case CURLSSLBACKEND_NSS:
539 backend = "nss";
540 break;
541 case CURLSSLBACKEND_QSOSSL:
542 backend = "qsossl";
543 break;
544 case CURLSSLBACKEND_GSKIT:
545 backend = "gskit";
546 break;
547 case CURLSSLBACKEND_POLARSSL:
548 backend = "polarssl";
549 break;
550 case CURLSSLBACKEND_CYASSL:
551 backend = "cyassl";
552 break;
553 case CURLSSLBACKEND_SCHANNEL:
554 backend = "schannel";
555 break;
556 case CURLSSLBACKEND_DARWINSSL:
557 backend = "darwinssl";
558 break;
559 default:
560 backend = "unknown";
561 }
562 add_assoc_string_ex(ti_array, ZEND_STRS("backend"), estrdup(backend), 0);
563 add_assoc_zval_ex(ti_array, ZEND_STRS("internals"), subarray);
564 add_assoc_zval_ex(&array, "tls_session", sizeof("tls_session"), ti_array);
565 }
566 }
567 #endif
568
569 #if PHP_HTTP_CURL_VERSION(7,19,1) && defined(PHP_HTTP_HAVE_OPENSSL)
570 {
571 int i;
572 zval *ci_array;
573 struct curl_certinfo *ci;
574 char *colon, *keyname;
575
576 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CERTINFO, &ci)) {
577 MAKE_STD_ZVAL(ci_array);
578 array_init(ci_array);
579
580 for (i = 0; i < ci->num_of_certs; ++i) {
581 s = ci->certinfo[i];
582
583 MAKE_STD_ZVAL(subarray);
584 array_init(subarray);
585 for (p = s; p; p = p->next) {
586 if (p->data) {
587 if ((colon = strchr(p->data, ':'))) {
588 keyname = estrndup(p->data, colon - p->data);
589 add_assoc_string_ex(subarray, keyname, colon - p->data + 1, colon + 1, 1);
590 efree(keyname);
591 } else {
592 add_next_index_string(subarray, p->data, 1);
593 }
594 }
595 }
596 add_next_index_zval(ci_array, subarray);
597 }
598 add_assoc_zval_ex(&array, "certinfo", sizeof("certinfo"), ci_array);
599 }
600 }
601 #endif
602 add_assoc_string_ex(&array, "error", sizeof("error"), php_http_curle_get_storage(ch)->errorbuffer, 1);
603
604 return SUCCESS;
605 }
606
607 static int compare_queue(php_http_client_enqueue_t *e, void *handle)
608 {
609 return handle == ((php_http_client_curl_handler_t *) e->opaque)->handle;
610 }
611
612 static void php_http_curlm_responsehandler(php_http_client_t *context)
613 {
614 int remaining = 0;
615 php_http_client_enqueue_t *enqueue;
616 php_http_client_curl_t *curl = context->ctx;
617 TSRMLS_FETCH_FROM_CTX(context->ts);
618
619 do {
620 CURLMsg *msg = curl_multi_info_read(curl->handle, &remaining);
621
622 if (msg && CURLMSG_DONE == msg->msg) {
623 if (CURLE_OK != msg->data.result) {
624 php_http_curle_storage_t *st = php_http_curle_get_storage(msg->easy_handle);
625 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s; %s (%s)", curl_easy_strerror(msg->data.result), STR_PTR(st->errorbuffer), STR_PTR(st->url));
626 }
627
628 if ((enqueue = php_http_client_enqueued(context, msg->easy_handle, compare_queue))) {
629 php_http_client_curl_handler_t *handler = enqueue->opaque;
630
631 context->callback.response.func(context->callback.response.arg, context, &handler->queue, &handler->request.message, &handler->response.message);
632 }
633 }
634 } while (remaining);
635 }
636
637 #if PHP_HTTP_HAVE_EVENT
638
639 typedef struct php_http_curlm_event {
640 struct event evnt;
641 php_http_client_t *context;
642 } php_http_curlm_event_t;
643
644 static inline int etoca(short action) {
645 switch (action & (EV_READ|EV_WRITE)) {
646 case EV_READ:
647 return CURL_CSELECT_IN;
648 break;
649 case EV_WRITE:
650 return CURL_CSELECT_OUT;
651 break;
652 case EV_READ|EV_WRITE:
653 return CURL_CSELECT_IN|CURL_CSELECT_OUT;
654 break;
655 default:
656 return 0;
657 }
658 }
659
660 static void php_http_curlm_timeout_callback(int socket, short action, void *event_data)
661 {
662 php_http_client_t *context = event_data;
663 php_http_client_curl_t *curl = context->ctx;
664
665 #if DBG_EVENTS
666 fprintf(stderr, "T");
667 #endif
668 if (curl->useevents) {
669 CURLMcode rc;
670 TSRMLS_FETCH_FROM_CTX(context->ts);
671
672 /* ignore and use -1,0 on timeout */
673 (void) socket;
674 (void) action;
675
676 while (CURLM_CALL_MULTI_PERFORM == (rc = curl_multi_socket_action(curl->handle, CURL_SOCKET_TIMEOUT, 0, &curl->unfinished)));
677
678 if (CURLM_OK != rc) {
679 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", curl_multi_strerror(rc));
680 }
681
682 php_http_curlm_responsehandler(context);
683 }
684 }
685
686 static void php_http_curlm_event_callback(int socket, short action, void *event_data)
687 {
688 php_http_client_t *context = event_data;
689 php_http_client_curl_t *curl = context->ctx;
690
691 #if DBG_EVENTS
692 fprintf(stderr, "E");
693 #endif
694 if (curl->useevents) {
695 CURLMcode rc = CURLM_OK;
696 TSRMLS_FETCH_FROM_CTX(context->ts);
697
698 while (CURLM_CALL_MULTI_PERFORM == (rc = curl_multi_socket_action(curl->handle, socket, etoca(action), &curl->unfinished)));
699
700 if (CURLM_OK != rc) {
701 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", curl_multi_strerror(rc));
702 }
703
704 php_http_curlm_responsehandler(context);
705
706 /* remove timeout if there are no transfers left */
707 if (!curl->unfinished && event_initialized(curl->timeout) && event_pending(curl->timeout, EV_TIMEOUT, NULL)) {
708 event_del(curl->timeout);
709 }
710 }
711 }
712
713 static int php_http_curlm_socket_callback(CURL *easy, curl_socket_t sock, int action, void *socket_data, void *assign_data)
714 {
715 php_http_client_t *context = socket_data;
716 php_http_client_curl_t *curl = context->ctx;
717
718 #if DBG_EVENTS
719 fprintf(stderr, "S");
720 #endif
721 if (curl->useevents) {
722 int events = EV_PERSIST;
723 php_http_curlm_event_t *ev = assign_data;
724 TSRMLS_FETCH_FROM_CTX(context->ts);
725
726 if (!ev) {
727 ev = ecalloc(1, sizeof(php_http_curlm_event_t));
728 ev->context = context;
729 curl_multi_assign(curl->handle, sock, ev);
730 } else {
731 event_del(&ev->evnt);
732 }
733
734 switch (action) {
735 case CURL_POLL_IN:
736 events |= EV_READ;
737 break;
738 case CURL_POLL_OUT:
739 events |= EV_WRITE;
740 break;
741 case CURL_POLL_INOUT:
742 events |= EV_READ|EV_WRITE;
743 break;
744
745 case CURL_POLL_REMOVE:
746 efree(ev);
747 /* no break */
748 case CURL_POLL_NONE:
749 return 0;
750
751 default:
752 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown socket action %d", action);
753 return -1;
754 }
755
756 event_assign(&ev->evnt, PHP_HTTP_G->curl.event_base, sock, events, php_http_curlm_event_callback, context);
757 event_add(&ev->evnt, NULL);
758 }
759
760 return 0;
761 }
762
763 static void php_http_curlm_timer_callback(CURLM *multi, long timeout_ms, void *timer_data)
764 {
765 php_http_client_t *context = timer_data;
766 php_http_client_curl_t *curl = context->ctx;
767
768 #if DBG_EVENTS
769 fprintf(stderr, "\ntimer <- timeout_ms: %ld\n", timeout_ms);
770 #endif
771 if (curl->useevents) {
772
773 if (timeout_ms < 0) {
774 php_http_curlm_timeout_callback(CURL_SOCKET_TIMEOUT, /*EV_READ|EV_WRITE*/0, context);
775 } else if (timeout_ms > 0 || !event_initialized(curl->timeout) || !event_pending(curl->timeout, EV_TIMEOUT, NULL)) {
776 struct timeval timeout;
777 TSRMLS_FETCH_FROM_CTX(context->ts);
778
779 if (!event_initialized(curl->timeout)) {
780 event_assign(curl->timeout, PHP_HTTP_G->curl.event_base, CURL_SOCKET_TIMEOUT, 0, php_http_curlm_timeout_callback, context);
781 } else if (event_pending(curl->timeout, EV_TIMEOUT, NULL)) {
782 event_del(curl->timeout);
783 }
784
785 timeout.tv_sec = timeout_ms / 1000;
786 timeout.tv_usec = (timeout_ms % 1000) * 1000;
787
788 event_add(curl->timeout, &timeout);
789 }
790 }
791 }
792
793 #endif /* HAVE_EVENT */
794
795 /* curl options */
796
797 static php_http_options_t php_http_curle_options;
798
799 #define PHP_HTTP_CURLE_OPTION_CHECK_STRLEN 0x0001
800 #define PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR 0x0002
801 #define PHP_HTTP_CURLE_OPTION_TRANSFORM_MS 0x0004
802
803 static STATUS php_http_curle_option_set_ssl_verifyhost(php_http_option_t *opt, zval *val, void *userdata)
804 {
805 php_http_client_curl_handler_t *curl = userdata;
806 CURL *ch = curl->handle;
807
808 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_SSL_VERIFYHOST, Z_BVAL_P(val) ? 2 : 0)) {
809 return FAILURE;
810 }
811 return SUCCESS;
812 }
813
814 static STATUS php_http_curle_option_set_cookiestore(php_http_option_t *opt, zval *val, void *userdata)
815 {
816 php_http_client_curl_handler_t *curl = userdata;
817 CURL *ch = curl->handle;
818
819 if (val) {
820 php_http_curle_storage_t *storage = php_http_curle_get_storage(curl->handle);
821
822 if (storage->cookiestore) {
823 pefree(storage->cookiestore, 1);
824 }
825 storage->cookiestore = pestrndup(Z_STRVAL_P(val), Z_STRLEN_P(val), 1);
826 if ( CURLE_OK != curl_easy_setopt(ch, CURLOPT_COOKIEFILE, storage->cookiestore)
827 || CURLE_OK != curl_easy_setopt(ch, CURLOPT_COOKIEJAR, storage->cookiestore)
828 ) {
829 return FAILURE;
830 }
831 }
832 return SUCCESS;
833 }
834
835 static STATUS php_http_curle_option_set_cookies(php_http_option_t *opt, zval *val, void *userdata)
836 {
837 php_http_client_curl_handler_t *curl = userdata;
838 CURL *ch = curl->handle;
839 TSRMLS_FETCH_FROM_CTX(curl->client->ts);
840
841 if (val && Z_TYPE_P(val) != IS_NULL) {
842 if (curl->options.encode_cookies) {
843 if (SUCCESS == php_http_url_encode_hash_ex(HASH_OF(val), &curl->options.cookies, ZEND_STRL(";"), ZEND_STRL("="), NULL, 0 TSRMLS_CC)) {
844 php_http_buffer_fix(&curl->options.cookies);
845 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_COOKIE, curl->options.cookies.data)) {
846 return FAILURE;
847 }
848 } else {
849 return FAILURE;
850 }
851 } else {
852 HashPosition pos;
853 php_http_array_hashkey_t cookie_key = php_http_array_hashkey_init(0);
854 zval **cookie_val;
855
856 FOREACH_KEYVAL(pos, val, cookie_key, cookie_val) {
857 zval *zv = php_http_ztyp(IS_STRING, *cookie_val);
858
859 php_http_array_hashkey_stringify(&cookie_key);
860 php_http_buffer_appendf(&curl->options.cookies, "%s=%s; ", cookie_key.str, Z_STRVAL_P(zv));
861 php_http_array_hashkey_stringfree(&cookie_key);
862
863 zval_ptr_dtor(&zv);
864 }
865
866 php_http_buffer_fix(&curl->options.cookies);
867 if (curl->options.cookies.used) {
868 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_COOKIE, curl->options.cookies.data)) {
869 return FAILURE;
870 }
871 }
872 }
873 }
874 return SUCCESS;
875 }
876
877 static STATUS php_http_curle_option_set_encodecookies(php_http_option_t *opt, zval *val, void *userdata)
878 {
879 php_http_client_curl_handler_t *curl = userdata;
880
881 curl->options.encode_cookies = Z_BVAL_P(val);
882 return SUCCESS;
883 }
884
885 static STATUS php_http_curle_option_set_lastmodified(php_http_option_t *opt, zval *val, void *userdata)
886 {
887 php_http_client_curl_handler_t *curl = userdata;
888 CURL *ch = curl->handle;
889 TSRMLS_FETCH_FROM_CTX(curl->client->ts);
890
891 if (Z_LVAL_P(val)) {
892 if (Z_LVAL_P(val) > 0) {
893 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_TIMEVALUE, Z_LVAL_P(val))) {
894 return FAILURE;
895 }
896 } else {
897 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_TIMEVALUE, (long) PHP_HTTP_G->env.request.time + Z_LVAL_P(val))) {
898 return FAILURE;
899 }
900 }
901 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_TIMECONDITION, (long) (curl->options.range_request ? CURL_TIMECOND_IFUNMODSINCE : CURL_TIMECOND_IFMODSINCE))) {
902 return FAILURE;
903 }
904 } else {
905 if ( CURLE_OK != curl_easy_setopt(ch, CURLOPT_TIMEVALUE, 0)
906 || CURLE_OK != curl_easy_setopt(ch, CURLOPT_TIMECONDITION, 0)
907 ) {
908 return FAILURE;
909 }
910 }
911 return SUCCESS;
912 }
913
914 static STATUS php_http_curle_option_set_compress(php_http_option_t *opt, zval *val, void *userdata)
915 {
916 php_http_client_curl_handler_t *curl = userdata;
917
918 if (Z_BVAL_P(val)) {
919 curl->options.headers = curl_slist_append(curl->options.headers, "Accept-Encoding: gzip;q=1.0,deflate;q=0.5");
920 }
921 return SUCCESS;
922 }
923
924 static STATUS php_http_curle_option_set_etag(php_http_option_t *opt, zval *val, void *userdata)
925 {
926 php_http_client_curl_handler_t *curl = userdata;
927 php_http_buffer_t header;
928 zend_bool is_quoted = !((Z_STRVAL_P(val)[0] != '"') || (Z_STRVAL_P(val)[Z_STRLEN_P(val)-1] != '"'));
929
930 php_http_buffer_init(&header);
931 php_http_buffer_appendf(&header, is_quoted?"%s: %s":"%s: \"%s\"", curl->options.range_request?"If-Match":"If-None-Match", Z_STRVAL_P(val));
932 php_http_buffer_fix(&header);
933 curl->options.headers = curl_slist_append(curl->options.headers, header.data);
934 php_http_buffer_dtor(&header);
935 return SUCCESS;
936 }
937
938 static STATUS php_http_curle_option_set_range(php_http_option_t *opt, zval *val, void *userdata)
939 {
940 php_http_client_curl_handler_t *curl = userdata;
941 CURL *ch = curl->handle;
942 TSRMLS_FETCH_FROM_CTX(curl->client->ts);
943
944 php_http_buffer_reset(&curl->options.ranges);
945
946 if (val && Z_TYPE_P(val) != IS_NULL) {
947 HashPosition pos;
948 zval **rr, **rb, **re;
949
950 FOREACH_VAL(pos, val, rr) {
951 if (Z_TYPE_PP(rr) == IS_ARRAY) {
952 if (2 == php_http_array_list(Z_ARRVAL_PP(rr) TSRMLS_CC, 2, &rb, &re)) {
953 if ( ((Z_TYPE_PP(rb) == IS_LONG) || ((Z_TYPE_PP(rb) == IS_STRING) && is_numeric_string(Z_STRVAL_PP(rb), Z_STRLEN_PP(rb), NULL, NULL, 1))) &&
954 ((Z_TYPE_PP(re) == IS_LONG) || ((Z_TYPE_PP(re) == IS_STRING) && is_numeric_string(Z_STRVAL_PP(re), Z_STRLEN_PP(re), NULL, NULL, 1)))) {
955 zval *rbl = php_http_ztyp(IS_LONG, *rb);
956 zval *rel = php_http_ztyp(IS_LONG, *re);
957
958 if ((Z_LVAL_P(rbl) >= 0) && (Z_LVAL_P(rel) >= 0)) {
959 php_http_buffer_appendf(&curl->options.ranges, "%ld-%ld,", Z_LVAL_P(rbl), Z_LVAL_P(rel));
960 }
961 zval_ptr_dtor(&rbl);
962 zval_ptr_dtor(&rel);
963 }
964
965 }
966 }
967 }
968
969 if (curl->options.ranges.used) {
970 curl->options.range_request = 1;
971 /* ditch last comma */
972 curl->options.ranges.data[curl->options.ranges.used - 1] = '\0';
973 }
974 }
975
976 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_RANGE, curl->options.ranges.data)) {
977 return FAILURE;
978 }
979 return SUCCESS;
980 }
981
982 static STATUS php_http_curle_option_set_resume(php_http_option_t *opt, zval *val, void *userdata)
983 {
984 php_http_client_curl_handler_t *curl = userdata;
985 CURL *ch = curl->handle;
986
987 if (Z_LVAL_P(val) > 0) {
988 curl->options.range_request = 1;
989 }
990 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_RESUME_FROM, Z_LVAL_P(val))) {
991 return FAILURE;
992 }
993 return SUCCESS;
994 }
995
996 static STATUS php_http_curle_option_set_retrydelay(php_http_option_t *opt, zval *val, void *userdata)
997 {
998 php_http_client_curl_handler_t *curl = userdata;
999
1000 curl->options.retry.delay = Z_DVAL_P(val);
1001 return SUCCESS;
1002 }
1003
1004 static STATUS php_http_curle_option_set_retrycount(php_http_option_t *opt, zval *val, void *userdata)
1005 {
1006 php_http_client_curl_handler_t *curl = userdata;
1007
1008 curl->options.retry.count = Z_LVAL_P(val);
1009 return SUCCESS;
1010 }
1011
1012 static STATUS php_http_curle_option_set_redirect(php_http_option_t *opt, zval *val, void *userdata)
1013 {
1014 php_http_client_curl_handler_t *curl = userdata;
1015 CURL *ch = curl->handle;
1016
1017 if ( CURLE_OK != curl_easy_setopt(ch, CURLOPT_FOLLOWLOCATION, Z_LVAL_P(val) ? 1L : 0L)
1018 || CURLE_OK != curl_easy_setopt(ch, CURLOPT_MAXREDIRS, curl->options.redirects = Z_LVAL_P(val))
1019 ) {
1020 return FAILURE;
1021 }
1022 return SUCCESS;
1023 }
1024
1025 static STATUS php_http_curle_option_set_portrange(php_http_option_t *opt, zval *val, void *userdata)
1026 {
1027 php_http_client_curl_handler_t *curl = userdata;
1028 CURL *ch = curl->handle;
1029 long localport = 0, localportrange = 0;
1030 TSRMLS_FETCH_FROM_CTX(curl->client->ts);
1031
1032 if (val && Z_TYPE_P(val) != IS_NULL) {
1033 zval **z_port_start, *zps_copy = NULL, **z_port_end, *zpe_copy = NULL;
1034
1035 switch (php_http_array_list(Z_ARRVAL_P(val) TSRMLS_CC, 2, &z_port_start, &z_port_end)) {
1036 case 2:
1037 zps_copy = php_http_ztyp(IS_LONG, *z_port_start);
1038 zpe_copy = php_http_ztyp(IS_LONG, *z_port_end);
1039 localportrange = labs(Z_LVAL_P(zps_copy)-Z_LVAL_P(zpe_copy))+1L;
1040 /* no break */
1041 case 1:
1042 if (!zps_copy) {
1043 zps_copy = php_http_ztyp(IS_LONG, *z_port_start);
1044 }
1045 localport = (zpe_copy && Z_LVAL_P(zpe_copy) > 0) ? MIN(Z_LVAL_P(zps_copy), Z_LVAL_P(zpe_copy)) : Z_LVAL_P(zps_copy);
1046 zval_ptr_dtor(&zps_copy);
1047 if (zpe_copy) {
1048 zval_ptr_dtor(&zpe_copy);
1049 }
1050 break;
1051 default:
1052 break;
1053 }
1054 }
1055 if ( CURLE_OK != curl_easy_setopt(ch, CURLOPT_LOCALPORT, localport)
1056 || CURLE_OK != curl_easy_setopt(ch, CURLOPT_LOCALPORTRANGE, localportrange)
1057 ) {
1058 return FAILURE;
1059 }
1060 return SUCCESS;
1061 }
1062
1063 #if PHP_HTTP_CURL_VERSION(7,21,3)
1064 static STATUS php_http_curle_option_set_resolve(php_http_option_t *opt, zval *val, void *userdata)
1065 {
1066 php_http_client_curl_handler_t *curl = userdata;
1067 CURL *ch = curl->handle;
1068 TSRMLS_FETCH_FROM_CTX(curl->client->ts);
1069
1070 if (val && Z_TYPE_P(val) != IS_NULL) {
1071 php_http_array_hashkey_t key = php_http_array_hashkey_init(0);
1072 HashPosition pos;
1073 zval **data;
1074
1075 FOREACH_KEYVAL(pos, val, key, data) {
1076 zval *cpy = php_http_ztyp(IS_STRING, *data);
1077 curl->options.resolve = curl_slist_append(curl->options.resolve, Z_STRVAL_P(cpy));
1078 zval_ptr_dtor(&cpy);
1079 }
1080
1081 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_RESOLVE, curl->options.resolve)) {
1082 return FAILURE;
1083 }
1084 } else {
1085 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_RESOLVE, NULL)) {
1086 return FAILURE;
1087 }
1088 }
1089 return SUCCESS;
1090 }
1091 #endif
1092
1093 static void php_http_curle_options_init(php_http_options_t *registry TSRMLS_DC)
1094 {
1095 php_http_option_t *opt;
1096
1097 /* proxy */
1098 if ((opt = php_http_option_register(registry, ZEND_STRL("proxyhost"), CURLOPT_PROXY, IS_STRING))) {
1099 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1100 }
1101 php_http_option_register(registry, ZEND_STRL("proxytype"), CURLOPT_PROXYTYPE, IS_LONG);
1102 php_http_option_register(registry, ZEND_STRL("proxyport"), CURLOPT_PROXYPORT, IS_LONG);
1103 if ((opt = php_http_option_register(registry, ZEND_STRL("proxyauth"), CURLOPT_PROXYUSERPWD, IS_STRING))) {
1104 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1105 }
1106 if ((opt = php_http_option_register(registry, ZEND_STRL("proxyauthtype"), CURLOPT_PROXYAUTH, IS_LONG))) {
1107 Z_LVAL(opt->defval) = CURLAUTH_ANYSAFE;
1108 }
1109 php_http_option_register(registry, ZEND_STRL("proxytunnel"), CURLOPT_HTTPPROXYTUNNEL, IS_BOOL);
1110 #if PHP_HTTP_CURL_VERSION(7,19,4)
1111 php_http_option_register(registry, ZEND_STRL("noproxy"), CURLOPT_NOPROXY, IS_STRING);
1112 #endif
1113
1114 /* dns */
1115 if ((opt = php_http_option_register(registry, ZEND_STRL("dns_cache_timeout"), CURLOPT_DNS_CACHE_TIMEOUT, IS_LONG))) {
1116 Z_LVAL(opt->defval) = 60;
1117 }
1118 php_http_option_register(registry, ZEND_STRL("ipresolve"), CURLOPT_IPRESOLVE, IS_LONG);
1119 #if PHP_HTTP_CURL_VERSION(7,21,3)
1120 if ((opt = php_http_option_register(registry, ZEND_STRL("resolve"), CURLOPT_RESOLVE, IS_ARRAY))) {
1121 opt->setter = php_http_curle_option_set_resolve;
1122 }
1123 #endif
1124 #if PHP_HTTP_CURL_VERSION(7,24,0)
1125 if ((opt = php_http_option_register(registry, ZEND_STRL("dns_servers"), CURLOPT_DNS_SERVERS, IS_STRING))) {
1126 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1127 }
1128 #endif
1129
1130 /* limits */
1131 php_http_option_register(registry, ZEND_STRL("low_speed_limit"), CURLOPT_LOW_SPEED_LIMIT, IS_LONG);
1132 php_http_option_register(registry, ZEND_STRL("low_speed_time"), CURLOPT_LOW_SPEED_TIME, IS_LONG);
1133
1134 /* LSF weirdance
1135 php_http_option_register(registry, ZEND_STRL("max_send_speed"), CURLOPT_MAX_SEND_SPEED_LARGE, IS_LONG);
1136 php_http_option_register(registry, ZEND_STRL("max_recv_speed"), CURLOPT_MAX_RECV_SPEED_LARGE, IS_LONG);
1137 */
1138
1139 /* connection handling */
1140 /* crashes
1141 if ((opt = php_http_option_register(registry, ZEND_STRL("maxconnects"), CURLOPT_MAXCONNECTS, IS_LONG))) {
1142 Z_LVAL(opt->defval) = 5;
1143 }
1144 */
1145 php_http_option_register(registry, ZEND_STRL("fresh_connect"), CURLOPT_FRESH_CONNECT, IS_BOOL);
1146 php_http_option_register(registry, ZEND_STRL("forbid_reuse"), CURLOPT_FORBID_REUSE, IS_BOOL);
1147
1148 /* outgoing interface */
1149 php_http_option_register(registry, ZEND_STRL("interface"), CURLOPT_INTERFACE, IS_STRING);
1150 if ((opt = php_http_option_register(registry, ZEND_STRL("portrange"), CURLOPT_LOCALPORT, IS_ARRAY))) {
1151 opt->setter = php_http_curle_option_set_portrange;
1152 }
1153
1154 /* another endpoint port */
1155 php_http_option_register(registry, ZEND_STRL("port"), CURLOPT_PORT, IS_LONG);
1156
1157 /* RFC4007 zone_id */
1158 #if PHP_HTTP_CURL_VERSION(7,19,0)
1159 php_http_option_register(registry, ZEND_STRL("address_scope"), CURLOPT_ADDRESS_SCOPE, IS_LONG);
1160 #endif
1161
1162 /* auth */
1163 if ((opt = php_http_option_register(registry, ZEND_STRL("httpauth"), CURLOPT_USERPWD, IS_STRING))) {
1164 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1165 }
1166 if ((opt = php_http_option_register(registry, ZEND_STRL("httpauthtype"), CURLOPT_HTTPAUTH, IS_LONG))) {
1167 Z_LVAL(opt->defval) = CURLAUTH_ANYSAFE;
1168 }
1169
1170 /* redirects */
1171 if ((opt = php_http_option_register(registry, ZEND_STRL("redirect"), CURLOPT_FOLLOWLOCATION, IS_LONG))) {
1172 opt->setter = php_http_curle_option_set_redirect;
1173 }
1174 php_http_option_register(registry, ZEND_STRL("unrestricted_auth"), CURLOPT_UNRESTRICTED_AUTH, IS_BOOL);
1175 #if PHP_HTTP_CURL_VERSION(7,19,1)
1176 php_http_option_register(registry, ZEND_STRL("postredir"), CURLOPT_POSTREDIR, IS_LONG);
1177 #endif
1178
1179 /* retries */
1180 if ((opt = php_http_option_register(registry, ZEND_STRL("retrycount"), 0, IS_LONG))) {
1181 opt->setter = php_http_curle_option_set_retrycount;
1182 }
1183 if ((opt = php_http_option_register(registry, ZEND_STRL("retrydelay"), 0, IS_DOUBLE))) {
1184 opt->setter = php_http_curle_option_set_retrydelay;
1185 }
1186
1187 /* referer */
1188 if ((opt = php_http_option_register(registry, ZEND_STRL("referer"), CURLOPT_REFERER, IS_STRING))) {
1189 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1190 }
1191 if ((opt = php_http_option_register(registry, ZEND_STRL("autoreferer"), CURLOPT_AUTOREFERER, IS_BOOL))) {
1192 ZVAL_BOOL(&opt->defval, 1);
1193 }
1194
1195 /* useragent */
1196 if ((opt = php_http_option_register(registry, ZEND_STRL("useragent"), CURLOPT_USERAGENT, IS_STRING))) {
1197 /* don't check strlen, to allow sending no useragent at all */
1198 ZVAL_STRING(&opt->defval,
1199 "PECL_HTTP/" PHP_PECL_HTTP_VERSION " "
1200 "PHP/" PHP_VERSION " "
1201 "libcurl/" LIBCURL_VERSION
1202 , 0);
1203 }
1204
1205 /* resume */
1206 if ((opt = php_http_option_register(registry, ZEND_STRL("resume"), CURLOPT_RESUME_FROM, IS_LONG))) {
1207 opt->setter = php_http_curle_option_set_resume;
1208 }
1209 /* ranges */
1210 if ((opt = php_http_option_register(registry, ZEND_STRL("range"), CURLOPT_RANGE, IS_ARRAY))) {
1211 opt->setter = php_http_curle_option_set_range;
1212 }
1213
1214 /* etag */
1215 if ((opt = php_http_option_register(registry, ZEND_STRL("etag"), 0, IS_STRING))) {
1216 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1217 opt->setter = php_http_curle_option_set_etag;
1218 }
1219
1220 /* compression */
1221 if ((opt = php_http_option_register(registry, ZEND_STRL("compress"), 0, IS_BOOL))) {
1222 opt->setter = php_http_curle_option_set_compress;
1223 }
1224
1225 /* lastmodified */
1226 if ((opt = php_http_option_register(registry, ZEND_STRL("lastmodified"), 0, IS_LONG))) {
1227 opt->setter = php_http_curle_option_set_lastmodified;
1228 }
1229
1230 /* cookies */
1231 if ((opt = php_http_option_register(registry, ZEND_STRL("encodecookies"), 0, IS_BOOL))) {
1232 opt->setter = php_http_curle_option_set_encodecookies;
1233 ZVAL_BOOL(&opt->defval, 1);
1234 }
1235 if ((opt = php_http_option_register(registry, ZEND_STRL("cookies"), 0, IS_ARRAY))) {
1236 opt->setter = php_http_curle_option_set_cookies;
1237 }
1238
1239 /* cookiesession, don't load session cookies from cookiestore */
1240 php_http_option_register(registry, ZEND_STRL("cookiesession"), CURLOPT_COOKIESESSION, IS_BOOL);
1241 /* cookiestore, read initial cookies from that file and store cookies back into that file */
1242 if ((opt = php_http_option_register(registry, ZEND_STRL("cookiestore"), 0, IS_STRING))) {
1243 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1244 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1245 opt->setter = php_http_curle_option_set_cookiestore;
1246 }
1247
1248 /* maxfilesize */
1249 php_http_option_register(registry, ZEND_STRL("maxfilesize"), CURLOPT_MAXFILESIZE, IS_LONG);
1250
1251 /* http protocol version */
1252 php_http_option_register(registry, ZEND_STRL("protocol"), CURLOPT_HTTP_VERSION, IS_LONG);
1253
1254 /* timeouts */
1255 if ((opt = php_http_option_register(registry, ZEND_STRL("timeout"), CURLOPT_TIMEOUT_MS, IS_DOUBLE))) {
1256 opt->flags |= PHP_HTTP_CURLE_OPTION_TRANSFORM_MS;
1257 }
1258 if ((opt = php_http_option_register(registry, ZEND_STRL("connecttimeout"), CURLOPT_CONNECTTIMEOUT_MS, IS_DOUBLE))) {
1259 opt->flags |= PHP_HTTP_CURLE_OPTION_TRANSFORM_MS;
1260 Z_DVAL(opt->defval) = 3;
1261 }
1262
1263 /* tcp */
1264 #if PHP_HTTP_CURL_VERSION(7,25,0)
1265 php_http_option_register(registry, ZEND_STRL("tcp_keepalive"), CURLOPT_TCP_KEEPALIVE, IS_BOOL);
1266 if ((opt = php_http_option_register(registry, ZEND_STRL("tcp_keepidle"), CURLOPT_TCP_KEEPIDLE, IS_LONG))) {
1267 Z_LVAL(opt->defval) = 60;
1268 }
1269 if ((opt = php_http_option_register(registry, ZEND_STRL("tcp_keepintvl"), CURLOPT_TCP_KEEPINTVL, IS_LONG))) {
1270 Z_LVAL(opt->defval) = 60;
1271 }
1272 #endif
1273
1274 /* ssl */
1275 if ((opt = php_http_option_register(registry, ZEND_STRL("ssl"), 0, IS_ARRAY))) {
1276 registry = &opt->suboptions;
1277
1278 if ((opt = php_http_option_register(registry, ZEND_STRL("cert"), CURLOPT_SSLCERT, IS_STRING))) {
1279 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1280 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1281 }
1282 php_http_option_register(registry, ZEND_STRL("certtype"), CURLOPT_SSLCERTTYPE, IS_STRING);
1283
1284 if ((opt = php_http_option_register(registry, ZEND_STRL("key"), CURLOPT_SSLKEY, IS_STRING))) {
1285 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1286 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1287 }
1288 php_http_option_register(registry, ZEND_STRL("keytype"), CURLOPT_SSLKEYTYPE, IS_STRING);
1289 php_http_option_register(registry, ZEND_STRL("keypasswd"), CURLOPT_SSLKEYPASSWD, IS_STRING);
1290 php_http_option_register(registry, ZEND_STRL("engine"), CURLOPT_SSLENGINE, IS_STRING);
1291 php_http_option_register(registry, ZEND_STRL("version"), CURLOPT_SSLVERSION, IS_LONG);
1292 if ((opt = php_http_option_register(registry, ZEND_STRL("verifypeer"), CURLOPT_SSL_VERIFYPEER, IS_BOOL))) {
1293 ZVAL_BOOL(&opt->defval, 1);
1294 }
1295 if ((opt = php_http_option_register(registry, ZEND_STRL("verifyhost"), CURLOPT_SSL_VERIFYHOST, IS_BOOL))) {
1296 ZVAL_BOOL(&opt->defval, 1);
1297 opt->setter = php_http_curle_option_set_ssl_verifyhost;
1298 }
1299 php_http_option_register(registry, ZEND_STRL("cipher_list"), CURLOPT_SSL_CIPHER_LIST, IS_STRING);
1300 if ((opt = php_http_option_register(registry, ZEND_STRL("cainfo"), CURLOPT_CAINFO, IS_STRING))) {
1301 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1302 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1303 #ifdef PHP_HTTP_CURL_CAINFO
1304 ZVAL_STRING(&opt->defval, PHP_HTTP_CURL_CAINFO, 0);
1305 #endif
1306 }
1307 if ((opt = php_http_option_register(registry, ZEND_STRL("capath"), CURLOPT_CAPATH, IS_STRING))) {
1308 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1309 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1310 }
1311 if ((opt = php_http_option_register(registry, ZEND_STRL("random_file"), CURLOPT_RANDOM_FILE, IS_STRING))) {
1312 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1313 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1314 }
1315 if ((opt = php_http_option_register(registry, ZEND_STRL("egdsocket"), CURLOPT_EGDSOCKET, IS_STRING))) {
1316 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1317 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1318 }
1319 #if PHP_HTTP_CURL_VERSION(7,19,0)
1320 if ((opt = php_http_option_register(registry, ZEND_STRL("issuercert"), CURLOPT_ISSUERCERT, IS_STRING))) {
1321 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1322 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1323 }
1324 # ifdef PHP_HTTP_HAVE_OPENSSL
1325 if ((opt = php_http_option_register(registry, ZEND_STRL("crlfile"), CURLOPT_CRLFILE, IS_STRING))) {
1326 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1327 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1328 }
1329 # endif
1330 #endif
1331 #if PHP_HTTP_CURL_VERSION(7,19,1) && defined(PHP_HTTP_HAVE_OPENSSL)
1332 php_http_option_register(registry, ZEND_STRL("certinfo"), CURLOPT_CERTINFO, IS_BOOL);
1333 #endif
1334 }
1335 }
1336
1337 static zval *php_http_curle_get_option(php_http_option_t *opt, HashTable *options, void *userdata)
1338 {
1339 php_http_client_curl_handler_t *curl = userdata;
1340 zval *option;
1341
1342 if ((option = php_http_option_get(opt, options, NULL))) {
1343 option = php_http_ztyp(opt->type, option);
1344 zend_hash_quick_update(&curl->options.cache, opt->name.s, opt->name.l, opt->name.h, &option, sizeof(zval *), NULL);
1345 }
1346 return option;
1347 }
1348
1349 static STATUS php_http_curle_set_option(php_http_option_t *opt, zval *val, void *userdata)
1350 {
1351 php_http_client_curl_handler_t *curl = userdata;
1352 CURL *ch = curl->handle;
1353 zval tmp;
1354 STATUS rv = SUCCESS;
1355 TSRMLS_FETCH_FROM_CTX(curl->client->ts);
1356
1357 if (!val) {
1358 val = &opt->defval;
1359 }
1360
1361 switch (opt->type) {
1362 case IS_BOOL:
1363 if (opt->setter) {
1364 rv = opt->setter(opt, val, curl);
1365 } else if (CURLE_OK != curl_easy_setopt(ch, opt->option, (long) Z_BVAL_P(val))) {
1366 rv = FAILURE;
1367 }
1368 break;
1369
1370 case IS_LONG:
1371 if (opt->setter) {
1372 rv = opt->setter(opt, val, curl);
1373 } else if (CURLE_OK != curl_easy_setopt(ch, opt->option, Z_LVAL_P(val))) {
1374 rv = FAILURE;
1375 }
1376 break;
1377
1378 case IS_STRING:
1379 if (!(opt->flags & PHP_HTTP_CURLE_OPTION_CHECK_STRLEN) || Z_STRLEN_P(val)) {
1380 if (!(opt->flags & PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR) || !Z_STRVAL_P(val) || SUCCESS == php_check_open_basedir(Z_STRVAL_P(val) TSRMLS_CC)) {
1381 if (opt->setter) {
1382 rv = opt->setter(opt, val, curl);
1383 } else if (CURLE_OK != curl_easy_setopt(ch, opt->option, Z_STRVAL_P(val))) {
1384 rv = FAILURE;
1385 }
1386 }
1387 }
1388 break;
1389
1390 case IS_DOUBLE:
1391 if (opt->flags & PHP_HTTP_CURLE_OPTION_TRANSFORM_MS) {
1392 tmp = *val;
1393 Z_DVAL(tmp) *= 1000;
1394 val = &tmp;
1395 }
1396 if (opt->setter) {
1397 rv = opt->setter(opt, val, curl);
1398 } else if (CURLE_OK != curl_easy_setopt(ch, opt->option, (long) Z_DVAL_P(val))) {
1399 rv = FAILURE;
1400 }
1401 break;
1402
1403 case IS_ARRAY:
1404 if (opt->setter) {
1405 rv = opt->setter(opt, val, curl);
1406 } else if (Z_TYPE_P(val) != IS_NULL) {
1407 rv = php_http_options_apply(&opt->suboptions, Z_ARRVAL_P(val), curl);
1408 }
1409 break;
1410
1411 default:
1412 if (opt->setter) {
1413 rv = opt->setter(opt, val, curl);
1414 } else {
1415 rv = FAILURE;
1416 }
1417 break;
1418 }
1419 if (rv != SUCCESS) {
1420 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Could not set option %s", opt->name.s);
1421 }
1422 return rv;
1423 }
1424
1425
1426 /* client ops */
1427
1428 static STATUS php_http_client_curl_handler_reset(php_http_client_curl_handler_t *curl)
1429 {
1430 CURL *ch = curl->handle;
1431 php_http_curle_storage_t *st;
1432
1433 if ((st = php_http_curle_get_storage(ch))) {
1434 if (st->url) {
1435 pefree(st->url, 1);
1436 st->url = NULL;
1437 }
1438 if (st->cookiestore) {
1439 pefree(st->cookiestore, 1);
1440 st->cookiestore = NULL;
1441 }
1442 st->errorbuffer[0] = '\0';
1443 }
1444
1445 curl_easy_setopt(ch, CURLOPT_URL, NULL);
1446 /* libcurl < 7.19.6 does not clear auth info with USERPWD set to NULL */
1447 #if PHP_HTTP_CURL_VERSION(7,19,1)
1448 curl_easy_setopt(ch, CURLOPT_PROXYUSERNAME, NULL);
1449 curl_easy_setopt(ch, CURLOPT_PROXYPASSWORD, NULL);
1450 curl_easy_setopt(ch, CURLOPT_USERNAME, NULL);
1451 curl_easy_setopt(ch, CURLOPT_PASSWORD, NULL);
1452 #endif
1453
1454 #if PHP_HTTP_CURL_VERSION(7,21,3)
1455 if (curl->options.resolve) {
1456 curl_slist_free_all(curl->options.resolve);
1457 curl->options.resolve = NULL;
1458 }
1459 #endif
1460 curl->options.retry.count = 0;
1461 curl->options.retry.delay = 0;
1462 curl->options.redirects = 0;
1463 curl->options.encode_cookies = 1;
1464
1465 if (curl->options.headers) {
1466 curl_slist_free_all(curl->options.headers);
1467 curl->options.headers = NULL;
1468 }
1469
1470 php_http_buffer_reset(&curl->options.cookies);
1471 php_http_buffer_reset(&curl->options.ranges);
1472
1473 return SUCCESS;
1474 }
1475
1476 static php_http_client_curl_handler_t *php_http_client_curl_handler_init(php_http_client_t *h, php_resource_factory_t *rf)
1477 {
1478 void *handle;
1479 php_http_client_curl_handler_t *handler;
1480 TSRMLS_FETCH_FROM_CTX(h->ts);
1481
1482 if (!(handle = php_resource_factory_handle_ctor(rf, NULL TSRMLS_CC))) {
1483 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to initialize curl handle");
1484 return NULL;
1485 }
1486
1487 handler = ecalloc(1, sizeof(*handler));
1488 handler->rf = rf;
1489 handler->client = h;
1490 handler->handle = handle;
1491 handler->request.buffer = php_http_buffer_init(NULL);
1492 handler->request.parser = php_http_message_parser_init(NULL TSRMLS_CC);
1493 handler->request.message = php_http_message_init(NULL, 0, NULL TSRMLS_CC);
1494 handler->response.buffer = php_http_buffer_init(NULL);
1495 handler->response.parser = php_http_message_parser_init(NULL TSRMLS_CC);
1496 handler->response.message = php_http_message_init(NULL, 0, NULL TSRMLS_CC);
1497 php_http_buffer_init(&handler->options.cookies);
1498 php_http_buffer_init(&handler->options.ranges);
1499 zend_hash_init(&handler->options.cache, 0, NULL, ZVAL_PTR_DTOR, 0);
1500
1501 #if defined(ZTS)
1502 curl_easy_setopt(handle, CURLOPT_NOSIGNAL, 1L);
1503 #endif
1504 curl_easy_setopt(handle, CURLOPT_HEADER, 0L);
1505 curl_easy_setopt(handle, CURLOPT_FILETIME, 1L);
1506 curl_easy_setopt(handle, CURLOPT_AUTOREFERER, 1L);
1507 curl_easy_setopt(handle, CURLOPT_VERBOSE, 1L);
1508 curl_easy_setopt(handle, CURLOPT_NOPROGRESS, 0L);
1509 curl_easy_setopt(handle, CURLOPT_HEADERFUNCTION, NULL);
1510 curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, php_http_curle_dummy_callback);
1511 curl_easy_setopt(handle, CURLOPT_DEBUGFUNCTION, php_http_curle_raw_callback);
1512 curl_easy_setopt(handle, CURLOPT_READFUNCTION, php_http_curle_read_callback);
1513 curl_easy_setopt(handle, CURLOPT_IOCTLFUNCTION, php_http_curle_ioctl_callback);
1514 #if PHP_HTTP_CURL_VERSION(7,32,0)
1515 curl_easy_setopt(handle, CURLOPT_XFERINFOFUNCTION, php_http_curle_xferinfo_callback);
1516 curl_easy_setopt(handle, CURLOPT_XFERINFODATA, handler);
1517 #else
1518 curl_easy_setopt(handle, CURLOPT_PROGRESSFUNCTION, php_http_curle_progress_callback);
1519 curl_easy_setopt(handle, CURLOPT_PROGRESSDATA, handler);
1520 #endif
1521 curl_easy_setopt(handle, CURLOPT_DEBUGDATA, handler);
1522
1523 php_http_client_curl_handler_reset(handler);
1524
1525 return handler;
1526 }
1527
1528
1529 static STATUS php_http_client_curl_handler_prepare(php_http_client_curl_handler_t *curl, php_http_client_enqueue_t *enqueue)
1530 {
1531 size_t body_size;
1532 php_http_message_t *msg = enqueue->request;
1533 php_http_curle_storage_t *storage = php_http_curle_get_storage(curl->handle);
1534 TSRMLS_FETCH_FROM_CTX(curl->client->ts);
1535
1536 /* request url */
1537 if (!PHP_HTTP_INFO(msg).request.url) {
1538 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot request empty URL");
1539 return FAILURE;
1540 }
1541 storage->errorbuffer[0] = '\0';
1542 if (storage->url) {
1543 pefree(storage->url, 1);
1544 }
1545 storage->url = pestrdup(PHP_HTTP_INFO(msg).request.url, 1);
1546 curl_easy_setopt(curl->handle, CURLOPT_URL, storage->url);
1547
1548 /* request method */
1549 switch (php_http_select_str(PHP_HTTP_INFO(msg).request.method, 4, "GET", "HEAD", "POST", "PUT")) {
1550 case 0:
1551 curl_easy_setopt(curl->handle, CURLOPT_HTTPGET, 1L);
1552 break;
1553
1554 case 1:
1555 curl_easy_setopt(curl->handle, CURLOPT_NOBODY, 1L);
1556 break;
1557
1558 case 2:
1559 curl_easy_setopt(curl->handle, CURLOPT_POST, 1L);
1560 break;
1561
1562 case 3:
1563 curl_easy_setopt(curl->handle, CURLOPT_UPLOAD, 1L);
1564 break;
1565
1566 default: {
1567 if (PHP_HTTP_INFO(msg).request.method) {
1568 curl_easy_setopt(curl->handle, CURLOPT_CUSTOMREQUEST, PHP_HTTP_INFO(msg).request.method);
1569 } else {
1570 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot use empty request method");
1571 return FAILURE;
1572 }
1573 break;
1574 }
1575 }
1576
1577 /* request headers */
1578 php_http_message_update_headers(msg);
1579 if (zend_hash_num_elements(&msg->hdrs)) {
1580 php_http_array_hashkey_t header_key = php_http_array_hashkey_init(0);
1581 zval **header_val;
1582 HashPosition pos;
1583 php_http_buffer_t header;
1584
1585 php_http_buffer_init(&header);
1586 FOREACH_HASH_KEYVAL(pos, &msg->hdrs, header_key, header_val) {
1587 if (header_key.type == HASH_KEY_IS_STRING) {
1588 zval *header_cpy = php_http_ztyp(IS_STRING, *header_val);
1589
1590 php_http_buffer_appendf(&header, "%s: %s", header_key.str, Z_STRVAL_P(header_cpy));
1591 php_http_buffer_fix(&header);
1592 curl->options.headers = curl_slist_append(curl->options.headers, header.data);
1593 php_http_buffer_reset(&header);
1594
1595 zval_ptr_dtor(&header_cpy);
1596 }
1597 }
1598 php_http_buffer_dtor(&header);
1599 }
1600 curl_easy_setopt(curl->handle, CURLOPT_HTTPHEADER, curl->options.headers);
1601
1602 /* attach request body */
1603 if ((body_size = php_http_message_body_size(msg->body))) {
1604 /* RFC2616, section 4.3 (para. 4) states that »a message-body MUST NOT be included in a request if the
1605 * specification of the request method (section 5.1.1) does not allow sending an entity-body in request.«
1606 * Following the clause in section 5.1.1 (para. 2) that request methods »MUST be implemented with the
1607 * same semantics as those specified in section 9« reveal that not any single defined HTTP/1.1 method
1608 * does not allow a request body.
1609 */
1610 php_stream_rewind(php_http_message_body_stream(msg->body));
1611 curl_easy_setopt(curl->handle, CURLOPT_IOCTLDATA, msg->body);
1612 curl_easy_setopt(curl->handle, CURLOPT_READDATA, msg->body);
1613 curl_easy_setopt(curl->handle, CURLOPT_INFILESIZE, body_size);
1614 curl_easy_setopt(curl->handle, CURLOPT_POSTFIELDSIZE, body_size);
1615 } else {
1616 curl_easy_setopt(curl->handle, CURLOPT_IOCTLDATA, NULL);
1617 curl_easy_setopt(curl->handle, CURLOPT_READDATA, NULL);
1618 curl_easy_setopt(curl->handle, CURLOPT_INFILESIZE, 0L);
1619 curl_easy_setopt(curl->handle, CURLOPT_POSTFIELDSIZE, 0L);
1620 }
1621
1622 php_http_options_apply(&php_http_curle_options, enqueue->options, curl);
1623
1624 return SUCCESS;
1625 }
1626
1627 static void php_http_client_curl_handler_dtor(php_http_client_curl_handler_t *handler)
1628 {
1629 TSRMLS_FETCH_FROM_CTX(handler->client->ts);
1630
1631 curl_easy_setopt(handler->handle, CURLOPT_NOPROGRESS, 1L);
1632 #if PHP_HTTP_CURL_VERSION(7,32,0)
1633 curl_easy_setopt(handler->handle, CURLOPT_XFERINFOFUNCTION, NULL);
1634 #else
1635 curl_easy_setopt(handler->handle, CURLOPT_PROGRESSFUNCTION, NULL);
1636 #endif
1637 curl_easy_setopt(handler->handle, CURLOPT_VERBOSE, 0L);
1638 curl_easy_setopt(handler->handle, CURLOPT_DEBUGFUNCTION, NULL);
1639
1640 php_resource_factory_handle_dtor(handler->rf, handler->handle TSRMLS_CC);
1641 php_resource_factory_free(&handler->rf);
1642
1643 php_http_message_parser_free(&handler->request.parser);
1644 php_http_message_free(&handler->request.message);
1645 php_http_buffer_free(&handler->request.buffer);
1646 php_http_message_parser_free(&handler->response.parser);
1647 php_http_message_free(&handler->response.message);
1648 php_http_buffer_free(&handler->response.buffer);
1649 php_http_buffer_dtor(&handler->options.ranges);
1650 php_http_buffer_dtor(&handler->options.cookies);
1651 zend_hash_destroy(&handler->options.cache);
1652
1653 if (handler->options.headers) {
1654 curl_slist_free_all(handler->options.headers);
1655 handler->options.headers = NULL;
1656 }
1657
1658 efree(handler);
1659 }
1660
1661 static php_http_client_t *php_http_client_curl_init(php_http_client_t *h, void *handle)
1662 {
1663 php_http_client_curl_t *curl;
1664 TSRMLS_FETCH_FROM_CTX(h->ts);
1665
1666 if (!handle && !(handle = php_resource_factory_handle_ctor(h->rf, NULL TSRMLS_CC))) {
1667 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to initialize curl handle");
1668 return NULL;
1669 }
1670
1671 curl = ecalloc(1, sizeof(*curl));
1672 curl->handle = handle;
1673 curl->unfinished = 0;
1674 h->ctx = curl;
1675
1676 return h;
1677 }
1678
1679 static void php_http_client_curl_dtor(php_http_client_t *h)
1680 {
1681 php_http_client_curl_t *curl = h->ctx;
1682 TSRMLS_FETCH_FROM_CTX(h->ts);
1683
1684 #if PHP_HTTP_HAVE_EVENT
1685 if (curl->timeout) {
1686 efree(curl->timeout);
1687 curl->timeout = NULL;
1688 }
1689 #endif
1690 curl->unfinished = 0;
1691
1692 php_resource_factory_handle_dtor(h->rf, curl->handle TSRMLS_CC);
1693
1694 efree(curl);
1695 h->ctx = NULL;
1696 }
1697
1698 static void queue_dtor(php_http_client_enqueue_t *e)
1699 {
1700 php_http_client_curl_handler_t *handler = e->opaque;
1701
1702 if (handler->queue.dtor) {
1703 e->opaque = handler->queue.opaque;
1704 handler->queue.dtor(e);
1705 }
1706 php_http_client_curl_handler_dtor(handler);
1707 }
1708
1709 static php_resource_factory_t *create_rf(const char *url TSRMLS_DC)
1710 {
1711 php_url *purl;
1712 php_resource_factory_t *rf = NULL;
1713
1714 if (!url || !*url) {
1715 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot request empty URL");
1716 return NULL;
1717 }
1718
1719 purl = php_url_parse(url);
1720
1721 if (!purl) {
1722 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not parse URL '%s'", url);
1723 return NULL;
1724 } else {
1725 char *id_str = NULL;
1726 size_t id_len = spprintf(&id_str, 0, "%s:%d", STR_PTR(purl->host), purl->port ? purl->port : 80);
1727 php_persistent_handle_factory_t *pf = php_persistent_handle_concede(NULL, ZEND_STRL("http\\Client\\Curl\\Request"), id_str, id_len, NULL, NULL TSRMLS_CC);
1728
1729 if (pf) {
1730 rf = php_resource_factory_init(NULL, php_persistent_handle_get_resource_factory_ops(), pf, (void (*)(void*)) php_persistent_handle_abandon);
1731 }
1732
1733 php_url_free(purl);
1734 efree(id_str);
1735 }
1736
1737 if (!rf) {
1738 rf = php_resource_factory_init(NULL, &php_http_curle_resource_factory_ops, NULL, NULL);
1739 }
1740
1741 return rf;
1742 }
1743
1744 static STATUS php_http_client_curl_enqueue(php_http_client_t *h, php_http_client_enqueue_t *enqueue)
1745 {
1746 CURLMcode rs;
1747 php_http_client_curl_t *curl = h->ctx;
1748 php_http_client_curl_handler_t *handler;
1749 php_http_client_progress_state_t *progress;
1750 php_resource_factory_t *rf;
1751 TSRMLS_FETCH_FROM_CTX(h->ts);
1752
1753 rf = create_rf(enqueue->request->http.info.request.url TSRMLS_CC);
1754 if (!rf) {
1755 return FAILURE;
1756 }
1757
1758 handler = php_http_client_curl_handler_init(h, rf);
1759 if (!handler) {
1760 return FAILURE;
1761 }
1762
1763 if (SUCCESS != php_http_client_curl_handler_prepare(handler, enqueue)) {
1764 php_http_client_curl_handler_dtor(handler);
1765 return FAILURE;
1766 }
1767
1768 handler->queue = *enqueue;
1769 enqueue->opaque = handler;
1770 enqueue->dtor = queue_dtor;
1771
1772 if (CURLM_OK == (rs = curl_multi_add_handle(curl->handle, handler->handle))) {
1773 zend_llist_add_element(&h->requests, enqueue);
1774 ++curl->unfinished;
1775
1776 if (h->callback.progress.func && SUCCESS == php_http_client_getopt(h, PHP_HTTP_CLIENT_OPT_PROGRESS_INFO, enqueue->request, &progress)) {
1777 progress->info = "start";
1778 h->callback.progress.func(h->callback.progress.arg, h, &handler->queue, progress);
1779 progress->started = 1;
1780 }
1781
1782 return SUCCESS;
1783 } else {
1784 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not enqueue request: %s", curl_multi_strerror(rs));
1785 return FAILURE;
1786 }
1787 }
1788
1789 static STATUS php_http_client_curl_dequeue(php_http_client_t *h, php_http_client_enqueue_t *enqueue)
1790 {
1791 CURLMcode rs;
1792 php_http_client_curl_t *curl = h->ctx;
1793 php_http_client_curl_handler_t *handler = enqueue->opaque;
1794 TSRMLS_FETCH_FROM_CTX(h->ts);
1795
1796 if (CURLM_OK == (rs = curl_multi_remove_handle(curl->handle, handler->handle))) {
1797 zend_llist_del_element(&h->requests, handler->handle, (int (*)(void *, void *)) compare_queue);
1798 return SUCCESS;
1799 } else {
1800 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not dequeue request: %s", curl_multi_strerror(rs));
1801 }
1802
1803 return FAILURE;
1804 }
1805
1806 static void php_http_client_curl_reset(php_http_client_t *h)
1807 {
1808 zend_llist_element *next_el, *this_el;
1809
1810 for (this_el = h->requests.head; this_el; this_el = next_el) {
1811 next_el = this_el->next;
1812 php_http_client_curl_dequeue(h, (void *) this_el->data);
1813 }
1814 }
1815
1816 #ifdef PHP_WIN32
1817 # define SELECT_ERROR SOCKET_ERROR
1818 #else
1819 # define SELECT_ERROR -1
1820 #endif
1821
1822 static STATUS php_http_client_curl_wait(php_http_client_t *h, struct timeval *custom_timeout)
1823 {
1824 int MAX;
1825 fd_set R, W, E;
1826 struct timeval timeout;
1827 php_http_client_curl_t *curl = h->ctx;
1828
1829 #if PHP_HTTP_HAVE_EVENT
1830 if (curl->useevents) {
1831 TSRMLS_FETCH_FROM_CTX(h->ts);
1832
1833 php_error_docref(NULL TSRMLS_CC, E_WARNING, "not implemented");
1834 return FAILURE;
1835 }
1836 #endif
1837
1838 FD_ZERO(&R);
1839 FD_ZERO(&W);
1840 FD_ZERO(&E);
1841
1842 if (CURLM_OK == curl_multi_fdset(curl->handle, &R, &W, &E, &MAX)) {
1843 if (custom_timeout && timerisset(custom_timeout)) {
1844 timeout = *custom_timeout;
1845 } else {
1846 long max_tout = 1000;
1847
1848 if ((CURLM_OK == curl_multi_timeout(curl->handle, &max_tout)) && (max_tout > 0)) {
1849 timeout.tv_sec = max_tout / 1000;
1850 timeout.tv_usec = (max_tout % 1000) * 1000;
1851 } else {
1852 timeout.tv_sec = 0;
1853 timeout.tv_usec = 1000;
1854 }
1855 }
1856
1857 if (MAX == -1) {
1858 php_http_sleep((double) timeout.tv_sec + (double) (timeout.tv_usec / PHP_HTTP_MCROSEC));
1859 return SUCCESS;
1860 } else if (SELECT_ERROR != select(MAX + 1, &R, &W, &E, &timeout)) {
1861 return SUCCESS;
1862 }
1863 }
1864 return FAILURE;
1865 }
1866
1867 static int php_http_client_curl_once(php_http_client_t *h)
1868 {
1869 php_http_client_curl_t *curl = h->ctx;
1870
1871 #if PHP_HTTP_HAVE_EVENT
1872 if (curl->useevents) {
1873 TSRMLS_FETCH_FROM_CTX(h->ts);
1874 php_error_docref(NULL TSRMLS_CC, E_WARNING, "not implemented");
1875 return FAILURE;
1876 }
1877 #endif
1878
1879 while (CURLM_CALL_MULTI_PERFORM == curl_multi_perform(curl->handle, &curl->unfinished));
1880
1881 php_http_curlm_responsehandler(h);
1882
1883 return curl->unfinished;
1884
1885 }
1886
1887 static STATUS php_http_client_curl_exec(php_http_client_t *h)
1888 {
1889 #if PHP_HTTP_HAVE_EVENT
1890 php_http_client_curl_t *curl = h->ctx;
1891 #endif
1892 TSRMLS_FETCH_FROM_CTX(h->ts);
1893
1894 #if PHP_HTTP_HAVE_EVENT
1895 if (curl->useevents) {
1896 php_http_curlm_timeout_callback(CURL_SOCKET_TIMEOUT, /*EV_READ|EV_WRITE*/0, h);
1897 do {
1898 int ev_rc = event_base_dispatch(PHP_HTTP_G->curl.event_base);
1899
1900 #if DBG_EVENTS
1901 fprintf(stderr, "%c", "X.0"[ev_rc+1]);
1902 #endif
1903
1904 if (ev_rc < 0) {
1905 php_error_docref(NULL TSRMLS_CC, E_ERROR, "Error in event_base_dispatch()");
1906 return FAILURE;
1907 }
1908 } while (curl->unfinished);
1909 } else
1910 #endif
1911 {
1912 while (php_http_client_curl_once(h)) {
1913 if (SUCCESS != php_http_client_curl_wait(h, NULL)) {
1914 #ifdef PHP_WIN32
1915 /* see http://msdn.microsoft.com/library/en-us/winsock/winsock/windows_sockets_error_codes_2.asp */
1916 php_error_docref(NULL TSRMLS_CC, E_WARNING, "WinSock error: %d", WSAGetLastError());
1917 #else
1918 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", strerror(errno));
1919 #endif
1920 return FAILURE;
1921 }
1922 }
1923 }
1924
1925 return SUCCESS;
1926 }
1927
1928 static STATUS php_http_client_curl_setopt(php_http_client_t *h, php_http_client_setopt_opt_t opt, void *arg)
1929 {
1930 php_http_client_curl_t *curl = h->ctx;
1931
1932 switch (opt) {
1933 case PHP_HTTP_CLIENT_OPT_ENABLE_PIPELINING:
1934 if (CURLM_OK != curl_multi_setopt(curl->handle, CURLMOPT_PIPELINING, (long) *((zend_bool *) arg))) {
1935 return FAILURE;
1936 }
1937 break;
1938
1939 case PHP_HTTP_CLIENT_OPT_USE_EVENTS:
1940 #if PHP_HTTP_HAVE_EVENT
1941 if ((curl->useevents = *((zend_bool *) arg))) {
1942 if (!curl->timeout) {
1943 curl->timeout = ecalloc(1, sizeof(struct event));
1944 }
1945 curl_multi_setopt(curl->handle, CURLMOPT_SOCKETDATA, h);
1946 curl_multi_setopt(curl->handle, CURLMOPT_SOCKETFUNCTION, php_http_curlm_socket_callback);
1947 curl_multi_setopt(curl->handle, CURLMOPT_TIMERDATA, h);
1948 curl_multi_setopt(curl->handle, CURLMOPT_TIMERFUNCTION, php_http_curlm_timer_callback);
1949 } else {
1950 curl_multi_setopt(curl->handle, CURLMOPT_SOCKETDATA, NULL);
1951 curl_multi_setopt(curl->handle, CURLMOPT_SOCKETFUNCTION, NULL);
1952 curl_multi_setopt(curl->handle, CURLMOPT_TIMERDATA, NULL);
1953 curl_multi_setopt(curl->handle, CURLMOPT_TIMERFUNCTION, NULL);
1954 }
1955 break;
1956 #endif
1957
1958 default:
1959 return FAILURE;
1960 }
1961 return SUCCESS;
1962 }
1963
1964 static STATUS php_http_client_curl_getopt(php_http_client_t *h, php_http_client_getopt_opt_t opt, void *arg, void **res)
1965 {
1966 php_http_client_enqueue_t *enqueue;
1967
1968 switch (opt) {
1969 case PHP_HTTP_CLIENT_OPT_PROGRESS_INFO:
1970 if ((enqueue = php_http_client_enqueued(h, arg, NULL))) {
1971 php_http_client_curl_handler_t *handler = enqueue->opaque;
1972
1973 *((php_http_client_progress_state_t **) res) = &handler->progress;
1974 return SUCCESS;
1975 }
1976 break;
1977
1978 case PHP_HTTP_CLIENT_OPT_TRANSFER_INFO:
1979 if ((enqueue = php_http_client_enqueued(h, arg, NULL))) {
1980 php_http_client_curl_handler_t *handler = enqueue->opaque;
1981
1982 php_http_curle_get_info(handler->handle, *(HashTable **) res);
1983 return SUCCESS;
1984 }
1985 break;
1986
1987 default:
1988 break;
1989 }
1990
1991 return FAILURE;
1992 }
1993
1994 static php_http_client_ops_t php_http_client_curl_ops = {
1995 &php_http_curlm_resource_factory_ops,
1996 php_http_client_curl_init,
1997 NULL /* copy */,
1998 php_http_client_curl_dtor,
1999 php_http_client_curl_reset,
2000 php_http_client_curl_exec,
2001 php_http_client_curl_wait,
2002 php_http_client_curl_once,
2003 php_http_client_curl_enqueue,
2004 php_http_client_curl_dequeue,
2005 php_http_client_curl_setopt,
2006 php_http_client_curl_getopt
2007 };
2008
2009 php_http_client_ops_t *php_http_client_curl_get_ops(void)
2010 {
2011 return &php_http_client_curl_ops;
2012 }
2013
2014 PHP_MINIT_FUNCTION(http_client_curl)
2015 {
2016 php_http_options_t *options;
2017 php_http_client_driver_t driver = {
2018 ZEND_STRL("curl"),
2019 &php_http_client_curl_ops
2020 };
2021
2022 if (SUCCESS != php_http_client_driver_add(&driver)) {
2023 return FAILURE;
2024 }
2025
2026 if (SUCCESS != php_persistent_handle_provide(ZEND_STRL("http\\Client\\Curl"), &php_http_curlm_resource_factory_ops, NULL, NULL TSRMLS_CC)) {
2027 return FAILURE;
2028 }
2029 if (SUCCESS != php_persistent_handle_provide(ZEND_STRL("http\\Client\\Curl\\Request"), &php_http_curle_resource_factory_ops, NULL, NULL TSRMLS_CC)) {
2030 return FAILURE;
2031 }
2032
2033 if ((options = php_http_options_init(&php_http_curle_options, 1))) {
2034 options->getter = php_http_curle_get_option;
2035 options->setter = php_http_curle_set_option;
2036
2037 php_http_curle_options_init(options TSRMLS_CC);
2038 }
2039
2040 /*
2041 * HTTP Protocol Version Constants
2042 */
2043 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "HTTP_VERSION_1_0", CURL_HTTP_VERSION_1_0, CONST_CS|CONST_PERSISTENT);
2044 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "HTTP_VERSION_1_1", CURL_HTTP_VERSION_1_1, CONST_CS|CONST_PERSISTENT);
2045 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "HTTP_VERSION_ANY", CURL_HTTP_VERSION_NONE, CONST_CS|CONST_PERSISTENT);
2046
2047 /*
2048 * SSL Version Constants
2049 */
2050 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_TLSv1", CURL_SSLVERSION_TLSv1, CONST_CS|CONST_PERSISTENT);
2051 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_SSLv2", CURL_SSLVERSION_SSLv2, CONST_CS|CONST_PERSISTENT);
2052 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_SSLv3", CURL_SSLVERSION_SSLv3, CONST_CS|CONST_PERSISTENT);
2053 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_ANY", CURL_SSLVERSION_DEFAULT, CONST_CS|CONST_PERSISTENT);
2054
2055 /*
2056 * DNS IPvX resolving
2057 */
2058 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "IPRESOLVE_V4", CURL_IPRESOLVE_V4, CONST_CS|CONST_PERSISTENT);
2059 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "IPRESOLVE_V6", CURL_IPRESOLVE_V6, CONST_CS|CONST_PERSISTENT);
2060 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "IPRESOLVE_ANY", CURL_IPRESOLVE_WHATEVER, CONST_CS|CONST_PERSISTENT);
2061
2062 /*
2063 * Auth Constants
2064 */
2065 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_BASIC", CURLAUTH_BASIC, CONST_CS|CONST_PERSISTENT);
2066 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_DIGEST", CURLAUTH_DIGEST, CONST_CS|CONST_PERSISTENT);
2067 #if PHP_HTTP_CURL_VERSION(7,19,3)
2068 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_DIGEST_IE", CURLAUTH_DIGEST_IE, CONST_CS|CONST_PERSISTENT);
2069 #endif
2070 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_NTLM", CURLAUTH_NTLM, CONST_CS|CONST_PERSISTENT);
2071 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_GSSNEG", CURLAUTH_GSSNEGOTIATE, CONST_CS|CONST_PERSISTENT);
2072 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_ANY", CURLAUTH_ANY, CONST_CS|CONST_PERSISTENT);
2073
2074 /*
2075 * Proxy Type Constants
2076 */
2077 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "PROXY_SOCKS4", CURLPROXY_SOCKS4, CONST_CS|CONST_PERSISTENT);
2078 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "PROXY_SOCKS4A", CURLPROXY_SOCKS5, CONST_CS|CONST_PERSISTENT);
2079 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "PROXY_SOCKS5_HOSTNAME", CURLPROXY_SOCKS5, CONST_CS|CONST_PERSISTENT);
2080 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "PROXY_SOCKS5", CURLPROXY_SOCKS5, CONST_CS|CONST_PERSISTENT);
2081 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "PROXY_HTTP", CURLPROXY_HTTP, CONST_CS|CONST_PERSISTENT);
2082 # if PHP_HTTP_CURL_VERSION(7,19,4)
2083 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "PROXY_HTTP_1_0", CURLPROXY_HTTP_1_0, CONST_CS|CONST_PERSISTENT);
2084 # endif
2085
2086 /*
2087 * Post Redirection Constants
2088 */
2089 #if PHP_HTTP_CURL_VERSION(7,19,1)
2090 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "POSTREDIR_301", CURL_REDIR_POST_301, CONST_CS|CONST_PERSISTENT);
2091 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "POSTREDIR_302", CURL_REDIR_POST_302, CONST_CS|CONST_PERSISTENT);
2092 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "POSTREDIR_ALL", CURL_REDIR_POST_ALL, CONST_CS|CONST_PERSISTENT);
2093 #endif
2094
2095 return SUCCESS;
2096 }
2097
2098 PHP_MSHUTDOWN_FUNCTION(http_client_curl)
2099 {
2100 php_persistent_handle_cleanup(ZEND_STRL("http\\Client\\Curl"), NULL, 0 TSRMLS_CC);
2101 php_persistent_handle_cleanup(ZEND_STRL("http\\Client\\Curl\\Request"), NULL, 0 TSRMLS_CC);
2102
2103 php_http_options_dtor(&php_http_curle_options);
2104
2105 return SUCCESS;
2106 }
2107
2108 #if PHP_HTTP_HAVE_EVENT
2109 PHP_RINIT_FUNCTION(http_client_curl)
2110 {
2111 if (!PHP_HTTP_G->curl.event_base && !(PHP_HTTP_G->curl.event_base = event_base_new())) {
2112 return FAILURE;
2113 }
2114 return SUCCESS;
2115 }
2116 PHP_RSHUTDOWN_FUNCTION(http_client_curl)
2117 {
2118 if (PHP_HTTP_G->curl.event_base) {
2119 event_base_free(PHP_HTTP_G->curl.event_base);
2120 PHP_HTTP_G->curl.event_base = NULL;
2121 }
2122 return SUCCESS;
2123 }
2124 #endif /* PHP_HTTP_HAVE_EVENT */
2125
2126 #endif /* PHP_HTTP_HAVE_CURL */
2127
2128 /*
2129 * Local variables:
2130 * tab-width: 4
2131 * c-basic-offset: 4
2132 * End:
2133 * vim600: noet sw=4 ts=4 fdm=marker
2134 * vim<600: noet sw=4 ts=4
2135 */