- initialize class entries, or else the ZE will try to access ce->handlers that point...
[m6w6/ext-http] / http_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 "SAPI.h"
21 #include "ext/standard/url.h"
22 #include "ext/standard/head.h"
23
24 #include "php_http.h"
25 #include "php_http_std_defs.h"
26 #include "php_http_api.h"
27 #include "php_http_headers_api.h"
28 #include "php_http_request_api.h"
29 #include "php_http_send_api.h"
30
31 #ifdef ZEND_ENGINE_2
32 # include "zend_exceptions.h"
33 # include "php_http_exception_object.h"
34 #endif
35
36 #include <ctype.h>
37
38 #ifdef HTTP_HAVE_MAGIC
39 # if defined(PHP_WIN32) && !defined(USE_MAGIC_DLL) && !defined(USE_MAGIC_STATIC)
40 # define USE_MAGIC_STATIC
41 # endif
42 # include <magic.h>
43 #endif
44
45 ZEND_EXTERN_MODULE_GLOBALS(http);
46
47 PHP_MINIT_FUNCTION(http_support)
48 {
49 HTTP_LONG_CONSTANT("HTTP_SUPPORT", HTTP_SUPPORT);
50 HTTP_LONG_CONSTANT("HTTP_SUPPORT_REQUESTS", HTTP_SUPPORT_REQUESTS);
51 HTTP_LONG_CONSTANT("HTTP_SUPPORT_MAGICMIME", HTTP_SUPPORT_MAGICMIME);
52 HTTP_LONG_CONSTANT("HTTP_SUPPORT_ENCODINGS", HTTP_SUPPORT_ENCODINGS);
53 HTTP_LONG_CONSTANT("HTTP_SUPPORT_MHASHETAGS", HTTP_SUPPORT_MHASHETAGS);
54 HTTP_LONG_CONSTANT("HTTP_SUPPORT_SSLREQUESTS", HTTP_SUPPORT_SSLREQUESTS);
55
56 return SUCCESS;
57 }
58
59 PHP_HTTP_API long _http_support(long feature)
60 {
61 long support = HTTP_SUPPORT;
62
63 #ifdef HTTP_HAVE_CURL
64 support |= HTTP_SUPPORT_REQUESTS;
65 # ifdef HTTP_HAVE_SSL
66 support |= HTTP_SUPPORT_SSLREQUESTS;
67 # endif
68 #endif
69 #ifdef HTTP_HAVE_MHASH
70 support |= HTTP_SUPPORT_MHASHETAGS;
71 #endif
72 #ifdef HTTP_HAVE_MAGIC
73 support |= HTTP_SUPPORT_MAGICMIME;
74 #endif
75 #if defined(HTTP_HAVE_ZLIB) || defined(HAVE_ZLIB)
76 support |= HTTP_SUPPORT_ENCODINGS;
77 #endif
78
79 if (feature) {
80 return (feature == (support & feature));
81 }
82 return support;
83 }
84
85 /* char *pretty_key(char *, size_t, zend_bool, zend_bool) */
86 char *_http_pretty_key(char *key, size_t key_len, zend_bool uctitle, zend_bool xhyphen)
87 {
88 if (key && key_len) {
89 size_t i;
90 int wasalpha;
91 if (wasalpha = isalpha((int) key[0])) {
92 key[0] = (char) (uctitle ? toupper((int) key[0]) : tolower((int) key[0]));
93 }
94 for (i = 1; i < key_len; i++) {
95 if (isalpha((int) key[i])) {
96 key[i] = (char) (((!wasalpha) && uctitle) ? toupper((int) key[i]) : tolower((int) key[i]));
97 wasalpha = 1;
98 } else {
99 if (xhyphen && (key[i] == '_')) {
100 key[i] = '-';
101 }
102 wasalpha = 0;
103 }
104 }
105 }
106 return key;
107 }
108 /* }}} */
109
110 /* {{{ */
111 void _http_key_list_default_decoder(const char *encoded, size_t encoded_len, char **decoded, size_t *decoded_len TSRMLS_DC)
112 {
113 *decoded = estrndup(encoded, encoded_len);
114 *decoded_len = (size_t) php_url_decode(*decoded, encoded_len);
115 }
116 /* }}} */
117
118 /* {{{ */
119 STATUS _http_parse_key_list(const char *list, HashTable *items, char separator, http_key_list_decode_t decode, zend_bool first_entry_is_name_value_pair TSRMLS_DC)
120 {
121 const char *key = list, *val = NULL;
122 int vallen = 0, keylen = 0, done = 0;
123 zval array;
124
125 INIT_ZARR(array, items);
126
127 if (!(val = strchr(list, '='))) {
128 return FAILURE;
129 }
130
131 #define HTTP_KEYLIST_VAL(array, k, str, len) \
132 { \
133 char *decoded; \
134 size_t decoded_len; \
135 if (decode) { \
136 decode(str, len, &decoded, &decoded_len TSRMLS_CC); \
137 } else { \
138 decoded_len = len; \
139 decoded = estrndup(str, decoded_len); \
140 } \
141 add_assoc_stringl(array, k, decoded, decoded_len, 0); \
142 }
143 #define HTTP_KEYLIST_FIXKEY() \
144 { \
145 while (isspace(*key)) ++key; \
146 keylen = val - key; \
147 while (isspace(key[keylen - 1])) --keylen; \
148 }
149 #define HTTP_KEYLIST_FIXVAL() \
150 { \
151 ++val; \
152 while (isspace(*val)) ++val; \
153 vallen = key - val; \
154 while (isspace(val[vallen - 1])) --vallen; \
155 }
156
157 HTTP_KEYLIST_FIXKEY();
158
159 if (first_entry_is_name_value_pair) {
160 HTTP_KEYLIST_VAL(&array, "name", key, keylen);
161
162 /* just one name=value */
163 if (!(key = strchr(val, separator))) {
164 key = val + strlen(val);
165 HTTP_KEYLIST_FIXVAL();
166 HTTP_KEYLIST_VAL(&array, "value", val, vallen);
167 return SUCCESS;
168 }
169 /* additional info appended */
170 else {
171 HTTP_KEYLIST_FIXVAL();
172 HTTP_KEYLIST_VAL(&array, "value", val, vallen);
173 }
174 }
175
176 do {
177 char *keydup = NULL;
178
179 if (!(val = strchr(key, '='))) {
180 break;
181 }
182
183 /* start at 0 if first_entry_is_name_value_pair==0 */
184 if (zend_hash_num_elements(items)) {
185 ++key;
186 }
187
188 HTTP_KEYLIST_FIXKEY();
189 keydup = estrndup(key, keylen);
190 if (!(key = strchr(val, separator))) {
191 done = 1;
192 key = val + strlen(val);
193 }
194 HTTP_KEYLIST_FIXVAL();
195 HTTP_KEYLIST_VAL(&array, keydup, val, vallen);
196 efree(keydup);
197 } while (!done);
198
199 return SUCCESS;
200 }
201 /* }}} */
202
203 /* {{{ void http_error(long, long, char*) */
204 void _http_error_ex(long type TSRMLS_DC, long code, const char *format, ...)
205 {
206 va_list args;
207
208 va_start(args, format);
209 #ifdef ZEND_ENGINE_2
210 if ((type == E_THROW) || (PG(error_handling) == EH_THROW)) {
211 char *message;
212
213 vspprintf(&message, 0, format, args);
214 zend_throw_exception(http_exception_get_for_code(code), message, code TSRMLS_CC);
215 efree(message);
216 } else
217 #endif
218 php_verror(NULL, "", type, format, args TSRMLS_CC);
219 va_end(args);
220 }
221 /* }}} */
222
223 /* {{{ void http_log(char *, char *, char *) */
224 void _http_log_ex(char *file, const char *ident, const char *message TSRMLS_DC)
225 {
226 time_t now;
227 struct tm nowtm;
228 char datetime[128];
229
230 time(&now);
231 strftime(datetime, sizeof(datetime), "%Y-%m-%d %H:%M:%S", php_localtime_r(&now, &nowtm));
232
233 #define HTTP_LOG_WRITE(file, type, msg) \
234 if (file && *file) { \
235 php_stream *log = php_stream_open_wrapper(file, "ab", REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL); \
236 \
237 if (log) { \
238 php_stream_printf(log TSRMLS_CC, "%s\t[%s]\t%s\t<%s>%s", datetime, type, msg, SG(request_info).request_uri, PHP_EOL); \
239 php_stream_close(log); \
240 } \
241 \
242 }
243
244 HTTP_LOG_WRITE(file, ident, message);
245 HTTP_LOG_WRITE(HTTP_G(log).composite, ident, message);
246 }
247 /* }}} */
248
249 /* {{{ STATUS http_exit(int, char*, char*) */
250 STATUS _http_exit_ex(int status, char *header, char *body, zend_bool send_header TSRMLS_DC)
251 {
252 if ( (send_header && (SUCCESS != http_send_status_header(status, header))) ||
253 (!send_header && status && (SUCCESS != http_send_status(status)))) {
254 http_error_ex(HE_WARNING, HTTP_E_HEADER, "Failed to exit with status/header: %d - %s", status, header ? header : "");
255 STR_FREE(header);
256 STR_FREE(body);
257 return FAILURE;
258 }
259
260 if (php_header(TSRMLS_C) && body) {
261 PHPWRITE(body, strlen(body));
262 }
263
264 switch (status)
265 {
266 case 301: http_log(HTTP_G(log).redirect, "301-REDIRECT", header); break;
267 case 302: http_log(HTTP_G(log).redirect, "302-REDIRECT", header); break;
268 case 303: http_log(HTTP_G(log).redirect, "303-REDIRECT", header); break;
269 case 307: http_log(HTTP_G(log).redirect, "307-REDIRECT", header); break;
270 case 304: http_log(HTTP_G(log).cache, "304-CACHE", header); break;
271 case 405: http_log(HTTP_G(log).allowed_methods, "405-ALLOWED", header); break;
272 default: http_log(NULL, header, body); break;
273 }
274
275 STR_FREE(header);
276 STR_FREE(body);
277
278 zend_bailout();
279 /* fake */
280 return SUCCESS;
281 }
282 /* }}} */
283
284 /* {{{ STATUS http_check_method(char *) */
285 STATUS _http_check_method_ex(const char *method, const char *methods)
286 {
287 const char *found;
288
289 if ( (found = strstr(methods, method)) &&
290 (found == method || !isalpha(found[-1])) &&
291 (!isalpha(found[strlen(method) + 1]))) {
292 return SUCCESS;
293 }
294 return FAILURE;
295 }
296 /* }}} */
297
298 /* {{{ zval *http_get_server_var_ex(char *, size_t) */
299 PHP_HTTP_API zval *_http_get_server_var_ex(const char *key, size_t key_size, zend_bool check TSRMLS_DC)
300 {
301 zval **hsv;
302 zval **var;
303
304 if (SUCCESS != zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"), (void **) &hsv)) {
305 return NULL;
306 }
307 if (SUCCESS != zend_hash_find(Z_ARRVAL_PP(hsv), (char *) key, key_size, (void **) &var)) {
308 return NULL;
309 }
310 if (check && !(Z_STRVAL_PP(var) && Z_STRLEN_PP(var))) {
311 return NULL;
312 }
313 return *var;
314 }
315 /* }}} */
316
317 /* {{{ STATUS http_get_request_body(char **, size_t *) */
318 PHP_HTTP_API STATUS _http_get_request_body_ex(char **body, size_t *length, zend_bool dup TSRMLS_DC)
319 {
320 *length = 0;
321 *body = NULL;
322
323 if (SG(request_info).raw_post_data) {
324 *length = SG(request_info).raw_post_data_length;
325 *body = (char *) (dup ? estrndup(SG(request_info).raw_post_data, *length) : SG(request_info).raw_post_data);
326 return SUCCESS;
327 }
328 return FAILURE;
329 }
330 /* }}} */
331
332
333 /* {{{ char *http_guess_content_type(char *magic_file, long magic_mode, void *data, size_t size, http_send_mode mode) */
334 PHP_HTTP_API char *_http_guess_content_type(const char *magicfile, long magicmode, void *data_ptr, size_t data_len, http_send_mode data_mode TSRMLS_DC)
335 {
336 char *ct = NULL;
337
338 #ifdef HTTP_HAVE_MAGIC
339 /* magic_load() fails if MAGIC_MIME is set because it
340 cowardly adds .mime to the file name */
341 struct magic_set *magic = magic_open(magicmode &~ MAGIC_MIME);
342
343 if (!magic) {
344 http_error_ex(HE_WARNING, HTTP_E_INVALID_PARAM, "Invalid magic mode: %ld", magicmode);
345 } else if (-1 == magic_load(magic, magicfile)) {
346 http_error_ex(HE_WARNING, HTTP_E_RUNTIME, "Failed to load magic database '%s' (%s)", magicfile, magic_error(magic));
347 } else {
348 const char *ctype = NULL;
349
350 magic_setflags(magic, magicmode);
351
352 switch (data_mode)
353 {
354 case SEND_RSRC:
355 {
356 char *buffer;
357 size_t b_len;
358
359 b_len = php_stream_copy_to_mem(data_ptr, &buffer, 65536, 0);
360 ctype = magic_buffer(magic, buffer, b_len);
361 efree(buffer);
362 }
363 break;
364
365 case SEND_DATA:
366 ctype = magic_buffer(magic, data_ptr, data_len);
367 break;
368
369 default:
370 ctype = magic_file(magic, data_ptr);
371 break;
372 }
373
374 if (ctype) {
375 ct = estrdup(ctype);
376 } else {
377 http_error_ex(HE_WARNING, HTTP_E_RUNTIME, "Failed to guess Content-Type: %s", magic_error(magic));
378 }
379 }
380 if (magic) {
381 magic_close(magic);
382 }
383 #else
384 http_error(HE_WARNING, HTTP_E_RUNTIME, "Cannot guess Content-Type; libmagic not available");
385 #endif
386
387 return ct;
388 }
389 /* }}} */
390 /*
391 * Local variables:
392 * tab-width: 4
393 * c-basic-offset: 4
394 * End:
395 * vim600: noet sw=4 ts=4 fdm=marker
396 * vim<600: noet sw=4 ts=4
397 */
398