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