- honor other REGISTER_CLASS macros too
[m6w6/ext-http] / http_message_api.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-2005, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifdef HAVE_CONFIG_H
16 # include "config.h"
17 #endif
18 #include "php.h"
19
20 #include "php_http.h"
21 #include "php_http_std_defs.h"
22 #include "php_http_api.h"
23 #include "php_http_message_api.h"
24 #include "php_http_headers_api.h"
25 #include "php_http_send_api.h"
26 #include "php_http_request_api.h"
27 #include "php_http_url_api.h"
28 #include "php_http_encoding_api.h"
29
30 #include "phpstr/phpstr.h"
31
32 ZEND_EXTERN_MODULE_GLOBALS(http);
33
34 #define http_message_info_callback _http_message_info_callback
35 static void _http_message_info_callback(http_message **message, HashTable **headers, http_info *info TSRMLS_DC)
36 {
37 http_message *old = *message;
38
39 /* advance message */
40 if (old->type || zend_hash_num_elements(&old->hdrs) || PHPSTR_LEN(old)) {
41 (*message) = http_message_new();
42 (*message)->parent = old;
43 (*headers) = &((*message)->hdrs);
44 }
45
46 (*message)->http.version = info->http.version;
47
48 switch (info->type)
49 {
50 case IS_HTTP_REQUEST:
51 (*message)->type = HTTP_MSG_REQUEST;
52 HTTP_INFO(*message).request.URI = estrdup(HTTP_INFO(info).request.URI);
53 HTTP_INFO(*message).request.method = estrdup(HTTP_INFO(info).request.method);
54 break;
55
56 case IS_HTTP_RESPONSE:
57 (*message)->type = HTTP_MSG_RESPONSE;
58 HTTP_INFO(*message).response.code = HTTP_INFO(info).response.code;
59 HTTP_INFO(*message).response.status = estrdup(HTTP_INFO(info).response.status);
60 break;
61 }
62 }
63
64 #define http_message_init_type _http_message_init_type
65 static inline void _http_message_init_type(http_message *message, http_message_type type)
66 {
67 message->http.version = .0;
68
69 switch (message->type = type)
70 {
71 case HTTP_MSG_RESPONSE:
72 message->http.info.response.code = 0;
73 message->http.info.response.status = NULL;
74 break;
75
76 case HTTP_MSG_REQUEST:
77 message->http.info.request.method = NULL;
78 message->http.info.request.URI = NULL;
79 break;
80
81 case HTTP_MSG_NONE:
82 default:
83 break;
84 }
85 }
86
87 PHP_HTTP_API http_message *_http_message_init_ex(http_message *message, http_message_type type)
88 {
89 if (!message) {
90 message = ecalloc(1, sizeof(http_message));
91 }
92
93 http_message_init_type(message, type);
94 message->parent = NULL;
95 phpstr_init(&message->body);
96 zend_hash_init(&message->hdrs, 0, NULL, ZVAL_PTR_DTOR, 0);
97
98 return message;
99 }
100
101
102 PHP_HTTP_API void _http_message_set_type(http_message *message, http_message_type type)
103 {
104 /* just act if different */
105 if (type != message->type) {
106
107 /* free request info */
108 switch (message->type)
109 {
110 case HTTP_MSG_REQUEST:
111 STR_FREE(message->http.info.request.method);
112 STR_FREE(message->http.info.request.URI);
113 break;
114
115 case HTTP_MSG_RESPONSE:
116 STR_FREE(message->http.info.response.status);
117 break;
118
119 default:
120 break;
121 }
122
123 /* init */
124 http_message_init_type(message, type);
125 }
126 }
127
128 PHP_HTTP_API http_message *_http_message_parse_ex(http_message *msg, const char *message, size_t message_length TSRMLS_DC)
129 {
130 const char *body = NULL;
131 zend_bool free_msg = msg ? 0 : 1;
132
133 if ((!message) || (message_length < HTTP_MSG_MIN_SIZE)) {
134 return NULL;
135 }
136
137 msg = http_message_init(msg);
138
139 if (SUCCESS != http_parse_headers_cb(message, &msg->hdrs, 1, (http_info_callback) http_message_info_callback, (void **) &msg)) {
140 if (free_msg) {
141 http_message_free(&msg);
142 }
143 return NULL;
144 }
145
146 /* header parsing stops at (CR)LF (CR)LF */
147 if (body = http_locate_body(message)) {
148 zval *c;
149 const char *continue_at = NULL;
150 size_t remaining = message + message_length - body;
151
152 /* message has chunked transfer encoding */
153 if ((c = http_message_header(msg, "Transfer-Encoding")) && (!strcasecmp("chunked", Z_STRVAL_P(c)))) {
154 char *decoded;
155 size_t decoded_len;
156
157 /* decode and replace Transfer-Encoding with Content-Length header */
158 if (continue_at = http_encoding_dechunk(body, message + message_length - body, &decoded, &decoded_len)) {
159 zval *len;
160 char *tmp;
161 int tmp_len;
162
163 tmp_len = (int) spprintf(&tmp, 0, "%lu", (ulong) decoded_len);
164 MAKE_STD_ZVAL(len);
165 ZVAL_STRINGL(len, tmp, tmp_len, 0);
166
167 zend_hash_del(&msg->hdrs, "Transfer-Encoding", sizeof("Transfer-Encoding"));
168 zend_hash_del(&msg->hdrs, "Content-Length", sizeof("Content-Length"));
169 zend_hash_add(&msg->hdrs, "Content-Length", sizeof("Content-Length"), (void *) &len, sizeof(zval *), NULL);
170
171 phpstr_from_string_ex(PHPSTR(msg), decoded, decoded_len);
172 efree(decoded);
173 }
174 } else
175
176 /* message has content-length header */
177 if (c = http_message_header(msg, "Content-Length")) {
178 ulong len = strtoul(Z_STRVAL_P(c), NULL, 10);
179 if (len > remaining) {
180 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);
181 len = remaining;
182 }
183 phpstr_from_string_ex(PHPSTR(msg), body, len);
184 continue_at = body + len;
185 } else
186
187 /* message has content-range header */
188 if (c = http_message_header(msg, "Content-Range")) {
189 ulong total = 0, start = 0, end = 0, len = 0;
190
191 if (!strncasecmp(Z_STRVAL_P(c), "bytes=", lenof("bytes="))) {
192 char *total_at = NULL, *end_at = NULL;
193 char *start_at = Z_STRVAL_P(c) + lenof("bytes=");
194
195 start = strtoul(start_at, &end_at, 10);
196 if (end_at) {
197 end = strtoul(end_at + 1, &total_at, 10);
198 if (total_at && strncmp(total_at + 1, "*", 1)) {
199 total = strtoul(total_at + 1, NULL, 10);
200 }
201 if ((len = (end + 1 - start)) > remaining) {
202 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);
203 len = remaining;
204 }
205 if (end >= start && (!total || end < total)) {
206 phpstr_from_string_ex(PHPSTR(msg), body, len);
207 continue_at = body + len;
208 }
209 }
210 }
211
212 if (!continue_at) {
213 http_error_ex(HE_WARNING, HTTP_E_MALFORMED_HEADERS, "Invalid Content-Range header: %s", Z_STRVAL_P(c));
214 }
215 } else
216
217 /* no headers that indicate content length */
218 if (HTTP_MSG_TYPE(RESPONSE, msg)) {
219 phpstr_from_string_ex(PHPSTR(msg), body, remaining);
220 } else {
221 continue_at = body;
222 }
223
224 #if defined(HTTP_HAVE_ZLIB) || defined(HAVE_ZLIB)
225 /* check for compressed data */
226 if (c = http_message_header(msg, "Content-Encoding")) {
227 char *decoded = NULL;
228 size_t decoded_len = 0;
229 # if defined(HAVE_ZLIB) && !defined(HTTP_HAVE_ZLIB)
230 zval func, retval, arg, *args[1];
231 INIT_PZVAL(&func);
232 INIT_PZVAL(&retval);
233 INIT_PZVAL(&arg);
234 ZVAL_STRINGL(&func, "gzinflate", lenof("gzinflate"), 0);
235 args[0] = &arg;
236 # endif /* HAVE_ZLIB && !HTTP_HAVE_ZLIB */
237
238 # define DECODE_WITH_EXT_ZLIB() \
239 if (SUCCESS == call_user_function(EG(function_table), NULL, &func, &retval, 1, args TSRMLS_CC)) { \
240 if (Z_TYPE(retval) == IS_STRING) { \
241 decoded = Z_STRVAL(retval); \
242 decoded_len = Z_STRLEN(retval); \
243 } \
244 }
245
246 if (!strcasecmp(Z_STRVAL_P(c), "gzip") || !strcasecmp(Z_STRVAL_P(c), "x-gzip")) {
247 # ifdef HTTP_HAVE_ZLIB
248 http_encoding_gzdecode(PHPSTR_VAL(msg), PHPSTR_LEN(msg), &decoded, &decoded_len);
249 # else
250 ZVAL_STRINGL(&arg, PHPSTR_VAL(msg) + 10, PHPSTR_LEN(msg) - 18, 0);
251 DECODE_WITH_EXT_ZLIB();
252 # endif /* HTTP_HAVE_ZLIB */
253 } else if (!strcasecmp(Z_STRVAL_P(c), "deflate")) {
254 # ifdef HTTP_HAVE_ZLIB
255 http_encoding_inflate(PHPSTR_VAL(msg), PHPSTR_LEN(msg), &decoded, &decoded_len);
256 # else
257 ZVAL_STRINGL(&arg, PHPSTR_VAL(msg), PHPSTR_LEN(msg), 0);
258 DECODE_WITH_EXT_ZLIB();
259 # endif /* HTTP_HAVE_ZLIB */
260 }
261
262 if (decoded) {
263 zval *len;
264 char *tmp;
265 int tmp_len;
266
267 tmp_len = (int) spprintf(&tmp, 0, "%lu", (ulong) decoded_len);
268 MAKE_STD_ZVAL(len);
269 ZVAL_STRINGL(len, tmp, tmp_len, 0);
270
271 zend_hash_del(&msg->hdrs, "Content-Encoding", sizeof("Content-Encoding"));
272 zend_hash_del(&msg->hdrs, "Content-Length", sizeof("Content-Length"));
273 zend_hash_add(&msg->hdrs, "Content-Length", sizeof("Content-Length"), (void *) &len, sizeof(zval *), NULL);
274
275 phpstr_dtor(PHPSTR(msg));
276 PHPSTR(msg)->data = decoded;
277 PHPSTR(msg)->used = decoded_len;
278 PHPSTR(msg)->free = 1;
279 }
280 }
281 #endif /* HTTP_HAVE_ZLIB || HAVE_ZLIB */
282
283 /* check for following messages */
284 if (continue_at) {
285 while (isspace(*continue_at)) ++continue_at;
286 if (continue_at < (message + message_length)) {
287 http_message *next = NULL, *most = NULL;
288
289 /* set current message to parent of most parent following messages and return deepest */
290 if (most = next = http_message_parse(continue_at, message + message_length - continue_at)) {
291 while (most->parent) most = most->parent;
292 most->parent = msg;
293 msg = next;
294 }
295 }
296 }
297 }
298
299 return msg;
300 }
301
302 PHP_HTTP_API void _http_message_tostring(http_message *msg, char **string, size_t *length)
303 {
304 phpstr str;
305 char *key, *data;
306 ulong idx;
307 zval **header;
308
309 phpstr_init_ex(&str, 4096, 0);
310
311 switch (msg->type)
312 {
313 case HTTP_MSG_REQUEST:
314 phpstr_appendf(&str, "%s %s HTTP/%1.1f" HTTP_CRLF,
315 msg->http.info.request.method,
316 msg->http.info.request.URI,
317 msg->http.version);
318 break;
319
320 case HTTP_MSG_RESPONSE:
321 phpstr_appendf(&str, "HTTP/%1.1f %d%s%s" HTTP_CRLF,
322 msg->http.version,
323 msg->http.info.response.code,
324 *msg->http.info.response.status ? " ":"",
325 msg->http.info.response.status);
326 break;
327
328 case HTTP_MSG_NONE:
329 default:
330 break;
331 }
332
333 FOREACH_HASH_KEYVAL(&msg->hdrs, key, idx, header) {
334 if (key) {
335 zval **single_header;
336
337 switch (Z_TYPE_PP(header))
338 {
339 case IS_STRING:
340 phpstr_appendf(&str, "%s: %s" HTTP_CRLF, key, Z_STRVAL_PP(header));
341 break;
342
343 case IS_ARRAY:
344 FOREACH_VAL(*header, single_header) {
345 phpstr_appendf(&str, "%s: %s" HTTP_CRLF, key, Z_STRVAL_PP(single_header));
346 }
347 break;
348 }
349
350 key = NULL;
351 }
352 }
353
354 if (PHPSTR_LEN(msg)) {
355 phpstr_appends(&str, HTTP_CRLF);
356 phpstr_append(&str, PHPSTR_VAL(msg), PHPSTR_LEN(msg));
357 phpstr_appends(&str, HTTP_CRLF);
358 }
359
360 data = phpstr_data(&str, string, length);
361 if (!string) {
362 efree(data);
363 }
364
365 phpstr_dtor(&str);
366 }
367
368 PHP_HTTP_API void _http_message_serialize(http_message *message, char **string, size_t *length)
369 {
370 char *buf;
371 size_t len;
372 phpstr str;
373
374 phpstr_init(&str);
375
376 do {
377 http_message_tostring(message, &buf, &len);
378 phpstr_prepend(&str, buf, len);
379 efree(buf);
380 } while (message = message->parent);
381
382 buf = phpstr_data(&str, string, length);
383 if (!string) {
384 efree(buf);
385 }
386
387 phpstr_dtor(&str);
388 }
389
390 PHP_HTTP_API void _http_message_tostruct_recursive(http_message *msg, zval *obj TSRMLS_DC)
391 {
392 zval strct;
393 zval *headers;
394
395 INIT_ZARR(strct, HASH_OF(obj));
396
397 add_assoc_long(&strct, "type", msg->type);
398 add_assoc_double(&strct, "httpVersion", msg->http.version);
399 switch (msg->type)
400 {
401 case HTTP_MSG_RESPONSE:
402 add_assoc_long(&strct, "responseCode", msg->http.info.response.code);
403 add_assoc_string(&strct, "responseStatus", msg->http.info.response.status, 1);
404 break;
405
406 case HTTP_MSG_REQUEST:
407 add_assoc_string(&strct, "requestMethod", msg->http.info.request.method, 1);
408 add_assoc_string(&strct, "requestUri", msg->http.info.request.URI, 1);
409 break;
410 }
411
412 MAKE_STD_ZVAL(headers);
413 array_init(headers);
414 zend_hash_copy(Z_ARRVAL_P(headers), &msg->hdrs, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
415 add_assoc_zval(&strct, "headers", headers);
416
417 add_assoc_stringl(&strct, "body", PHPSTR_VAL(msg), PHPSTR_LEN(msg), 1);
418
419 if (msg->parent) {
420 zval *parent;
421
422 MAKE_STD_ZVAL(parent);
423 if (Z_TYPE_P(obj) == IS_ARRAY) {
424 array_init(parent);
425 } else {
426 object_init(parent);
427 }
428 add_assoc_zval(&strct, "parentMessage", parent);
429 http_message_tostruct_recursive(msg->parent, parent);
430 } else {
431 add_assoc_null(&strct, "parentMessage");
432 }
433 }
434
435 PHP_HTTP_API STATUS _http_message_send(http_message *message TSRMLS_DC)
436 {
437 STATUS rs = FAILURE;
438
439 switch (message->type)
440 {
441 case HTTP_MSG_RESPONSE:
442 {
443 char *key;
444 ulong idx;
445 zval **val;
446
447 FOREACH_HASH_KEYVAL(&message->hdrs, key, idx, val) {
448 if (key) {
449 if (Z_TYPE_PP(val) == IS_ARRAY) {
450 zend_bool first = 1;
451 zval **data;
452
453 FOREACH_VAL(*val, data) {
454 http_send_header_ex(key, strlen(key), Z_STRVAL_PP(data), Z_STRLEN_PP(data), first, NULL);
455 first = 0;
456 }
457 } else {
458 http_send_header_ex(key, strlen(key), Z_STRVAL_PP(val), Z_STRLEN_PP(val), 1, NULL);
459 }
460 key = NULL;
461 }
462 }
463 rs = SUCCESS == http_send_status(message->http.info.response.code) &&
464 SUCCESS == http_send_data(PHPSTR_VAL(message), PHPSTR_LEN(message)) ?
465 SUCCESS : FAILURE;
466 }
467 break;
468
469 case HTTP_MSG_REQUEST:
470 {
471 #ifdef HTTP_HAVE_CURL
472 char *uri = NULL;
473 zval **zhost, options, headers;
474
475 INIT_PZVAL(&options);
476 INIT_PZVAL(&headers);
477 array_init(&options);
478 array_init(&headers);
479 zend_hash_copy(Z_ARRVAL(headers), &message->hdrs, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
480 add_assoc_zval(&options, "headers", &headers);
481
482 /* check host header */
483 if (SUCCESS == zend_hash_find(&message->hdrs, "Host", sizeof("Host"), (void **) &zhost)) {
484 char *colon = NULL, *host = NULL;
485 size_t host_len = 0;
486 int port = 0;
487
488 /* check for port */
489 if (colon = strchr(Z_STRVAL_PP(zhost), ':')) {
490 port = atoi(colon + 1);
491 host = estrndup(Z_STRVAL_PP(zhost), host_len = (Z_STRVAL_PP(zhost) - colon - 1));
492 } else {
493 host = estrndup(Z_STRVAL_PP(zhost), host_len = Z_STRLEN_PP(zhost));
494 }
495 uri = http_absolute_uri_ex(
496 message->http.info.request.URI, strlen(message->http.info.request.URI),
497 NULL, 0, host, host_len, port);
498 efree(host);
499 } else {
500 uri = http_absolute_uri(message->http.info.request.URI);
501 }
502
503 if (!strcasecmp("POST", message->http.info.request.method)) {
504 http_request_body body = {HTTP_REQUEST_BODY_CSTRING, PHPSTR_VAL(message), PHPSTR_LEN(message)};
505 rs = http_post(uri, &body, Z_ARRVAL(options), NULL, NULL);
506 } else
507 if (!strcasecmp("GET", message->http.info.request.method)) {
508 rs = http_get(uri, Z_ARRVAL(options), NULL, NULL);
509 } else
510 if (!strcasecmp("HEAD", message->http.info.request.method)) {
511 rs = http_head(uri, Z_ARRVAL(options), NULL, NULL);
512 } else {
513 http_error_ex(HE_WARNING, HTTP_E_REQUEST_METHOD,
514 "Cannot send HttpMessage. Request method %s not supported",
515 message->http.info.request.method);
516 }
517
518 efree(uri);
519 #else
520 http_error(HE_WARNING, HTTP_E_RUNTIME, "HTTP requests not supported - ext/http was not linked against libcurl.");
521 #endif
522 }
523 break;
524
525 case HTTP_MSG_NONE:
526 default:
527 http_error(HE_WARNING, HTTP_E_MESSAGE_TYPE, "HttpMessage is neither of type HTTP_MSG_REQUEST nor HTTP_MSG_RESPONSE");
528 break;
529 }
530
531 return rs;
532 }
533
534 PHP_HTTP_API http_message *_http_message_dup(http_message *msg TSRMLS_DC)
535 {
536 /*
537 * TODO: unroll
538 */
539 http_message *new;
540 char *serialized_data;
541 size_t serialized_length;
542
543 http_message_serialize(msg, &serialized_data, &serialized_length);
544 new = http_message_parse(serialized_data, serialized_length);
545 efree(serialized_data);
546 return new;
547 }
548
549 PHP_HTTP_API void _http_message_dtor(http_message *message)
550 {
551 if (message) {
552 zend_hash_destroy(&message->hdrs);
553 phpstr_dtor(PHPSTR(message));
554
555 switch (message->type)
556 {
557 case HTTP_MSG_REQUEST:
558 STR_SET(message->http.info.request.method, NULL);
559 STR_SET(message->http.info.request.URI, NULL);
560 break;
561
562 case HTTP_MSG_RESPONSE:
563 STR_SET(message->http.info.response.status, NULL);
564 break;
565
566 default:
567 break;
568 }
569 }
570 }
571
572 PHP_HTTP_API void _http_message_free(http_message **message)
573 {
574 if (*message) {
575 if ((*message)->parent) {
576 http_message_free(&(*message)->parent);
577 }
578 http_message_dtor(*message);
579 efree(*message);
580 *message = NULL;
581 }
582 }
583
584 /*
585 * Local variables:
586 * tab-width: 4
587 * c-basic-offset: 4
588 * End:
589 * vim600: noet sw=4 ts=4 fdm=marker
590 * vim<600: noet sw=4 ts=4
591 */
592