b4f2d04db75655a1bbf492f6a7f528e5c662f4e4
[m6w6/ext-http] / src / 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 #include "php_http_client_curl_event.h"
16 #include "php_http_client_curl_user.h"
17
18 #if PHP_HTTP_HAVE_LIBCURL
19
20 #if PHP_HTTP_HAVE_LIBCURL_OPENSSL
21 # include <openssl/ssl.h>
22 #endif
23 #if PHP_HTTP_HAVE_LIBCURL_GNUTLS
24 # include <gnutls/gnutls.h>
25 #endif
26
27 typedef struct php_http_client_curl_handler {
28 CURL *handle;
29 php_resource_factory_t *rf;
30 php_http_client_t *client;
31 php_http_client_progress_state_t progress;
32 php_http_client_enqueue_t queue;
33
34 struct {
35 php_http_buffer_t headers;
36 php_http_message_body_t *body;
37 } response;
38
39 struct {
40 HashTable cache;
41
42 struct curl_slist *proxyheaders;
43 struct curl_slist *headers;
44 struct curl_slist *resolve;
45 php_http_buffer_t cookies;
46 php_http_buffer_t ranges;
47
48 struct {
49 uint32_t count;
50 double delay;
51 } retry;
52
53 long redirects;
54 unsigned range_request:1;
55 unsigned encode_cookies:1;
56
57 } options;
58
59 } php_http_client_curl_handler_t;
60
61 typedef struct php_http_curle_storage {
62 char *url;
63 char *cookiestore;
64 CURLcode errorcode;
65 char errorbuffer[0x100];
66 } php_http_curle_storage_t;
67
68 static inline php_http_curle_storage_t *php_http_curle_get_storage(CURL *ch) {
69 php_http_curle_storage_t *st = NULL;
70
71 curl_easy_getinfo(ch, CURLINFO_PRIVATE, &st);
72
73 if (!st) {
74 st = pecalloc(1, sizeof(*st), 1);
75 curl_easy_setopt(ch, CURLOPT_PRIVATE, st);
76 curl_easy_setopt(ch, CURLOPT_ERRORBUFFER, st->errorbuffer);
77 }
78
79 return st;
80 }
81
82 static void *php_http_curle_ctor(void *opaque, void *init_arg)
83 {
84 void *ch;
85
86 if ((ch = curl_easy_init())) {
87 php_http_curle_get_storage(ch);
88 return ch;
89 }
90 return NULL;
91 }
92
93 static void *php_http_curle_copy(void *opaque, void *handle)
94 {
95 void *ch;
96
97 if ((ch = curl_easy_duphandle(handle))) {
98 curl_easy_reset(ch);
99 php_http_curle_get_storage(ch);
100 return ch;
101 }
102 return NULL;
103 }
104
105 static void php_http_curle_dtor(void *opaque, void *handle)
106 {
107 php_http_curle_storage_t *st = php_http_curle_get_storage(handle);
108
109 curl_easy_cleanup(handle);
110
111 if (st) {
112 if (st->url) {
113 pefree(st->url, 1);
114 }
115 if (st->cookiestore) {
116 pefree(st->cookiestore, 1);
117 }
118 pefree(st, 1);
119 }
120 }
121
122 static php_resource_factory_ops_t php_http_curle_resource_factory_ops = {
123 php_http_curle_ctor,
124 php_http_curle_copy,
125 php_http_curle_dtor
126 };
127
128 static void *php_http_curlm_ctor(void *opaque, void *init_arg)
129 {
130 php_http_client_curl_handle_t *curl = calloc(1, sizeof(*curl));
131
132 if (!(curl->multi = curl_multi_init())) {
133 free(curl);
134 return NULL;
135 }
136 if (!(curl->share = curl_share_init())) {
137 curl_multi_cleanup(curl->multi);
138 free(curl);
139 return NULL;
140 }
141 curl_share_setopt(curl->share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE);
142 curl_share_setopt(curl->share, CURLSHOPT_SHARE, CURL_LOCK_DATA_SSL_SESSION);
143 return curl;
144 }
145
146 static void php_http_curlm_dtor(void *opaque, void *handle)
147 {
148 php_http_client_curl_handle_t *curl = handle;
149
150 curl_share_cleanup(curl->share);
151 curl_multi_cleanup(curl->multi);
152 free(handle);
153 }
154
155 static php_resource_factory_ops_t php_http_curlm_resource_factory_ops = {
156 php_http_curlm_ctor,
157 NULL,
158 php_http_curlm_dtor
159 };
160
161 /* curl callbacks */
162
163 static size_t php_http_curle_read_callback(void *data, size_t len, size_t n, void *ctx)
164 {
165 php_stream *s = php_http_message_body_stream(ctx);
166
167 if (s) {
168 return php_stream_read(s, data, len * n);
169 }
170 return 0;
171 }
172
173 #if PHP_HTTP_CURL_VERSION(7,32,0)
174 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)
175 #else
176 static int php_http_curle_progress_callback(void *ctx, double dltotal, double dlnow, double ultotal, double ulnow)
177 #endif
178 {
179 php_http_client_curl_handler_t *h = ctx;
180
181 if (h->progress.dl.total != dltotal
182 || h->progress.dl.now != dlnow
183 || h->progress.ul.total != ultotal
184 || h->progress.ul.now != ulnow
185 ) {
186 h->progress.dl.total = dltotal;
187 h->progress.dl.now = dlnow;
188 h->progress.ul.total = ultotal;
189 h->progress.ul.now = ulnow;
190 }
191
192 if (h->client->callback.progress.func) {
193 h->client->callback.progress.func(h->client->callback.progress.arg, h->client, &h->queue, &h->progress);
194 }
195
196 return 0;
197 }
198
199 static int php_http_curle_seek_callback(void *userdata, curl_off_t offset, int origin)
200 {
201 php_http_message_body_t *body = userdata;
202
203 if (!body) {
204 return 1;
205 }
206 if (0 == php_stream_seek(php_http_message_body_stream(body), offset, origin)) {
207 return 0;
208 }
209 return 2;
210 }
211
212 static int php_http_curle_raw_callback(CURL *ch, curl_infotype type, char *data, size_t length, void *ctx)
213 {
214 php_http_client_curl_handler_t *h = ctx;
215 unsigned utype = PHP_HTTP_CLIENT_DEBUG_INFO;
216
217 /* catch progress */
218 switch (type) {
219 case CURLINFO_TEXT:
220 if (data[0] == '-') {
221 goto text;
222 } else if (php_memnstr(data, ZEND_STRL("Adding handle:"), data + length)) {
223 h->progress.info = "setup";
224 } else if (php_memnstr(data, ZEND_STRL("addHandle"), data + length)) {
225 h->progress.info = "setup";
226 } else if (php_memnstr(data, ZEND_STRL("About to connect"), data + length)) {
227 h->progress.info = "resolve";
228 } else if (php_memnstr(data, ZEND_STRL("Trying"), data + length)) {
229 h->progress.info = "connect";
230 } else if (php_memnstr(data, ZEND_STRL("Found bundle for host"), data + length)) {
231 h->progress.info = "connect";
232 } else if (php_memnstr(data, ZEND_STRL("Connected"), data + length)) {
233 h->progress.info = "connected";
234 } else if (php_memnstr(data, ZEND_STRL("Re-using existing connection!"), data + length)) {
235 h->progress.info = "connected";
236 } else if (php_memnstr(data, ZEND_STRL("blacklisted"), data + length)) {
237 h->progress.info = "blacklist check";
238 } else if (php_memnstr(data, ZEND_STRL("TLS"), data + length)) {
239 h->progress.info = "ssl negotiation";
240 } else if (php_memnstr(data, ZEND_STRL("SSL"), data + length)) {
241 h->progress.info = "ssl negotiation";
242 } else if (php_memnstr(data, ZEND_STRL("certificate"), data + length)) {
243 h->progress.info = "ssl negotiation";
244 } else if (php_memnstr(data, ZEND_STRL("ALPN"), data + length)) {
245 h->progress.info = "alpn";
246 } else if (php_memnstr(data, ZEND_STRL("NPN"), data + length)) {
247 h->progress.info = "npn";
248 } else if (php_memnstr(data, ZEND_STRL("upload"), data + length)) {
249 h->progress.info = "uploaded";
250 } else if (php_memnstr(data, ZEND_STRL("left intact"), data + length)) {
251 h->progress.info = "not disconnected";
252 } else if (php_memnstr(data, ZEND_STRL("closed"), data + length)) {
253 h->progress.info = "disconnected";
254 } else if (php_memnstr(data, ZEND_STRL("Issue another request"), data + length)) {
255 h->progress.info = "redirect";
256 } else if (php_memnstr(data, ZEND_STRL("Operation timed out"), data + length)) {
257 h->progress.info = "timeout";
258 } else {
259 text:;
260 #if 0
261 h->progress.info = data;
262 data[length - 1] = '\0';
263 #endif
264 }
265 if (h->client->callback.progress.func) {
266 h->client->callback.progress.func(h->client->callback.progress.arg, h->client, &h->queue, &h->progress);
267 }
268 break;
269
270 case CURLINFO_HEADER_OUT:
271 utype |= PHP_HTTP_CLIENT_DEBUG_HEADER;
272 goto data_out;
273
274 case CURLINFO_SSL_DATA_OUT:
275 utype |= PHP_HTTP_CLIENT_DEBUG_SSL;
276 goto data_out;
277
278 case CURLINFO_DATA_OUT:
279 data_out:
280 utype |= PHP_HTTP_CLIENT_DEBUG_OUT;
281 h->progress.info = "send";
282 break;
283
284 case CURLINFO_HEADER_IN:
285 utype |= PHP_HTTP_CLIENT_DEBUG_HEADER;
286 goto data_in;
287
288 case CURLINFO_SSL_DATA_IN:
289 utype |= PHP_HTTP_CLIENT_DEBUG_SSL;
290 goto data_in;
291
292 case CURLINFO_DATA_IN:
293 data_in:
294 utype |= PHP_HTTP_CLIENT_DEBUG_IN;
295 h->progress.info = "receive";
296 break;
297
298 default:
299 break;
300 }
301
302 if (h->client->callback.debug.func) {
303 h->client->callback.debug.func(h->client->callback.debug.arg, h->client, &h->queue, utype, data, length);
304 }
305
306 #if 0
307 /* debug */
308 _dpf(type, data, length);
309 #endif
310
311 return 0;
312 }
313
314 static int php_http_curle_header_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_buffer_append(&h->response.headers, data, n * l);
319 }
320
321 static int php_http_curle_body_callback(char *data, size_t n, size_t l, void *arg)
322 {
323 php_http_client_curl_handler_t *h = arg;
324
325 return php_http_message_body_append(h->response.body, data, n*l);
326 }
327
328 static ZEND_RESULT_CODE php_http_curle_get_info(CURL *ch, HashTable *info)
329 {
330 char *c = NULL;
331 long l = 0;
332 double d = 0;
333 struct curl_slist *s = NULL, *p = NULL;
334 zval tmp;
335
336 ZVAL_NULL(&tmp);
337
338 /* BEGIN::CURLINFO */
339 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_EFFECTIVE_URL, &c)) {
340 ZVAL_STRING(&tmp, STR_PTR(c));
341 zend_hash_str_update(info, "effective_url", lenof("effective_url"), &tmp);
342 }
343 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_RESPONSE_CODE, &l)) {
344 ZVAL_LONG(&tmp, l);
345 zend_hash_str_update(info, "response_code", lenof("response_code"), &tmp);
346 }
347 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_TOTAL_TIME, &d)) {
348 ZVAL_DOUBLE(&tmp, d);
349 zend_hash_str_update(info, "total_time", lenof("total_time"), &tmp);
350 }
351 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_NAMELOOKUP_TIME, &d)) {
352 ZVAL_DOUBLE(&tmp, d);
353 zend_hash_str_update(info, "namelookup_time", lenof("namelookup_time"), &tmp);
354 }
355 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONNECT_TIME, &d)) {
356 ZVAL_DOUBLE(&tmp, d);
357 zend_hash_str_update(info, "connect_time", lenof("connect_time"), &tmp);
358 }
359 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PRETRANSFER_TIME, &d)) {
360 ZVAL_DOUBLE(&tmp, d);
361 zend_hash_str_update(info, "pretransfer_time", lenof("pretransfer_time"), &tmp);
362 }
363 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SIZE_UPLOAD, &d)) {
364 ZVAL_DOUBLE(&tmp, d);
365 zend_hash_str_update(info, "size_upload", lenof("size_upload"), &tmp);
366 }
367 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SIZE_DOWNLOAD, &d)) {
368 ZVAL_DOUBLE(&tmp, d);
369 zend_hash_str_update(info, "size_download", lenof("size_download"), &tmp);
370 }
371 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SPEED_DOWNLOAD, &d)) {
372 ZVAL_DOUBLE(&tmp, d);
373 zend_hash_str_update(info, "speed_download", lenof("speed_download"), &tmp);
374 }
375 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SPEED_UPLOAD, &d)) {
376 ZVAL_DOUBLE(&tmp, d);
377 zend_hash_str_update(info, "speed_upload", lenof("speed_upload"), &tmp);
378 }
379 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_HEADER_SIZE, &l)) {
380 ZVAL_LONG(&tmp, l);
381 zend_hash_str_update(info, "header_size", lenof("header_size"), &tmp);
382 }
383 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_REQUEST_SIZE, &l)) {
384 ZVAL_LONG(&tmp, l);
385 zend_hash_str_update(info, "request_size", lenof("request_size"), &tmp);
386 }
387 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SSL_VERIFYRESULT, &l)) {
388 ZVAL_LONG(&tmp, l);
389 zend_hash_str_update(info, "ssl_verifyresult", lenof("ssl_verifyresult"), &tmp);
390 }
391 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_FILETIME, &l)) {
392 ZVAL_LONG(&tmp, l);
393 zend_hash_str_update(info, "filetime", lenof("filetime"), &tmp);
394 }
395 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d)) {
396 ZVAL_DOUBLE(&tmp, d);
397 zend_hash_str_update(info, "content_length_download", lenof("content_length_download"), &tmp);
398 }
399 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONTENT_LENGTH_UPLOAD, &d)) {
400 ZVAL_DOUBLE(&tmp, d);
401 zend_hash_str_update(info, "content_length_upload", lenof("content_length_upload"), &tmp);
402 }
403 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_STARTTRANSFER_TIME, &d)) {
404 ZVAL_DOUBLE(&tmp, d);
405 zend_hash_str_update(info, "starttransfer_time", lenof("starttransfer_time"), &tmp);
406 }
407 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONTENT_TYPE, &c)) {
408 ZVAL_STRING(&tmp, STR_PTR(c));
409 zend_hash_str_update(info, "content_type", lenof("content_type"), &tmp);
410 }
411 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_REDIRECT_TIME, &d)) {
412 ZVAL_DOUBLE(&tmp, d);
413 zend_hash_str_update(info, "redirect_time", lenof("redirect_time"), &tmp);
414 }
415 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_REDIRECT_COUNT, &l)) {
416 ZVAL_LONG(&tmp, l);
417 zend_hash_str_update(info, "redirect_count", lenof("redirect_count"), &tmp);
418 }
419 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_HTTP_CONNECTCODE, &l)) {
420 ZVAL_LONG(&tmp, l);
421 zend_hash_str_update(info, "connect_code", lenof("connect_code"), &tmp);
422 }
423 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_HTTPAUTH_AVAIL, &l)) {
424 ZVAL_LONG(&tmp, l);
425 zend_hash_str_update(info, "httpauth_avail", lenof("httpauth_avail"), &tmp);
426 }
427 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PROXYAUTH_AVAIL, &l)) {
428 ZVAL_LONG(&tmp, l);
429 zend_hash_str_update(info, "proxyauth_avail", lenof("proxyauth_avail"), &tmp);
430 }
431 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_OS_ERRNO, &l)) {
432 ZVAL_LONG(&tmp, l);
433 zend_hash_str_update(info, "os_errno", lenof("os_errno"), &tmp);
434 }
435 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_NUM_CONNECTS, &l)) {
436 ZVAL_LONG(&tmp, l);
437 zend_hash_str_update(info, "num_connects", lenof("num_connects"), &tmp);
438 }
439 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SSL_ENGINES, &s)) {
440 array_init(&tmp);
441 for (p = s; p; p = p->next) {
442 if (p->data) {
443 add_next_index_string(&tmp, p->data);
444 }
445 }
446 zend_hash_str_update(info, "ssl_engines", lenof("ssl_engines"), &tmp);
447 curl_slist_free_all(s);
448 }
449 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_REDIRECT_URL, &c)) {
450 ZVAL_STRING(&tmp, STR_PTR(c));
451 zend_hash_str_update(info, "redirect_url", lenof("redirect_url"), &tmp);
452 }
453 #if PHP_HTTP_CURL_VERSION(7,19,0)
454 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PRIMARY_IP, &c)) {
455 ZVAL_STRING(&tmp, STR_PTR(c));
456 zend_hash_str_update(info, "primary_ip", lenof("primary_ip"), &tmp);
457 }
458 #endif
459 #if PHP_HTTP_CURL_VERSION(7,19,0)
460 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_APPCONNECT_TIME, &d)) {
461 ZVAL_DOUBLE(&tmp, d);
462 zend_hash_str_update(info, "appconnect_time", lenof("appconnect_time"), &tmp);
463 }
464 #endif
465 #if PHP_HTTP_CURL_VERSION(7,19,4)
466 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONDITION_UNMET, &l)) {
467 ZVAL_LONG(&tmp, l);
468 zend_hash_str_update(info, "condition_unmet", lenof("condition_unmet"), &tmp);
469 }
470 #endif
471 #if PHP_HTTP_CURL_VERSION(7,21,0)
472 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PRIMARY_PORT, &l)) {
473 ZVAL_LONG(&tmp, l);
474 zend_hash_str_update(info, "primary_port", lenof("primary_port"), &tmp);
475 }
476 #endif
477 #if PHP_HTTP_CURL_VERSION(7,21,0)
478 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_LOCAL_IP, &c)) {
479 ZVAL_STRING(&tmp, STR_PTR(c));
480 zend_hash_str_update(info, "local_ip", lenof("local_ip"), &tmp);
481 }
482 #endif
483 #if PHP_HTTP_CURL_VERSION(7,21,0)
484 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_LOCAL_PORT, &l)) {
485 ZVAL_LONG(&tmp, l);
486 zend_hash_str_update(info, "local_port", lenof("local_port"), &tmp);
487 }
488 #endif
489 #if PHP_HTTP_CURL_VERSION(7,50,0)
490 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_HTTP_VERSION, &l)) {
491 ZVAL_LONG(&tmp, l);
492 zend_hash_str_update(info, "http_version", lenof("http_version"), &tmp);
493 }
494 #endif
495 #if PHP_HTTP_CURL_VERSION(7,52,0)
496 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PROXY_SSL_VERIFYRESULT, &l)) {
497 ZVAL_LONG(&tmp, l);
498 zend_hash_str_update(info, "proxy_ssl_verifyresult", lenof("proxy_ssl_verifyresult"), &tmp);
499 }
500 #endif
501 #if PHP_HTTP_CURL_VERSION(7,52,0)
502 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PROTOCOL, &l)) {
503 ZVAL_LONG(&tmp, l);
504 zend_hash_str_update(info, "protocol", lenof("protocol"), &tmp);
505 }
506 #endif
507 #if PHP_HTTP_CURL_VERSION(7,52,0)
508 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SCHEME, &c)) {
509 ZVAL_STRING(&tmp, STR_PTR(c));
510 zend_hash_str_update(info, "scheme", lenof("scheme"), &tmp);
511 }
512 #endif
513 #if PHP_HTTP_CURL_VERSION(7,72,0)
514 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_EFFECTIVE_METHOD, &c)) {
515 ZVAL_STRING(&tmp, STR_PTR(c));
516 zend_hash_str_update(info, "effective_method", lenof("effective_method"), &tmp);
517 }
518 #endif
519 #if PHP_HTTP_CURL_VERSION(7,73,0)
520 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PROXY_ERROR, &l)) {
521 ZVAL_LONG(&tmp, l);
522 zend_hash_str_update(info, "proxy_error", lenof("proxy_error"), &tmp);
523 }
524 #endif
525
526 /* END::CURLINFO */
527
528 #if PHP_HTTP_CURL_VERSION(7,34,0)
529 {
530 zval ti_array, subarray;
531 struct curl_tlssessioninfo *ti;
532
533 #if PHP_HTTP_CURL_VERSION(7,48,0)
534 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_TLS_SSL_PTR, &ti)) {
535 #else
536 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_TLS_SESSION, &ti)) {
537 #endif
538 char *backend;
539
540 ZVAL_NULL(&subarray);
541 array_init(&ti_array);
542
543 switch (ti->backend) {
544 case CURLSSLBACKEND_NONE:
545 backend = "none";
546 break;
547 case CURLSSLBACKEND_OPENSSL:
548 backend = "openssl";
549 #if PHP_HTTP_HAVE_LIBCURL_OPENSSL
550 {
551 #if PHP_HTTP_CURL_VERSION(7,48,0)
552 SSL *ssl = ti->internals;
553 SSL_CTX *ctx = ssl ? SSL_get_SSL_CTX(ssl) : NULL;
554 #else
555 SSL_CTX *ctx = ti->internals;
556 #endif
557
558 array_init(&subarray);
559 if (ctx) {
560 add_assoc_long_ex(&subarray, ZEND_STRL("number"), SSL_CTX_sess_number(ctx));
561 add_assoc_long_ex(&subarray, ZEND_STRL("connect"), SSL_CTX_sess_connect(ctx));
562 add_assoc_long_ex(&subarray, ZEND_STRL("connect_good"), SSL_CTX_sess_connect_good(ctx));
563 add_assoc_long_ex(&subarray, ZEND_STRL("connect_renegotiate"), SSL_CTX_sess_connect_renegotiate(ctx));
564 add_assoc_long_ex(&subarray, ZEND_STRL("hits"), SSL_CTX_sess_hits(ctx));
565 add_assoc_long_ex(&subarray, ZEND_STRL("cache_full"), SSL_CTX_sess_cache_full(ctx));
566 }
567 }
568 #endif
569 break;
570 case CURLSSLBACKEND_GNUTLS:
571 backend = "gnutls";
572 #if PHP_HTTP_HAVE_LIBCURL_GNUTLS
573 {
574 gnutls_session_t sess = ti->internals;
575 char *desc;
576
577 array_init(&subarray);
578 if (sess) {
579 if ((desc = gnutls_session_get_desc(sess))) {
580 add_assoc_string_ex(&subarray, ZEND_STRL("desc"), desc);
581 gnutls_free(desc);
582 }
583 add_assoc_bool_ex(&subarray, ZEND_STRL("resumed"), gnutls_session_is_resumed(sess));
584 }
585 }
586 #endif
587 break;
588 case CURLSSLBACKEND_NSS:
589 backend = "nss";
590 break;
591 #if !PHP_HTTP_CURL_VERSION(7,39,0)
592 case CURLSSLBACKEND_QSOSSL:
593 backend = "qsossl";
594 break;
595 #else
596 case CURLSSLBACKEND_GSKIT:
597 backend = "gskit";
598 break;
599 #endif
600 case CURLSSLBACKEND_POLARSSL:
601 backend = "polarssl";
602 break;
603 case CURLSSLBACKEND_CYASSL:
604 backend = "cyassl";
605 break;
606 case CURLSSLBACKEND_SCHANNEL:
607 backend = "schannel";
608 break;
609 case CURLSSLBACKEND_DARWINSSL:
610 backend = "darwinssl";
611 break;
612 default:
613 backend = "unknown";
614 }
615 add_assoc_string_ex(&ti_array, ZEND_STRL("backend"), backend);
616 add_assoc_zval_ex(&ti_array, ZEND_STRL("internals"), &subarray);
617 zend_hash_str_update(info, "tls_session", lenof("tls_session"), &ti_array);
618 }
619 }
620 #endif
621
622 #if (PHP_HTTP_CURL_VERSION(7,19,1) && PHP_HTTP_HAVE_LIBCURL_OPENSSL) || \
623 (PHP_HTTP_CURL_VERSION(7,34,0) && PHP_HTTP_HAVE_LIBCURL_NSS) || \
624 (PHP_HTTP_CURL_VERSION(7,42,0) && PHP_HTTP_HAVE_LIBCURL_GNUTLS) || \
625 (PHP_HTTP_CURL_VERSION(7,39,0) && PHP_HTTP_HAVE_LIBCURL_GSKIT)
626 {
627 int i;
628 zval ci_array, subarray;
629 struct curl_certinfo *ci;
630 char *colon, *keyname;
631
632 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CERTINFO, &ci)) {
633 array_init(&ci_array);
634
635 for (i = 0; i < ci->num_of_certs; ++i) {
636 s = ci->certinfo[i];
637
638 array_init(&subarray);
639 for (p = s; p; p = p->next) {
640 if (p->data) {
641 if ((colon = strchr(p->data, ':'))) {
642 keyname = estrndup(p->data, colon - p->data);
643 add_assoc_string_ex(&subarray, keyname, colon - p->data, colon + 1);
644 efree(keyname);
645 } else {
646 add_next_index_string(&subarray, p->data);
647 }
648 }
649 }
650 add_next_index_zval(&ci_array, &subarray);
651 }
652 zend_hash_str_update(info, "certinfo", lenof("certinfo"), &ci_array);
653 }
654 }
655 #endif
656 {
657 php_http_curle_storage_t *st = php_http_curle_get_storage(ch);
658
659 ZVAL_LONG(&tmp, st->errorcode);
660 zend_hash_str_update(info, "curlcode", lenof("curlcode"), &tmp);
661 ZVAL_STRING(&tmp, st->errorbuffer);
662 zend_hash_str_update(info, "error", lenof("error"), &tmp);
663 }
664
665 return SUCCESS;
666 }
667
668 static int compare_queue(php_http_client_enqueue_t *e, void *handle)
669 {
670 return handle == ((php_http_client_curl_handler_t *) e->opaque)->handle;
671 }
672
673 static php_http_message_t *php_http_curlm_responseparser(php_http_client_curl_handler_t *h)
674 {
675 php_http_message_t *response;
676 php_http_header_parser_t parser;
677 zval *zh, tmp;
678
679 response = php_http_message_init(NULL, 0, h->response.body);
680 php_http_header_parser_init(&parser);
681 while (h->response.headers.used) {
682 php_http_header_parser_state_t st = php_http_header_parser_parse(&parser,
683 &h->response.headers, PHP_HTTP_HEADER_PARSER_CLEANUP, &response->hdrs,
684 (php_http_info_callback_t) php_http_message_info_callback, (void *) &response);
685 if (PHP_HTTP_HEADER_PARSER_STATE_FAILURE == st) {
686 break;
687 }
688 }
689 php_http_header_parser_dtor(&parser);
690
691 /* move body to right message */
692 if (response->body != h->response.body) {
693 php_http_message_t *ptr = response;
694
695 while (ptr->parent) {
696 ptr = ptr->parent;
697 }
698 php_http_message_body_free(&response->body);
699 response->body = ptr->body;
700 ptr->body = NULL;
701 }
702 php_http_message_body_addref(h->response.body);
703
704 /* let's update the response headers */
705 if ((zh = php_http_message_header(response, ZEND_STRL("Content-Length")))) {
706 ZVAL_COPY(&tmp, zh);
707 zend_hash_str_update(&response->hdrs, "X-Original-Content-Length", lenof("X-Original-Content-Length"), &tmp);
708 }
709 if ((zh = php_http_message_header(response, ZEND_STRL("Transfer-Encoding")))) {
710 ZVAL_COPY(&tmp, zh);
711 zend_hash_str_del(&response->hdrs, "Transfer-Encoding", lenof("Transfer-Encoding"));
712 zend_hash_str_update(&response->hdrs, "X-Original-Transfer-Encoding", lenof("X-Original-Transfer-Encoding"), &tmp);
713 }
714 if ((zh = php_http_message_header(response, ZEND_STRL("Content-Range")))) {
715 ZVAL_COPY(&tmp, zh);
716 zend_hash_str_del(&response->hdrs, "Content-Range", lenof("Content-Range"));
717 zend_hash_str_update(&response->hdrs, "X-Original-Content-Range", lenof("X-Original-Content-Range"), &tmp);
718 }
719 if ((zh = php_http_message_header(response, ZEND_STRL("Content-Encoding")))) {
720 ZVAL_COPY(&tmp, zh);
721 zend_hash_str_del(&response->hdrs, "Content-Encoding", lenof("Content-Encoding"));
722 zend_hash_str_update(&response->hdrs, "X-Original-Content-Encoding", lenof("X-Original-Content-Encoding"), &tmp);
723 }
724 php_http_message_update_headers(response);
725
726 return response;
727 }
728
729 void php_http_client_curl_responsehandler(php_http_client_t *context)
730 {
731 int err_count = 0, remaining = 0;
732 php_http_curle_storage_t *st, *err = NULL;
733 php_http_client_enqueue_t *enqueue;
734 php_http_client_curl_t *curl = context->ctx;
735
736 do {
737 CURLMsg *msg = curl_multi_info_read(curl->handle->multi, &remaining);
738
739 if (msg && CURLMSG_DONE == msg->msg) {
740 if (CURLE_OK != msg->data.result) {
741 st = php_http_curle_get_storage(msg->easy_handle);
742 st->errorcode = msg->data.result;
743
744 /* defer the warnings/exceptions, so the callback is still called for this request */
745 if (!err) {
746 err = ecalloc(remaining + 1, sizeof(*err));
747 }
748 memcpy(&err[err_count], st, sizeof(*st));
749 if (st->url) {
750 err[err_count].url = estrdup(st->url);
751 }
752 err_count++;
753 }
754
755 if ((enqueue = php_http_client_enqueued(context, msg->easy_handle, compare_queue))) {
756 php_http_client_curl_handler_t *handler = enqueue->opaque;
757 php_http_message_t *response = php_http_curlm_responseparser(handler);
758
759 if (response) {
760 context->callback.response.func(context->callback.response.arg, context, &handler->queue, &response);
761 php_http_message_free(&response);
762 }
763 }
764 }
765 } while (remaining);
766
767 if (err_count) {
768 int i = 0;
769
770 do {
771 php_error_docref(NULL, E_WARNING, "%s; %s (%s)", curl_easy_strerror(err[i].errorcode), err[i].errorbuffer, STR_PTR(err[i].url));
772 if (err[i].url) {
773 efree(err[i].url);
774 }
775 } while (++i < err_count);
776
777 efree(err);
778 }
779 }
780
781 void php_http_client_curl_loop(php_http_client_t *client, curl_socket_t s, int curl_action)
782 {
783 CURLMcode rc;
784 php_http_client_curl_t *curl = client->ctx;
785
786 #if DBG_EVENTS
787 fprintf(stderr, "H");
788 #endif
789
790 do {
791 rc = curl_multi_socket_action(curl->handle->multi, s, curl_action, &curl->unfinished);
792 } while (CURLM_CALL_MULTI_PERFORM == rc);
793
794 if (CURLM_OK != rc) {
795 php_error_docref(NULL, E_WARNING, "%s", curl_multi_strerror(rc));
796 }
797
798 php_http_client_curl_responsehandler(client);
799 }
800
801 /* curl options */
802
803 static php_http_options_t php_http_curle_options, php_http_curlm_options;
804
805 #define PHP_HTTP_CURLE_OPTION_CHECK_STRLEN 0x0001
806 #define PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR 0x0002
807 #define PHP_HTTP_CURLE_OPTION_TRANSFORM_MS 0x0004
808
809 static ZEND_RESULT_CODE php_http_curle_option_set_ssl_verifyhost(php_http_option_t *opt, zval *val, void *userdata)
810 {
811 php_http_client_curl_handler_t *curl = userdata;
812 CURL *ch = curl->handle;
813
814 if (CURLE_OK != curl_easy_setopt(ch, opt->option, Z_TYPE_P(val) == IS_TRUE ? 2 : 0)) {
815 return FAILURE;
816 }
817 return SUCCESS;
818 }
819
820 static ZEND_RESULT_CODE php_http_curle_option_set_cookiesession(php_http_option_t *opt, zval *val, void *userdata)
821 {
822 php_http_client_curl_handler_t *curl = userdata;
823 CURL *ch = curl->handle;
824
825 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_COOKIESESSION, (long) (Z_TYPE_P(val) == IS_TRUE))) {
826 return FAILURE;
827 }
828 if (Z_TYPE_P(val) == IS_TRUE) {
829 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_COOKIELIST, "SESS")) {
830 return FAILURE;
831 }
832 }
833
834 return SUCCESS;
835 }
836
837 static ZEND_RESULT_CODE php_http_curle_option_set_cookiestore(php_http_option_t *opt, zval *val, void *userdata)
838 {
839 php_http_client_curl_handler_t *curl = userdata;
840 CURL *ch = curl->handle;
841 php_http_curle_storage_t *storage = php_http_curle_get_storage(curl->handle);
842
843 if (storage->cookiestore) {
844 pefree(storage->cookiestore, 1);
845 }
846 if (val && Z_TYPE_P(val) == IS_STRING && Z_STRLEN_P(val)) {
847 storage->cookiestore = pestrndup(Z_STRVAL_P(val), Z_STRLEN_P(val), 1);
848 } else {
849 storage->cookiestore = NULL;
850 }
851 if ( CURLE_OK != curl_easy_setopt(ch, CURLOPT_COOKIEFILE, storage->cookiestore)
852 || CURLE_OK != curl_easy_setopt(ch, CURLOPT_COOKIEJAR, storage->cookiestore)
853 ) {
854 return FAILURE;
855 }
856
857 return SUCCESS;
858 }
859
860 static ZEND_RESULT_CODE php_http_curle_option_set_cookies(php_http_option_t *opt, zval *val, void *userdata)
861 {
862 php_http_client_curl_handler_t *curl = userdata;
863 CURL *ch = curl->handle;
864
865 if (val && Z_TYPE_P(val) != IS_NULL) {
866 HashTable *ht = HASH_OF(val);
867
868 if (curl->options.encode_cookies) {
869 if (SUCCESS == php_http_url_encode_hash_ex(ht, &curl->options.cookies, ZEND_STRL(";"), ZEND_STRL("="), NULL, 0)) {
870 php_http_buffer_fix(&curl->options.cookies);
871 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_COOKIE, curl->options.cookies.data)) {
872 return FAILURE;
873 }
874 } else {
875 return FAILURE;
876 }
877 } else {
878 php_http_arrkey_t cookie_key;
879 zval *cookie_val;
880
881 ZEND_HASH_FOREACH_KEY_VAL(ht, cookie_key.h, cookie_key.key, cookie_val)
882 {
883 zend_string *zs = zval_get_string(cookie_val);
884
885 php_http_arrkey_stringify(&cookie_key, NULL);
886 php_http_buffer_appendf(&curl->options.cookies, "%s=%s; ", cookie_key.key->val, zs->val);
887 php_http_arrkey_dtor(&cookie_key);
888
889 zend_string_release(zs);
890 }
891 ZEND_HASH_FOREACH_END();
892
893 php_http_buffer_fix(&curl->options.cookies);
894 if (curl->options.cookies.used) {
895 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_COOKIE, curl->options.cookies.data)) {
896 return FAILURE;
897 }
898 }
899 }
900 } else {
901 php_http_buffer_reset(&curl->options.cookies);
902 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_COOKIE, NULL)) {
903 return FAILURE;
904 }
905 }
906 return SUCCESS;
907 }
908
909 static ZEND_RESULT_CODE php_http_curle_option_set_encodecookies(php_http_option_t *opt, zval *val, void *userdata)
910 {
911 php_http_client_curl_handler_t *curl = userdata;
912
913 curl->options.encode_cookies = Z_TYPE_P(val) == IS_TRUE;
914 return SUCCESS;
915 }
916
917 static ZEND_RESULT_CODE php_http_curle_option_set_lastmodified(php_http_option_t *opt, zval *val, void *userdata)
918 {
919 php_http_client_curl_handler_t *curl = userdata;
920 CURL *ch = curl->handle;
921
922 if (Z_LVAL_P(val)) {
923 if (Z_LVAL_P(val) > 0) {
924 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_TIMEVALUE, Z_LVAL_P(val))) {
925 return FAILURE;
926 }
927 } else {
928 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_TIMEVALUE, (long) sapi_get_request_time() + Z_LVAL_P(val))) {
929 return FAILURE;
930 }
931 }
932 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_TIMECONDITION, (long) (curl->options.range_request ? CURL_TIMECOND_IFUNMODSINCE : CURL_TIMECOND_IFMODSINCE))) {
933 return FAILURE;
934 }
935 } else {
936 if ( CURLE_OK != curl_easy_setopt(ch, CURLOPT_TIMEVALUE, 0)
937 || CURLE_OK != curl_easy_setopt(ch, CURLOPT_TIMECONDITION, 0)
938 ) {
939 return FAILURE;
940 }
941 }
942 return SUCCESS;
943 }
944
945 static ZEND_RESULT_CODE php_http_curle_option_set_compress(php_http_option_t *opt, zval *val, void *userdata)
946 {
947 php_http_client_curl_handler_t *curl = userdata;
948 CURL *ch = curl->handle;
949
950 #if !PHP_HTTP_CURL_VERSION(7,21,6)
951 # define CURLOPT_ACCEPT_ENCODING CURLOPT_ENCODING
952 #endif
953 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_ACCEPT_ENCODING, Z_TYPE_P(val) == IS_TRUE ? "" : NULL)) {
954 return FAILURE;
955 }
956 return SUCCESS;
957 }
958
959 static ZEND_RESULT_CODE 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 (val && Z_TYPE_P(val) == IS_STRING && 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 ZEND_RESULT_CODE 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
980 php_http_buffer_reset(&curl->options.ranges);
981
982 if (val && Z_TYPE_P(val) != IS_NULL) {
983 zval *rr, *rb, *re;
984 HashTable *ht = HASH_OF(val);
985
986 ZEND_HASH_FOREACH_VAL(ht, rr)
987 {
988 if (Z_TYPE_P(rr) == IS_ARRAY) {
989 if (2 == php_http_array_list(Z_ARRVAL_P(rr), 2, &rb, &re)) {
990 zend_long rbl = zval_get_long(rb), rel = zval_get_long(re);
991
992 if (rbl >= 0) {
993 if (rel > 0) {
994 php_http_buffer_appendf(&curl->options.ranges, "%ld-%ld,", rbl, rel);
995 } else {
996 php_http_buffer_appendf(&curl->options.ranges, "%ld-", rbl);
997 }
998 } else if (rel > 0) {
999 php_http_buffer_appendf(&curl->options.ranges, "-%ld", rel);
1000 }
1001 }
1002 }
1003 }
1004 ZEND_HASH_FOREACH_END();
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 ZEND_RESULT_CODE 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 ZEND_RESULT_CODE 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 ZEND_RESULT_CODE 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 ZEND_RESULT_CODE 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 ZEND_RESULT_CODE 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
1068 if (val && Z_TYPE_P(val) != IS_NULL) {
1069 zval *zps, *zpe;
1070
1071 switch (php_http_array_list(Z_ARRVAL_P(val), 2, &zps, &zpe)) {
1072 case 2:
1073 localportrange = labs(zval_get_long(zps)-zval_get_long(zpe))+1L;
1074 /* no break */
1075 case 1:
1076 localport = (zval_get_long(zpe) > 0) ? MIN(zval_get_long(zps), zval_get_long(zpe)) : zval_get_long(zps);
1077 break;
1078 default:
1079 break;
1080 }
1081 }
1082 if ( CURLE_OK != curl_easy_setopt(ch, CURLOPT_LOCALPORT, localport)
1083 || CURLE_OK != curl_easy_setopt(ch, CURLOPT_LOCALPORTRANGE, localportrange)
1084 ) {
1085 return FAILURE;
1086 }
1087 return SUCCESS;
1088 }
1089
1090 #if PHP_HTTP_CURL_VERSION(7,37,0)
1091 static ZEND_RESULT_CODE php_http_curle_option_set_proxyheader(php_http_option_t *opt, zval *val, void *userdata)
1092 {
1093 php_http_client_curl_handler_t *curl = userdata;
1094
1095 if (val && Z_TYPE_P(val) != IS_NULL) {
1096 php_http_arrkey_t header_key;
1097 zval *header_val;
1098 php_http_buffer_t header;
1099
1100 php_http_buffer_init(&header);
1101 ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(val), header_key.h, header_key.key, header_val)
1102 {
1103 if (header_key.key) {
1104 zend_string *zs = zval_get_string(header_val);
1105
1106 php_http_buffer_appendf(&header, "%s: %s", header_key.key->val, zs->val);
1107 zend_string_release(zs);
1108
1109 php_http_buffer_fix(&header);
1110 curl->options.proxyheaders = curl_slist_append(curl->options.proxyheaders, header.data);
1111 php_http_buffer_reset(&header);
1112
1113 }
1114 }
1115 ZEND_HASH_FOREACH_END();
1116 php_http_buffer_dtor(&header);
1117 }
1118 if (CURLE_OK != curl_easy_setopt(curl->handle, CURLOPT_PROXYHEADER, curl->options.proxyheaders)) {
1119 return FAILURE;
1120 }
1121 if (CURLE_OK != curl_easy_setopt(curl->handle, CURLOPT_HEADEROPT, CURLHEADER_SEPARATE)) {
1122 curl_easy_setopt(curl->handle, CURLOPT_PROXYHEADER, NULL);
1123 return FAILURE;
1124 }
1125 return SUCCESS;
1126 }
1127 #endif
1128
1129 #if PHP_HTTP_CURL_VERSION(7,21,3)
1130 static ZEND_RESULT_CODE php_http_curle_option_set_resolve(php_http_option_t *opt, zval *val, void *userdata)
1131 {
1132 php_http_client_curl_handler_t *curl = userdata;
1133 CURL *ch = curl->handle;
1134
1135 if (val && Z_TYPE_P(val) != IS_NULL) {
1136 HashTable *ht = HASH_OF(val);
1137 zval *data;
1138
1139 ZEND_HASH_FOREACH_VAL(ht, data)
1140 {
1141 zend_string *zs = zval_get_string(data);
1142 curl->options.resolve = curl_slist_append(curl->options.resolve, zs->val);
1143 zend_string_release(zs);
1144 }
1145 ZEND_HASH_FOREACH_END();
1146
1147 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_RESOLVE, curl->options.resolve)) {
1148 return FAILURE;
1149 }
1150 } else {
1151 if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_RESOLVE, NULL)) {
1152 return FAILURE;
1153 }
1154 }
1155 return SUCCESS;
1156 }
1157 #endif
1158
1159 #if PHP_HTTP_CURL_VERSION(7,21,4) && PHP_HTTP_HAVE_LIBCURL_TLSAUTH_TYPE
1160 static ZEND_RESULT_CODE php_http_curle_option_set_ssl_tlsauthtype(php_http_option_t *opt, zval *val, void *userdata)
1161 {
1162 php_http_client_curl_handler_t *curl = userdata;
1163 CURL *ch = curl->handle;
1164
1165 if (val && Z_LVAL_P(val)) {
1166 switch (Z_LVAL_P(val)) {
1167 case CURL_TLSAUTH_SRP:
1168 if (CURLE_OK == curl_easy_setopt(ch, opt->option, PHP_HTTP_LIBCURL_TLSAUTH_SRP)) {
1169 return SUCCESS;
1170 }
1171 /* no break */
1172 default:
1173 return FAILURE;
1174 }
1175 }
1176 if (CURLE_OK != curl_easy_setopt(ch, opt->option, PHP_HTTP_LIBCURL_TLSAUTH_DEF)) {
1177 return FAILURE;
1178 }
1179 return SUCCESS;
1180 }
1181 #endif
1182
1183 static void php_http_curle_options_init(php_http_options_t *registry)
1184 {
1185 php_http_option_t *opt;
1186
1187 /* url options */
1188 #if PHP_HTTP_CURL_VERSION(7,42,0)
1189 php_http_option_register(registry, ZEND_STRL("path_as_is"), CURLOPT_PATH_AS_IS, _IS_BOOL);
1190 #endif
1191
1192 /* proxy */
1193 php_http_option_register(registry, ZEND_STRL("proxyhost"), CURLOPT_PROXY, IS_STRING);
1194 php_http_option_register(registry, ZEND_STRL("proxytype"), CURLOPT_PROXYTYPE, IS_LONG);
1195 php_http_option_register(registry, ZEND_STRL("proxyport"), CURLOPT_PROXYPORT, IS_LONG);
1196 if ((opt = php_http_option_register(registry, ZEND_STRL("proxyauth"), CURLOPT_PROXYUSERPWD, IS_STRING))) {
1197 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1198 }
1199 if ((opt = php_http_option_register(registry, ZEND_STRL("proxyauthtype"), CURLOPT_PROXYAUTH, IS_LONG))) {
1200 Z_LVAL(opt->defval) = CURLAUTH_ANYSAFE;
1201 }
1202 php_http_option_register(registry, ZEND_STRL("proxytunnel"), CURLOPT_HTTPPROXYTUNNEL, _IS_BOOL);
1203 #if PHP_HTTP_CURL_VERSION(7,19,4)
1204 php_http_option_register(registry, ZEND_STRL("noproxy"), CURLOPT_NOPROXY, IS_STRING);
1205 #endif
1206 #if PHP_HTTP_CURL_VERSION(7,55,0)
1207 php_http_option_register(registry, ZEND_STRL("socks5_auth"), CURLOPT_SOCKS5_AUTH, IS_LONG);
1208 #endif
1209
1210 #if PHP_HTTP_CURL_VERSION(7,37,0)
1211 if ((opt = php_http_option_register(registry, ZEND_STRL("proxyheader"), CURLOPT_PROXYHEADER, IS_ARRAY))) {
1212 opt->setter = php_http_curle_option_set_proxyheader;
1213 }
1214 #endif
1215 #if PHP_HTTP_CURL_VERSION(7,43,0)
1216 if (PHP_HTTP_CURL_FEATURE(CURL_VERSION_GSSAPI)
1217 && (opt = php_http_option_register(registry, ZEND_STRL("proxy_service_name"), CURLOPT_PROXY_SERVICE_NAME, IS_STRING))
1218 ) {
1219 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1220 }
1221 #endif
1222 #if PHP_HTTP_CURL_VERSION(7,60,0)
1223 php_http_option_register(registry, ZEND_STRL("haproxy_protocol"), CURLOPT_HAPROXYPROTOCOL, _IS_BOOL);
1224 #endif
1225
1226 /* unix sockets */
1227 #if PHP_HTTP_CURL_VERSION(7,40,0)
1228 if (PHP_HTTP_CURL_FEATURE(CURL_VERSION_UNIX_SOCKETS)) {
1229 if ((opt = php_http_option_register(registry, ZEND_STRL("unix_socket_path"), CURLOPT_UNIX_SOCKET_PATH, IS_STRING))) {
1230 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1231 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1232 }
1233 #if PHP_HTTP_CURL_VERSION(7,53,0)
1234 if ((opt = php_http_option_register(registry, ZEND_STRL("abstract_unix_socket"), CURLOPT_ABSTRACT_UNIX_SOCKET, IS_STRING))) {
1235 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1236 }
1237 #endif
1238 }
1239 #endif
1240
1241 /* dns */
1242 if ((opt = php_http_option_register(registry, ZEND_STRL("dns_cache_timeout"), CURLOPT_DNS_CACHE_TIMEOUT, IS_LONG))) {
1243 Z_LVAL(opt->defval) = 60;
1244 }
1245 php_http_option_register(registry, ZEND_STRL("ipresolve"), CURLOPT_IPRESOLVE, IS_LONG);
1246 #if PHP_HTTP_CURL_VERSION(7,21,3)
1247 if ((opt = php_http_option_register(registry, ZEND_STRL("resolve"), CURLOPT_RESOLVE, IS_ARRAY))) {
1248 opt->setter = php_http_curle_option_set_resolve;
1249 }
1250 #endif
1251 #if PHP_HTTP_HAVE_LIBCURL_ARES
1252 # if PHP_HTTP_CURL_VERSION(7,24,0)
1253 if ((opt = php_http_option_register(registry, ZEND_STRL("dns_servers"), CURLOPT_DNS_SERVERS, IS_STRING))) {
1254 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1255 }
1256 # endif
1257 # if PHP_HTTP_CURL_VERSION(7,33,0)
1258 if ((opt = php_http_option_register(registry, ZEND_STRL("dns_interface"), CURLOPT_DNS_INTERFACE, IS_STRING))) {
1259 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1260 }
1261 if ((opt = php_http_option_register(registry, ZEND_STRL("dns_local_ip4"), CURLOPT_DNS_LOCAL_IP4, IS_STRING))) {
1262 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1263 }
1264 if ((opt = php_http_option_register(registry, ZEND_STRL("dns_local_ip6"), CURLOPT_DNS_LOCAL_IP6, IS_STRING))) {
1265 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1266 }
1267 # endif
1268 #endif
1269 #if PHP_HTTP_CURL_VERSION(7,60,0)
1270 php_http_option_register(registry, ZEND_STRL("dns_shuffle_addresses"), CURLOPT_DNS_SHUFFLE_ADDRESSES, _IS_BOOL);
1271 #endif
1272
1273
1274 /* limits */
1275 php_http_option_register(registry, ZEND_STRL("low_speed_limit"), CURLOPT_LOW_SPEED_LIMIT, IS_LONG);
1276 php_http_option_register(registry, ZEND_STRL("low_speed_time"), CURLOPT_LOW_SPEED_TIME, IS_LONG);
1277
1278 /* LSF weirdance
1279 php_http_option_register(registry, ZEND_STRL("max_send_speed"), CURLOPT_MAX_SEND_SPEED_LARGE, IS_LONG);
1280 php_http_option_register(registry, ZEND_STRL("max_recv_speed"), CURLOPT_MAX_RECV_SPEED_LARGE, IS_LONG);
1281 */
1282
1283 /* connection handling */
1284 /* crashes
1285 if ((opt = php_http_option_register(registry, ZEND_STRL("maxconnects"), CURLOPT_MAXCONNECTS, IS_LONG))) {
1286 Z_LVAL(opt->defval) = 5;
1287 }
1288 */
1289 php_http_option_register(registry, ZEND_STRL("fresh_connect"), CURLOPT_FRESH_CONNECT, _IS_BOOL);
1290 php_http_option_register(registry, ZEND_STRL("forbid_reuse"), CURLOPT_FORBID_REUSE, _IS_BOOL);
1291
1292 /* outgoing interface */
1293 php_http_option_register(registry, ZEND_STRL("interface"), CURLOPT_INTERFACE, IS_STRING);
1294 if ((opt = php_http_option_register(registry, ZEND_STRL("portrange"), CURLOPT_LOCALPORT, IS_ARRAY))) {
1295 opt->setter = php_http_curle_option_set_portrange;
1296 }
1297
1298 /* another endpoint port */
1299 php_http_option_register(registry, ZEND_STRL("port"), CURLOPT_PORT, IS_LONG);
1300
1301 /* RFC4007 zone_id */
1302 #if PHP_HTTP_CURL_VERSION(7,19,0)
1303 php_http_option_register(registry, ZEND_STRL("address_scope"), CURLOPT_ADDRESS_SCOPE, IS_LONG);
1304 #endif
1305
1306 /* auth */
1307 if ((opt = php_http_option_register(registry, ZEND_STRL("httpauth"), CURLOPT_USERPWD, IS_STRING))) {
1308 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1309 }
1310 if ((opt = php_http_option_register(registry, ZEND_STRL("httpauthtype"), CURLOPT_HTTPAUTH, IS_LONG))) {
1311 Z_LVAL(opt->defval) = CURLAUTH_ANYSAFE;
1312 }
1313 #if PHP_HTTP_CURL_VERSION(7,43,0)
1314 if (PHP_HTTP_CURL_FEATURE(CURL_VERSION_SSPI) || PHP_HTTP_CURL_FEATURE(CURL_VERSION_GSSAPI))
1315 if ((opt = php_http_option_register(registry, ZEND_STRL("service_name"), CURLOPT_SERVICE_NAME, IS_STRING))) {
1316 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1317 }
1318 #endif
1319
1320 /* redirects */
1321 if ((opt = php_http_option_register(registry, ZEND_STRL("redirect"), CURLOPT_FOLLOWLOCATION, IS_LONG))) {
1322 opt->setter = php_http_curle_option_set_redirect;
1323 }
1324 php_http_option_register(registry, ZEND_STRL("unrestricted_auth"), CURLOPT_UNRESTRICTED_AUTH, _IS_BOOL);
1325 #if PHP_HTTP_CURL_VERSION(7,19,1)
1326 php_http_option_register(registry, ZEND_STRL("postredir"), CURLOPT_POSTREDIR, IS_LONG);
1327 #endif
1328
1329 /* retries */
1330 if ((opt = php_http_option_register(registry, ZEND_STRL("retrycount"), 0, IS_LONG))) {
1331 opt->setter = php_http_curle_option_set_retrycount;
1332 }
1333 if ((opt = php_http_option_register(registry, ZEND_STRL("retrydelay"), 0, IS_DOUBLE))) {
1334 opt->setter = php_http_curle_option_set_retrydelay;
1335 }
1336
1337 /* referer */
1338 if ((opt = php_http_option_register(registry, ZEND_STRL("referer"), CURLOPT_REFERER, IS_STRING))) {
1339 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1340 }
1341 if ((opt = php_http_option_register(registry, ZEND_STRL("autoreferer"), CURLOPT_AUTOREFERER, _IS_BOOL))) {
1342 ZVAL_BOOL(&opt->defval, 1);
1343 }
1344
1345 /* useragent */
1346 if ((opt = php_http_option_register(registry, ZEND_STRL("useragent"), CURLOPT_USERAGENT, IS_STRING))) {
1347 /* don't check strlen, to allow sending no useragent at all */
1348 ZVAL_PSTRING(&opt->defval,
1349 "PECL_HTTP/" PHP_PECL_HTTP_VERSION " "
1350 "PHP/" PHP_VERSION " "
1351 "libcurl/" LIBCURL_VERSION);
1352 }
1353
1354 /* resume */
1355 if ((opt = php_http_option_register(registry, ZEND_STRL("resume"), CURLOPT_RESUME_FROM, IS_LONG))) {
1356 opt->setter = php_http_curle_option_set_resume;
1357 }
1358 /* ranges */
1359 if ((opt = php_http_option_register(registry, ZEND_STRL("range"), CURLOPT_RANGE, IS_ARRAY))) {
1360 opt->setter = php_http_curle_option_set_range;
1361 }
1362
1363 /* etag */
1364 if ((opt = php_http_option_register(registry, ZEND_STRL("etag"), 0, IS_STRING))) {
1365 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1366 opt->setter = php_http_curle_option_set_etag;
1367 }
1368
1369 /* compression */
1370 if ((opt = php_http_option_register(registry, ZEND_STRL("compress"), 0, _IS_BOOL))) {
1371 opt->setter = php_http_curle_option_set_compress;
1372 }
1373
1374 /* lastmodified */
1375 if ((opt = php_http_option_register(registry, ZEND_STRL("lastmodified"), 0, IS_LONG))) {
1376 opt->setter = php_http_curle_option_set_lastmodified;
1377 }
1378
1379 /* cookies */
1380 if ((opt = php_http_option_register(registry, ZEND_STRL("encodecookies"), 0, _IS_BOOL))) {
1381 opt->setter = php_http_curle_option_set_encodecookies;
1382 ZVAL_BOOL(&opt->defval, 1);
1383 }
1384 if ((opt = php_http_option_register(registry, ZEND_STRL("cookies"), 0, IS_ARRAY))) {
1385 opt->setter = php_http_curle_option_set_cookies;
1386 }
1387
1388 /* cookiesession, don't load session cookies from cookiestore */
1389 if ((opt = php_http_option_register(registry, ZEND_STRL("cookiesession"), CURLOPT_COOKIESESSION, _IS_BOOL))) {
1390 opt->setter = php_http_curle_option_set_cookiesession;
1391 }
1392 /* cookiestore, read initial cookies from that file and store cookies back into that file */
1393 if ((opt = php_http_option_register(registry, ZEND_STRL("cookiestore"), 0, IS_STRING))) {
1394 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1395 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1396 opt->setter = php_http_curle_option_set_cookiestore;
1397 }
1398
1399 /* maxfilesize */
1400 php_http_option_register(registry, ZEND_STRL("maxfilesize"), CURLOPT_MAXFILESIZE, IS_LONG);
1401
1402 /* http protocol version */
1403 php_http_option_register(registry, ZEND_STRL("protocol"), CURLOPT_HTTP_VERSION, IS_LONG);
1404
1405 /* timeouts */
1406 if ((opt = php_http_option_register(registry, ZEND_STRL("timeout"), CURLOPT_TIMEOUT_MS, IS_DOUBLE))) {
1407 opt->flags |= PHP_HTTP_CURLE_OPTION_TRANSFORM_MS;
1408 }
1409 if ((opt = php_http_option_register(registry, ZEND_STRL("connecttimeout"), CURLOPT_CONNECTTIMEOUT_MS, IS_DOUBLE))) {
1410 opt->flags |= PHP_HTTP_CURLE_OPTION_TRANSFORM_MS;
1411 Z_DVAL(opt->defval) = 3;
1412 }
1413 #if PHP_HTTP_CURL_VERSION(7,36,0)
1414 if ((opt = php_http_option_register(registry, ZEND_STRL("expect_100_timeout"), CURLOPT_EXPECT_100_TIMEOUT_MS, IS_DOUBLE))) {
1415 opt->flags |= PHP_HTTP_CURLE_OPTION_TRANSFORM_MS;
1416 Z_DVAL(opt->defval) = 1;
1417 }
1418 #endif
1419
1420 /* tcp */
1421 php_http_option_register(registry, ZEND_STRL("tcp_nodelay"), CURLOPT_TCP_NODELAY, _IS_BOOL);
1422 #if PHP_HTTP_CURL_VERSION(7,25,0)
1423 php_http_option_register(registry, ZEND_STRL("tcp_keepalive"), CURLOPT_TCP_KEEPALIVE, _IS_BOOL);
1424 if ((opt = php_http_option_register(registry, ZEND_STRL("tcp_keepidle"), CURLOPT_TCP_KEEPIDLE, IS_LONG))) {
1425 Z_LVAL(opt->defval) = 60;
1426 }
1427 if ((opt = php_http_option_register(registry, ZEND_STRL("tcp_keepintvl"), CURLOPT_TCP_KEEPINTVL, IS_LONG))) {
1428 Z_LVAL(opt->defval) = 60;
1429 }
1430 #endif
1431 #if PHP_HTTP_CURL_VERSION(7,49,0)
1432 php_http_option_register(registry, ZEND_STRL("tcp_fastopen"), CURLOPT_TCP_FASTOPEN, _IS_BOOL);
1433 #endif
1434
1435 /* ssl */
1436 if (PHP_HTTP_CURL_FEATURE(CURL_VERSION_SSL)) {
1437 php_http_option_t *ssl_opt, *proxy_opt;
1438
1439 if ((ssl_opt = php_http_option_register(registry, ZEND_STRL("ssl"), 0, IS_ARRAY))) {
1440 php_http_options_t *ssl_registry = &ssl_opt->suboptions;
1441
1442 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("cert"), CURLOPT_SSLCERT, IS_STRING))) {
1443 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1444 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1445 }
1446 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("certtype"), CURLOPT_SSLCERTTYPE, IS_STRING))) {
1447 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1448 ZVAL_PSTRING(&opt->defval, "PEM");
1449 }
1450 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("key"), CURLOPT_SSLKEY, IS_STRING))) {
1451 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1452 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1453 }
1454 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("keytype"), CURLOPT_SSLKEYTYPE, IS_STRING))) {
1455 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1456 ZVAL_PSTRING(&opt->defval, "PEM");
1457 }
1458 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("keypasswd"), CURLOPT_SSLKEYPASSWD, IS_STRING))) {
1459 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1460 }
1461 php_http_option_register(ssl_registry, ZEND_STRL("engine"), CURLOPT_SSLENGINE, IS_STRING);
1462 php_http_option_register(ssl_registry, ZEND_STRL("version"), CURLOPT_SSLVERSION, IS_LONG);
1463 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("verifypeer"), CURLOPT_SSL_VERIFYPEER, _IS_BOOL))) {
1464 ZVAL_BOOL(&opt->defval, 1);
1465 }
1466 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("verifyhost"), CURLOPT_SSL_VERIFYHOST, _IS_BOOL))) {
1467 ZVAL_BOOL(&opt->defval, 1);
1468 opt->setter = php_http_curle_option_set_ssl_verifyhost;
1469 }
1470 #if PHP_HTTP_CURL_VERSION(7,41,0) && (PHP_HTTP_HAVE_LIBCURL_OPENSSL || PHP_HTTP_HAVE_LIBCURL_NSS || PHP_HTTP_HAVE_LIBCURL_GNUTLS)
1471 php_http_option_register(ssl_registry, ZEND_STRL("verifystatus"), CURLOPT_SSL_VERIFYSTATUS, _IS_BOOL);
1472 #endif
1473 php_http_option_register(ssl_registry, ZEND_STRL("cipher_list"), CURLOPT_SSL_CIPHER_LIST, IS_STRING);
1474 #if PHP_HTTP_HAVE_LIBCURL_CAINFO
1475 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("cainfo"), CURLOPT_CAINFO, IS_STRING))) {
1476 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1477 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1478 # ifdef PHP_HTTP_CAINFO
1479 ZVAL_PSTRING(&opt->defval, PHP_HTTP_CAINFO);
1480 # endif
1481 }
1482 #endif
1483 #if PHP_HTTP_HAVE_LIBCURL_CAPATH
1484 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("capath"), CURLOPT_CAPATH, IS_STRING))) {
1485 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1486 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1487 # ifdef PHP_HTTP_CAPATH
1488 ZVAL_PSTRING(&opt->defval, PHP_HTTP_CAPATH);
1489 # endif
1490 }
1491 #endif
1492 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("random_file"), CURLOPT_RANDOM_FILE, IS_STRING))) {
1493 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1494 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1495 }
1496 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("egdsocket"), CURLOPT_EGDSOCKET, IS_STRING))) {
1497 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1498 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1499 }
1500 #if PHP_HTTP_CURL_VERSION(7,19,0)
1501 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("issuercert"), CURLOPT_ISSUERCERT, IS_STRING))) {
1502 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1503 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1504 }
1505 # if PHP_HTTP_HAVE_LIBCURL_OPENSSL
1506 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("crlfile"), CURLOPT_CRLFILE, IS_STRING))) {
1507 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1508 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1509 }
1510 # endif
1511 #endif
1512 #if (PHP_HTTP_CURL_VERSION(7,19,1) && PHP_HTTP_HAVE_LIBCURL_OPENSSL) || (PHP_HTTP_CURL_VERSION(7,34,0) && PHP_HTTP_HAVE_LIBCURL_NSS) || (PHP_HTTP_CURL_VERSION(7,42,0) && defined(PHP_HTTP_HAVE_LIBCURL_GNUTLS)) || (PHP_HTTP_CURL_VERSION(7,39,0) && defined(PHP_HTTP_HAVE_LIBCURL_GSKIT))
1513 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("certinfo"), CURLOPT_CERTINFO, _IS_BOOL))) {
1514 ZVAL_FALSE(&opt->defval);
1515 }
1516 #endif
1517 #if PHP_HTTP_CURL_VERSION(7,36,0)
1518 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("enable_npn"), CURLOPT_SSL_ENABLE_NPN, _IS_BOOL))) {
1519 ZVAL_BOOL(&opt->defval, 1);
1520 }
1521 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("enable_alpn"), CURLOPT_SSL_ENABLE_ALPN, _IS_BOOL))) {
1522 ZVAL_BOOL(&opt->defval, 1);
1523 }
1524 #endif
1525 #if PHP_HTTP_CURL_VERSION(7,39,0)
1526 /* FIXME: see http://curl.haxx.se/libcurl/c/CURLOPT_PINNEDPUBLICKEY.html#AVAILABILITY */
1527 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("pinned_publickey"), CURLOPT_PINNEDPUBLICKEY, IS_STRING))) {
1528 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1529 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1530 }
1531 #endif
1532 #if PHP_HTTP_CURL_VERSION(7,21,4) && PHP_HTTP_HAVE_LIBCURL_TLSAUTH_TYPE
1533 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("tlsauthtype"), CURLOPT_TLSAUTH_TYPE, IS_LONG))) {
1534 opt->setter = php_http_curle_option_set_ssl_tlsauthtype;
1535 }
1536 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("tlsauthuser"), CURLOPT_TLSAUTH_USERNAME, IS_STRING))) {
1537 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1538 }
1539 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("tlsauthpass"), CURLOPT_TLSAUTH_PASSWORD, IS_STRING))) {
1540 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1541 }
1542 #endif
1543 #if PHP_HTTP_CURL_VERSION(7,42,0) && (PHP_HTTP_HAVE_LIBCURL_NSS || PHP_HTTP_HAVE_LIBCURL_SECURETRANSPORT)
1544 php_http_option_register(ssl_registry, ZEND_STRL("falsestart"), CURLOPT_SSL_FALSESTART, _IS_BOOL);
1545 #endif
1546 #if PHP_HTTP_CURL_VERSION(7,61,0)
1547 if ((opt = php_http_option_register(ssl_registry, ZEND_STRL("tls13_ciphers"), CURLOPT_TLS13_CIPHERS, IS_STRING))) {
1548 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1549 }
1550 #endif
1551 }
1552
1553 #if PHP_HTTP_CURL_VERSION(7,52,0)
1554 /* proxy_ssl */
1555 if ((proxy_opt = php_http_option_register(registry, ZEND_STRL("proxy_ssl"), 0, IS_ARRAY))) {
1556 php_http_options_t *proxy_registry = &proxy_opt->suboptions;
1557
1558 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("cert"), CURLOPT_PROXY_SSLCERT, IS_STRING))) {
1559 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1560 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1561 }
1562 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("certtype"), CURLOPT_PROXY_SSLCERTTYPE, IS_STRING))) {
1563 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1564 ZVAL_PSTRING(&opt->defval, "PEM");
1565 }
1566 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("key"), CURLOPT_PROXY_SSLKEY, IS_STRING))) {
1567 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1568 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1569 }
1570 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("keytype"), CURLOPT_PROXY_SSLKEYTYPE, IS_STRING))) {
1571 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1572 ZVAL_PSTRING(&opt->defval, "PEM");
1573 }
1574 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("keypasswd"), CURLOPT_PROXY_KEYPASSWD, IS_STRING))) {
1575 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1576 }
1577 php_http_option_register(proxy_registry, ZEND_STRL("version"), CURLOPT_PROXY_SSLVERSION, IS_LONG);
1578 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("verifypeer"), CURLOPT_PROXY_SSL_VERIFYPEER, _IS_BOOL))) {
1579 ZVAL_BOOL(&opt->defval, 1);
1580 }
1581 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("verifyhost"), CURLOPT_PROXY_SSL_VERIFYHOST, _IS_BOOL))) {
1582 ZVAL_BOOL(&opt->defval, 1);
1583 opt->setter = php_http_curle_option_set_ssl_verifyhost;
1584 }
1585 php_http_option_register(proxy_registry, ZEND_STRL("cipher_list"), CURLOPT_PROXY_SSL_CIPHER_LIST, IS_STRING);
1586 # if PHP_HTTP_HAVE_LIBCURL_OPENSSL
1587 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("crlfile"), CURLOPT_PROXY_CRLFILE, IS_STRING))) {
1588 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1589 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1590 }
1591 # endif
1592 # if PHP_HTTP_HAVE_LIBCURL_CAINFO
1593 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("cainfo"), CURLOPT_PROXY_CAINFO, IS_STRING))) {
1594 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1595 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1596 # ifdef PHP_HTTP_CAINFO
1597 ZVAL_PSTRING(&opt->defval, PHP_HTTP_CAINFO);
1598 # endif
1599 }
1600 # endif
1601 # if PHP_HTTP_HAVE_LIBCURL_CAPATH
1602 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("capath"), CURLOPT_PROXY_CAPATH, IS_STRING))) {
1603 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1604 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1605 # ifdef PHP_HTTP_CAPATH
1606 ZVAL_PSTRING(&opt->defval, PHP_HTTP_CAPATH);
1607 # endif
1608 }
1609 # endif
1610
1611 # if PHP_HTTP_HAVE_LIBCURL_TLSAUTH_TYPE
1612 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("tlsauthtype"), CURLOPT_PROXY_TLSAUTH_TYPE, IS_LONG))) {
1613 opt->setter = php_http_curle_option_set_ssl_tlsauthtype;
1614 }
1615 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("tlsauthuser"), CURLOPT_PROXY_TLSAUTH_USERNAME, IS_STRING))) {
1616 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1617 }
1618 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("tlsauthpass"), CURLOPT_PROXY_TLSAUTH_PASSWORD, IS_STRING))) {
1619 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1620 }
1621 # endif
1622 # if PHP_HTTP_CURL_VERSION(7,59,0)
1623 /* FIXME: see http://curl.haxx.se/libcurl/c/CURLOPT_PINNEDPUBLICKEY.html#AVAILABILITY */
1624 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("pinned_publickey"), CURLOPT_PROXY_PINNEDPUBLICKEY, IS_STRING))) {
1625 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1626 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR;
1627 }
1628 # endif
1629 # if PHP_HTTP_CURL_VERSION(7,61,0)
1630 if ((opt = php_http_option_register(proxy_registry, ZEND_STRL("tls13_ciphers"), CURLOPT_PROXY_TLS13_CIPHERS, IS_STRING))) {
1631 opt->flags |= PHP_HTTP_CURLE_OPTION_CHECK_STRLEN;
1632 }
1633 # endif
1634 }
1635 #endif
1636
1637 }
1638 }
1639
1640 static zval *php_http_curle_get_option(php_http_option_t *opt, HashTable *options, void *userdata)
1641 {
1642 php_http_client_curl_handler_t *curl = userdata;
1643 zval *option;
1644
1645 if ((option = php_http_option_get(opt, options, NULL))) {
1646 zval zopt;
1647
1648 ZVAL_DUP(&zopt, option);
1649 convert_to_explicit_type(&zopt, opt->type);
1650 zend_hash_update(&curl->options.cache, opt->name, &zopt);
1651 return zend_hash_find(&curl->options.cache, opt->name);
1652 }
1653 return option;
1654 }
1655
1656 static ZEND_RESULT_CODE php_http_curle_set_option(php_http_option_t *opt, zval *val, void *userdata)
1657 {
1658 php_http_client_curl_handler_t *curl = userdata;
1659 CURL *ch = curl->handle;
1660 zval tmp;
1661 CURLcode rc = CURLE_UNKNOWN_OPTION;
1662 ZEND_RESULT_CODE rv = SUCCESS;
1663
1664 if (!val) {
1665 val = &opt->defval;
1666 }
1667
1668 switch (opt->type) {
1669 case _IS_BOOL:
1670 if (opt->setter) {
1671 rv = opt->setter(opt, val, curl);
1672 } else if (CURLE_OK != curl_easy_setopt(ch, opt->option, (long) (Z_TYPE_P(val) == IS_TRUE))) {
1673 rv = FAILURE;
1674 }
1675 break;
1676
1677 case IS_LONG:
1678 if (opt->setter) {
1679 rv = opt->setter(opt, val, curl);
1680 } else if (CURLE_OK != curl_easy_setopt(ch, opt->option, Z_LVAL_P(val))) {
1681 rv = FAILURE;
1682 }
1683 break;
1684
1685 case IS_STRING:
1686 if (opt->setter) {
1687 rv = opt->setter(opt, val, curl);
1688 } else if (!val || Z_TYPE_P(val) == IS_NULL) {
1689 if (CURLE_OK != (rc = curl_easy_setopt(ch, opt->option, NULL))) {
1690 rv = FAILURE;
1691 }
1692 } else if ((opt->flags & PHP_HTTP_CURLE_OPTION_CHECK_STRLEN) && !Z_STRLEN_P(val)) {
1693 if (CURLE_OK != (rc = curl_easy_setopt(ch, opt->option, NULL))) {
1694 rv = FAILURE;
1695 }
1696 } else if ((opt->flags & PHP_HTTP_CURLE_OPTION_CHECK_BASEDIR) && Z_STRVAL_P(val) && SUCCESS != php_check_open_basedir(Z_STRVAL_P(val))) {
1697 if (CURLE_OK != (rc = curl_easy_setopt(ch, opt->option, NULL))) {
1698 rv = FAILURE;
1699 }
1700 } else if (CURLE_OK != (rc = curl_easy_setopt(ch, opt->option, Z_STRVAL_P(val)))) {
1701 rv = FAILURE;
1702 }
1703 break;
1704
1705 case IS_DOUBLE:
1706 if (opt->flags & PHP_HTTP_CURLE_OPTION_TRANSFORM_MS) {
1707 tmp = *val;
1708 Z_DVAL(tmp) *= 1000;
1709 val = &tmp;
1710 }
1711 if (opt->setter) {
1712 rv = opt->setter(opt, val, curl);
1713 } else if (CURLE_OK != curl_easy_setopt(ch, opt->option, (long) Z_DVAL_P(val))) {
1714 rv = FAILURE;
1715 }
1716 break;
1717
1718 case IS_ARRAY:
1719 if (opt->setter) {
1720 rv = opt->setter(opt, val, curl);
1721 } else if (Z_TYPE_P(val) != IS_NULL) {
1722 rv = php_http_options_apply(&opt->suboptions, Z_ARRVAL_P(val), curl);
1723 }
1724 break;
1725
1726 default:
1727 if (opt->setter) {
1728 rv = opt->setter(opt, val, curl);
1729 } else {
1730 rv = FAILURE;
1731 }
1732 break;
1733 }
1734 if (rv != SUCCESS) {
1735 php_error_docref(NULL, E_NOTICE, "Could not set option %s (%s)", opt->name->val, curl_easy_strerror(rc));
1736 }
1737 return rv;
1738 }
1739
1740 #if PHP_HTTP_CURL_VERSION(7,30,0)
1741 static ZEND_RESULT_CODE php_http_curlm_option_set_pipelining_bl(php_http_option_t *opt, zval *value, void *userdata)
1742 {
1743 php_http_client_t *client = userdata;
1744 php_http_client_curl_t *curl = client->ctx;
1745 CURLM *ch = curl->handle->multi;
1746 HashTable tmp_ht;
1747 char **bl = NULL;
1748
1749 /* array of char *, ending with a NULL */
1750 if (value && Z_TYPE_P(value) != IS_NULL) {
1751 zval *entry;
1752 HashTable *ht = HASH_OF(value);
1753 int c = zend_hash_num_elements(ht);
1754 char **ptr = ecalloc(c + 1, sizeof(char *));
1755
1756 bl = ptr;
1757
1758 zend_hash_init(&tmp_ht, c, NULL, ZVAL_PTR_DTOR, 0);
1759 array_join(ht, &tmp_ht, 0, ARRAY_JOIN_STRINGIFY);
1760
1761 ZEND_HASH_FOREACH_VAL(&tmp_ht, entry)
1762 {
1763 *ptr++ = Z_STRVAL_P(entry);
1764 }
1765 ZEND_HASH_FOREACH_END();
1766 }
1767
1768 if (CURLM_OK != curl_multi_setopt(ch, opt->option, bl)) {
1769 if (bl) {
1770 efree(bl);
1771 zend_hash_destroy(&tmp_ht);
1772 }
1773 return FAILURE;
1774 }
1775
1776 if (bl) {
1777 efree(bl);
1778 zend_hash_destroy(&tmp_ht);
1779 }
1780 return SUCCESS;
1781 }
1782 #endif
1783
1784 static inline ZEND_RESULT_CODE php_http_curlm_use_eventloop(php_http_client_t *h, php_http_client_curl_ops_t *ev_ops, zval *init_data)
1785 {
1786 php_http_client_curl_t *curl = h->ctx;
1787 void *ev_ctx;
1788
1789 if (ev_ops) {
1790 if (!(ev_ctx = ev_ops->init(h, init_data))) {
1791 return FAILURE;
1792 }
1793 curl->ev_ctx = ev_ctx;
1794 curl->ev_ops = ev_ops;
1795 } else {
1796 if (curl->ev_ops) {
1797 if (curl->ev_ctx) {
1798 curl->ev_ops->dtor(&curl->ev_ctx);
1799 }
1800 curl->ev_ops = NULL;
1801 }
1802 }
1803
1804 return SUCCESS;
1805 }
1806
1807 static ZEND_RESULT_CODE php_http_curlm_option_set_use_eventloop(php_http_option_t *opt, zval *value, void *userdata)
1808 {
1809 php_http_client_t *client = userdata;
1810 php_http_client_curl_ops_t *ev_ops = NULL;
1811
1812 if (value && Z_TYPE_P(value) == IS_OBJECT && instanceof_function(Z_OBJCE_P(value), php_http_client_curl_user_get_class_entry())) {
1813 ev_ops = php_http_client_curl_user_ops_get();
1814 #if PHP_HTTP_HAVE_LIBEVENT
1815 } else if (value && zend_is_true(value)) {
1816 ev_ops = php_http_client_curl_event_ops_get();
1817 #endif
1818 }
1819
1820 return php_http_curlm_use_eventloop(client, ev_ops, value);
1821 }
1822
1823 static ZEND_RESULT_CODE php_http_curlm_option_set_share_cookies(php_http_option_t *opt, zval *value, void *userdata)
1824 {
1825 php_http_client_t *client = userdata;
1826 php_http_client_curl_t *curl = client->ctx;
1827 CURLSHcode rc;
1828
1829 if (Z_TYPE_P(value) == IS_TRUE) {
1830 rc = curl_share_setopt(curl->handle->share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE);
1831 } else {
1832 rc = curl_share_setopt(curl->handle->share, CURLSHOPT_UNSHARE, CURL_LOCK_DATA_COOKIE);
1833 }
1834
1835 if (CURLSHE_OK != rc) {
1836 php_error_docref(NULL, E_NOTICE, "Could not set option %s (%s)", opt->name->val, curl_share_strerror(rc));
1837 return FAILURE;
1838 }
1839 return SUCCESS;
1840 }
1841
1842 #if PHP_HTTP_CURL_VERSION(7,23,0)
1843 static ZEND_RESULT_CODE php_http_curlm_option_set_share_ssl(php_http_option_t *opt, zval *value, void *userdata)
1844 {
1845 php_http_client_t *client = userdata;
1846 php_http_client_curl_t *curl = client->ctx;
1847 CURLSHcode rc;
1848
1849 if (Z_TYPE_P(value) == IS_TRUE) {
1850 rc = curl_share_setopt(curl->handle->share, CURLSHOPT_SHARE, CURL_LOCK_DATA_SSL_SESSION);
1851 } else {
1852 rc = curl_share_setopt(curl->handle->share, CURLSHOPT_UNSHARE, CURL_LOCK_DATA_SSL_SESSION);
1853 }
1854
1855 if (CURLSHE_OK != rc) {
1856 php_error_docref(NULL, E_NOTICE, "Could not set option %s (%s)", opt->name->val, curl_share_strerror(rc));
1857 return FAILURE;
1858 }
1859 return SUCCESS;
1860 }
1861 #endif
1862
1863 static void php_http_curlm_options_init(php_http_options_t *registry)
1864 {
1865 php_http_option_t *opt;
1866
1867 /* set size of connection cache */
1868 if ((opt = php_http_option_register(registry, ZEND_STRL("maxconnects"), CURLMOPT_MAXCONNECTS, IS_LONG))) {
1869 /* -1 == default, 0 == unlimited */
1870 ZVAL_LONG(&opt->defval, -1);
1871 }
1872 /* set max number of connections to a single host */
1873 #if PHP_HTTP_CURL_VERSION(7,30,0)
1874 php_http_option_register(registry, ZEND_STRL("max_host_connections"), CURLMOPT_MAX_HOST_CONNECTIONS, IS_LONG);
1875 #endif
1876 /* maximum number of requests in a pipeline */
1877 #if PHP_HTTP_CURL_VERSION(7,30,0)
1878 if ((opt = php_http_option_register(registry, ZEND_STRL("max_pipeline_length"), CURLMOPT_MAX_PIPELINE_LENGTH, IS_LONG))) {
1879 ZVAL_LONG(&opt->defval, 5);
1880 }
1881 #endif
1882 /* max simultaneously open connections */
1883 #if PHP_HTTP_CURL_VERSION(7,30,0)
1884 php_http_option_register(registry, ZEND_STRL("max_total_connections"), CURLMOPT_MAX_TOTAL_CONNECTIONS, IS_LONG);
1885 #endif
1886 /* enable/disable HTTP pipelining */
1887 php_http_option_register(registry, ZEND_STRL("pipelining"), CURLMOPT_PIPELINING, _IS_BOOL);
1888 /* chunk length threshold for pipelining */
1889 #if PHP_HTTP_CURL_VERSION(7,30,0)
1890 php_http_option_register(registry, ZEND_STRL("chunk_length_penalty_size"), CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE, IS_LONG);
1891 #endif
1892 /* size threshold for pipelining penalty */
1893 #if PHP_HTTP_CURL_VERSION(7,30,0)
1894 php_http_option_register(registry, ZEND_STRL("content_length_penalty_size"), CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE, IS_LONG);
1895 #endif
1896 /* pipelining server blacklist */
1897 #if PHP_HTTP_CURL_VERSION(7,30,0)
1898 if ((opt = php_http_option_register(registry, ZEND_STRL("pipelining_server_bl"), CURLMOPT_PIPELINING_SERVER_BL, IS_ARRAY))) {
1899 opt->setter = php_http_curlm_option_set_pipelining_bl;
1900 }
1901 #endif
1902 /* pipelining host blacklist */
1903 #if PHP_HTTP_CURL_VERSION(7,30,0)
1904 if ((opt = php_http_option_register(registry, ZEND_STRL("pipelining_site_bl"), CURLMOPT_PIPELINING_SITE_BL, IS_ARRAY))) {
1905 opt->setter = php_http_curlm_option_set_pipelining_bl;
1906 }
1907 #endif
1908 /* events */
1909 if ((opt = php_http_option_register(registry, ZEND_STRL("use_eventloop"), 0, 0))) {
1910 opt->setter = php_http_curlm_option_set_use_eventloop;
1911 }
1912 /* share */
1913 if ((opt = php_http_option_register(registry, ZEND_STRL("share_cookies"), 0, _IS_BOOL))) {
1914 opt->setter = php_http_curlm_option_set_share_cookies;
1915 ZVAL_TRUE(&opt->defval);
1916 }
1917 #if PHP_HTTP_CURL_VERSION(7,23,0)
1918 if ((opt = php_http_option_register(registry, ZEND_STRL("share_ssl"), 0, _IS_BOOL))) {
1919 opt->setter = php_http_curlm_option_set_share_ssl;
1920 ZVAL_TRUE(&opt->defval);
1921 }
1922 #endif
1923 }
1924
1925 static ZEND_RESULT_CODE php_http_curlm_set_option(php_http_option_t *opt, zval *val, void *userdata)
1926 {
1927 php_http_client_t *client = userdata;
1928 php_http_client_curl_t *curl = client->ctx;
1929 CURLM *ch = curl->handle->multi;
1930 zval zopt, *orig = val;
1931 CURLMcode rc = CURLM_UNKNOWN_OPTION;
1932 ZEND_RESULT_CODE rv = SUCCESS;
1933
1934 if (!val) {
1935 val = &opt->defval;
1936 } else if (opt->type && Z_TYPE_P(val) != opt->type && !(Z_TYPE_P(val) == IS_NULL && opt->type == IS_ARRAY)) {
1937 ZVAL_DUP(&zopt, val);
1938 convert_to_explicit_type(&zopt, opt->type);
1939
1940 val = &zopt;
1941 }
1942
1943 if (opt->setter) {
1944 rv = opt->setter(opt, val, client);
1945 } else {
1946 switch (opt->type) {
1947 case _IS_BOOL:
1948 if (CURLM_OK != (rc = curl_multi_setopt(ch, opt->option, (long) zend_is_true(val)))) {
1949 rv = FAILURE;
1950 php_error_docref(NULL, E_NOTICE, "Could not set option %s (%s)", opt->name->val, curl_multi_strerror(rc));
1951 }
1952 break;
1953 case IS_LONG:
1954 if (CURLM_OK != (rc = curl_multi_setopt(ch, opt->option, Z_LVAL_P(val)))) {
1955 rv = FAILURE;
1956 php_error_docref(NULL, E_NOTICE, "Could not set option %s (%s)", opt->name->val, curl_multi_strerror(rc));
1957 }
1958 break;
1959 default:
1960 rv = FAILURE;
1961 php_error_docref(NULL, E_NOTICE, "Could not set option %s", opt->name->val);
1962 break;
1963 }
1964 }
1965
1966 if (val && val != orig && val != &opt->defval) {
1967 zval_ptr_dtor(val);
1968 }
1969
1970 return rv;
1971 }
1972
1973 /* client ops */
1974
1975 static ZEND_RESULT_CODE php_http_client_curl_handler_reset(php_http_client_curl_handler_t *curl)
1976 {
1977 CURL *ch = curl->handle;
1978 php_http_curle_storage_t *st;
1979
1980 if ((st = php_http_curle_get_storage(ch))) {
1981 if (st->url) {
1982 pefree(st->url, 1);
1983 st->url = NULL;
1984 }
1985 if (st->cookiestore) {
1986 pefree(st->cookiestore, 1);
1987 st->cookiestore = NULL;
1988 }
1989 st->errorbuffer[0] = '\0';
1990 st->errorcode = 0;
1991 }
1992
1993 curl_easy_setopt(ch, CURLOPT_URL, NULL);
1994 curl_easy_setopt(ch, CURLOPT_CUSTOMREQUEST, NULL);
1995 curl_easy_setopt(ch, CURLOPT_HTTPGET, 1L);
1996 curl_easy_setopt(ch, CURLOPT_NOBODY, 0L);
1997 /* libcurl < 7.19.6 does not clear auth info with USERPWD set to NULL */
1998 #if PHP_HTTP_CURL_VERSION(7,19,1)
1999 curl_easy_setopt(ch, CURLOPT_PROXYUSERNAME, NULL);
2000 curl_easy_setopt(ch, CURLOPT_PROXYPASSWORD, NULL);
2001 curl_easy_setopt(ch, CURLOPT_USERNAME, NULL);
2002 curl_easy_setopt(ch, CURLOPT_PASSWORD, NULL);
2003 #endif
2004
2005 #if PHP_HTTP_CURL_VERSION(7,21,3)
2006 if (curl->options.resolve) {
2007 curl_slist_free_all(curl->options.resolve);
2008 curl->options.resolve = NULL;
2009 }
2010 #endif
2011 curl->options.retry.count = 0;
2012 curl->options.retry.delay = 0;
2013 curl->options.redirects = 0;
2014 curl->options.encode_cookies = 1;
2015
2016 if (curl->options.headers) {
2017 curl_slist_free_all(curl->options.headers);
2018 curl->options.headers = NULL;
2019 }
2020 if (curl->options.proxyheaders) {
2021 curl_slist_free_all(curl->options.proxyheaders);
2022 curl->options.proxyheaders = NULL;
2023 }
2024
2025 php_http_buffer_reset(&curl->options.cookies);
2026 php_http_buffer_reset(&curl->options.ranges);
2027
2028 return SUCCESS;
2029 }
2030
2031 static php_http_client_curl_handler_t *php_http_client_curl_handler_init(php_http_client_t *h, php_resource_factory_t *rf)
2032 {
2033 void *handle;
2034 php_http_client_curl_t *curl = h->ctx;
2035 php_http_client_curl_handler_t *handler;
2036
2037 if (!(handle = php_resource_factory_handle_ctor(rf, NULL))) {
2038 php_error_docref(NULL, E_WARNING, "Failed to initialize curl handle");
2039 return NULL;
2040 }
2041
2042 handler = ecalloc(1, sizeof(*handler));
2043 handler->rf = rf;
2044 handler->client = h;
2045 handler->handle = handle;
2046 handler->response.body = php_http_message_body_init(NULL, NULL);
2047 php_http_buffer_init(&handler->response.headers);
2048 php_http_buffer_init(&handler->options.cookies);
2049 php_http_buffer_init(&handler->options.ranges);
2050 zend_hash_init(&handler->options.cache, 0, NULL, ZVAL_PTR_DTOR, 0);
2051
2052 #if ZTS
2053 curl_easy_setopt(handle, CURLOPT_NOSIGNAL, 1L);
2054 #endif
2055 curl_easy_setopt(handle, CURLOPT_HEADER, 0L);
2056 curl_easy_setopt(handle, CURLOPT_FILETIME, 1L);
2057 curl_easy_setopt(handle, CURLOPT_AUTOREFERER, 1L);
2058 curl_easy_setopt(handle, CURLOPT_VERBOSE, 1L);
2059 curl_easy_setopt(handle, CURLOPT_NOPROGRESS, 0L);
2060 curl_easy_setopt(handle, CURLOPT_HEADERFUNCTION, php_http_curle_header_callback);
2061 curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, php_http_curle_body_callback);
2062 curl_easy_setopt(handle, CURLOPT_DEBUGFUNCTION, php_http_curle_raw_callback);
2063 curl_easy_setopt(handle, CURLOPT_READFUNCTION, php_http_curle_read_callback);
2064 curl_easy_setopt(handle, CURLOPT_SEEKFUNCTION, php_http_curle_seek_callback);
2065 #if PHP_HTTP_CURL_VERSION(7,32,0)
2066 curl_easy_setopt(handle, CURLOPT_XFERINFOFUNCTION, php_http_curle_xferinfo_callback);
2067 curl_easy_setopt(handle, CURLOPT_XFERINFODATA, handler);
2068 #else
2069 curl_easy_setopt(handle, CURLOPT_PROGRESSFUNCTION, php_http_curle_progress_callback);
2070 curl_easy_setopt(handle, CURLOPT_PROGRESSDATA, handler);
2071 #endif
2072 curl_easy_setopt(handle, CURLOPT_DEBUGDATA, handler);
2073 curl_easy_setopt(handle, CURLOPT_WRITEDATA, handler);
2074 curl_easy_setopt(handle, CURLOPT_HEADERDATA, handler);
2075 curl_easy_setopt(handle, CURLOPT_SHARE, curl->handle->share);
2076
2077 php_http_client_curl_handler_reset(handler);
2078
2079 return handler;
2080 }
2081
2082
2083 static ZEND_RESULT_CODE php_http_client_curl_handler_prepare(php_http_client_curl_handler_t *curl, php_http_client_enqueue_t *enqueue)
2084 {
2085 size_t body_size;
2086 php_http_message_t *msg = enqueue->request;
2087 php_http_curle_storage_t *storage = php_http_curle_get_storage(curl->handle);
2088
2089 /* request url */
2090 if (!PHP_HTTP_INFO(msg).request.url) {
2091 php_error_docref(NULL, E_WARNING, "Cannot request empty URL");
2092 return FAILURE;
2093 }
2094 storage->errorbuffer[0] = '\0';
2095 if (storage->url) {
2096 pefree(storage->url, 1);
2097 }
2098 php_http_url_to_string(PHP_HTTP_INFO(msg).request.url, &storage->url, NULL, 1);
2099 curl_easy_setopt(curl->handle, CURLOPT_URL, storage->url);
2100
2101 /* apply options */
2102 php_http_options_apply(&php_http_curle_options, enqueue->options, curl);
2103
2104 /* request headers */
2105 php_http_message_update_headers(msg);
2106 if (zend_hash_num_elements(&msg->hdrs)) {
2107 php_http_arrkey_t header_key;
2108 zval *header_val;
2109 zend_string *header_str;
2110 php_http_buffer_t header;
2111 #if !PHP_HTTP_CURL_VERSION(7,23,0)
2112 zval *ct = zend_hash_str_find(&msg->hdrs, ZEND_STRL("Content-Length"));
2113 #endif
2114
2115 php_http_buffer_init(&header);
2116 ZEND_HASH_FOREACH_KEY_VAL(&msg->hdrs, header_key.h, header_key.key, header_val)
2117 {
2118 if (header_key.key) {
2119 #if !PHP_HTTP_CURL_VERSION(7,23,0)
2120 /* avoid duplicate content-length header */
2121 if (ct && ct == header_val) {
2122 continue;
2123 }
2124 #endif
2125 header_str = zval_get_string(header_val);
2126 php_http_buffer_appendf(&header, "%s: %s", header_key.key->val, header_str->val);
2127 php_http_buffer_fix(&header);
2128 curl->options.headers = curl_slist_append(curl->options.headers, header.data);
2129 php_http_buffer_reset(&header);
2130 zend_string_release(header_str);
2131 }
2132 }
2133 ZEND_HASH_FOREACH_END();
2134 php_http_buffer_dtor(&header);
2135 }
2136 curl_easy_setopt(curl->handle, CURLOPT_HTTPHEADER, curl->options.headers);
2137
2138 /* attach request body */
2139 if ((body_size = php_http_message_body_size(msg->body))) {
2140 /* RFC2616, section 4.3 (para. 4) states that »a message-body MUST NOT be included in a request if the
2141 * specification of the request method (section 5.1.1) does not allow sending an entity-body in request.«
2142 * Following the clause in section 5.1.1 (para. 2) that request methods »MUST be implemented with the
2143 * same semantics as those specified in section 9« reveal that not any single defined HTTP/1.1 method
2144 * does not allow a request body.
2145 */
2146 php_stream_rewind(php_http_message_body_stream(msg->body));
2147 curl_easy_setopt(curl->handle, CURLOPT_SEEKDATA, msg->body);
2148 curl_easy_setopt(curl->handle, CURLOPT_READDATA, msg->body);
2149 curl_easy_setopt(curl->handle, CURLOPT_INFILESIZE, body_size);
2150 curl_easy_setopt(curl->handle, CURLOPT_POSTFIELDSIZE, body_size);
2151 curl_easy_setopt(curl->handle, CURLOPT_POST, 1L);
2152 } else {
2153 curl_easy_setopt(curl->handle, CURLOPT_SEEKDATA, NULL);
2154 curl_easy_setopt(curl->handle, CURLOPT_READDATA, NULL);
2155 curl_easy_setopt(curl->handle, CURLOPT_INFILESIZE, 0L);
2156 curl_easy_setopt(curl->handle, CURLOPT_POSTFIELDSIZE, 0L);
2157 }
2158
2159 /*
2160 * Always use CUSTOMREQUEST, else curl won't send any request body for GET etc.
2161 * See e.g. bug #69313.
2162 *
2163 * Here's what curl does:
2164 * - CURLOPT_HTTPGET: ignore request body
2165 * - CURLOPT_UPLOAD: set "Expect: 100-continue" header
2166 * - CURLOPT_POST: set "Content-Type: application/x-www-form-urlencoded" header
2167 * Now select the least bad.
2168 *
2169 * See also https://tools.ietf.org/html/rfc7231#section-5.1.1
2170 */
2171 if (PHP_HTTP_INFO(msg).request.method) {
2172 switch(php_http_select_str(PHP_HTTP_INFO(msg).request.method, 2, "HEAD", "PUT")) {
2173 case 0:
2174 curl_easy_setopt(curl->handle, CURLOPT_NOBODY, 1L);
2175 break;
2176 case 1:
2177 curl_easy_setopt(curl->handle, CURLOPT_UPLOAD, 1L);
2178 break;
2179 default:
2180 curl_easy_setopt(curl->handle, CURLOPT_CUSTOMREQUEST, PHP_HTTP_INFO(msg).request.method);
2181 }
2182 } else {
2183 php_error_docref(NULL, E_WARNING, "Cannot use empty request method");
2184 return FAILURE;
2185 }
2186
2187 return SUCCESS;
2188 }
2189
2190 static void php_http_client_curl_handler_clear(php_http_client_curl_handler_t *handler)
2191 {
2192 curl_easy_setopt(handler->handle, CURLOPT_NOPROGRESS, 1L);
2193 #if PHP_HTTP_CURL_VERSION(7,32,0)
2194 curl_easy_setopt(handler->handle, CURLOPT_XFERINFOFUNCTION, NULL);
2195 #else
2196 curl_easy_setopt(handler->handle, CURLOPT_PROGRESSFUNCTION, NULL);
2197 #endif
2198 curl_easy_setopt(handler->handle, CURLOPT_VERBOSE, 0L);
2199 curl_easy_setopt(handler->handle, CURLOPT_DEBUGFUNCTION, NULL);
2200 curl_easy_setopt(handler->handle, CURLOPT_COOKIELIST, "FLUSH");
2201 curl_easy_setopt(handler->handle, CURLOPT_SHARE, NULL);
2202 /* see gh issue #84 */
2203 #if PHP_HTTP_CURL_VERSION(7,63,0) && !PHP_HTTP_CURL_VERSION(7,65,0)
2204 curl_easy_setopt(handler->handle, CURLOPT_COOKIEJAR, NULL);
2205 #endif
2206 }
2207
2208 static void php_http_client_curl_handler_dtor(php_http_client_curl_handler_t *handler)
2209 {
2210 php_http_client_curl_handler_clear(handler);
2211
2212 php_resource_factory_handle_dtor(handler->rf, handler->handle);
2213 php_resource_factory_free(&handler->rf);
2214
2215 php_http_message_body_free(&handler->response.body);
2216 php_http_buffer_dtor(&handler->response.headers);
2217 php_http_buffer_dtor(&handler->options.ranges);
2218 php_http_buffer_dtor(&handler->options.cookies);
2219 zend_hash_destroy(&handler->options.cache);
2220
2221 #if PHP_HTTP_CURL_VERSION(7,21,3)
2222 if (handler->options.resolve) {
2223 curl_slist_free_all(handler->options.resolve);
2224 handler->options.resolve = NULL;
2225 }
2226 #endif
2227
2228 if (handler->options.headers) {
2229 curl_slist_free_all(handler->options.headers);
2230 handler->options.headers = NULL;
2231 }
2232
2233 if (handler->options.proxyheaders) {
2234 curl_slist_free_all(handler->options.proxyheaders);
2235 handler->options.proxyheaders = NULL;
2236 }
2237
2238 efree(handler);
2239 }
2240
2241 static php_http_client_t *php_http_client_curl_init(php_http_client_t *h, void *handle)
2242 {
2243 php_http_client_curl_t *curl;
2244
2245 if (!handle && !(handle = php_resource_factory_handle_ctor(h->rf, NULL))) {
2246 php_error_docref(NULL, E_WARNING, "Failed to initialize curl handle");
2247 return NULL;
2248 }
2249
2250 curl = ecalloc(1, sizeof(*curl));
2251 curl->handle = handle;
2252 curl->unfinished = 0;
2253 h->ctx = curl;
2254
2255 return h;
2256 }
2257
2258 static void php_http_client_curl_dtor(php_http_client_t *h)
2259 {
2260 php_http_client_curl_t *curl = h->ctx;
2261
2262 if (curl->ev_ops) {
2263 curl->ev_ops->dtor(&curl->ev_ctx);
2264 curl->ev_ops = NULL;
2265 }
2266 curl->unfinished = 0;
2267
2268 php_resource_factory_handle_dtor(h->rf, curl->handle);
2269
2270 efree(curl);
2271 h->ctx = NULL;
2272 }
2273
2274 static void queue_dtor(php_http_client_enqueue_t *e)
2275 {
2276 php_http_client_curl_handler_t *handler = e->opaque;
2277
2278 if (handler->queue.dtor) {
2279 e->opaque = handler->queue.opaque;
2280 handler->queue.dtor(e);
2281 }
2282 php_http_client_curl_handler_dtor(handler);
2283 }
2284
2285 static php_resource_factory_t *create_rf(php_http_client_t *h, php_http_client_enqueue_t *enqueue)
2286 {
2287 php_persistent_handle_factory_t *pf = NULL;
2288 php_resource_factory_t *rf = NULL;
2289 php_http_url_t *url = enqueue->request->http.info.request.url;
2290
2291 if (!url || (!url->host && !url->path)) {
2292 php_error_docref(NULL, E_WARNING, "Cannot request empty URL");
2293 return NULL;
2294 }
2295
2296 /* only if the client itself is setup for persistence */
2297 if (php_resource_factory_is_persistent(h->rf)) {
2298 zend_string *id;
2299 char *id_str = NULL;
2300 size_t id_len;
2301 int port = url->port ? url->port : 80;
2302 zval *zport;
2303 php_persistent_handle_factory_t *phf = h->rf->data;
2304
2305 if ((zport = zend_hash_str_find(enqueue->options, ZEND_STRL("port")))) {
2306 zend_long lport = zval_get_long(zport);
2307
2308 if (lport > 0) {
2309 port = lport;
2310 }
2311 }
2312
2313 id_len = spprintf(&id_str, 0, "%.*s:%s:%d", (int) phf->ident->len, phf->ident->val, STR_PTR(url->host), port);
2314 id = php_http_cs2zs(id_str, id_len);
2315 pf = php_persistent_handle_concede(NULL, PHP_HTTP_G->client.curl.driver.request_name, id, NULL, NULL);
2316 zend_string_release(id);
2317 }
2318
2319 if (pf) {
2320 rf = php_persistent_handle_resource_factory_init(NULL, pf);
2321 } else {
2322 rf = php_resource_factory_init(NULL, &php_http_curle_resource_factory_ops, NULL, NULL);
2323 }
2324
2325 return rf;
2326 }
2327
2328 static ZEND_RESULT_CODE php_http_client_curl_enqueue(php_http_client_t *h, php_http_client_enqueue_t *enqueue)
2329 {
2330 CURLMcode rs;
2331 php_http_client_curl_t *curl = h->ctx;
2332 php_http_client_curl_handler_t *handler;
2333 php_http_client_progress_state_t *progress;
2334 php_resource_factory_t *rf;
2335
2336 rf = create_rf(h, enqueue);
2337 if (!rf) {
2338 return FAILURE;
2339 }
2340
2341 handler = php_http_client_curl_handler_init(h, rf);
2342 if (!handler) {
2343 return FAILURE;
2344 }
2345
2346 if (SUCCESS != php_http_client_curl_handler_prepare(handler, enqueue)) {
2347 php_http_client_curl_handler_dtor(handler);
2348 return FAILURE;
2349 }
2350
2351 handler->queue = *enqueue;
2352 enqueue->opaque = handler;
2353 enqueue->dtor = queue_dtor;
2354
2355 if (CURLM_OK != (rs = curl_multi_add_handle(curl->handle->multi, handler->handle))) {
2356 php_http_client_curl_handler_dtor(handler);
2357 php_error_docref(NULL, E_WARNING, "Could not enqueue request: %s", curl_multi_strerror(rs));
2358 return FAILURE;
2359 }
2360
2361 zend_llist_add_element(&h->requests, enqueue);
2362 ++curl->unfinished;
2363
2364 if (h->callback.progress.func && SUCCESS == php_http_client_getopt(h, PHP_HTTP_CLIENT_OPT_PROGRESS_INFO, enqueue->request, &progress)) {
2365 progress->info = "start";
2366 h->callback.progress.func(h->callback.progress.arg, h, &handler->queue, progress);
2367 progress->started = 1;
2368 }
2369
2370 return SUCCESS;
2371 }
2372
2373 static ZEND_RESULT_CODE php_http_client_curl_dequeue(php_http_client_t *h, php_http_client_enqueue_t *enqueue)
2374 {
2375 CURLMcode rs;
2376 php_http_client_curl_t *curl = h->ctx;
2377 php_http_client_curl_handler_t *handler = enqueue->opaque;
2378
2379 if (h->callback.depth && !CG(unclean_shutdown)) {
2380 php_error_docref(NULL, E_WARNING, "Could not dequeue request while executing callbacks");
2381 return FAILURE;
2382 }
2383
2384 php_http_client_curl_handler_clear(handler);
2385 if (CURLM_OK == (rs = curl_multi_remove_handle(curl->handle->multi, handler->handle))) {
2386 zend_llist_del_element(&h->requests, handler->handle, (int (*)(void *, void *)) compare_queue);
2387 return SUCCESS;
2388 } else {
2389 php_error_docref(NULL, E_WARNING, "Could not dequeue request: %s", curl_multi_strerror(rs));
2390 }
2391
2392 return FAILURE;
2393 }
2394
2395 static void php_http_client_curl_reset(php_http_client_t *h)
2396 {
2397 zend_llist_element *next_el, *this_el;
2398
2399 for (this_el = h->requests.head; this_el; this_el = next_el) {
2400 next_el = this_el->next;
2401 php_http_client_curl_dequeue(h, (void *) this_el->data);
2402 }
2403 }
2404
2405 #if PHP_WIN32
2406 # define SELECT_ERROR SOCKET_ERROR
2407 #else
2408 # define SELECT_ERROR -1
2409 #endif
2410
2411 static ZEND_RESULT_CODE php_http_client_curl_wait(php_http_client_t *h, struct timeval *custom_timeout)
2412 {
2413 int MAX;
2414 fd_set R, W, E;
2415 struct timeval timeout;
2416 php_http_client_curl_t *curl = h->ctx;
2417
2418 if (curl->ev_ops) {
2419 return curl->ev_ops->wait(curl->ev_ctx, custom_timeout);
2420 }
2421
2422 FD_ZERO(&R);
2423 FD_ZERO(&W);
2424 FD_ZERO(&E);
2425
2426 if (CURLM_OK == curl_multi_fdset(curl->handle->multi, &R, &W, &E, &MAX)) {
2427 if (custom_timeout && timerisset(custom_timeout)) {
2428 timeout = *custom_timeout;
2429 } else {
2430 php_http_client_curl_get_timeout(curl, 1000, &timeout);
2431 }
2432
2433 if (MAX == -1) {
2434 php_http_sleep((double) timeout.tv_sec + (double) (timeout.tv_usec / PHP_HTTP_MCROSEC));
2435 return SUCCESS;
2436 } else if (SELECT_ERROR != select(MAX + 1, &R, &W, &E, &timeout)) {
2437 return SUCCESS;
2438 }
2439 }
2440 return FAILURE;
2441 }
2442
2443 static int php_http_client_curl_once(php_http_client_t *h)
2444 {
2445 php_http_client_curl_t *curl = h->ctx;
2446
2447 if (!h->callback.depth) {
2448 if (curl->ev_ops) {
2449 curl->ev_ops->once(curl->ev_ctx);
2450 } else {
2451 while (CURLM_CALL_MULTI_PERFORM == curl_multi_perform(curl->handle->multi, &curl->unfinished));
2452 }
2453
2454 php_http_client_curl_responsehandler(h);
2455 }
2456
2457 return curl->unfinished;
2458 }
2459
2460 static ZEND_RESULT_CODE php_http_client_curl_exec(php_http_client_t *h)
2461 {
2462 php_http_client_curl_t *curl = h->ctx;
2463
2464 if (!h->callback.depth) {
2465 if (curl->ev_ops) {
2466 return curl->ev_ops->exec(curl->ev_ctx);
2467 }
2468
2469 while (php_http_client_curl_once(h) && !EG(exception)) {
2470 if (SUCCESS != php_http_client_curl_wait(h, NULL)) {
2471 #if PHP_WIN32
2472 /* see http://msdn.microsoft.com/library/en-us/winsock/winsock/windows_sockets_error_codes_2.asp */
2473 php_error_docref(NULL, E_WARNING, "WinSock error: %d", WSAGetLastError());
2474 #else
2475 php_error_docref(NULL, E_WARNING, "%s", strerror(errno));
2476 #endif
2477 return FAILURE;
2478 }
2479 }
2480 }
2481
2482 return SUCCESS;
2483 }
2484
2485 static ZEND_RESULT_CODE php_http_client_curl_setopt(php_http_client_t *h, php_http_client_setopt_opt_t opt, void *arg)
2486 {
2487 php_http_client_curl_t *curl = h->ctx;
2488
2489 switch (opt) {
2490 case PHP_HTTP_CLIENT_OPT_CONFIGURATION:
2491 return php_http_options_apply(&php_http_curlm_options, (HashTable *) arg, h);
2492 break;
2493
2494 case PHP_HTTP_CLIENT_OPT_ENABLE_PIPELINING:
2495 if (CURLM_OK != curl_multi_setopt(curl->handle->multi, CURLMOPT_PIPELINING, (long) *((zend_bool *) arg))) {
2496 return FAILURE;
2497 }
2498 break;
2499
2500 case PHP_HTTP_CLIENT_OPT_USE_EVENTS:
2501 #if PHP_HTTP_HAVE_LIBEVENT
2502 return php_http_curlm_use_eventloop(h, (*(zend_bool *) arg)
2503 ? php_http_client_curl_event_ops_get()
2504 : NULL, NULL);
2505 break;
2506 #endif
2507
2508 default:
2509 return FAILURE;
2510 }
2511 return SUCCESS;
2512 }
2513
2514 static int apply_available_options(zval *pDest, int num_args, va_list args, zend_hash_key *hash_key)
2515 {
2516 php_http_option_t *opt = Z_PTR_P(pDest);
2517 HashTable *ht;
2518 zval entry;
2519 int c;
2520
2521 ht = va_arg(args, HashTable*);
2522
2523 if ((c = zend_hash_num_elements(&opt->suboptions.options))) {
2524 array_init_size(&entry, c);
2525 zend_hash_apply_with_arguments(&opt->suboptions.options, apply_available_options, 1, Z_ARRVAL(entry));
2526 } else {
2527 /* catch deliberate NULL options */
2528 if (Z_TYPE(opt->defval) == IS_STRING && !Z_STRVAL(opt->defval)) {
2529 ZVAL_NULL(&entry);
2530 } else {
2531 ZVAL_ZVAL(&entry, &opt->defval, 1, 0);
2532 }
2533 }
2534
2535 if (hash_key->key) {
2536 zend_hash_update(ht, hash_key->key, &entry);
2537 } else {
2538 zend_hash_index_update(ht, hash_key->h, &entry);
2539 }
2540
2541 return ZEND_HASH_APPLY_KEEP;
2542 }
2543
2544 static ZEND_RESULT_CODE php_http_client_curl_getopt(php_http_client_t *h, php_http_client_getopt_opt_t opt, void *arg, void **res)
2545 {
2546 php_http_client_enqueue_t *enqueue;
2547
2548 switch (opt) {
2549 case PHP_HTTP_CLIENT_OPT_PROGRESS_INFO:
2550 if ((enqueue = php_http_client_enqueued(h, arg, NULL))) {
2551 php_http_client_curl_handler_t *handler = enqueue->opaque;
2552
2553 *((php_http_client_progress_state_t **) res) = &handler->progress;
2554 return SUCCESS;
2555 }
2556 break;
2557
2558 case PHP_HTTP_CLIENT_OPT_TRANSFER_INFO:
2559 if ((enqueue = php_http_client_enqueued(h, arg, NULL))) {
2560 php_http_client_curl_handler_t *handler = enqueue->opaque;
2561
2562 php_http_curle_get_info(handler->handle, *(HashTable **) res);
2563 return SUCCESS;
2564 }
2565 break;
2566
2567 case PHP_HTTP_CLIENT_OPT_AVAILABLE_OPTIONS:
2568 zend_hash_apply_with_arguments(&php_http_curle_options.options, apply_available_options, 1, *(HashTable **) res);
2569 break;
2570
2571 case PHP_HTTP_CLIENT_OPT_AVAILABLE_CONFIGURATION:
2572 zend_hash_apply_with_arguments(&php_http_curlm_options.options, apply_available_options, 1, *(HashTable **) res);
2573 break;
2574
2575 default:
2576 break;
2577 }
2578
2579 return FAILURE;
2580 }
2581
2582 static php_http_client_ops_t php_http_client_curl_ops = {
2583 &php_http_curlm_resource_factory_ops,
2584 php_http_client_curl_init,
2585 NULL /* copy */,
2586 php_http_client_curl_dtor,
2587 php_http_client_curl_reset,
2588 php_http_client_curl_exec,
2589 php_http_client_curl_wait,
2590 php_http_client_curl_once,
2591 php_http_client_curl_enqueue,
2592 php_http_client_curl_dequeue,
2593 php_http_client_curl_setopt,
2594 php_http_client_curl_getopt
2595 };
2596
2597 php_http_client_ops_t *php_http_client_curl_get_ops(void)
2598 {
2599 return &php_http_client_curl_ops;
2600 }
2601
2602 #define REGISTER_NS_STRING_OR_NULL_CONSTANT(ns, name, str, flags) \
2603 do { \
2604 if ((str) != NULL) { \
2605 REGISTER_NS_STRING_CONSTANT(ns, name, str, flags); \
2606 } else { \
2607 REGISTER_NS_NULL_CONSTANT(ns, name, flags); \
2608 } \
2609 } while (0)
2610
2611 PHP_MINIT_FUNCTION(http_client_curl)
2612 {
2613 curl_version_info_data *info;
2614 php_http_options_t *options;
2615
2616 PHP_HTTP_G->client.curl.driver.driver_name = zend_string_init(ZEND_STRL("curl"), 1);
2617 PHP_HTTP_G->client.curl.driver.client_name = zend_string_init(ZEND_STRL("http\\Client\\Curl"), 1);
2618 PHP_HTTP_G->client.curl.driver.request_name = zend_string_init(ZEND_STRL("http\\Client\\Curl\\Request"), 1);
2619 PHP_HTTP_G->client.curl.driver.client_ops = &php_http_client_curl_ops;
2620
2621 if (SUCCESS != php_http_client_driver_add(&PHP_HTTP_G->client.curl.driver)) {
2622 return FAILURE;
2623 }
2624
2625 if (SUCCESS != php_persistent_handle_provide(PHP_HTTP_G->client.curl.driver.client_name, &php_http_curlm_resource_factory_ops, NULL, NULL)) {
2626 return FAILURE;
2627 }
2628 if (SUCCESS != php_persistent_handle_provide(PHP_HTTP_G->client.curl.driver.request_name, &php_http_curle_resource_factory_ops, NULL, NULL)) {
2629 return FAILURE;
2630 }
2631
2632 if ((options = php_http_options_init(&php_http_curle_options, 1))) {
2633 options->getter = php_http_curle_get_option;
2634 options->setter = php_http_curle_set_option;
2635
2636 php_http_curle_options_init(options);
2637 }
2638 if ((options = php_http_options_init(&php_http_curlm_options, 1))) {
2639 options->getter = php_http_option_get;
2640 options->setter = php_http_curlm_set_option;
2641
2642 php_http_curlm_options_init(options);
2643 }
2644
2645 if ((info = curl_version_info(CURLVERSION_NOW))) {
2646 char tmp_ver[0x20], *tmp_ptr, *tmp_end;
2647 #define tmp_ver_init() do {\
2648 tmp_ver[0] = 0; \
2649 tmp_ptr = &tmp_ver[0]; \
2650 tmp_end = &tmp_ver[sizeof(tmp_ver) - 1]; \
2651 } while (0)
2652
2653 /*
2654 * Feature constants
2655 */
2656 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "FEATURES", info->features, CONST_CS|CONST_PERSISTENT);
2657
2658 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "IPV6", CURL_VERSION_IPV6, CONST_CS|CONST_PERSISTENT);
2659 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "KERBEROS4", CURL_VERSION_KERBEROS4, CONST_CS|CONST_PERSISTENT);
2660 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "SSL", CURL_VERSION_SSL, CONST_CS|CONST_PERSISTENT);
2661 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "LIBZ", CURL_VERSION_LIBZ, CONST_CS|CONST_PERSISTENT);
2662 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "NTLM", CURL_VERSION_NTLM, CONST_CS|CONST_PERSISTENT);
2663 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "GSSNEGOTIATE", CURL_VERSION_GSSNEGOTIATE, CONST_CS|CONST_PERSISTENT);
2664 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "ASYNCHDNS", CURL_VERSION_ASYNCHDNS, CONST_CS|CONST_PERSISTENT);
2665 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "SPNEGO", CURL_VERSION_SPNEGO, CONST_CS|CONST_PERSISTENT);
2666 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "LARGEFILE", CURL_VERSION_LARGEFILE, CONST_CS|CONST_PERSISTENT);
2667 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "IDN", CURL_VERSION_IDN, CONST_CS|CONST_PERSISTENT);
2668 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "SSPI", CURL_VERSION_SSPI, CONST_CS|CONST_PERSISTENT);
2669 #if PHP_HTTP_CURL_VERSION(7,21,4)
2670 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "TLSAUTH_SRP", CURL_VERSION_TLSAUTH_SRP, CONST_CS|CONST_PERSISTENT);
2671 #endif
2672 #if PHP_HTTP_CURL_VERSION(7,22,0)
2673 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "NTLM_WB", CURL_VERSION_NTLM_WB, CONST_CS|CONST_PERSISTENT);
2674 #endif
2675 #if PHP_HTTP_CURL_VERSION(7,33,0)
2676 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "HTTP2", CURL_VERSION_HTTP2, CONST_CS|CONST_PERSISTENT);
2677 #endif
2678 #if PHP_HTTP_CURL_VERSION(7,38,0)
2679 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "GSSAPI", CURL_VERSION_GSSAPI, CONST_CS|CONST_PERSISTENT);
2680 #endif
2681 #if PHP_HTTP_CURL_VERSION(7,40,0)
2682 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "KERBEROS5", CURL_VERSION_KERBEROS5, CONST_CS|CONST_PERSISTENT);
2683 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "UNIX_SOCKETS", CURL_VERSION_UNIX_SOCKETS, CONST_CS|CONST_PERSISTENT);
2684 #endif
2685 #if PHP_HTTP_CURL_VERSION(7,47,0)
2686 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "PSL", CURL_VERSION_PSL, CONST_CS|CONST_PERSISTENT);
2687 #endif
2688 #if PHP_HTTP_CURL_VERSION(7,52,0)
2689 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "HTTPS_PROXY", CURL_VERSION_HTTPS_PROXY, CONST_CS|CONST_PERSISTENT);
2690 #endif
2691 #if PHP_HTTP_CURL_VERSION(7,56,0)
2692 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "MULTI_SSL", CURL_VERSION_MULTI_SSL, CONST_CS|CONST_PERSISTENT);
2693 #endif
2694 #if PHP_HTTP_CURL_VERSION(7,57,0)
2695 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "BROTLI", CURL_VERSION_BROTLI, CONST_CS|CONST_PERSISTENT);
2696 #endif
2697 #if PHP_HTTP_CURL_VERSION(7,64,1)
2698 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "ALTSVC", CURL_VERSION_ALTSVC, CONST_CS|CONST_PERSISTENT);
2699 #endif
2700 #if PHP_HTTP_CURL_VERSION(7,66,0)
2701 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "HTTP3", CURL_VERSION_HTTP3, CONST_CS|CONST_PERSISTENT);
2702 #endif
2703 #if PHP_HTTP_CURL_VERSION(7,72,0)
2704 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "ZSTD", CURL_VERSION_ZSTD, CONST_CS|CONST_PERSISTENT);
2705 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "UNICODE", CURL_VERSION_UNICODE, CONST_CS|CONST_PERSISTENT);
2706 #endif
2707 #if PHP_HTTP_CURL_VERSION(7,74,0)
2708 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl\\Features", "HSTS", CURL_VERSION_HSTS, CONST_CS|CONST_PERSISTENT);
2709 #endif
2710
2711
2712 /*
2713 * Version constants
2714 */
2715 REGISTER_NS_STRING_CONSTANT("http\\Client\\Curl", "VERSIONS", curl_version(), CONST_CS|CONST_PERSISTENT);
2716 REGISTER_NS_STRING_CONSTANT("http\\Client\\Curl\\Versions", "CURL", info->version, CONST_CS|CONST_PERSISTENT);
2717 REGISTER_NS_STRING_OR_NULL_CONSTANT("http\\Client\\Curl\\Versions", "SSL", info->ssl_version, CONST_CS|CONST_PERSISTENT);
2718 REGISTER_NS_STRING_OR_NULL_CONSTANT("http\\Client\\Curl\\Versions", "LIBZ", info->libz_version, CONST_CS|CONST_PERSISTENT);
2719 REGISTER_NS_STRING_OR_NULL_CONSTANT("http\\Client\\Curl\\Versions", "ARES", info->ares, CONST_CS|CONST_PERSISTENT);
2720 REGISTER_NS_STRING_OR_NULL_CONSTANT("http\\Client\\Curl\\Versions", "IDN", info->libidn, CONST_CS|CONST_PERSISTENT);
2721 tmp_ver_init();
2722 tmp_ptr = zend_print_ulong_to_buf(tmp_end, info->iconv_ver_num & 0xf);
2723 tmp_end = tmp_ptr - 1;
2724 tmp_ptr = zend_print_ulong_to_buf(tmp_end, info->iconv_ver_num >> 8);
2725 *tmp_end = '.';
2726 REGISTER_NS_STRING_OR_NULL_CONSTANT("http\\Client\\Curl\\Versions", "ICONV", tmp_ptr, CONST_CS|CONST_PERSISTENT);
2727 #if PHP_HTTP_CURL_VERSION(7,57,0)
2728 REGISTER_NS_STRING_OR_NULL_CONSTANT("http\\Client\\Curl\\Versions", "BROTLI", info->brotli_version, CONST_CS|CONST_PERSISTENT);
2729 #endif
2730 #if PHP_HTTP_CURL_VERSION(7,66,0)
2731 REGISTER_NS_STRING_OR_NULL_CONSTANT("http\\Client\\Curl\\Versions", "NGHTTP2", info->nghttp2_version, CONST_CS|CONST_PERSISTENT);
2732 REGISTER_NS_STRING_OR_NULL_CONSTANT("http\\Client\\Curl\\Versions", "QUIC", info->quic_version, CONST_CS|CONST_PERSISTENT);
2733 #endif
2734 #if PHP_HTTP_CURL_VERSION(7,70,0)
2735 REGISTER_NS_STRING_OR_NULL_CONSTANT("http\\Client\\Curl\\Versions", "CAINFO", info->cainfo, CONST_CS|CONST_PERSISTENT);
2736 REGISTER_NS_STRING_OR_NULL_CONSTANT("http\\Client\\Curl\\Versions", "CAPATH", info->capath, CONST_CS|CONST_PERSISTENT);
2737 #endif
2738 #if PHP_HTTP_CURL_VERSION(7,72,0)
2739 REGISTER_NS_STRING_OR_NULL_CONSTANT("http\\Client\\Curl\\Versions", "ZSTD", info->zstd_version, CONST_CS|CONST_PERSISTENT);
2740 #endif
2741 #if PHP_HTTP_CURL_VERSION(7,75,0)
2742 REGISTER_NS_STRING_OR_NULL_CONSTANT("http\\Client\\Curl\\Versions", "HYPER", info->hyper_version, CONST_CS|CONST_PERSISTENT);
2743 #endif
2744
2745 }
2746
2747 /*
2748 * HTTP Protocol Version Constants
2749 */
2750 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "HTTP_VERSION_1_0", CURL_HTTP_VERSION_1_0, CONST_CS|CONST_PERSISTENT);
2751 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "HTTP_VERSION_1_1", CURL_HTTP_VERSION_1_1, CONST_CS|CONST_PERSISTENT);
2752 #if PHP_HTTP_CURL_VERSION(7,33,0)
2753 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "HTTP_VERSION_2_0", CURL_HTTP_VERSION_2_0, CONST_CS|CONST_PERSISTENT);
2754 #endif
2755 #if PHP_HTTP_CURL_VERSION(7,47,0)
2756 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "HTTP_VERSION_2TLS", CURL_HTTP_VERSION_2TLS, CONST_CS|CONST_PERSISTENT);
2757 #endif
2758 #if PHP_HTTP_CURL_VERSION(7,49,0)
2759 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "HTTP_VERSION_2_PRIOR_KNOWLEDGE", CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE, CONST_CS|CONST_PERSISTENT);
2760 #endif
2761 #if PHP_HTTP_CURL_VERSION(7,66,0)
2762 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "HTTP_VERSION_3", CURL_HTTP_VERSION_3, CONST_CS|CONST_PERSISTENT);
2763 #endif
2764 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "HTTP_VERSION_ANY", CURL_HTTP_VERSION_NONE, CONST_CS|CONST_PERSISTENT);
2765
2766 /*
2767 * SSL Version Constants
2768 */
2769 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_TLSv1", CURL_SSLVERSION_TLSv1, CONST_CS|CONST_PERSISTENT);
2770 #if PHP_HTTP_CURL_VERSION(7,34,0)
2771 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_TLSv1_0", CURL_SSLVERSION_TLSv1_0, CONST_CS|CONST_PERSISTENT);
2772 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_TLSv1_1", CURL_SSLVERSION_TLSv1_1, CONST_CS|CONST_PERSISTENT);
2773 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_TLSv1_2", CURL_SSLVERSION_TLSv1_2, CONST_CS|CONST_PERSISTENT);
2774 #endif
2775 #if PHP_HTTP_CURL_VERSION(7,52,0)
2776 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_TLSv1_3", CURL_SSLVERSION_TLSv1_3, CONST_CS|CONST_PERSISTENT);
2777 #endif
2778 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_SSLv2", CURL_SSLVERSION_SSLv2, CONST_CS|CONST_PERSISTENT);
2779 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_SSLv3", CURL_SSLVERSION_SSLv3, CONST_CS|CONST_PERSISTENT);
2780 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_ANY", CURL_SSLVERSION_DEFAULT, CONST_CS|CONST_PERSISTENT);
2781 #if PHP_HTTP_CURL_VERSION(7,21,4) && PHP_HTTP_HAVE_LIBCURL_TLSAUTH_TYPE
2782 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "TLSAUTH_SRP", CURL_TLSAUTH_SRP, CONST_CS|CONST_PERSISTENT);
2783 #endif
2784
2785 #if PHP_HTTP_CURL_VERSION(7,54,0)
2786 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_MAX_DEFAULT", CURL_SSLVERSION_MAX_DEFAULT, CONST_CS|CONST_PERSISTENT);
2787 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_MAX_TLSv1_0", CURL_SSLVERSION_MAX_TLSv1_0, CONST_CS|CONST_PERSISTENT);
2788 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_MAX_TLSv1_1", CURL_SSLVERSION_MAX_TLSv1_1, CONST_CS|CONST_PERSISTENT);
2789 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_MAX_TLSv1_2", CURL_SSLVERSION_MAX_TLSv1_2, CONST_CS|CONST_PERSISTENT);
2790 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "SSL_VERSION_MAX_TLSv1_3", CURL_SSLVERSION_MAX_TLSv1_3, CONST_CS|CONST_PERSISTENT);
2791 #endif
2792
2793 /*
2794 * DNS IPvX resolving
2795 */
2796 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "IPRESOLVE_V4", CURL_IPRESOLVE_V4, CONST_CS|CONST_PERSISTENT);
2797 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "IPRESOLVE_V6", CURL_IPRESOLVE_V6, CONST_CS|CONST_PERSISTENT);
2798 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "IPRESOLVE_ANY", CURL_IPRESOLVE_WHATEVER, CONST_CS|CONST_PERSISTENT);
2799
2800 /*
2801 * Auth Constants
2802 */
2803 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_NONE", CURLAUTH_NONE, CONST_CS|CONST_PERSISTENT);
2804 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_BASIC", CURLAUTH_BASIC, CONST_CS|CONST_PERSISTENT);
2805 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_DIGEST", CURLAUTH_DIGEST, CONST_CS|CONST_PERSISTENT);
2806 #if PHP_HTTP_CURL_VERSION(7,19,3)
2807 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_DIGEST_IE", CURLAUTH_DIGEST_IE, CONST_CS|CONST_PERSISTENT);
2808 #endif
2809 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_NTLM", CURLAUTH_NTLM, CONST_CS|CONST_PERSISTENT);
2810 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_GSSNEG", CURLAUTH_GSSNEGOTIATE, CONST_CS|CONST_PERSISTENT);
2811 #if PHP_HTTP_CURL_VERSION(7,38,0)
2812 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_SPNEGO", CURLAUTH_NEGOTIATE, CONST_CS|CONST_PERSISTENT);
2813 #endif
2814 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "AUTH_ANY", CURLAUTH_ANY, CONST_CS|CONST_PERSISTENT);
2815
2816 /*
2817 * Proxy Type Constants
2818 */
2819 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "PROXY_SOCKS4", CURLPROXY_SOCKS4, CONST_CS|CONST_PERSISTENT);
2820 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "PROXY_SOCKS4A", CURLPROXY_SOCKS4A, CONST_CS|CONST_PERSISTENT);
2821 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "PROXY_SOCKS5_HOSTNAME", CURLPROXY_SOCKS5_HOSTNAME, CONST_CS|CONST_PERSISTENT);
2822 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "PROXY_SOCKS5", CURLPROXY_SOCKS5, CONST_CS|CONST_PERSISTENT);
2823 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "PROXY_HTTP", CURLPROXY_HTTP, CONST_CS|CONST_PERSISTENT);
2824 #if PHP_HTTP_CURL_VERSION(7,19,4)
2825 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "PROXY_HTTP_1_0", CURLPROXY_HTTP_1_0, CONST_CS|CONST_PERSISTENT);
2826 #endif
2827
2828 /*
2829 * Post Redirection Constants
2830 */
2831 #if PHP_HTTP_CURL_VERSION(7,19,1)
2832 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "POSTREDIR_301", CURL_REDIR_POST_301, CONST_CS|CONST_PERSISTENT);
2833 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "POSTREDIR_302", CURL_REDIR_POST_302, CONST_CS|CONST_PERSISTENT);
2834 #if PHP_HTTP_CURL_VERSION(7,26,0)
2835 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "POSTREDIR_303", CURL_REDIR_POST_303, CONST_CS|CONST_PERSISTENT);
2836 #endif
2837 REGISTER_NS_LONG_CONSTANT("http\\Client\\Curl", "POSTREDIR_ALL", CURL_REDIR_POST_ALL, CONST_CS|CONST_PERSISTENT);
2838 #endif
2839
2840 return SUCCESS;
2841 }
2842
2843 PHP_MSHUTDOWN_FUNCTION(http_client_curl)
2844 {
2845 php_persistent_handle_cleanup(PHP_HTTP_G->client.curl.driver.client_name, NULL);
2846 php_persistent_handle_cleanup(PHP_HTTP_G->client.curl.driver.request_name, NULL);
2847 zend_string_release(PHP_HTTP_G->client.curl.driver.client_name);
2848 zend_string_release(PHP_HTTP_G->client.curl.driver.request_name);
2849 zend_string_release(PHP_HTTP_G->client.curl.driver.driver_name);
2850
2851 php_http_options_dtor(&php_http_curle_options);
2852 php_http_options_dtor(&php_http_curlm_options);
2853
2854 return SUCCESS;
2855 }
2856
2857 #endif /* PHP_HTTP_HAVE_LIBCURL */
2858
2859 /*
2860 * Local variables:
2861 * tab-width: 4
2862 * c-basic-offset: 4
2863 * End:
2864 * vim600: noet sw=4 ts=4 fdm=marker
2865 * vim<600: noet sw=4 ts=4
2866 */