php-src/main/SAPI.c

195 lines
5.3 KiB
C
Raw Normal View History

/*
+----------------------------------------------------------------------+
| Server API Abstraction Layer |
+----------------------------------------------------------------------+
| Copyright (c) 1998, 1999 SAPI Development Team |
+----------------------------------------------------------------------+
| This source file is subject to the Zend license, that is bundled |
| with this package in the file LICENSE. If you did not receive a |
| copy of the Zend license, please mail us at zend@zend.com so we can |
| send you a copy immediately. |
+----------------------------------------------------------------------+
| Design: Shane Caraveo <shane@caraveo.com> |
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
1999-04-26 03:36:57 +08:00
#include "SAPI.h"
#ifdef ZTS
1999-04-26 03:36:57 +08:00
#include "TSRM.h"
#endif
1999-04-26 03:36:57 +08:00
#if WIN32||WINNT
#define STRCASECMP stricmp
#else
#define STRCASECMP strcasecmp
#endif
1999-04-26 03:36:57 +08:00
SAPI_API void (*sapi_error)(int error_type, const char *message, ...);
1999-04-26 03:36:57 +08:00
#ifdef ZTS
SAPI_API int sapi_globals_id;
#else
sapi_globals_struct sapi_globals;
1999-04-26 03:36:57 +08:00
#endif
/* True globals (no need for thread safety) */
sapi_module_struct sapi_module;
SAPI_API void (*sapi_error)(int error_type, const char *message, ...);
1999-04-26 03:36:57 +08:00
SAPI_API void sapi_startup(sapi_module_struct *sf)
1999-04-26 03:36:57 +08:00
{
sapi_module = *sf;
1999-04-26 03:36:57 +08:00
#ifdef ZTS
sapi_globals_id = ts_allocate_id(sizeof(sapi_globals_struct), NULL, NULL);
#endif
}
static void sapi_free_header(sapi_header_struct *sapi_header)
{
efree(sapi_header->header);
}
#undef SAPI_POST_BLOCK_SIZE
#define SAPI_POST_BLOCK_SIZE 2
static void sapi_read_post_data(SLS_D)
{
int read_bytes, total_read_bytes=0;
int allocated_bytes=SAPI_POST_BLOCK_SIZE+1;
SG(request_info).post_data = emalloc(allocated_bytes);
for (;;) {
read_bytes = sapi_module.read_post(SG(request_info).post_data+total_read_bytes, SAPI_POST_BLOCK_SIZE SLS_CC);
if (read_bytes<=0) {
break;
}
total_read_bytes += read_bytes;
if (read_bytes < SAPI_POST_BLOCK_SIZE) {
break;
}
if (total_read_bytes+SAPI_POST_BLOCK_SIZE >= allocated_bytes) {
allocated_bytes = total_read_bytes+SAPI_POST_BLOCK_SIZE+1;
SG(request_info).post_data = erealloc(SG(request_info).post_data, allocated_bytes);
}
}
SG(request_info).post_data[total_read_bytes] = 0; /* terminating NULL */
}
SAPI_API void sapi_activate(SLS_D)
{
zend_llist_init(&SG(sapi_headers).headers, sizeof(sapi_header_struct), (void (*)(void *)) sapi_free_header, 0);
SG(sapi_headers).send_default_content_type = 1;
SG(sapi_headers).http_response_code = 200;
1999-05-06 03:53:15 +08:00
SG(headers_sent) = 0;
SG(read_post_bytes) = 0;
if (SG(server_context)) {
if (!strcmp(SG(request_info).request_method, "POST")) {
sapi_read_post_data(SLS_C);
} else {
SG(request_info).post_data = NULL;
}
SG(request_info).cookie_data = sapi_module.read_cookies(SLS_C);
}
}
SAPI_API void sapi_deactivate(SLS_D)
{
zend_llist_destroy(&SG(sapi_headers).headers);
if (SG(server_context) && SG(request_info).post_data) {
efree(SG(request_info).post_data);
1999-05-06 05:29:26 +08:00
}
}
/* This function expects a *duplicated* string, that was previously emalloc()'d.
* Pointers sent to this functions will be automatically freed by the framework.
*/
SAPI_API int sapi_add_header(char *header_line, uint header_line_len)
{
int retval;
sapi_header_struct sapi_header;
SLS_FETCH();
if (SG(headers_sent)) {
sapi_module.sapi_error(E_WARNING, "Cannot add header information - headers already sent");
efree(header_line);
return FAILURE;
}
sapi_header.header = header_line;
sapi_header.header_len = header_line_len;
1999-05-06 03:53:15 +08:00
if (sapi_module.header_handler) {
retval = sapi_module.header_handler(&sapi_header, &SG(sapi_headers) SLS_CC);
1999-05-06 03:53:15 +08:00
} else {
retval = SAPI_HEADER_ADD;
}
if (retval & SAPI_HEADER_DELETE_ALL) {
zend_llist_clean(&SG(sapi_headers).headers);
}
if (retval & SAPI_HEADER_ADD) {
char *colon_offset = strchr(header_line, ':');
if (colon_offset) {
*colon_offset = 0;
if (!STRCASECMP(header_line, "Content-Type")) {
SG(sapi_headers).send_default_content_type = 0;
}
*colon_offset = ':';
}
zend_llist_add_element(&SG(sapi_headers).headers, (void *) &sapi_header);
}
return SUCCESS;
}
SAPI_API int sapi_send_headers()
{
1999-05-06 03:53:15 +08:00
int retval;
1999-05-06 05:47:04 +08:00
sapi_header_struct default_header = { SAPI_DEFAULT_CONTENT_TYPE, sizeof(SAPI_DEFAULT_CONTENT_TYPE)-1 };
SLS_FETCH();
1999-05-06 03:53:15 +08:00
if (SG(headers_sent)) {
return SUCCESS;
}
if (sapi_module.send_headers) {
retval = sapi_module.send_headers(&SG(sapi_headers) SLS_CC);
} else {
retval = SAPI_HEADER_DO_SEND;
}
switch (retval) {
case SAPI_HEADER_SENT_SUCCESSFULLY:
1999-05-06 03:53:15 +08:00
SG(headers_sent) = 1;
return SUCCESS;
break;
case SAPI_HEADER_DO_SEND:
if (SG(sapi_headers).send_default_content_type) {
sapi_module.send_header(&default_header, SG(server_context));
}
zend_llist_apply_with_argument(&SG(sapi_headers).headers, (void (*)(void *, void *)) sapi_module.send_header, SG(server_context));
sapi_module.send_header(NULL, SG(server_context));
1999-05-06 03:53:15 +08:00
SG(headers_sent) = 1;
return SUCCESS;
break;
case SAPI_HEADER_SEND_FAILED:
return FAILURE;
break;
}
return FAILURE;
}