bf04651d00ccec16dbe0530ce724e46f433de357
[m6w6/ext-http] / php_http_curl_client.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-2011, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 #include "php_http_api.h"
14
15 #define PHP_HTTP_CURL_OPT_STRING(OPTION, ldiff, obdc) \
16 { \
17 char *K = #OPTION; \
18 PHP_HTTP_CURL_OPT_STRING_EX(K+lenof("CURLOPT_KEY")+ldiff, OPTION, obdc); \
19 }
20 #define PHP_HTTP_CURL_OPT_STRING_EX(keyname, optname, obdc) \
21 if (!strcasecmp(key.str, keyname)) { \
22 zval *copy = cache_option(&curl->options.cache, keyname, strlen(keyname)+1, 0, php_http_ztyp(IS_STRING, *param)); \
23 if (obdc) { \
24 if (SUCCESS != php_check_open_basedir(Z_STRVAL_P(copy) TSRMLS_CC)) { \
25 return FAILURE; \
26 } \
27 } \
28 curl_easy_setopt(ch, optname, Z_STRVAL_P(copy)); \
29 zval_ptr_dtor(&copy); \
30 continue; \
31 }
32 #define PHP_HTTP_CURL_OPT_LONG(OPTION, ldiff) \
33 { \
34 char *K = #OPTION; \
35 PHP_HTTP_CURL_OPT_LONG_EX(K+lenof("CURLOPT_KEY")+ldiff, OPTION); \
36 }
37 #define PHP_HTTP_CURL_OPT_LONG_EX(keyname, optname) \
38 if (!strcasecmp(key.str, keyname)) { \
39 zval *copy = php_http_ztyp(IS_LONG, *param); \
40 curl_easy_setopt(ch, optname, Z_LVAL_P(copy)); \
41 zval_ptr_dtor(&copy); \
42 continue; \
43 }
44
45
46 /* resource_factory ops */
47
48 static void *php_http_curl_ctor(void *opaque TSRMLS_DC)
49 {
50 void *ch;
51
52 if ((ch = curl_easy_init())) {
53 get_storage(ch);
54 return ch;
55 }
56 return NULL;
57 }
58
59 static void *php_http_curl_copy(void *opaque, void *handle TSRMLS_DC)
60 {
61 void *ch;
62
63 if ((ch = curl_easy_duphandle(handle))) {
64 curl_easy_reset(ch);
65 get_storage(ch);
66 return ch;
67 }
68 return NULL;
69 }
70
71 static void php_http_curl_dtor(void *opaque, void *handle TSRMLS_DC)
72 {
73 php_http_curl_client_storage_t *st = get_storage(handle);
74
75 curl_easy_cleanup(handle);
76
77 if (st) {
78 if (st->url) {
79 pefree(st->url, 1);
80 }
81 if (st->cookiestore) {
82 pefree(st->cookiestore, 1);
83 }
84 pefree(st, 1);
85 }
86 }
87
88 /* callbacks */
89
90 static size_t php_http_curl_client_read_callback(void *data, size_t len, size_t n, void *ctx)
91 {
92 php_http_message_body_t *body = ctx;
93
94 if (body) {
95 TSRMLS_FETCH_FROM_CTX(body->ts);
96 return php_stream_read(php_http_message_body_stream(body), data, len * n);
97 }
98 return 0;
99 }
100
101 static int php_http_curl_client_progress_callback(void *ctx, double dltotal, double dlnow, double ultotal, double ulnow)
102 {
103 php_http_client_t *h = ctx;
104 php_http_curl_client_t *curl = h->ctx;
105 TSRMLS_FETCH_FROM_CTX(h->ts);
106
107 curl->progress.state.dl.total = dltotal;
108 curl->progress.state.dl.now = dlnow;
109 curl->progress.state.ul.total = ultotal;
110 curl->progress.state.ul.now = ulnow;
111
112 php_http_client_progress_notify(&curl->progress TSRMLS_CC);
113
114 return 0;
115 }
116
117 static curlioerr php_http_curl_client_ioctl_callback(CURL *ch, curliocmd cmd, void *ctx)
118 {
119 php_http_message_body_t *body = ctx;
120
121 if (cmd != CURLIOCMD_RESTARTREAD) {
122 return CURLIOE_UNKNOWNCMD;
123 }
124
125 if (body) {
126 TSRMLS_FETCH_FROM_CTX(body->ts);
127
128 if (SUCCESS == php_stream_rewind(php_http_message_body_stream(body))) {
129 return CURLIOE_OK;
130 }
131 }
132
133 return CURLIOE_FAILRESTART;
134 }
135
136 static int php_http_curl_client_raw_callback(CURL *ch, curl_infotype type, char *data, size_t length, void *ctx)
137 {
138 php_http_client_t *h = ctx;
139 php_http_curl_client_t *curl = h->ctx;
140 unsigned flags = 0;
141 TSRMLS_FETCH_FROM_CTX(h->ts);
142
143 /* catch progress */
144 switch (type) {
145 case CURLINFO_TEXT:
146 if (php_memnstr(data, ZEND_STRL("About to connect"), data + length)) {
147 curl->progress.state.info = "resolve";
148 } else if (php_memnstr(data, ZEND_STRL("Trying"), data + length)) {
149 curl->progress.state.info = "connect";
150 } else if (php_memnstr(data, ZEND_STRL("Connected"), data + length)) {
151 curl->progress.state.info = "connected";
152 } else if (php_memnstr(data, ZEND_STRL("left intact"), data + length)) {
153 curl->progress.state.info = "not disconnected";
154 } else if (php_memnstr(data, ZEND_STRL("closed"), data + length)) {
155 curl->progress.state.info = "disconnected";
156 } else if (php_memnstr(data, ZEND_STRL("Issue another request"), data + length)) {
157 curl->progress.state.info = "redirect";
158 }
159 php_http_client_progress_notify(&curl->progress TSRMLS_CC);
160 break;
161 case CURLINFO_HEADER_OUT:
162 case CURLINFO_DATA_OUT:
163 case CURLINFO_SSL_DATA_OUT:
164 curl->progress.state.info = "send";
165 break;
166 case CURLINFO_HEADER_IN:
167 case CURLINFO_DATA_IN:
168 case CURLINFO_SSL_DATA_IN:
169 curl->progress.state.info = "receive";
170 break;
171 default:
172 break;
173 }
174 /* process data */
175 switch (type) {
176 case CURLINFO_HEADER_IN:
177 case CURLINFO_DATA_IN:
178 php_http_buffer_append(h->response.buffer, data, length);
179
180 if (curl->options.redirects) {
181 flags |= PHP_HTTP_MESSAGE_PARSER_EMPTY_REDIRECTS;
182 }
183
184 if (PHP_HTTP_MESSAGE_PARSER_STATE_FAILURE == php_http_message_parser_parse(h->response.parser, h->response.buffer, flags, &h->response.message)) {
185 return -1;
186 }
187 break;
188
189 case CURLINFO_HEADER_OUT:
190 case CURLINFO_DATA_OUT:
191 php_http_buffer_append(h->request.buffer, data, length);
192
193 if (PHP_HTTP_MESSAGE_PARSER_STATE_FAILURE == php_http_message_parser_parse(h->request.parser, h->request.buffer, flags, &h->request.message)) {
194 return -1;
195 }
196 break;
197 default:
198 break;
199 }
200
201 #if 0
202 /* debug */
203 _dpf(type, data, length);
204 #endif
205
206 return 0;
207 }
208
209 static int php_http_curl_client_dummy_callback(char *data, size_t n, size_t l, void *s)
210 {
211 return n*l;
212 }
213
214 static inline zval *cache_option(HashTable *cache, char *key, size_t keylen, ulong h, zval *opt)
215 {
216 Z_ADDREF_P(opt);
217
218 if (h) {
219 zend_hash_quick_update(cache, key, keylen, h, &opt, sizeof(zval *), NULL);
220 } else {
221 zend_hash_update(cache, key, keylen, &opt, sizeof(zval *), NULL);
222 }
223
224 return opt;
225 }
226
227 static inline zval *get_option(HashTable *cache, HashTable *options, char *key, size_t keylen, int type)
228 {
229 if (options) {
230 zval **zoption;
231 ulong h = zend_hash_func(key, keylen);
232
233 if (SUCCESS == zend_hash_quick_find(options, key, keylen, h, (void *) &zoption)) {
234 zval *option = php_http_ztyp(type, *zoption);
235
236 if (cache) {
237 zval *cached = cache_option(cache, key, keylen, h, option);
238
239 zval_ptr_dtor(&option);
240 return cached;
241 }
242 return option;
243 }
244 }
245
246 return NULL;
247 }
248
249 static STATUS set_options(php_http_client_t *h, HashTable *options)
250 {
251 zval *zoption;
252 php_http_curl_client_t *curl = h->ctx;
253 CURL *ch = curl->handle;
254 TSRMLS_FETCH_FROM_CTX(h->ts);
255
256 /* proxy */
257 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("proxyhost"), IS_STRING))) {
258 curl_easy_setopt(ch, CURLOPT_PROXY, Z_STRVAL_P(zoption));
259 }
260 /* type */
261 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("proxytype"), IS_LONG))) {
262 curl_easy_setopt(ch, CURLOPT_PROXYTYPE, Z_LVAL_P(zoption));
263 }
264 /* port */
265 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("proxyport"), IS_LONG))) {
266 curl_easy_setopt(ch, CURLOPT_PROXYPORT, Z_LVAL_P(zoption));
267 }
268 /* user:pass */
269 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("proxyauth"), IS_STRING)) && Z_STRLEN_P(zoption)) {
270 curl_easy_setopt(ch, CURLOPT_PROXYUSERPWD, Z_STRVAL_P(zoption));
271 }
272 /* auth method */
273 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("proxyauthtype"), IS_LONG))) {
274 curl_easy_setopt(ch, CURLOPT_PROXYAUTH, Z_LVAL_P(zoption));
275 }
276 /* tunnel */
277 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("proxytunnel"), IS_BOOL)) && Z_BVAL_P(zoption)) {
278 curl_easy_setopt(ch, CURLOPT_HTTPPROXYTUNNEL, 1L);
279 }
280 #if PHP_HTTP_CURL_VERSION(7,19,4)
281 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("noproxy"), IS_STRING))) {
282 curl_easy_setopt(ch, CURLOPT_NOPROXY, Z_STRVAL_P(zoption));
283 }
284 #endif
285
286 /* dns */
287 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("dns_cache_timeout"), IS_LONG))) {
288 curl_easy_setopt(ch, CURLOPT_DNS_CACHE_TIMEOUT, Z_LVAL_P(zoption));
289 }
290 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("ipresolve"), IS_LONG)) && Z_LVAL_P(zoption)) {
291 curl_easy_setopt(ch, CURLOPT_IPRESOLVE, Z_LVAL_P(zoption));
292 }
293 #if PHP_HTTP_CURL_VERSION(7,21,3)
294 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("resolve"), IS_ARRAY))) {
295 php_http_array_hashkey_t key = php_http_array_hashkey_init(0);
296 HashPosition pos;
297 zval **data;
298
299 FOREACH_KEYVAL(pos, zoption, key, data) {
300 zval *cpy = php_http_ztyp(IS_STRING, *data);
301
302 curl->options.resolve = curl_slist_append(curl->options.resolve, Z_STRVAL_P(cpy));
303
304 zval_ptr_dtor(&cpy);
305 }
306
307 curl_easy_setopt(ch, CURLOPT_RESOLVE, curl->options.resolve);
308 }
309 #endif
310 #if PHP_HTTP_CURL_VERSION(7,24,0)
311 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("dns_servers"), IS_STRING)) && Z_STRLEN_P(zoption)) {
312 curl_easy_setopt(ch, CURLOPT_DNS_SERVERS, Z_STRVAL_P(zoption));
313 }
314 #endif
315
316 /* limits */
317 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("low_speed_limit"), IS_LONG))) {
318 curl_easy_setopt(ch, CURLOPT_LOW_SPEED_LIMIT, Z_LVAL_P(zoption));
319 }
320 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("low_speed_time"), IS_LONG))) {
321 curl_easy_setopt(ch, CURLOPT_LOW_SPEED_TIME, Z_LVAL_P(zoption));
322 }
323 /* LSF weirdance
324 if ((zoption = get_option(&curl->cache.options, options, ZEND_STRS("max_send_speed"), IS_LONG))) {
325 curl_easy_setopt(ch, CURLOPT_MAX_SEND_SPEED_LARGE, (curl_off_t) Z_LVAL_P(zoption));
326 }
327 if ((zoption = get_option(&curl->cache.options, options, ZEND_STRS("max_recv_speed"), IS_LONG))) {
328 curl_easy_setopt(ch, CURLOPT_MAX_RECV_SPEED_LARGE, (curl_off_t) Z_LVAL_P(zoption));
329 }
330 */
331 /* crashes
332 if ((zoption = get_option(&curl->cache.options, options, ZEND_STRS("maxconnects"), IS_LONG))) {
333 curl_easy_setopt(ch, CURLOPT_MAXCONNECTS, Z_LVAL_P(zoption));
334 } */
335 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("fresh_connect"), IS_BOOL)) && Z_BVAL_P(zoption)) {
336 curl_easy_setopt(ch, CURLOPT_FRESH_CONNECT, 1L);
337 }
338 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("forbid_reuse"), IS_BOOL)) && Z_BVAL_P(zoption)) {
339 curl_easy_setopt(ch, CURLOPT_FORBID_REUSE, 1L);
340 }
341
342 /* outgoing interface */
343 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("interface"), IS_STRING))) {
344 curl_easy_setopt(ch, CURLOPT_INTERFACE, Z_STRVAL_P(zoption));
345 }
346 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("portrange"), IS_ARRAY))) {
347 zval **prs, **pre;
348
349 zend_hash_internal_pointer_reset(Z_ARRVAL_P(zoption));
350 if (SUCCESS == zend_hash_get_current_data(Z_ARRVAL_P(zoption), (void *) &prs)) {
351 zend_hash_move_forward(Z_ARRVAL_P(zoption));
352 if (SUCCESS == zend_hash_get_current_data(Z_ARRVAL_P(zoption), (void *) &pre)) {
353 zval *prs_cpy = php_http_ztyp(IS_LONG, *prs);
354 zval *pre_cpy = php_http_ztyp(IS_LONG, *pre);
355
356 if (Z_LVAL_P(prs_cpy) && Z_LVAL_P(pre_cpy)) {
357 curl_easy_setopt(ch, CURLOPT_LOCALPORT, MIN(Z_LVAL_P(prs_cpy), Z_LVAL_P(pre_cpy)));
358 curl_easy_setopt(ch, CURLOPT_LOCALPORTRANGE, labs(Z_LVAL_P(prs_cpy)-Z_LVAL_P(pre_cpy))+1L);
359 }
360 zval_ptr_dtor(&prs_cpy);
361 zval_ptr_dtor(&pre_cpy);
362 }
363 }
364 }
365
366 /* another port */
367 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("port"), IS_LONG))) {
368 curl_easy_setopt(ch, CURLOPT_PORT, Z_LVAL_P(zoption));
369 }
370
371 /* RFC4007 zone_id */
372 #if PHP_HTTP_CURL_VERSION(7,19,0)
373 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("address_scope"), IS_LONG))) {
374 curl_easy_setopt(ch, CURLOPT_ADDRESS_SCOPE, Z_LVAL_P(zoption));
375 }
376 #endif
377
378 /* auth */
379 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("httpauth"), IS_STRING)) && Z_STRLEN_P(zoption)) {
380 curl_easy_setopt(ch, CURLOPT_USERPWD, Z_STRVAL_P(zoption));
381 }
382 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("httpauthtype"), IS_LONG))) {
383 curl_easy_setopt(ch, CURLOPT_HTTPAUTH, Z_LVAL_P(zoption));
384 }
385
386 /* redirects, defaults to 0 */
387 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("redirect"), IS_LONG))) {
388 curl_easy_setopt(ch, CURLOPT_FOLLOWLOCATION, Z_LVAL_P(zoption) ? 1L : 0L);
389 curl_easy_setopt(ch, CURLOPT_MAXREDIRS, curl->options.redirects = Z_LVAL_P(zoption));
390 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("unrestrictedauth"), IS_BOOL))) {
391 curl_easy_setopt(ch, CURLOPT_UNRESTRICTED_AUTH, Z_LVAL_P(zoption));
392 }
393 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("postredir"), IS_BOOL))) {
394 #if PHP_HTTP_CURL_VERSION(7,19,1)
395 curl_easy_setopt(ch, CURLOPT_POSTREDIR, Z_BVAL_P(zoption) ? 1L : 0L);
396 #else
397 curl_easy_setopt(ch, CURLOPT_POST301, Z_BVAL_P(zoption) ? 1L : 0L);
398 #endif
399 }
400 }
401
402 /* retries, defaults to 0 */
403 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("retrycount"), IS_LONG))) {
404 curl->options.retry.count = Z_LVAL_P(zoption);
405 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("retrydelay"), IS_DOUBLE))) {
406 curl->options.retry.delay = Z_DVAL_P(zoption);
407 }
408 }
409
410 /* referer */
411 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("referer"), IS_STRING)) && Z_STRLEN_P(zoption)) {
412 curl_easy_setopt(ch, CURLOPT_REFERER, Z_STRVAL_P(zoption));
413 }
414
415 /* useragent, default "PECL::HTTP/version (PHP/version)" */
416 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("useragent"), IS_STRING))) {
417 /* allow to send no user agent, not even default one */
418 if (Z_STRLEN_P(zoption)) {
419 curl_easy_setopt(ch, CURLOPT_USERAGENT, Z_STRVAL_P(zoption));
420 } else {
421 curl_easy_setopt(ch, CURLOPT_USERAGENT, NULL);
422 }
423 }
424
425 /* resume */
426 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("resume"), IS_LONG)) && (Z_LVAL_P(zoption) > 0)) {
427 curl->options.range_request = 1;
428 curl_easy_setopt(ch, CURLOPT_RESUME_FROM, Z_LVAL_P(zoption));
429 }
430 /* or range of kind array(array(0,499), array(100,1499)) */
431 else if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("range"), IS_ARRAY)) && zend_hash_num_elements(Z_ARRVAL_P(zoption))) {
432 HashPosition pos1, pos2;
433 zval **rr, **rb, **re;
434 php_http_buffer_t rs;
435
436 php_http_buffer_init(&rs);
437 FOREACH_VAL(pos1, zoption, rr) {
438 if (Z_TYPE_PP(rr) == IS_ARRAY) {
439 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_PP(rr), &pos2);
440 if (SUCCESS == zend_hash_get_current_data_ex(Z_ARRVAL_PP(rr), (void *) &rb, &pos2)) {
441 zend_hash_move_forward_ex(Z_ARRVAL_PP(rr), &pos2);
442 if (SUCCESS == zend_hash_get_current_data_ex(Z_ARRVAL_PP(rr), (void *) &re, &pos2)) {
443 if ( ((Z_TYPE_PP(rb) == IS_LONG) || ((Z_TYPE_PP(rb) == IS_STRING) && is_numeric_string(Z_STRVAL_PP(rb), Z_STRLEN_PP(rb), NULL, NULL, 1))) &&
444 ((Z_TYPE_PP(re) == IS_LONG) || ((Z_TYPE_PP(re) == IS_STRING) && is_numeric_string(Z_STRVAL_PP(re), Z_STRLEN_PP(re), NULL, NULL, 1)))) {
445 zval *rbl = php_http_ztyp(IS_LONG, *rb);
446 zval *rel = php_http_ztyp(IS_LONG, *re);
447
448 if ((Z_LVAL_P(rbl) >= 0) && (Z_LVAL_P(rel) >= 0)) {
449 php_http_buffer_appendf(&rs, "%ld-%ld,", Z_LVAL_P(rbl), Z_LVAL_P(rel));
450 }
451 zval_ptr_dtor(&rbl);
452 zval_ptr_dtor(&rel);
453 }
454 }
455 }
456 }
457 }
458
459 if (PHP_HTTP_BUFFER_LEN(&rs)) {
460 zval *cached_range;
461
462 curl->options.range_request = 1;
463 /* ditch last comma */
464 PHP_HTTP_BUFFER_VAL(&rs)[PHP_HTTP_BUFFER_LEN(&rs)-- -1] = '\0';
465 /* cache string */
466 MAKE_STD_ZVAL(cached_range);
467 ZVAL_STRINGL(cached_range, PHP_HTTP_BUFFER_VAL(&rs), PHP_HTTP_BUFFER_LEN(&rs), 0);
468 curl_easy_setopt(ch, CURLOPT_RANGE, Z_STRVAL_P(cache_option(&curl->options.cache, ZEND_STRS("range"), 0, cached_range)));
469 zval_ptr_dtor(&cached_range);
470 }
471 }
472
473 /* etag */
474 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("etag"), IS_STRING)) && Z_STRLEN_P(zoption)) {
475 zend_bool is_quoted = !((Z_STRVAL_P(zoption)[0] != '"') || (Z_STRVAL_P(zoption)[Z_STRLEN_P(zoption)-1] != '"'));
476 php_http_buffer_t header;
477
478 php_http_buffer_init(&header);
479 php_http_buffer_appendf(&header, is_quoted?"%s: %s":"%s: \"%s\"", curl->options.range_request?"If-Match":"If-None-Match", Z_STRVAL_P(zoption));
480 php_http_buffer_fix(&header);
481 curl->options.headers = curl_slist_append(curl->options.headers, PHP_HTTP_BUFFER_VAL(&header));
482 php_http_buffer_dtor(&header);
483 }
484 /* compression */
485 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("compress"), IS_BOOL)) && Z_LVAL_P(zoption)) {
486 curl->options.headers = curl_slist_append(curl->options.headers, "Accept-Encoding: gzip;q=1.0,deflate;q=0.5");
487 }
488 curl_easy_setopt(ch, CURLOPT_HTTPHEADER, curl->options.headers);
489
490 /* lastmodified */
491 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("lastmodified"), IS_LONG))) {
492 if (Z_LVAL_P(zoption)) {
493 if (Z_LVAL_P(zoption) > 0) {
494 curl_easy_setopt(ch, CURLOPT_TIMEVALUE, Z_LVAL_P(zoption));
495 } else {
496 curl_easy_setopt(ch, CURLOPT_TIMEVALUE, (long) PHP_HTTP_G->env.request.time + Z_LVAL_P(zoption));
497 }
498 curl_easy_setopt(ch, CURLOPT_TIMECONDITION, (long) (curl->options.range_request ? CURL_TIMECOND_IFUNMODSINCE : CURL_TIMECOND_IFMODSINCE));
499 } else {
500 curl_easy_setopt(ch, CURLOPT_TIMECONDITION, CURL_TIMECOND_NONE);
501 }
502 }
503
504 /* cookies, array('name' => 'value') */
505 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("cookies"), IS_ARRAY))) {
506 if (zend_hash_num_elements(Z_ARRVAL_P(zoption))) {
507 zval *urlenc_cookies = NULL;
508 /* check whether cookies should not be urlencoded; default is to urlencode them */
509 if ((!(urlenc_cookies = get_option(&curl->options.cache, options, ZEND_STRS("encodecookies"), IS_BOOL))) || Z_BVAL_P(urlenc_cookies)) {
510 if (SUCCESS == php_http_url_encode_hash_ex(HASH_OF(zoption), &curl->options.cookies, ZEND_STRL(";"), ZEND_STRL("="), NULL, 0 TSRMLS_CC)) {
511 php_http_buffer_fix(&curl->options.cookies);
512 curl_easy_setopt(ch, CURLOPT_COOKIE, curl->options.cookies.data);
513 }
514 } else {
515 HashPosition pos;
516 php_http_array_hashkey_t cookie_key = php_http_array_hashkey_init(0);
517 zval **cookie_val;
518
519 FOREACH_KEYVAL(pos, zoption, cookie_key, cookie_val) {
520 zval *val = php_http_ztyp(IS_STRING, *cookie_val);
521
522 php_http_array_hashkey_stringify(&cookie_key);
523 php_http_buffer_appendf(&curl->options.cookies, "%s=%s; ", cookie_key.str, Z_STRVAL_P(val));
524 php_http_array_hashkey_stringfree(&cookie_key);
525
526 zval_ptr_dtor(&val);
527 }
528
529 php_http_buffer_fix(&curl->options.cookies);
530 if (PHP_HTTP_BUFFER_LEN(&curl->options.cookies)) {
531 curl_easy_setopt(ch, CURLOPT_COOKIE, PHP_HTTP_BUFFER_VAL(&curl->options.cookies));
532 }
533 }
534 }
535 }
536
537 /* don't load session cookies from cookiestore */
538 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("cookiesession"), IS_BOOL)) && Z_BVAL_P(zoption)) {
539 curl_easy_setopt(ch, CURLOPT_COOKIESESSION, 1L);
540 }
541
542 /* cookiestore, read initial cookies from that file and store cookies back into that file */
543 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("cookiestore"), IS_STRING))) {
544 php_http_curl_client_storage_t *storage = get_storage(curl->handle);
545
546 if (Z_STRLEN_P(zoption)) {
547 if (SUCCESS != php_check_open_basedir(Z_STRVAL_P(zoption) TSRMLS_CC)) {
548 return FAILURE;
549 }
550 }
551 if (storage->cookiestore) {
552 pefree(storage->cookiestore, 1);
553 }
554 storage->cookiestore = pestrndup(Z_STRVAL_P(zoption), Z_STRLEN_P(zoption), 1);
555 curl_easy_setopt(ch, CURLOPT_COOKIEFILE, storage->cookiestore);
556 curl_easy_setopt(ch, CURLOPT_COOKIEJAR, storage->cookiestore);
557 }
558
559 /* maxfilesize */
560 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("maxfilesize"), IS_LONG))) {
561 curl_easy_setopt(ch, CURLOPT_MAXFILESIZE, Z_LVAL_P(zoption));
562 }
563
564 /* http protocol */
565 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("protocol"), IS_LONG))) {
566 curl_easy_setopt(ch, CURLOPT_HTTP_VERSION, Z_LVAL_P(zoption));
567 }
568
569 /* timeout, defaults to 0 */
570 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("timeout"), IS_DOUBLE))) {
571 curl_easy_setopt(ch, CURLOPT_TIMEOUT_MS, (long)(Z_DVAL_P(zoption)*1000));
572 }
573 /* connecttimeout, defaults to 0 */
574 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("connecttimeout"), IS_DOUBLE))) {
575 curl_easy_setopt(ch, CURLOPT_CONNECTTIMEOUT_MS, (long)(Z_DVAL_P(zoption)*1000));
576 }
577
578 #if PHP_HTTP_CURL_VERSION(7,25,0)
579 /* tcp */
580 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("tcp_keepalive"), IS_BOOL))) {
581 curl_easy_setopt(ch, CURLOPT_TCP_KEEPALIVE, (long)Z_BVAL_P(zoption));
582 }
583 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("tcp_keepidle"), IS_LONG))) {
584 curl_easy_setopt(ch, CURLOPT_TCP_KEEPIDLE, Z_LVAL_P(zoption));
585 }
586 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("tcp_keepintvl"), IS_LONG))) {
587 curl_easy_setopt(ch, CURLOPT_TCP_KEEPINTVL, Z_LVAL_P(zoption));
588 }
589 #endif
590
591 /* ssl */
592 if ((zoption = get_option(&curl->options.cache, options, ZEND_STRS("ssl"), IS_ARRAY))) {
593 php_http_array_hashkey_t key = php_http_array_hashkey_init(0);
594 zval **param;
595 HashPosition pos;
596
597 FOREACH_KEYVAL(pos, zoption, key, param) {
598 if (key.type == HASH_KEY_IS_STRING) {
599 PHP_HTTP_CURL_OPT_STRING(CURLOPT_SSLCERT, 0, 1);
600 PHP_HTTP_CURL_OPT_STRING(CURLOPT_SSLCERTTYPE, 0, 0);
601 PHP_HTTP_CURL_OPT_STRING(CURLOPT_SSLCERTPASSWD, 0, 0);
602
603 PHP_HTTP_CURL_OPT_STRING(CURLOPT_SSLKEY, 0, 0);
604 PHP_HTTP_CURL_OPT_STRING(CURLOPT_SSLKEYTYPE, 0, 0);
605 PHP_HTTP_CURL_OPT_STRING(CURLOPT_SSLKEYPASSWD, 0, 0);
606
607 PHP_HTTP_CURL_OPT_STRING(CURLOPT_SSLENGINE, 0, 0);
608 PHP_HTTP_CURL_OPT_LONG(CURLOPT_SSLVERSION, 0);
609
610 PHP_HTTP_CURL_OPT_LONG(CURLOPT_SSL_VERIFYPEER, 1);
611 PHP_HTTP_CURL_OPT_LONG(CURLOPT_SSL_VERIFYHOST, 1);
612 PHP_HTTP_CURL_OPT_STRING(CURLOPT_SSL_CIPHER_LIST, 1, 0);
613
614 PHP_HTTP_CURL_OPT_STRING(CURLOPT_CAINFO, -3, 1);
615 PHP_HTTP_CURL_OPT_STRING(CURLOPT_CAPATH, -3, 1);
616 PHP_HTTP_CURL_OPT_STRING(CURLOPT_RANDOM_FILE, -3, 1);
617 PHP_HTTP_CURL_OPT_STRING(CURLOPT_EGDSOCKET, -3, 1);
618 #if PHP_HTTP_CURL_VERSION(7,19,0)
619 PHP_HTTP_CURL_OPT_STRING(CURLOPT_ISSUERCERT, -3, 1);
620 #if defined(PHP_HTTP_HAVE_OPENSSL)
621 PHP_HTTP_CURL_OPT_STRING(CURLOPT_CRLFILE, -3, 1);
622 #endif
623 #endif
624 #if PHP_HTTP_CURL_VERSION(7,19,1) && defined(PHP_HTTP_HAVE_OPENSSL)
625 PHP_HTTP_CURL_OPT_LONG(CURLOPT_CERTINFO, -3);
626 #endif
627 }
628 }
629 }
630 return SUCCESS;
631 }
632
633 static STATUS get_info(CURL *ch, HashTable *info)
634 {
635 char *c;
636 long l;
637 double d;
638 struct curl_slist *s, *p;
639 zval *subarray, array;
640 INIT_PZVAL_ARRAY(&array, info);
641
642 /* BEGIN::CURLINFO */
643 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_EFFECTIVE_URL, &c)) {
644 add_assoc_string_ex(&array, "effective_url", sizeof("effective_url"), c ? c : "", 1);
645 }
646 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_RESPONSE_CODE, &l)) {
647 add_assoc_long_ex(&array, "response_code", sizeof("response_code"), l);
648 }
649 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_TOTAL_TIME, &d)) {
650 add_assoc_double_ex(&array, "total_time", sizeof("total_time"), d);
651 }
652 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_NAMELOOKUP_TIME, &d)) {
653 add_assoc_double_ex(&array, "namelookup_time", sizeof("namelookup_time"), d);
654 }
655 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONNECT_TIME, &d)) {
656 add_assoc_double_ex(&array, "connect_time", sizeof("connect_time"), d);
657 }
658 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PRETRANSFER_TIME, &d)) {
659 add_assoc_double_ex(&array, "pretransfer_time", sizeof("pretransfer_time"), d);
660 }
661 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SIZE_UPLOAD, &d)) {
662 add_assoc_double_ex(&array, "size_upload", sizeof("size_upload"), d);
663 }
664 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SIZE_DOWNLOAD, &d)) {
665 add_assoc_double_ex(&array, "size_download", sizeof("size_download"), d);
666 }
667 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SPEED_DOWNLOAD, &d)) {
668 add_assoc_double_ex(&array, "speed_download", sizeof("speed_download"), d);
669 }
670 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SPEED_UPLOAD, &d)) {
671 add_assoc_double_ex(&array, "speed_upload", sizeof("speed_upload"), d);
672 }
673 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_HEADER_SIZE, &l)) {
674 add_assoc_long_ex(&array, "header_size", sizeof("header_size"), l);
675 }
676 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_REQUEST_SIZE, &l)) {
677 add_assoc_long_ex(&array, "request_size", sizeof("request_size"), l);
678 }
679 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SSL_VERIFYRESULT, &l)) {
680 add_assoc_long_ex(&array, "ssl_verifyresult", sizeof("ssl_verifyresult"), l);
681 }
682 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_FILETIME, &l)) {
683 add_assoc_long_ex(&array, "filetime", sizeof("filetime"), l);
684 }
685 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d)) {
686 add_assoc_double_ex(&array, "content_length_download", sizeof("content_length_download"), d);
687 }
688 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONTENT_LENGTH_UPLOAD, &d)) {
689 add_assoc_double_ex(&array, "content_length_upload", sizeof("content_length_upload"), d);
690 }
691 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_STARTTRANSFER_TIME, &d)) {
692 add_assoc_double_ex(&array, "starttransfer_time", sizeof("starttransfer_time"), d);
693 }
694 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONTENT_TYPE, &c)) {
695 add_assoc_string_ex(&array, "content_type", sizeof("content_type"), c ? c : "", 1);
696 }
697 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_REDIRECT_TIME, &d)) {
698 add_assoc_double_ex(&array, "redirect_time", sizeof("redirect_time"), d);
699 }
700 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_REDIRECT_COUNT, &l)) {
701 add_assoc_long_ex(&array, "redirect_count", sizeof("redirect_count"), l);
702 }
703 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_HTTP_CONNECTCODE, &l)) {
704 add_assoc_long_ex(&array, "connect_code", sizeof("connect_code"), l);
705 }
706 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_HTTPAUTH_AVAIL, &l)) {
707 add_assoc_long_ex(&array, "httpauth_avail", sizeof("httpauth_avail"), l);
708 }
709 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PROXYAUTH_AVAIL, &l)) {
710 add_assoc_long_ex(&array, "proxyauth_avail", sizeof("proxyauth_avail"), l);
711 }
712 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_OS_ERRNO, &l)) {
713 add_assoc_long_ex(&array, "os_errno", sizeof("os_errno"), l);
714 }
715 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_NUM_CONNECTS, &l)) {
716 add_assoc_long_ex(&array, "num_connects", sizeof("num_connects"), l);
717 }
718 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_SSL_ENGINES, &s)) {
719 MAKE_STD_ZVAL(subarray);
720 array_init(subarray);
721 for (p = s; p; p = p->next) {
722 if (p->data) {
723 add_next_index_string(subarray, p->data, 1);
724 }
725 }
726 add_assoc_zval_ex(&array, "ssl_engines", sizeof("ssl_engines"), subarray);
727 curl_slist_free_all(s);
728 }
729 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_COOKIELIST, &s)) {
730 MAKE_STD_ZVAL(subarray);
731 array_init(subarray);
732 for (p = s; p; p = p->next) {
733 if (p->data) {
734 add_next_index_string(subarray, p->data, 1);
735 }
736 }
737 add_assoc_zval_ex(&array, "cookies", sizeof("cookies"), subarray);
738 curl_slist_free_all(s);
739 }
740 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_REDIRECT_URL, &c)) {
741 add_assoc_string_ex(&array, "redirect_url", sizeof("redirect_url"), c ? c : "", 1);
742 }
743 #if PHP_HTTP_CURL_VERSION(7,19,0)
744 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PRIMARY_IP, &c)) {
745 add_assoc_string_ex(&array, "primary_ip", sizeof("primary_ip"), c ? c : "", 1);
746 }
747 #endif
748 #if PHP_HTTP_CURL_VERSION(7,19,0)
749 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_APPCONNECT_TIME, &d)) {
750 add_assoc_double_ex(&array, "appconnect_time", sizeof("appconnect_time"), d);
751 }
752 #endif
753 #if PHP_HTTP_CURL_VERSION(7,19,4)
754 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CONDITION_UNMET, &l)) {
755 add_assoc_long_ex(&array, "condition_unmet", sizeof("condition_unmet"), l);
756 }
757 #endif
758 #if PHP_HTTP_CURL_VERSION(7,21,0)
759 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_PRIMARY_PORT, &l)) {
760 add_assoc_long_ex(&array, "primary_port", sizeof("primary_port"), l);
761 }
762 #endif
763 #if PHP_HTTP_CURL_VERSION(7,21,0)
764 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_LOCAL_IP, &c)) {
765 add_assoc_string_ex(&array, "local_ip", sizeof("local_ip"), c ? c : "", 1);
766 }
767 #endif
768 #if PHP_HTTP_CURL_VERSION(7,21,0)
769 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_LOCAL_PORT, &l)) {
770 add_assoc_long_ex(&array, "local_port", sizeof("local_port"), l);
771 }
772 #endif
773
774 /* END::CURLINFO */
775
776 #if PHP_HTTP_CURL_VERSION(7,19,1) && defined(PHP_HTTP_HAVE_OPENSSL)
777 {
778 int i;
779 zval *ci_array;
780 struct curl_certinfo *ci;
781 char *colon, *keyname;
782
783 if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_CERTINFO, &ci)) {
784 MAKE_STD_ZVAL(ci_array);
785 array_init(ci_array);
786
787 for (i = 0; i < ci->num_of_certs; ++i) {
788 s = ci->certinfo[i];
789
790 MAKE_STD_ZVAL(subarray);
791 array_init(subarray);
792 for (p = s; p; p = p->next) {
793 if (p->data) {
794 if ((colon = strchr(p->data, ':'))) {
795 keyname = estrndup(p->data, colon - p->data);
796 add_assoc_string_ex(subarray, keyname, colon - p->data + 1, colon + 1, 1);
797 efree(keyname);
798 } else {
799 add_next_index_string(subarray, p->data, 1);
800 }
801 }
802 }
803 add_next_index_zval(ci_array, subarray);
804 }
805 add_assoc_zval_ex(&array, "certinfo", sizeof("certinfo"), ci_array);
806 }
807 }
808 #endif
809 add_assoc_string_ex(&array, "error", sizeof("error"), get_storage(ch)->errorbuffer, 1);
810
811 return SUCCESS;
812 }
813
814
815 /* request handler ops */
816
817 static STATUS php_http_curl_client_reset(php_http_client_t *h);
818
819 static php_http_client_t *php_http_curl_client_init(php_http_client_t *h, void *handle)
820 {
821 php_http_curl_client_t *ctx;
822 TSRMLS_FETCH_FROM_CTX(h->ts);
823
824 if (!handle && !(handle = php_http_resource_factory_handle_ctor(h->rf TSRMLS_CC))) {
825 php_http_error(HE_WARNING, PHP_HTTP_E_CLIENT, "could not initialize curl handle");
826 return NULL;
827 }
828
829 ctx = ecalloc(1, sizeof(*ctx));
830 ctx->handle = handle;
831 php_http_buffer_init(&ctx->options.cookies);
832 zend_hash_init(&ctx->options.cache, 0, NULL, ZVAL_PTR_DTOR, 0);
833 h->ctx = ctx;
834
835 #if defined(ZTS)
836 curl_easy_setopt(handle, CURLOPT_NOSIGNAL, 1L);
837 #endif
838 curl_easy_setopt(handle, CURLOPT_HEADER, 0L);
839 curl_easy_setopt(handle, CURLOPT_FILETIME, 1L);
840 curl_easy_setopt(handle, CURLOPT_AUTOREFERER, 1L);
841 curl_easy_setopt(handle, CURLOPT_VERBOSE, 1L);
842 curl_easy_setopt(handle, CURLOPT_NOPROGRESS, 0L);
843 curl_easy_setopt(handle, CURLOPT_HEADERFUNCTION, NULL);
844 curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, php_http_curl_client_dummy_callback);
845 curl_easy_setopt(handle, CURLOPT_DEBUGFUNCTION, php_http_curl_client_raw_callback);
846 curl_easy_setopt(handle, CURLOPT_READFUNCTION, php_http_curl_client_read_callback);
847 curl_easy_setopt(handle, CURLOPT_IOCTLFUNCTION, php_http_curl_client_ioctl_callback);
848 curl_easy_setopt(handle, CURLOPT_PROGRESSFUNCTION, php_http_curl_client_progress_callback);
849 curl_easy_setopt(handle, CURLOPT_DEBUGDATA, h);
850 curl_easy_setopt(handle, CURLOPT_PROGRESSDATA, h);
851
852 php_http_curl_client_reset(h);
853
854 return h;
855 }
856
857 static php_http_client_t *php_http_curl_client_copy(php_http_client_t *from, php_http_client_t *to)
858 {
859 php_http_curl_client_t *ctx = from->ctx;
860 void *copy;
861 TSRMLS_FETCH_FROM_CTX(from->ts);
862
863 if (!(copy = php_http_resource_factory_handle_copy(from->rf, ctx->handle TSRMLS_CC))) {
864 return NULL;
865 }
866
867 if (to) {
868 return php_http_curl_client_init(to, copy);
869 } else {
870 return php_http_client_init(NULL, from->ops, from->rf, copy TSRMLS_CC);
871 }
872 }
873
874 static void php_http_curl_client_dtor(php_http_client_t *h)
875 {
876 php_http_curl_client_t *ctx = h->ctx;
877 TSRMLS_FETCH_FROM_CTX(h->ts);
878
879 curl_easy_setopt(ctx->handle, CURLOPT_NOPROGRESS, 1L);
880 curl_easy_setopt(ctx->handle, CURLOPT_PROGRESSFUNCTION, NULL);
881 curl_easy_setopt(ctx->handle, CURLOPT_VERBOSE, 0L);
882 curl_easy_setopt(ctx->handle, CURLOPT_DEBUGFUNCTION, NULL);
883
884 php_http_resource_factory_handle_dtor(h->rf, ctx->handle TSRMLS_CC);
885
886 php_http_buffer_dtor(&ctx->options.cookies);
887 zend_hash_destroy(&ctx->options.cache);
888
889 if (ctx->options.headers) {
890 curl_slist_free_all(ctx->options.headers);
891 ctx->options.headers = NULL;
892 }
893 php_http_client_progress_dtor(&ctx->progress TSRMLS_CC);
894
895 efree(ctx);
896 h->ctx = NULL;
897 }
898 static STATUS php_http_curl_client_reset(php_http_client_t *h)
899 {
900 php_http_curl_client_t *curl = h->ctx;
901 CURL *ch = curl->handle;
902 php_http_curl_client_storage_t *st;
903
904 if ((st = get_storage(ch))) {
905 if (st->url) {
906 pefree(st->url, 1);
907 st->url = NULL;
908 }
909 if (st->cookiestore) {
910 pefree(st->cookiestore, 1);
911 st->cookiestore = NULL;
912 }
913 st->errorbuffer[0] = '\0';
914 }
915
916 curl_easy_setopt(ch, CURLOPT_URL, NULL);
917 #if PHP_HTTP_CURL_VERSION(7,19,4)
918 curl_easy_setopt(ch, CURLOPT_NOPROXY, NULL);
919 #endif
920 curl_easy_setopt(ch, CURLOPT_PROXY, NULL);
921 curl_easy_setopt(ch, CURLOPT_PROXYPORT, 0L);
922 curl_easy_setopt(ch, CURLOPT_PROXYTYPE, 0L);
923 /* libcurl < 7.19.6 does not clear auth info with USERPWD set to NULL */
924 #if PHP_HTTP_CURL_VERSION(7,19,1)
925 curl_easy_setopt(ch, CURLOPT_PROXYUSERNAME, NULL);
926 curl_easy_setopt(ch, CURLOPT_PROXYPASSWORD, NULL);
927 #endif
928 curl_easy_setopt(ch, CURLOPT_PROXYAUTH, 0L);
929 curl_easy_setopt(ch, CURLOPT_HTTPPROXYTUNNEL, 0L);
930 curl_easy_setopt(ch, CURLOPT_DNS_CACHE_TIMEOUT, 60L);
931 curl_easy_setopt(ch, CURLOPT_IPRESOLVE, 0);
932 #if PHP_HTTP_CURL_VERSION(7,21,3)
933 curl_easy_setopt(ch, CURLOPT_RESOLVE, NULL);
934 #endif
935 #if PHP_HTTP_CURL_VERSION(7,24,0)
936 curl_easy_setopt(ch, CURLOPT_DNS_SERVERS, NULL);
937 #endif
938 curl_easy_setopt(ch, CURLOPT_LOW_SPEED_LIMIT, 0L);
939 curl_easy_setopt(ch, CURLOPT_LOW_SPEED_TIME, 0L);
940 /* LFS weirdance
941 curl_easy_setopt(ch, CURLOPT_MAX_SEND_SPEED_LARGE, (curl_off_t) 0);
942 curl_easy_setopt(ch, CURLOPT_MAX_RECV_SPEED_LARGE, (curl_off_t) 0);
943 */
944 /* crashes
945 curl_easy_setopt(ch, CURLOPT_MAXCONNECTS, 5L); */
946 curl_easy_setopt(ch, CURLOPT_FRESH_CONNECT, 0L);
947 curl_easy_setopt(ch, CURLOPT_FORBID_REUSE, 0L);
948 curl_easy_setopt(ch, CURLOPT_INTERFACE, NULL);
949 curl_easy_setopt(ch, CURLOPT_PORT, 0L);
950 #if PHP_HTTP_CURL_VERSION(7,19,0)
951 curl_easy_setopt(ch, CURLOPT_ADDRESS_SCOPE, 0L);
952 #endif
953 curl_easy_setopt(ch, CURLOPT_LOCALPORT, 0L);
954 curl_easy_setopt(ch, CURLOPT_LOCALPORTRANGE, 0L);
955 /* libcurl < 7.19.6 does not clear auth info with USERPWD set to NULL */
956 #if PHP_HTTP_CURL_VERSION(7,19,1)
957 curl_easy_setopt(ch, CURLOPT_USERNAME, NULL);
958 curl_easy_setopt(ch, CURLOPT_PASSWORD, NULL);
959 #endif
960 curl_easy_setopt(ch, CURLOPT_HTTPAUTH, 0L);
961 curl_easy_setopt(ch, CURLOPT_ENCODING, NULL);
962 /* we do this ourself anyway */
963 curl_easy_setopt(ch, CURLOPT_HTTP_CONTENT_DECODING, 0L);
964 curl_easy_setopt(ch, CURLOPT_HTTP_TRANSFER_DECODING, 0L);
965 curl_easy_setopt(ch, CURLOPT_FOLLOWLOCATION, 0L);
966 #if PHP_HTTP_CURL_VERSION(7,19,1)
967 curl_easy_setopt(ch, CURLOPT_POSTREDIR, 0L);
968 #else
969 curl_easy_setopt(ch, CURLOPT_POST301, 0L);
970 #endif
971 curl_easy_setopt(ch, CURLOPT_UNRESTRICTED_AUTH, 0L);
972 curl_easy_setopt(ch, CURLOPT_REFERER, NULL);
973 curl_easy_setopt(ch, CURLOPT_USERAGENT, "PECL::HTTP/" PHP_HTTP_EXT_VERSION " (PHP/" PHP_VERSION ")");
974 curl_easy_setopt(ch, CURLOPT_HTTPHEADER, NULL);
975 curl_easy_setopt(ch, CURLOPT_COOKIE, NULL);
976 curl_easy_setopt(ch, CURLOPT_COOKIESESSION, 0L);
977 /* these options would enable curl's cookie engine by default which we don't want
978 curl_easy_setopt(ch, CURLOPT_COOKIEFILE, NULL);
979 curl_easy_setopt(ch, CURLOPT_COOKIEJAR, NULL); */
980 curl_easy_setopt(ch, CURLOPT_COOKIELIST, NULL);
981 curl_easy_setopt(ch, CURLOPT_RANGE, NULL);
982 curl_easy_setopt(ch, CURLOPT_RESUME_FROM, 0L);
983 curl_easy_setopt(ch, CURLOPT_MAXFILESIZE, 0L);
984 curl_easy_setopt(ch, CURLOPT_TIMECONDITION, 0L);
985 curl_easy_setopt(ch, CURLOPT_TIMEVALUE, 0L);
986 curl_easy_setopt(ch, CURLOPT_TIMEOUT, 0L);
987 curl_easy_setopt(ch, CURLOPT_CONNECTTIMEOUT, 3L);
988 #if PHP_HTTP_CURL_VERSION(7,25,0)
989 curl_easy_setopt(ch, CURLOPT_TCP_KEEPALIVE, 0L);
990 curl_easy_setopt(ch, CURLOPT_TCP_KEEPIDLE, 60L);
991 curl_easy_setopt(ch, CURLOPT_TCP_KEEPINTVL, 60L);
992 #endif
993 curl_easy_setopt(ch, CURLOPT_SSLCERT, NULL);
994 curl_easy_setopt(ch, CURLOPT_SSLCERTTYPE, NULL);
995 curl_easy_setopt(ch, CURLOPT_SSLCERTPASSWD, NULL);
996 curl_easy_setopt(ch, CURLOPT_SSLKEY, NULL);
997 curl_easy_setopt(ch, CURLOPT_SSLKEYTYPE, NULL);
998 curl_easy_setopt(ch, CURLOPT_SSLKEYPASSWD, NULL);
999 curl_easy_setopt(ch, CURLOPT_SSLENGINE, NULL);
1000 curl_easy_setopt(ch, CURLOPT_SSLVERSION, 0L);
1001 curl_easy_setopt(ch, CURLOPT_SSL_VERIFYPEER, 0L);
1002 curl_easy_setopt(ch, CURLOPT_SSL_VERIFYHOST, 0L);
1003 curl_easy_setopt(ch, CURLOPT_SSL_CIPHER_LIST, NULL);
1004 #if PHP_HTTP_CURL_VERSION(7,19,0)
1005 curl_easy_setopt(ch, CURLOPT_ISSUERCERT, NULL);
1006 #if defined(PHP_HTTP_HAVE_OPENSSL)
1007 curl_easy_setopt(ch, CURLOPT_CRLFILE, NULL);
1008 #endif
1009 #endif
1010 #if PHP_HTTP_CURL_VERSION(7,19,1) && defined(PHP_HTTP_HAVE_OPENSSL)
1011 curl_easy_setopt(ch, CURLOPT_CERTINFO, NULL);
1012 #endif
1013 #ifdef PHP_HTTP_CURL_CAINFO
1014 curl_easy_setopt(ch, CURLOPT_CAINFO, PHP_HTTP_CURL_CAINFO);
1015 #else
1016 curl_easy_setopt(ch, CURLOPT_CAINFO, NULL);
1017 #endif
1018 curl_easy_setopt(ch, CURLOPT_CAPATH, NULL);
1019 curl_easy_setopt(ch, CURLOPT_RANDOM_FILE, NULL);
1020 curl_easy_setopt(ch, CURLOPT_EGDSOCKET, NULL);
1021 curl_easy_setopt(ch, CURLOPT_POSTFIELDS, NULL);
1022 curl_easy_setopt(ch, CURLOPT_POSTFIELDSIZE, 0L);
1023 curl_easy_setopt(ch, CURLOPT_HTTPPOST, NULL);
1024 curl_easy_setopt(ch, CURLOPT_IOCTLDATA, NULL);
1025 curl_easy_setopt(ch, CURLOPT_READDATA, NULL);
1026 curl_easy_setopt(ch, CURLOPT_INFILESIZE, 0L);
1027 curl_easy_setopt(ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_NONE);
1028 curl_easy_setopt(ch, CURLOPT_CUSTOMREQUEST, NULL);
1029 curl_easy_setopt(ch, CURLOPT_NOBODY, 0L);
1030 curl_easy_setopt(ch, CURLOPT_POST, 0L);
1031 curl_easy_setopt(ch, CURLOPT_UPLOAD, 0L);
1032 curl_easy_setopt(ch, CURLOPT_HTTPGET, 1L);
1033
1034 #if PHP_HTTP_CURL_VERSION(7,21,3)
1035 if (curl->options.resolve) {
1036 curl_slist_free_all(curl->options.resolve);
1037 curl->options.resolve = NULL;
1038 }
1039 #endif
1040 curl->options.retry.count = 0;
1041 curl->options.retry.delay = 0;
1042 curl->options.redirects = 0;
1043
1044 if (curl->options.headers) {
1045 curl_slist_free_all(curl->options.headers);
1046 curl->options.headers = NULL;
1047 }
1048
1049 php_http_buffer_reset(&curl->options.cookies);
1050
1051 return SUCCESS;
1052 }
1053
1054 PHP_HTTP_API STATUS php_http_curl_client_prepare(php_http_client_t *h, php_http_message_t *msg)
1055 {
1056 size_t body_size;
1057 php_http_curl_client_t *curl = h->ctx;
1058 php_http_curl_client_storage_t *storage = get_storage(curl->handle);
1059 TSRMLS_FETCH_FROM_CTX(h->ts);
1060
1061 /* request url */
1062 if (!PHP_HTTP_INFO(msg).request.url) {
1063 php_http_error(HE_WARNING, PHP_HTTP_E_CLIENT, "Cannot request empty URL");
1064 return FAILURE;
1065 }
1066 storage->errorbuffer[0] = '\0';
1067 if (storage->url) {
1068 pefree(storage->url, 1);
1069 }
1070 storage->url = pestrdup(PHP_HTTP_INFO(msg).request.url, 1);
1071 curl_easy_setopt(curl->handle, CURLOPT_URL, storage->url);
1072
1073 /* request method */
1074 switch (php_http_select_str(PHP_HTTP_INFO(msg).request.method, 4, "GET", "HEAD", "POST", "PUT")) {
1075 case 0:
1076 curl_easy_setopt(curl->handle, CURLOPT_HTTPGET, 1L);
1077 break;
1078
1079 case 1:
1080 curl_easy_setopt(curl->handle, CURLOPT_NOBODY, 1L);
1081 break;
1082
1083 case 2:
1084 curl_easy_setopt(curl->handle, CURLOPT_POST, 1L);
1085 break;
1086
1087 case 3:
1088 curl_easy_setopt(curl->handle, CURLOPT_UPLOAD, 1L);
1089 break;
1090
1091 default: {
1092 if (PHP_HTTP_INFO(msg).request.method) {
1093 curl_easy_setopt(curl->handle, CURLOPT_CUSTOMREQUEST, PHP_HTTP_INFO(msg).request.method);
1094 } else {
1095 php_http_error(HE_WARNING, PHP_HTTP_E_REQUEST_METHOD, "Cannot use empty request method");
1096 return FAILURE;
1097 }
1098 break;
1099 }
1100 }
1101
1102 /* request headers */
1103 php_http_message_update_headers(msg);
1104 if (zend_hash_num_elements(&msg->hdrs)) {
1105 php_http_array_hashkey_t header_key = php_http_array_hashkey_init(0);
1106 zval **header_val;
1107 HashPosition pos;
1108 php_http_buffer_t header;
1109
1110 php_http_buffer_init(&header);
1111 FOREACH_HASH_KEYVAL(pos, &msg->hdrs, header_key, header_val) {
1112 if (header_key.type == HASH_KEY_IS_STRING) {
1113 zval *header_cpy = php_http_ztyp(IS_STRING, *header_val);
1114
1115 php_http_buffer_appendf(&header, "%s: %s", header_key.str, Z_STRVAL_P(header_cpy));
1116 php_http_buffer_fix(&header);
1117 curl->options.headers = curl_slist_append(curl->options.headers, PHP_HTTP_BUFFER_VAL(&header));
1118 php_http_buffer_reset(&header);
1119
1120 zval_ptr_dtor(&header_cpy);
1121 }
1122 }
1123 php_http_buffer_dtor(&header);
1124 curl_easy_setopt(curl->handle, CURLOPT_HTTPHEADER, curl->options.headers);
1125 }
1126
1127 /* attach request body */
1128 if ((body_size = php_http_message_body_size(&msg->body))) {
1129 /* RFC2616, section 4.3 (para. 4) states that »a message-body MUST NOT be included in a request if the
1130 * specification of the request method (section 5.1.1) does not allow sending an entity-body in request.«
1131 * Following the clause in section 5.1.1 (para. 2) that request methods »MUST be implemented with the
1132 * same semantics as those specified in section 9« reveal that not any single defined HTTP/1.1 method
1133 * does not allow a request body.
1134 */
1135 php_stream_rewind(php_http_message_body_stream(&msg->body));
1136 curl_easy_setopt(curl->handle, CURLOPT_IOCTLDATA, &msg->body);
1137 curl_easy_setopt(curl->handle, CURLOPT_READDATA, &msg->body);
1138 curl_easy_setopt(curl->handle, CURLOPT_INFILESIZE, body_size);
1139 curl_easy_setopt(curl->handle, CURLOPT_POSTFIELDSIZE, body_size);
1140 }
1141
1142 return SUCCESS;
1143 }
1144
1145 static STATUS php_http_curl_client_exec(php_http_client_t *h, php_http_message_t *msg)
1146 {
1147 uint tries = 0;
1148 CURLcode result;
1149 php_http_curl_client_t *curl = h->ctx;
1150 php_http_curl_client_storage_t *storage = get_storage(curl->handle);
1151 TSRMLS_FETCH_FROM_CTX(h->ts);
1152
1153 if (SUCCESS != php_http_curl_client_prepare(h, msg)) {
1154 return FAILURE;
1155 }
1156
1157 retry:
1158 if (CURLE_OK != (result = curl_easy_perform(curl->handle))) {
1159 php_http_error(HE_WARNING, PHP_HTTP_E_CLIENT, "%s; %s (%s)", curl_easy_strerror(result), storage->errorbuffer, storage->url);
1160
1161 if (EG(exception)) {
1162 add_property_long(EG(exception), "curlCode", result);
1163 }
1164
1165 if (curl->options.retry.count > tries++) {
1166 switch (result) {
1167 case CURLE_COULDNT_RESOLVE_PROXY:
1168 case CURLE_COULDNT_RESOLVE_HOST:
1169 case CURLE_COULDNT_CONNECT:
1170 case CURLE_WRITE_ERROR:
1171 case CURLE_READ_ERROR:
1172 case CURLE_OPERATION_TIMEDOUT:
1173 case CURLE_SSL_CONNECT_ERROR:
1174 case CURLE_GOT_NOTHING:
1175 case CURLE_SSL_ENGINE_SETFAILED:
1176 case CURLE_SEND_ERROR:
1177 case CURLE_RECV_ERROR:
1178 case CURLE_SSL_ENGINE_INITFAILED:
1179 case CURLE_LOGIN_DENIED:
1180 if (curl->options.retry.delay >= PHP_HTTP_DIFFSEC) {
1181 php_http_sleep(curl->options.retry.delay);
1182 }
1183 goto retry;
1184 default:
1185 break;
1186 }
1187 } else {
1188 return FAILURE;
1189 }
1190 }
1191
1192 return SUCCESS;
1193 }
1194
1195 static STATUS php_http_curl_client_setopt(php_http_client_t *h, php_http_client_setopt_opt_t opt, void *arg)
1196 {
1197 php_http_curl_client_t *curl = h->ctx;
1198 TSRMLS_FETCH_FROM_CTX(h->ts);
1199
1200 switch (opt) {
1201 case PHP_HTTP_CLIENT_OPT_SETTINGS:
1202 return set_options(h, arg);
1203 break;
1204
1205 case PHP_HTTP_CLIENT_OPT_PROGRESS_CALLBACK:
1206 if (curl->progress.in_cb) {
1207 php_http_error(HE_WARNING, PHP_HTTP_E_CLIENT, "Cannot change progress callback while executing it");
1208 return FAILURE;
1209 }
1210 if (curl->progress.callback) {
1211 php_http_client_progress_dtor(&curl->progress TSRMLS_CC);
1212 }
1213 curl->progress.callback = arg;
1214 break;
1215
1216 case PHP_HTTP_CLIENT_OPT_COOKIES_ENABLE:
1217 /* are cookies already enabled anyway? */
1218 if (!get_storage(curl->handle)->cookiestore) {
1219 if (CURLE_OK != curl_easy_setopt(curl->handle, CURLOPT_COOKIEFILE, "")) {
1220 return FAILURE;
1221 }
1222 }
1223 break;
1224
1225 case PHP_HTTP_CLIENT_OPT_COOKIES_RESET:
1226 if (CURLE_OK != curl_easy_setopt(curl->handle, CURLOPT_COOKIELIST, "ALL")) {
1227 return FAILURE;
1228 }
1229 break;
1230
1231 case PHP_HTTP_CLIENT_OPT_COOKIES_RESET_SESSION:
1232 if (CURLE_OK != curl_easy_setopt(curl->handle, CURLOPT_COOKIELIST, "SESS")) {
1233 return FAILURE;
1234 }
1235 break;
1236
1237 case PHP_HTTP_CLIENT_OPT_COOKIES_FLUSH:
1238 if (CURLE_OK != curl_easy_setopt(curl->handle, CURLOPT_COOKIELIST, "FLUSH")) {
1239 return FAILURE;
1240 }
1241 break;
1242
1243 default:
1244 return FAILURE;
1245 }
1246
1247 return SUCCESS;
1248 }
1249
1250 static STATUS php_http_curl_client_getopt(php_http_client_t *h, php_http_client_getopt_opt_t opt, void *arg)
1251 {
1252 php_http_curl_client_t *curl = h->ctx;
1253
1254 switch (opt) {
1255 case PHP_HTTP_CLIENT_OPT_PROGRESS_INFO:
1256 *((php_http_client_progress_t **) arg) = &curl->progress;
1257 break;
1258
1259 case PHP_HTTP_CLIENT_OPT_TRANSFER_INFO:
1260 get_info(curl->handle, arg);
1261 break;
1262
1263 default:
1264 return FAILURE;
1265 }
1266
1267 return SUCCESS;
1268 }
1269
1270 static php_http_resource_factory_ops_t php_http_curl_client_resource_factory_ops = {
1271 php_http_curl_ctor,
1272 php_http_curl_copy,
1273 php_http_curl_dtor
1274 };
1275
1276 static php_http_client_ops_t php_http_curl_client_ops = {
1277 &php_http_curl_client_resource_factory_ops,
1278 php_http_curl_client_init,
1279 php_http_curl_client_copy,
1280 php_http_curl_client_dtor,
1281 php_http_curl_client_reset,
1282 php_http_curl_client_exec,
1283 php_http_curl_client_setopt,
1284 php_http_curl_client_getopt,
1285 (php_http_new_t) php_http_curl_client_object_new_ex,
1286 php_http_curl_client_get_class_entry
1287 };
1288
1289 PHP_HTTP_API php_http_client_ops_t *php_http_curl_client_get_ops(void)
1290 {
1291 return &php_http_curl_client_ops;
1292 }
1293
1294
1295 #define PHP_HTTP_BEGIN_ARGS(method, req_args) PHP_HTTP_BEGIN_ARGS_EX(HttpClientCURL, method, 0, req_args)
1296 #define PHP_HTTP_EMPTY_ARGS(method) PHP_HTTP_EMPTY_ARGS_EX(HttpClientCURL, method, 0)
1297 #define PHP_HTTP_CURL_CLIENT_ME(method, visibility) PHP_ME(HttpClientCURL, method, PHP_HTTP_ARGS(HttpClientCURL, method), visibility)
1298 #define PHP_HTTP_CURL_CLIENT_CLIENT_MALIAS(me, vis) ZEND_FENTRY(me, ZEND_MN(HttpClient_##me), PHP_HTTP_ARGS(HttpClientCURL, me), vis)
1299
1300 PHP_HTTP_BEGIN_ARGS(send, 0)
1301 PHP_HTTP_ARG_VAL(request, 0)
1302 PHP_HTTP_END_ARGS;
1303
1304 static zend_class_entry *php_http_curl_client_class_entry;
1305
1306 zend_class_entry *php_http_curl_client_get_class_entry(void)
1307 {
1308 return php_http_curl_client_class_entry;
1309 }
1310
1311 static zend_function_entry php_http_curl_client_method_entry[] = {
1312 PHP_HTTP_CURL_CLIENT_CLIENT_MALIAS(send, ZEND_ACC_PUBLIC)
1313 EMPTY_FUNCTION_ENTRY
1314 };
1315
1316 zend_object_value php_http_curl_client_object_new(zend_class_entry *ce TSRMLS_DC)
1317 {
1318 return php_http_curl_client_object_new_ex(ce, NULL, NULL TSRMLS_CC);
1319 }
1320
1321 zend_object_value php_http_curl_client_object_new_ex(zend_class_entry *ce, php_http_client_t *r, php_http_client_object_t **ptr TSRMLS_DC)
1322 {
1323 zend_object_value ov;
1324 php_http_client_object_t *o;
1325
1326 o = ecalloc(1, sizeof(php_http_client_object_t));
1327 zend_object_std_init((zend_object *) o, ce TSRMLS_CC);
1328 object_properties_init((zend_object *) o, ce);
1329
1330 if (!(o->client = r)) {
1331 o->client = php_http_client_init(NULL, &php_http_curl_client_ops, NULL, NULL TSRMLS_CC);
1332 }
1333
1334 if (ptr) {
1335 *ptr = o;
1336 }
1337
1338 ov.handle = zend_objects_store_put(o, NULL, php_http_client_object_free, NULL TSRMLS_CC);
1339 ov.handlers = php_http_client_get_object_handlers();
1340
1341 return ov;
1342 }
1343
1344
1345 PHP_MINIT_FUNCTION(http_curl_client)
1346 {
1347 if (SUCCESS != php_http_persistent_handle_provide(ZEND_STRL("http_client.curl"), &php_http_curl_client_resource_factory_ops, NULL, NULL)) {
1348 return FAILURE;
1349 }
1350
1351 PHP_HTTP_REGISTER_CLASS(http\\Curl, Client, http_curl_client, php_http_client_get_class_entry(), 0);
1352 php_http_curl_client_class_entry->create_object = php_http_curl_client_object_new;
1353
1354 /*
1355 * HTTP Protocol Version Constants
1356 */
1357 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("HTTP_VERSION_1_0"), CURL_HTTP_VERSION_1_0 TSRMLS_CC);
1358 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("HTTP_VERSION_1_1"), CURL_HTTP_VERSION_1_1 TSRMLS_CC);
1359 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("HTTP_VERSION_NONE"), CURL_HTTP_VERSION_NONE TSRMLS_CC); /* to be removed */
1360 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("HTTP_VERSION_ANY"), CURL_HTTP_VERSION_NONE TSRMLS_CC);
1361
1362 /*
1363 * SSL Version Constants
1364 */
1365 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("SSL_VERSION_TLSv1"), CURL_SSLVERSION_TLSv1 TSRMLS_CC);
1366 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("SSL_VERSION_SSLv2"), CURL_SSLVERSION_SSLv2 TSRMLS_CC);
1367 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("SSL_VERSION_SSLv3"), CURL_SSLVERSION_SSLv3 TSRMLS_CC);
1368 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("SSL_VERSION_ANY"), CURL_SSLVERSION_DEFAULT TSRMLS_CC);
1369
1370 /*
1371 * DNS IPvX resolving
1372 */
1373 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("IPRESOLVE_V4"), CURL_IPRESOLVE_V4 TSRMLS_CC);
1374 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("IPRESOLVE_V6"), CURL_IPRESOLVE_V6 TSRMLS_CC);
1375 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("IPRESOLVE_ANY"), CURL_IPRESOLVE_WHATEVER TSRMLS_CC);
1376
1377 /*
1378 * Auth Constants
1379 */
1380 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("AUTH_BASIC"), CURLAUTH_BASIC TSRMLS_CC);
1381 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("AUTH_DIGEST"), CURLAUTH_DIGEST TSRMLS_CC);
1382 #if PHP_HTTP_CURL_VERSION(7,19,3)
1383 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("AUTH_DIGEST_IE"), CURLAUTH_DIGEST_IE TSRMLS_CC);
1384 #endif
1385 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("AUTH_NTLM"), CURLAUTH_NTLM TSRMLS_CC);
1386 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("AUTH_GSSNEG"), CURLAUTH_GSSNEGOTIATE TSRMLS_CC);
1387 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("AUTH_ANY"), CURLAUTH_ANY TSRMLS_CC);
1388
1389 /*
1390 * Proxy Type Constants
1391 */
1392 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("PROXY_SOCKS4"), CURLPROXY_SOCKS4 TSRMLS_CC);
1393 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("PROXY_SOCKS4A"), CURLPROXY_SOCKS5 TSRMLS_CC);
1394 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("PROXY_SOCKS5_HOSTNAME"), CURLPROXY_SOCKS5 TSRMLS_CC);
1395 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("PROXY_SOCKS5"), CURLPROXY_SOCKS5 TSRMLS_CC);
1396 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("PROXY_HTTP"), CURLPROXY_HTTP TSRMLS_CC);
1397 # if PHP_HTTP_CURL_VERSION(7,19,4)
1398 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("PROXY_HTTP_1_0"), CURLPROXY_HTTP_1_0 TSRMLS_CC);
1399 # endif
1400
1401 /*
1402 * Post Redirection Constants
1403 */
1404 #if PHP_HTTP_CURL_VERSION(7,19,1)
1405 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("POSTREDIR_301"), CURL_REDIR_POST_301 TSRMLS_CC);
1406 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("POSTREDIR_302"), CURL_REDIR_POST_302 TSRMLS_CC);
1407 zend_declare_class_constant_long(php_http_curl_client_class_entry, ZEND_STRL("POSTREDIR_ALL"), CURL_REDIR_POST_ALL TSRMLS_CC);
1408 #endif
1409
1410 return SUCCESS;
1411 }
1412
1413 /*
1414 * Local variables:
1415 * tab-width: 4
1416 * c-basic-offset: 4
1417 * End:
1418 * vim600: noet sw=4 ts=4 fdm=marker
1419 * vim<600: noet sw=4 ts=4
1420 */