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