mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
585 lines
14 KiB
C
585 lines
14 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| PHP version 4.0 |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 1997, 1998, 1999 The PHP Group |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 2.0 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available at through the world-wide-web at |
|
|
| http://www.php.net/license/2_0.txt. |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
| Author: Sascha Schumann <sascha@schumann.cx> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
/*
|
|
* TODO:
|
|
* - write documentation
|
|
* - CGI/1.1 conformance
|
|
*/
|
|
|
|
/* $Id$ */
|
|
|
|
/* conflict between PHP and AOLserver headers */
|
|
#define Debug php_Debug
|
|
#include "php.h"
|
|
#undef Debug
|
|
|
|
#ifdef HAVE_AOLSERVER
|
|
|
|
#ifndef ZTS
|
|
#error AOLserver module is only useable in thread-safe mode
|
|
#endif
|
|
|
|
#define NS_BUF_SIZE 511
|
|
|
|
#include "php_ini.h"
|
|
#include "php_globals.h"
|
|
#include "SAPI.h"
|
|
#include "main.h"
|
|
|
|
#include "ns.h"
|
|
|
|
#include "php_version.h"
|
|
|
|
/* This symbol is used by AOLserver to tell the API version we expect */
|
|
|
|
int Ns_ModuleVersion = 1;
|
|
|
|
#define NSLS_D ns_globals_struct *ns_context
|
|
#define NSLS_DC , NSLS_D
|
|
#define NSLS_C ns_context
|
|
#define NSLS_CC , NSLS_C
|
|
#define NSG(v) (ns_context->v)
|
|
#define NSLS_FETCH() ns_globals_struct *ns_context = ts_resource(ns_globals_id)
|
|
|
|
/* TSRM id */
|
|
|
|
static int ns_globals_id;
|
|
|
|
/* php_ns_context is per-server (thus only once at all) */
|
|
|
|
typedef struct {
|
|
sapi_module_struct *sapi_module;
|
|
char *ns_server;
|
|
char *ns_module;
|
|
} php_ns_context;
|
|
|
|
/* ns_globals_struct is per-thread */
|
|
|
|
typedef struct {
|
|
Ns_Conn *conn;
|
|
size_t data_avail;
|
|
} ns_globals_struct;
|
|
|
|
/*
|
|
* php_ns_sapi_ub_write() writes data to the client connection.
|
|
*/
|
|
|
|
static int
|
|
php_ns_sapi_ub_write(const char *str, uint str_length)
|
|
{
|
|
int sent_bytes;
|
|
NSLS_FETCH();
|
|
|
|
sent_bytes = Ns_ConnWrite(NSG(conn), (void *) str, str_length);
|
|
|
|
return sent_bytes;
|
|
}
|
|
|
|
/*
|
|
* php_ns_sapi_header_handler() sets a HTTP reply header to be
|
|
* sent to the client.
|
|
*/
|
|
|
|
static int
|
|
php_ns_sapi_header_handler(sapi_header_struct *sapi_header, sapi_headers_struct *sapi_headers SLS_DC)
|
|
{
|
|
char *header_name, *header_content;
|
|
char *p;
|
|
NSLS_FETCH();
|
|
|
|
header_name = sapi_header->header;
|
|
header_content = p = strchr(header_name, ':');
|
|
|
|
if(!p) return 0;
|
|
|
|
*p = '\0';
|
|
do {
|
|
header_content++;
|
|
} while(*header_content == ' ');
|
|
|
|
if(!strcasecmp(header_name, "Content-type")) {
|
|
Ns_ConnSetTypeHeader(NSG(conn), header_content);
|
|
} else {
|
|
Ns_ConnSetHeaders(NSG(conn), header_name, header_content);
|
|
}
|
|
|
|
*p = ':';
|
|
|
|
efree(sapi_header->header);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* php_ns_sapi_send_headers() flushes the headers to the client.
|
|
* Called before real content is sent by PHP.
|
|
*/
|
|
|
|
static int
|
|
php_ns_sapi_send_headers(sapi_headers_struct *sapi_headers SLS_DC)
|
|
{
|
|
NSLS_FETCH();
|
|
|
|
if(SG(sapi_headers).send_default_content_type) {
|
|
Ns_ConnSetRequiredHeaders(NSG(conn), "text/html", 0);
|
|
}
|
|
|
|
Ns_ConnFlushHeaders(NSG(conn), SG(sapi_headers).http_response_code);
|
|
|
|
return SAPI_HEADER_SENT_SUCCESSFULLY;
|
|
}
|
|
|
|
/*
|
|
* php_ns_sapi_read_post() reads a specified number of bytes from
|
|
* the client. Used for POST/PUT requests.
|
|
*/
|
|
|
|
static int
|
|
php_ns_sapi_read_post(char *buf, uint count_bytes SLS_DC)
|
|
{
|
|
uint max_read;
|
|
uint total_read = 0;
|
|
NSLS_FETCH();
|
|
|
|
max_read = MIN(NSG(data_avail), count_bytes);
|
|
|
|
total_read = Ns_ConnRead(NSG(conn), buf, max_read);
|
|
|
|
if(total_read == NS_ERROR) {
|
|
total_read = -1;
|
|
} else {
|
|
NSG(data_avail) -= total_read;
|
|
}
|
|
|
|
return total_read;
|
|
}
|
|
|
|
/*
|
|
* php_ns_sapi_read_cookies() returns the Cookie header from
|
|
* the HTTP request header
|
|
*/
|
|
|
|
static char *
|
|
php_ns_sapi_read_cookies(SLS_D)
|
|
{
|
|
int i;
|
|
char *http_cookie = NULL;
|
|
NSLS_FETCH();
|
|
|
|
i = Ns_SetIFind(NSG(conn->headers), "cookie");
|
|
if(i != -1) {
|
|
http_cookie = Ns_SetValue(NSG(conn->headers), i);
|
|
}
|
|
|
|
return http_cookie;
|
|
}
|
|
|
|
static void php_info_aolserver(ZEND_MODULE_INFO_FUNC_ARGS)
|
|
{
|
|
char buf[512];
|
|
int uptime = Ns_InfoUptime();
|
|
|
|
PUTS("<table border=5 width=600>\n");
|
|
php_info_print_table_row(2, "SAPI module version", "$Id$");
|
|
php_info_print_table_row(2, "Build date", Ns_InfoBuildDate());
|
|
php_info_print_table_row(2, "Config file path", Ns_InfoConfigFile());
|
|
php_info_print_table_row(2, "Error Log path", Ns_InfoErrorLog());
|
|
php_info_print_table_row(2, "Installation path", Ns_InfoHomePath());
|
|
php_info_print_table_row(2, "Hostname of server", Ns_InfoHostname());
|
|
php_info_print_table_row(2, "Source code label", Ns_InfoLabel());
|
|
php_info_print_table_row(2, "Server platform", Ns_InfoPlatform());
|
|
snprintf(buf, 511, "%s/%s", Ns_InfoServerName(), Ns_InfoServerVersion());
|
|
php_info_print_table_row(2, "Server version", buf);
|
|
snprintf(buf, 511, "%d day(s), %02d:%02d:%02d",
|
|
uptime / 86400,
|
|
(uptime / 3600) % 24,
|
|
(uptime / 60) % 60,
|
|
uptime % 60);
|
|
php_info_print_table_row(2, "Server uptime", buf);
|
|
PUTS("</table>");
|
|
}
|
|
|
|
PHP_FUNCTION(getallheaders);
|
|
|
|
static function_entry aolserver_functions[] = {
|
|
PHP_FE(getallheaders, NULL)
|
|
{0}
|
|
};
|
|
|
|
static zend_module_entry php_aolserver_module = {
|
|
"AOLserver",
|
|
aolserver_functions,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
php_info_aolserver,
|
|
STANDARD_MODULE_PROPERTIES
|
|
};
|
|
|
|
PHP_FUNCTION(getallheaders)
|
|
{
|
|
int i;
|
|
NSLS_FETCH();
|
|
|
|
if (array_init(return_value) == FAILURE) {
|
|
RETURN_FALSE;
|
|
}
|
|
|
|
for (i = 0; i < Ns_SetSize(NSG(conn->headers)); i++) {
|
|
char *key = Ns_SetKey(NSG(conn->headers), i);
|
|
char *value = Ns_SetValue(NSG(conn->headers), i);
|
|
|
|
add_assoc_string(return_value, key, value, 1);
|
|
}
|
|
}
|
|
|
|
static int
|
|
php_ns_startup(sapi_module_struct *sapi_module)
|
|
{
|
|
if(php_module_startup(sapi_module) == FAILURE
|
|
|| zend_register_module(&php_aolserver_module) == FAILURE) {
|
|
return FAILURE;
|
|
} else {
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
/* this structure is static (as in "it does not change") */
|
|
|
|
static sapi_module_struct sapi_module = {
|
|
"PHP Language",
|
|
|
|
php_ns_startup, /* startup */
|
|
php_module_shutdown_wrapper, /* shutdown */
|
|
|
|
php_ns_sapi_ub_write, /* unbuffered write */
|
|
|
|
php_error, /* error handler */
|
|
|
|
php_ns_sapi_header_handler, /* header handler */
|
|
php_ns_sapi_send_headers, /* send headers handler */
|
|
NULL, /* send header handler */
|
|
|
|
php_ns_sapi_read_post, /* read POST data */
|
|
php_ns_sapi_read_cookies, /* read Cookies */
|
|
|
|
STANDARD_SAPI_MODULE_PROPERTIES
|
|
};
|
|
|
|
/*
|
|
* php_ns_hash_environment() populates the php script environment
|
|
* with a number of variables. HTTP_* variables are created for
|
|
* the HTTP header data, so that a script can access these.
|
|
*/
|
|
#define ADD_STRING(name) \
|
|
MAKE_STD_ZVAL(pval); \
|
|
pval->type = IS_STRING; \
|
|
pval->value.str.len = strlen(buf); \
|
|
pval->value.str.val = estrndup(buf, pval->value.str.len); \
|
|
zend_hash_update(&EG(symbol_table), name, sizeof(name), \
|
|
&pval, sizeof(zval *), NULL)
|
|
|
|
static void
|
|
php_ns_hash_environment(NSLS_D CLS_DC ELS_DC PLS_DC SLS_DC)
|
|
{
|
|
int i;
|
|
char buf[NS_BUF_SIZE + 1];
|
|
zval *pval;
|
|
char *tmp;
|
|
|
|
for(i = 0; i < Ns_SetSize(NSG(conn->headers)); i++) {
|
|
char *key = Ns_SetKey(NSG(conn->headers), i);
|
|
char *value = Ns_SetValue(NSG(conn->headers), i);
|
|
char *p;
|
|
char c;
|
|
int buf_len;
|
|
|
|
buf_len = snprintf(buf, NS_BUF_SIZE, "HTTP_%s", key);
|
|
for(p = buf; (c = *p); p++) {
|
|
c = toupper(c);
|
|
if(c < 'A' || c > 'Z') {
|
|
c = '_';
|
|
}
|
|
*p = c;
|
|
}
|
|
|
|
MAKE_STD_ZVAL(pval);
|
|
pval->type = IS_STRING;
|
|
pval->value.str.len = strlen(value);
|
|
pval->value.str.val = estrndup(value, pval->value.str.len);
|
|
|
|
zend_hash_update(&EG(symbol_table), buf, buf_len + 1, &pval, sizeof(zval *), NULL);
|
|
}
|
|
|
|
snprintf(buf, NS_BUF_SIZE, "%s/%s", Ns_InfoServerName(), Ns_InfoServerVersion());
|
|
ADD_STRING("SERVER_SOFTWARE");
|
|
snprintf(buf, NS_BUF_SIZE, "HTTP/%1.1f", NSG(conn)->request->version);
|
|
ADD_STRING("SERVER_PROTOCOL");
|
|
|
|
strncpy(buf, NSG(conn)->request->method, NS_BUF_SIZE);
|
|
ADD_STRING("REQUEST_METHOD");
|
|
|
|
if(NSG(conn)->request->query) {
|
|
strncpy(buf, NSG(conn)->request->query, NS_BUF_SIZE);
|
|
} else {
|
|
buf[0] = '\0';
|
|
}
|
|
ADD_STRING("QUERY_STRING");
|
|
|
|
strncpy(buf, Ns_InfoBuildDate(), NS_BUF_SIZE);
|
|
ADD_STRING("SERVER_BUILDDATE");
|
|
|
|
strncpy(buf, Ns_ConnPeer(NSG(conn)), NS_BUF_SIZE);
|
|
ADD_STRING("REMOTE_ADDR");
|
|
|
|
snprintf(buf, NS_BUF_SIZE, "%d", Ns_ConnPeerPort(NSG(conn)));
|
|
ADD_STRING("REMOTE_PORT");
|
|
|
|
snprintf(buf, NS_BUF_SIZE, "%d", Ns_ConnPort(NSG(conn)));
|
|
ADD_STRING("SERVER_PORT");
|
|
|
|
tmp = Ns_ConnHost(NSG(conn));
|
|
if (tmp) {
|
|
strncpy(buf, tmp, NS_BUF_SIZE);
|
|
ADD_STRING("SERVER_NAME");
|
|
}
|
|
|
|
strncpy(buf, SG(request_info).path_translated, NS_BUF_SIZE);
|
|
ADD_STRING("PATH_TRANSLATED");
|
|
|
|
strncpy(buf, "CGI/1.1", NS_BUF_SIZE);
|
|
ADD_STRING("GATEWAY_INTERFACE");
|
|
|
|
MAKE_STD_ZVAL(pval);
|
|
pval->type = IS_LONG;
|
|
pval->value.lval = Ns_InfoBootTime();
|
|
zend_hash_update(&EG(symbol_table), "SERVER_BOOTTIME", sizeof("SERVER_BOOTTIME"), &pval, sizeof(zval *), NULL);
|
|
}
|
|
|
|
/*
|
|
* php_ns_module_main() is called by the per-request handler and
|
|
* "executes" the script
|
|
*/
|
|
|
|
static int
|
|
php_ns_module_main(NSLS_D SLS_DC)
|
|
{
|
|
zend_file_handle file_handle;
|
|
CLS_FETCH();
|
|
ELS_FETCH();
|
|
PLS_FETCH();
|
|
|
|
file_handle.type = ZEND_HANDLE_FILENAME;
|
|
file_handle.filename = SG(request_info).path_translated;
|
|
|
|
if(php_request_startup(CLS_C ELS_CC PLS_CC SLS_CC) == FAILURE) {
|
|
return NS_ERROR;
|
|
}
|
|
php_ns_hash_environment(NSLS_C CLS_CC ELS_CC PLS_CC SLS_CC);
|
|
php_execute_script(&file_handle CLS_CC ELS_CC PLS_CC);
|
|
php_request_shutdown(NULL);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
/*
|
|
* php_ns_request_ctor() initializes the per-request data structure
|
|
* and fills it with data provided by the web server
|
|
*/
|
|
|
|
static void
|
|
php_ns_request_ctor(NSLS_D SLS_DC)
|
|
{
|
|
char *server;
|
|
Ns_DString ds;
|
|
char *root;
|
|
int index;
|
|
char *tmp;
|
|
|
|
server = Ns_ConnServer(NSG(conn));
|
|
|
|
SG(request_info).query_string = NSG(conn->request->query);
|
|
|
|
Ns_DStringInit(&ds);
|
|
Ns_UrlToFile(&ds, server, NSG(conn->request->url));
|
|
|
|
/* path_translated is the absolute path to the file */
|
|
SG(request_info).path_translated = strdup(Ns_DStringValue(&ds));
|
|
Ns_DStringFree(&ds);
|
|
root = Ns_PageRoot(server);
|
|
SG(request_info).request_uri = SG(request_info).path_translated + strlen(root);
|
|
SG(request_info).request_method = NSG(conn)->request->method;
|
|
SG(request_info).content_length = Ns_ConnContentLength(NSG(conn));
|
|
index = Ns_SetIFind(NSG(conn)->headers, "content-type");
|
|
SG(request_info).content_type = index == -1 ? NULL :
|
|
Ns_SetValue(NSG(conn)->headers, index);
|
|
|
|
tmp = Ns_ConnAuthUser(NSG(conn));
|
|
if(tmp) {
|
|
tmp = estrdup(tmp);
|
|
}
|
|
SG(request_info).auth_user = tmp;
|
|
|
|
tmp = Ns_ConnAuthPasswd(NSG(conn));
|
|
if(tmp) {
|
|
tmp = estrdup(tmp);
|
|
}
|
|
SG(request_info).auth_password = tmp;
|
|
|
|
NSG(data_avail) = SG(request_info).content_length;
|
|
}
|
|
|
|
/*
|
|
* php_ns_request_dtor() destroys all data associated with
|
|
* the per-request structure
|
|
*/
|
|
|
|
static void
|
|
php_ns_request_dtor(NSLS_D SLS_DC)
|
|
{
|
|
free(SG(request_info).path_translated);
|
|
}
|
|
|
|
/*
|
|
* The php_ns_request_handler() is called per request and handles
|
|
* everything for one request.
|
|
*/
|
|
|
|
static int
|
|
php_ns_request_handler(void *context, Ns_Conn *conn)
|
|
{
|
|
int status = NS_OK;
|
|
SLS_FETCH();
|
|
NSLS_FETCH();
|
|
|
|
NSG(conn) = conn;
|
|
|
|
php_ns_request_ctor(NSLS_C SLS_CC);
|
|
|
|
status = php_ns_module_main(NSLS_C SLS_CC);
|
|
|
|
php_ns_request_dtor(NSLS_C SLS_CC);
|
|
|
|
return status;
|
|
}
|
|
|
|
/*
|
|
* php_ns_config() fetches the configuration data.
|
|
*
|
|
* It understands the "map" and "php_value" command.
|
|
*/
|
|
|
|
static void
|
|
php_ns_config(php_ns_context *ctx)
|
|
{
|
|
int i;
|
|
char *path;
|
|
Ns_Set *set;
|
|
|
|
path = Ns_ConfigPath(ctx->ns_server, ctx->ns_module, NULL);
|
|
set = Ns_ConfigGetSection(path);
|
|
|
|
for(i = 0; set && i < Ns_SetSize(set); i++) {
|
|
char *key = Ns_SetKey(set, i);
|
|
char *value = Ns_SetValue(set, i);
|
|
|
|
if(!strcasecmp(key, "map")) {
|
|
Ns_Log(Notice, "Registering PHP for \"%s\"", value);
|
|
Ns_RegisterRequest(ctx->ns_server, "GET", value, php_ns_request_handler, NULL, ctx, 0);
|
|
Ns_RegisterRequest(ctx->ns_server, "POST", value, php_ns_request_handler, NULL, ctx, 0);
|
|
Ns_RegisterRequest(ctx->ns_server, "HEAD", value, php_ns_request_handler, NULL, ctx, 0);
|
|
} else if(!strcasecmp(key, "php_value")) {
|
|
char *val;
|
|
|
|
val = strchr(value, ' ');
|
|
if(val) {
|
|
char *new_key;
|
|
|
|
new_key = estrndup(value, val - value);
|
|
|
|
do {
|
|
val++;
|
|
} while(*val == ' ');
|
|
|
|
Ns_Log(Debug, "PHP configuration option '%s=%s'", new_key, val);
|
|
php_alter_ini_entry(new_key, strlen(new_key) + 1, val,
|
|
strlen(val) + 1, PHP_INI_SYSTEM);
|
|
|
|
efree(new_key);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
/*
|
|
* php_ns_server_shutdown() performs the last steps before the
|
|
* server exists. Shutdowns basic services and frees memory
|
|
*/
|
|
|
|
static void
|
|
php_ns_server_shutdown(void *context)
|
|
{
|
|
php_ns_context *ctx = (php_ns_context *) context;
|
|
|
|
ctx->sapi_module->shutdown(ctx->sapi_module);
|
|
sapi_shutdown();
|
|
tsrm_shutdown();
|
|
|
|
free(ctx->ns_module);
|
|
free(ctx->ns_server);
|
|
free(ctx);
|
|
}
|
|
|
|
/*
|
|
* Ns_ModuleInit() is called by AOLserver once at startup
|
|
*
|
|
* This functions allocates basic structures and initializes
|
|
* basic services.
|
|
*/
|
|
|
|
int Ns_ModuleInit(char *server, char *module)
|
|
{
|
|
php_ns_context *ctx;
|
|
|
|
tsrm_startup(1, 1, 0);
|
|
sapi_startup(&sapi_module);
|
|
sapi_module.startup(&sapi_module);
|
|
|
|
/* TSRM is used to allocate a per-thread structure */
|
|
ns_globals_id = ts_allocate_id(sizeof(ns_globals_struct), NULL, NULL);
|
|
|
|
/* the context contains data valid for all threads */
|
|
ctx = malloc(sizeof *ctx);
|
|
ctx->sapi_module = &sapi_module;
|
|
ctx->ns_server = strdup(server);
|
|
ctx->ns_module = strdup(module);
|
|
|
|
/* read the configuration */
|
|
php_ns_config(ctx);
|
|
|
|
/* register shutdown handler */
|
|
Ns_RegisterServerShutdown(server, php_ns_server_shutdown, ctx);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
#endif
|