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