2 +--------------------------------------------------------------------+
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-2006, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
15 #define HTTP_WANT_SAPI
16 #define HTTP_WANT_CURL
17 #define HTTP_WANT_ZLIB
20 #include "php_http_api.h"
21 #include "php_http_encoding_api.h"
22 #include "php_http_headers_api.h"
23 #include "php_http_message_api.h"
24 #include "php_http_request_api.h"
25 #include "php_http_send_api.h"
26 #include "php_http_url_api.h"
28 #define http_message_info_callback _http_message_info_callback
29 static void _http_message_info_callback(http_message
**message
, HashTable
**headers
, http_info
*info TSRMLS_DC
)
31 http_message
*old
= *message
;
34 if (old
->type
|| zend_hash_num_elements(&old
->hdrs
) || PHPSTR_LEN(old
)) {
35 (*message
) = http_message_new();
36 (*message
)->parent
= old
;
37 (*headers
) = &((*message
)->hdrs
);
40 http_message_set_info(*message
, info
);
43 #define http_message_init_type _http_message_init_type
44 static inline void _http_message_init_type(http_message
*message
, http_message_type type
)
46 message
->http
.version
= .0;
48 switch (message
->type
= type
)
50 case HTTP_MSG_RESPONSE
:
51 message
->http
.info
.response
.code
= 0;
52 message
->http
.info
.response
.status
= NULL
;
55 case HTTP_MSG_REQUEST
:
56 message
->http
.info
.request
.method
= NULL
;
57 message
->http
.info
.request
.url
= NULL
;
66 PHP_HTTP_API http_message
*_http_message_init_ex(http_message
*message
, http_message_type type ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC
)
69 message
= ecalloc_rel(1, sizeof(http_message
));
72 http_message_init_type(message
, type
);
73 message
->parent
= NULL
;
74 phpstr_init(&message
->body
);
75 zend_hash_init(&message
->hdrs
, 0, NULL
, ZVAL_PTR_DTOR
, 0);
81 PHP_HTTP_API
void _http_message_set_type(http_message
*message
, http_message_type type
)
83 /* just act if different */
84 if (type
!= message
->type
) {
86 /* free request info */
87 switch (message
->type
)
89 case HTTP_MSG_REQUEST
:
90 STR_FREE(message
->http
.info
.request
.method
);
91 STR_FREE(message
->http
.info
.request
.url
);
94 case HTTP_MSG_RESPONSE
:
95 STR_FREE(message
->http
.info
.response
.status
);
103 http_message_init_type(message
, type
);
107 PHP_HTTP_API
void _http_message_set_info(http_message
*message
, http_info
*info
)
109 message
->http
.version
= info
->http
.version
;
111 switch (message
->type
= info
->type
)
113 case IS_HTTP_REQUEST
:
114 HTTP_INFO(message
).request
.url
= estrdup(HTTP_INFO(info
).request
.url
);
115 STR_SET(HTTP_INFO(message
).request
.method
, estrdup(HTTP_INFO(info
).request
.method
));
118 case IS_HTTP_RESPONSE
:
119 HTTP_INFO(message
).response
.code
= HTTP_INFO(info
).response
.code
;
120 STR_SET(HTTP_INFO(message
).response
.status
, estrdup(HTTP_INFO(info
).response
.status
));
128 PHP_HTTP_API http_message
*_http_message_parse_ex(http_message
*msg
, const char *message
, size_t message_length ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC
)
130 const char *body
= NULL
;
131 zend_bool free_msg
= msg
? 0 : 1;
133 if ((!message
) || (message_length
< HTTP_MSG_MIN_SIZE
)) {
134 http_error_ex(HE_WARNING
, HTTP_E_INVALID_PARAM
, "Empty or too short HTTP message: '%s'", message
);
138 msg
= http_message_init_rel(msg
, 0);
140 if (SUCCESS
!= http_parse_headers_cb(message
, &msg
->hdrs
, 1, (http_info_callback
) http_message_info_callback
, (void **) &msg
)) {
142 http_message_free(&msg
);
144 http_error(HE_WARNING
, HTTP_E_MALFORMED_HEADERS
, "Failed to parse message headers");
148 /* header parsing stops at (CR)LF (CR)LF */
149 if ((body
= http_locate_body(message
))) {
151 const char *continue_at
= NULL
;
152 size_t remaining
= message
+ message_length
- body
;
154 /* message has chunked transfer encoding */
155 if ((c
= http_message_header(msg
, "Transfer-Encoding")) && (!strcasecmp("chunked", Z_STRVAL_P(c
)))) {
159 /* decode and replace Transfer-Encoding with Content-Length header */
160 if ((continue_at
= http_encoding_dechunk(body
, message
+ message_length
- body
, &decoded
, &decoded_len
))) {
165 tmp_len
= (int) spprintf(&tmp
, 0, "%zu", decoded_len
);
167 ZVAL_STRINGL(len
, tmp
, tmp_len
, 0);
170 zend_hash_add(&msg
->hdrs
, "X-Original-Transfer-Encoding", sizeof("X-Original-Transfer-Encoding"), (void *) &c
, sizeof(zval
*), NULL
);
171 zend_hash_del(&msg
->hdrs
, "Transfer-Encoding", sizeof("Transfer-Encoding"));
172 zend_hash_del(&msg
->hdrs
, "Content-Length", sizeof("Content-Length"));
173 zend_hash_add(&msg
->hdrs
, "Content-Length", sizeof("Content-Length"), (void *) &len
, sizeof(zval
*), NULL
);
175 phpstr_from_string_ex(PHPSTR(msg
), decoded
, decoded_len
);
180 /* message has content-length header */
181 if ((c
= http_message_header(msg
, "Content-Length"))) {
182 ulong len
= strtoul(Z_STRVAL_P(c
), NULL
, 10);
183 if (len
> remaining
) {
184 http_error_ex(HE_NOTICE
, HTTP_E_MALFORMED_HEADERS
, "The Content-Length header pretends a larger body than actually received (expected %lu bytes; got %lu bytes)", len
, remaining
);
187 phpstr_from_string_ex(PHPSTR(msg
), body
, len
);
188 continue_at
= body
+ len
;
191 /* message has content-range header */
192 if ((c
= http_message_header(msg
, "Content-Range"))) {
193 ulong total
= 0, start
= 0, end
= 0, len
= 0;
195 if (!strncasecmp(Z_STRVAL_P(c
), "bytes", lenof("bytes")) &&
196 (Z_STRVAL_P(c
)[lenof("bytes")] == ':' || Z_STRVAL_P(c
)[lenof("bytes")] == ' ')) {
197 char *total_at
= NULL
, *end_at
= NULL
;
198 char *start_at
= Z_STRVAL_P(c
) + sizeof("bytes");
200 start
= strtoul(start_at
, &end_at
, 10);
202 end
= strtoul(end_at
+ 1, &total_at
, 10);
203 if (total_at
&& strncmp(total_at
+ 1, "*", 1)) {
204 total
= strtoul(total_at
+ 1, NULL
, 10);
206 if ((len
= (end
+ 1 - start
)) > remaining
) {
207 http_error_ex(HE_NOTICE
, HTTP_E_MALFORMED_HEADERS
, "The Content-Range header pretends a larger body than actually received (expected %lu bytes; got %lu bytes)", len
, remaining
);
210 if (end
>= start
&& (!total
|| end
< total
)) {
211 phpstr_from_string_ex(PHPSTR(msg
), body
, len
);
212 continue_at
= body
+ len
;
218 http_error_ex(HE_WARNING
, HTTP_E_MALFORMED_HEADERS
, "Invalid Content-Range header: %s", Z_STRVAL_P(c
));
222 /* no headers that indicate content length */
223 if (HTTP_MSG_TYPE(RESPONSE
, msg
)) {
224 phpstr_from_string_ex(PHPSTR(msg
), body
, remaining
);
229 #ifdef HTTP_HAVE_ZLIB
230 /* check for compressed data */
231 if (http_message_header(msg
, "Vary") && (c
= http_message_header(msg
, "Content-Encoding"))) {
232 char *decoded
= NULL
;
233 size_t decoded_len
= 0;
235 if ( !strcasecmp(Z_STRVAL_P(c
), "gzip") ||
236 !strcasecmp(Z_STRVAL_P(c
), "x-gzip") ||
237 !strcasecmp(Z_STRVAL_P(c
), "deflate")) {
238 http_encoding_inflate(PHPSTR_VAL(msg
), PHPSTR_LEN(msg
), &decoded
, &decoded_len
);
242 zval
*len
, **original_len
;
246 tmp_len
= (int) spprintf(&tmp
, 0, "%zu", decoded_len
);
248 ZVAL_STRINGL(len
, tmp
, tmp_len
, 0);
251 zend_hash_add(&msg
->hdrs
, "X-Original-Content-Encoding", sizeof("X-Original-Content-Encoding"), (void *) &c
, sizeof(zval
*), NULL
);
252 zend_hash_del(&msg
->hdrs
, "Content-Encoding", sizeof("Content-Encoding"));
253 if (SUCCESS
== zend_hash_find(&msg
->hdrs
, "Content-Length", sizeof("Content-Length"), (void **) &original_len
)) {
254 ZVAL_ADDREF(*original_len
);
255 zend_hash_add(&msg
->hdrs
, "X-Original-Content-Length", sizeof("X-Original-Content-Length"), (void *) original_len
, sizeof(zval
*), NULL
);
256 zend_hash_update(&msg
->hdrs
, "Content-Length", sizeof("Content-Length"), (void *) &len
, sizeof(zval
*), NULL
);
258 zend_hash_add(&msg
->hdrs
, "Content-Length", sizeof("Content-Length"), (void *) &len
, sizeof(zval
*), NULL
);
261 phpstr_dtor(PHPSTR(msg
));
262 PHPSTR(msg
)->data
= decoded
;
263 PHPSTR(msg
)->used
= decoded_len
;
264 PHPSTR(msg
)->free
= 1;
267 #endif /* HTTP_HAVE_ZLIB */
269 /* check for following messages */
270 if (continue_at
&& (continue_at
< (message
+ message_length
))) {
271 while (isspace(*continue_at
)) ++continue_at
;
272 if (continue_at
< (message
+ message_length
)) {
273 http_message
*next
= NULL
, *most
= NULL
;
275 /* set current message to parent of most parent following messages and return deepest */
276 if ((most
= next
= http_message_parse_rel(NULL
, continue_at
, message
+ message_length
- continue_at
))) {
277 while (most
->parent
) most
= most
->parent
;
288 PHP_HTTP_API
void _http_message_tostring(http_message
*msg
, char **string
, size_t *length
)
296 phpstr_init_ex(&str
, 4096, 0);
300 case HTTP_MSG_REQUEST
:
301 phpstr_appendf(&str
, "%s %s HTTP/%1.1f" HTTP_CRLF
,
302 msg
->http
.info
.request
.method
,
303 msg
->http
.info
.request
.url
,
307 case HTTP_MSG_RESPONSE
:
308 phpstr_appendf(&str
, "HTTP/%1.1f %d%s%s" HTTP_CRLF
,
310 msg
->http
.info
.response
.code
,
311 *msg
->http
.info
.response
.status
? " ":"",
312 msg
->http
.info
.response
.status
);
320 FOREACH_HASH_KEYVAL(pos1
, &msg
->hdrs
, key
, idx
, header
) {
322 zval
**single_header
;
324 switch (Z_TYPE_PP(header
))
327 phpstr_appendf(&str
, "%s: %s" HTTP_CRLF
, key
, Z_STRVAL_PP(header
));
333 FOREACH_VAL(pos2
, *header
, single_header
) {
334 phpstr_appendf(&str
, "%s: %s" HTTP_CRLF
, key
, Z_STRVAL_PP(single_header
));
344 if (PHPSTR_LEN(msg
)) {
345 phpstr_appends(&str
, HTTP_CRLF
);
346 phpstr_append(&str
, PHPSTR_VAL(msg
), PHPSTR_LEN(msg
));
347 phpstr_appends(&str
, HTTP_CRLF
);
350 data
= phpstr_data(&str
, string
, length
);
358 PHP_HTTP_API
void _http_message_serialize(http_message
*message
, char **string
, size_t *length
)
367 http_message_tostring(message
, &buf
, &len
);
368 phpstr_prepend(&str
, buf
, len
);
370 } while ((message
= message
->parent
));
372 buf
= phpstr_data(&str
, string
, length
);
380 PHP_HTTP_API
void _http_message_tostruct_recursive(http_message
*msg
, zval
*obj TSRMLS_DC
)
385 INIT_ZARR(strct
, HASH_OF(obj
));
387 add_assoc_long(&strct
, "type", msg
->type
);
388 add_assoc_double(&strct
, "httpVersion", msg
->http
.version
);
391 case HTTP_MSG_RESPONSE
:
392 add_assoc_long(&strct
, "responseCode", msg
->http
.info
.response
.code
);
393 add_assoc_string(&strct
, "responseStatus", msg
->http
.info
.response
.status
, 1);
396 case HTTP_MSG_REQUEST
:
397 add_assoc_string(&strct
, "requestMethod", msg
->http
.info
.request
.method
, 1);
398 add_assoc_string(&strct
, "requestUrl", msg
->http
.info
.request
.url
, 1);
402 /* avoid compiler warning */
406 MAKE_STD_ZVAL(headers
);
408 zend_hash_copy(Z_ARRVAL_P(headers
), &msg
->hdrs
, (copy_ctor_func_t
) zval_add_ref
, NULL
, sizeof(zval
*));
409 add_assoc_zval(&strct
, "headers", headers
);
411 add_assoc_stringl(&strct
, "body", PHPSTR_VAL(msg
), PHPSTR_LEN(msg
), 1);
416 MAKE_STD_ZVAL(parent
);
417 if (Z_TYPE_P(obj
) == IS_ARRAY
) {
422 add_assoc_zval(&strct
, "parentMessage", parent
);
423 http_message_tostruct_recursive(msg
->parent
, parent
);
425 add_assoc_null(&strct
, "parentMessage");
429 PHP_HTTP_API STATUS
_http_message_send(http_message
*message TSRMLS_DC
)
433 switch (message
->type
)
435 case HTTP_MSG_RESPONSE
:
442 FOREACH_HASH_KEYVAL(pos1
, &message
->hdrs
, key
, idx
, val
) {
444 if (Z_TYPE_PP(val
) == IS_ARRAY
) {
449 FOREACH_VAL(pos2
, *val
, data
) {
450 http_send_header_ex(key
, strlen(key
), Z_STRVAL_PP(data
), Z_STRLEN_PP(data
), first
, NULL
);
454 http_send_header_ex(key
, strlen(key
), Z_STRVAL_PP(val
), Z_STRLEN_PP(val
), 1, NULL
);
459 rs
= SUCCESS
== http_send_status(message
->http
.info
.response
.code
) &&
460 SUCCESS
== http_send_data(PHPSTR_VAL(message
), PHPSTR_LEN(message
)) ?
465 case HTTP_MSG_REQUEST
:
467 #ifdef HTTP_HAVE_CURL
469 http_request request
;
470 zval
**zhost
, options
, headers
;
472 INIT_PZVAL(&options
);
473 INIT_PZVAL(&headers
);
474 array_init(&options
);
475 array_init(&headers
);
476 zend_hash_copy(Z_ARRVAL(headers
), &message
->hdrs
, (copy_ctor_func_t
) zval_add_ref
, NULL
, sizeof(zval
*));
477 add_assoc_zval(&options
, "headers", &headers
);
479 /* check host header */
480 if (SUCCESS
== zend_hash_find(&message
->hdrs
, "Host", sizeof("Host"), (void **) &zhost
)) {
482 php_url parts
, *url
= php_url_parse(message
->http
.info
.request
.url
);
484 memset(&parts
, 0, sizeof(php_url
));
487 if ((colon
= strchr(Z_STRVAL_PP(zhost
), ':'))) {
488 parts
.port
= atoi(colon
+ 1);
489 parts
.host
= estrndup(Z_STRVAL_PP(zhost
), (Z_STRVAL_PP(zhost
) - colon
- 1));
491 parts
.host
= estrndup(Z_STRVAL_PP(zhost
), Z_STRLEN_PP(zhost
));
494 http_build_url(HTTP_URL_REPLACE
, url
, &parts
, NULL
, &uri
, NULL
);
498 uri
= http_absolute_url(message
->http
.info
.request
.url
);
501 if ((request
.meth
= http_request_method_exists(1, 0, message
->http
.info
.request
.method
))) {
502 http_request_body body
;
504 http_request_init_ex(&request
, NULL
, request
.meth
, uri
);
505 request
.body
= http_request_body_init_ex(&body
, HTTP_REQUEST_BODY_CSTRING
, PHPSTR_VAL(message
), PHPSTR_LEN(message
), 0);
506 if (SUCCESS
== (rs
= http_request_prepare(&request
, NULL
))) {
507 http_request_exec(&request
);
509 http_request_dtor(&request
);
511 http_error_ex(HE_WARNING
, HTTP_E_REQUEST_METHOD
,
512 "Cannot send HttpMessage. Request method %s not supported",
513 message
->http
.info
.request
.method
);
517 http_error(HE_WARNING
, HTTP_E_RUNTIME
, "HTTP requests not supported - ext/http was not linked against libcurl.");
524 http_error(HE_WARNING
, HTTP_E_MESSAGE_TYPE
, "HttpMessage is neither of type HTTP_MSG_REQUEST nor HTTP_MSG_RESPONSE");
531 PHP_HTTP_API http_message
*_http_message_dup(http_message
*msg TSRMLS_DC
)
537 char *serialized_data
;
538 size_t serialized_length
;
540 http_message_serialize(msg
, &serialized_data
, &serialized_length
);
541 new = http_message_parse(serialized_data
, serialized_length
);
542 efree(serialized_data
);
546 PHP_HTTP_API
void _http_message_dtor(http_message
*message
)
549 zend_hash_destroy(&message
->hdrs
);
550 phpstr_dtor(PHPSTR(message
));
552 switch (message
->type
)
554 case HTTP_MSG_REQUEST
:
555 STR_SET(message
->http
.info
.request
.method
, NULL
);
556 STR_SET(message
->http
.info
.request
.url
, NULL
);
559 case HTTP_MSG_RESPONSE
:
560 STR_SET(message
->http
.info
.response
.status
, NULL
);
569 PHP_HTTP_API
void _http_message_free(http_message
**message
)
572 if ((*message
)->parent
) {
573 http_message_free(&(*message
)->parent
);
575 http_message_dtor(*message
);
586 * vim600: noet sw=4 ts=4 fdm=marker
587 * vim<600: noet sw=4 ts=4