php-src/main/main.c

1211 lines
34 KiB
C
Raw Normal View History

1999-04-07 21:05:13 +00:00
/*
+----------------------------------------------------------------------+
1999-07-16 13:13:16 +00:00
| PHP version 4.0 |
1999-04-07 21:05:13 +00:00
+----------------------------------------------------------------------+
| Copyright (c) 1997, 1998, 1999, 2000 The PHP Group |
1999-04-07 21:05:13 +00:00
+----------------------------------------------------------------------+
| This source file is subject to version 2.02 of the PHP license, |
1999-07-16 13:13:16 +00:00
| 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_02.txt. |
1999-07-16 13:13:16 +00:00
| 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. |
1999-04-07 21:05:13 +00:00
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
1999-07-16 13:13:16 +00:00
| Zeev Suraski <zeev@zend.com> |
1999-04-07 21:05:13 +00:00
+----------------------------------------------------------------------+
1999-07-16 13:13:16 +00:00
*/
1999-04-07 21:05:13 +00:00
/* $Id$ */
#include <stdio.h>
#include "php.h"
2000-02-11 15:59:30 +00:00
#ifdef PHP_WIN32
1999-04-07 21:05:13 +00:00
#include "win32/time.h"
#include "win32/signal.h"
#include <process.h>
#else
#include "build-defs.h"
#endif
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#if HAVE_SIGNAL_H
#include <signal.h>
#endif
#if HAVE_SETLOCALE
#include <locale.h>
#endif
#include "zend.h"
#include "php_ini.h"
#include "php_globals.h"
1999-04-07 21:05:13 +00:00
#include "main.h"
#include "fopen-wrappers.h"
#include "ext/standard/php_standard.h"
#include "php_variables.h"
2000-02-11 15:59:30 +00:00
#ifdef PHP_WIN32
1999-04-07 21:05:13 +00:00
#include <io.h>
#include <fcntl.h>
#include "win32/php_registry.h"
1999-04-07 21:05:13 +00:00
#endif
#include "php_syslog.h"
1999-04-07 21:05:13 +00:00
2000-05-19 10:48:05 +00:00
#if PHP_SIGCHILD
#include <sys/types.h>
#include <sys/wait.h>
#endif
1999-04-07 21:05:13 +00:00
#include "zend_compile.h"
#include "zend_execute.h"
#include "zend_highlight.h"
#include "zend_indent.h"
#include "php_content_types.h"
#include "php_ticks.h"
#include "SAPI.h"
#ifndef ZTS
php_core_globals core_globals;
1999-04-21 04:02:11 +00:00
#else
PHPAPI int core_globals_id;
#endif
#define NO_GLOBAL_LOCK
1999-12-19 21:02:54 +00:00
/* temporary workaround for thread-safety issues in Zend */
#if defined(ZTS) && !defined(NO_GLOBAL_LOCK)
1999-10-08 16:29:33 +00:00
static MUTEX_T global_lock;
#define global_lock() tsrm_mutex_lock(global_lock)
#define global_unlock() tsrm_mutex_unlock(global_lock);
#define global_lock_init() global_lock = tsrm_mutex_alloc()
#define global_lock_destroy() tsrm_mutex_free(global_lock)
#else
#define global_lock()
#define global_unlock()
#define global_lock_init()
#define global_lock_destroy()
#endif
static void php_build_argv(char *s, zval *track_vars_array ELS_DC PLS_DC);
static void php_timeout(int dummy);
static void php_set_timeout(long seconds);
1999-04-10 16:25:23 +00:00
1999-04-07 21:05:13 +00:00
void *gLock; /*mutex variable */
/* True globals (no need for thread safety) */
HashTable configuration_hash;
1999-12-17 19:51:39 +00:00
PHPAPI char *php_ini_path = NULL;
1999-04-07 21:05:13 +00:00
1999-04-10 16:25:23 +00:00
#define SAFE_FILENAME(f) ((f)?(f):"-")
1999-04-10 16:25:23 +00:00
static PHP_INI_MH(OnSetPrecision)
{
ELS_FETCH();
EG(precision) = atoi(new_value);
return SUCCESS;
}
#if MEMORY_LIMIT
1999-04-10 16:25:23 +00:00
static PHP_INI_MH(OnChangeMemoryLimit)
{
int new_limit;
if (new_value) {
new_limit = atoi(new_value);
} else {
new_limit = 1<<30; /* effectively, no limit */
1999-04-10 16:25:23 +00:00
}
return zend_set_memory_limit(new_limit);
}
#endif
1999-04-10 16:25:23 +00:00
static PHP_INI_MH(OnUpdateErrorReporting)
{
PLS_FETCH();
1999-04-10 16:25:23 +00:00
ELS_FETCH();
if (!new_value) {
PG(error_reporting) = E_ALL & ~E_NOTICE;
1999-04-10 16:25:23 +00:00
} else {
PG(error_reporting) = atoi(new_value);
1999-04-10 16:25:23 +00:00
}
EG(error_reporting) = PG(error_reporting);
1999-04-10 16:25:23 +00:00
return SUCCESS;
}
static PHP_INI_MH(OnDisableFunctions)
{
char *func;
char *new_value_dup = zend_strndup(new_value, new_value_length); /* This is an intentional leak,
* it's not a big deal as it's process-wide
*/
func = strtok(new_value_dup, ", ");
while (func) {
zend_disable_function(func, strlen(func));
func = strtok(NULL, ", ");
}
return SUCCESS;
}
/* Need to convert to strings and make use of:
* DEFAULT_SHORT_OPEN_TAG
* PHP_SAFE_MODE
1999-04-10 13:32:47 +00:00
*
* Need to be read from the environment (?):
* PHP_AUTO_PREPEND_FILE
* PHP_AUTO_APPEND_FILE
1999-04-10 16:25:23 +00:00
* PHP_DOCUMENT_ROOT
* PHP_USER_DIR
* PHP_INCLUDE_PATH
*/
1999-04-10 13:32:47 +00:00
#ifndef SAFE_MODE_EXEC_DIR
# define SAFE_MODE_EXEC_DIR "/"
#endif
1999-04-10 13:32:47 +00:00
#ifdef PHP_PROG_SENDMAIL
# define DEFAULT_SENDMAIL_PATH PHP_PROG_SENDMAIL " -t"
#else
# define DEFAULT_SENDMAIL_PATH NULL
#endif
PHP_INI_BEGIN()
PHP_INI_ENTRY_EX("define_syslog_variables", "0", PHP_INI_ALL, NULL, php_ini_boolean_displayer_cb)
PHP_INI_ENTRY_EX("highlight.bg", HL_BG_COLOR, PHP_INI_ALL, NULL, php_ini_color_displayer_cb)
PHP_INI_ENTRY_EX("highlight.comment", HL_COMMENT_COLOR, PHP_INI_ALL, NULL, php_ini_color_displayer_cb)
PHP_INI_ENTRY_EX("highlight.default", HL_DEFAULT_COLOR, PHP_INI_ALL, NULL, php_ini_color_displayer_cb)
PHP_INI_ENTRY_EX("highlight.html", HL_HTML_COLOR, PHP_INI_ALL, NULL, php_ini_color_displayer_cb)
PHP_INI_ENTRY_EX("highlight.keyword", HL_KEYWORD_COLOR, PHP_INI_ALL, NULL, php_ini_color_displayer_cb)
PHP_INI_ENTRY_EX("highlight.string", HL_STRING_COLOR, PHP_INI_ALL, NULL, php_ini_color_displayer_cb)
STD_PHP_INI_BOOLEAN("allow_call_time_pass_reference","1",PHP_INI_ALL, OnUpdateBool, allow_call_time_pass_reference, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("asp_tags", "0", PHP_INI_ALL, OnUpdateBool, asp_tags, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("display_errors", "1", PHP_INI_ALL, OnUpdateBool, display_errors, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("enable_dl", "1", PHP_INI_SYSTEM, OnUpdateBool, enable_dl, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("error_append_string", NULL, PHP_INI_ALL, OnUpdateString, error_append_string, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("error_prepend_string", NULL, PHP_INI_ALL, OnUpdateString, error_prepend_string, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("expose_php", "1", PHP_INI_SYSTEM, OnUpdateBool, expose_php, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("ignore_user_abort", "0", PHP_INI_ALL, OnUpdateBool, ignore_user_abort, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("implicit_flush", "0", PHP_INI_PERDIR|PHP_INI_SYSTEM,OnUpdateBool, implicit_flush, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("log_errors", "0", PHP_INI_ALL, OnUpdateBool, log_errors, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("magic_quotes_gpc", "1", PHP_INI_ALL, OnUpdateBool, magic_quotes_gpc, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("magic_quotes_runtime", "0", PHP_INI_ALL, OnUpdateBool, magic_quotes_runtime, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("magic_quotes_sybase", "0", PHP_INI_ALL, OnUpdateBool, magic_quotes_sybase, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("output_buffering", "0", PHP_INI_PERDIR|PHP_INI_SYSTEM,OnUpdateBool, output_buffering, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("register_argc_argv", "1", PHP_INI_ALL, OnUpdateBool, register_argc_argv, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("register_globals", "1", PHP_INI_ALL, OnUpdateBool, register_globals, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("safe_mode", "0", PHP_INI_SYSTEM, OnUpdateBool, safe_mode, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("short_open_tag", "1", PHP_INI_ALL, OnUpdateBool, short_tags, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("sql.safe_mode", "0", PHP_INI_SYSTEM, OnUpdateBool, sql_safe_mode, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("track_errors", "0", PHP_INI_ALL, OnUpdateBool, track_errors, php_core_globals, core_globals)
#if PHP_TRACK_VARS /* "cc -32" on IRIX 6.4 does not like (PHP_TRACK_VARS?"1":"0") - thies 991004 */
STD_PHP_INI_BOOLEAN("track_vars", "1", PHP_INI_ALL, OnUpdateBool, track_vars, php_core_globals, core_globals)
#else
STD_PHP_INI_BOOLEAN("track_vars", "0", PHP_INI_ALL, OnUpdateBool, track_vars, php_core_globals, core_globals)
#endif
STD_PHP_INI_BOOLEAN("y2k_compliance", "0", PHP_INI_ALL, OnUpdateBool, y2k_compliance, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("arg_separator", "&", PHP_INI_ALL, OnUpdateStringUnempty, arg_separator, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("auto_append_file", NULL, PHP_INI_ALL, OnUpdateString, auto_append_file, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("auto_prepend_file", NULL, PHP_INI_ALL, OnUpdateString, auto_prepend_file, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("doc_root", NULL, PHP_INI_SYSTEM, OnUpdateStringUnempty, doc_root, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("default_charset", SAPI_DEFAULT_CHARSET, PHP_INI_ALL, OnUpdateString, default_charset, sapi_globals_struct,sapi_globals)
STD_PHP_INI_ENTRY("default_mimetype",SAPI_DEFAULT_MIMETYPE, PHP_INI_ALL, OnUpdateString, default_mimetype, sapi_globals_struct,sapi_globals)
STD_PHP_INI_ENTRY("error_log", NULL, PHP_INI_ALL, OnUpdateString, error_log, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("extension_dir", PHP_EXTENSION_DIR, PHP_INI_SYSTEM, OnUpdateStringUnempty, extension_dir, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("gpc_order", "GPC", PHP_INI_ALL, OnUpdateStringUnempty, gpc_order, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("include_path", NULL, PHP_INI_ALL, OnUpdateStringUnempty, include_path, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("max_execution_time", "30", PHP_INI_ALL, OnUpdateInt, max_execution_time, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("open_basedir", NULL, PHP_INI_SYSTEM, OnUpdateStringUnempty, open_basedir, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("safe_mode_exec_dir", "1", PHP_INI_SYSTEM, OnUpdateString, safe_mode_exec_dir, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("upload_max_filesize", "2097152", PHP_INI_ALL, OnUpdateInt, upload_max_filesize, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("upload_tmp_dir", NULL, PHP_INI_SYSTEM, OnUpdateStringUnempty, upload_tmp_dir, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("user_dir", NULL, PHP_INI_SYSTEM, OnUpdateStringUnempty, user_dir, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("variables_order", NULL, PHP_INI_ALL, OnUpdateStringUnempty, variables_order, php_core_globals, core_globals)
PHP_INI_ENTRY("SMTP", "localhost",PHP_INI_ALL, NULL)
PHP_INI_ENTRY("browscap", NULL, PHP_INI_SYSTEM, NULL)
PHP_INI_ENTRY("error_reporting", NULL, PHP_INI_ALL, OnUpdateErrorReporting)
1999-11-25 15:24:49 +00:00
#if MEMORY_LIMIT
PHP_INI_ENTRY("memory_limit", "8388608", PHP_INI_ALL, OnChangeMemoryLimit)
1999-11-25 15:24:49 +00:00
#endif
PHP_INI_ENTRY("precision", "14", PHP_INI_ALL, OnSetPrecision)
PHP_INI_ENTRY("sendmail_from", NULL, PHP_INI_ALL, NULL)
PHP_INI_ENTRY("sendmail_path", DEFAULT_SENDMAIL_PATH, PHP_INI_SYSTEM, NULL)
PHP_INI_ENTRY("disable_functions", "", PHP_INI_SYSTEM, OnDisableFunctions)
PHP_INI_END()
1999-04-23 22:45:01 +00:00
/* True global (no need for thread safety */
static int module_initialized = 0;
1999-12-17 19:16:50 +00:00
void php_log_err(char *log_message)
1999-04-07 21:05:13 +00:00
{
FILE *log_file;
char error_time_str[128];
struct tm tmbuf;
time_t error_time;
1999-04-10 21:39:23 +00:00
PLS_FETCH();
1999-04-07 21:05:13 +00:00
/* Try to use the specified logging location. */
1999-04-10 16:25:23 +00:00
if (PG(error_log) != NULL) {
#ifdef HAVE_SYSLOG_H
1999-07-30 13:17:29 +00:00
if (!strcmp(PG(error_log), "syslog")) {
php_syslog(LOG_NOTICE, log_message);
1999-04-07 21:05:13 +00:00
return;
}
#endif
log_file = V_FOPEN(PG(error_log), "a");
2000-02-10 15:55:10 +00:00
if (log_file != NULL) {
time(&error_time);
strftime(error_time_str, 128, "%d-%b-%Y %H:%M:%S", php_localtime_r(&error_time, &tmbuf));
2000-02-10 15:55:10 +00:00
fprintf(log_file, "[%s] ", error_time_str);
fprintf(log_file, log_message);
fprintf(log_file, "\n");
fclose(log_file);
return;
}
1999-04-07 21:05:13 +00:00
}
2000-02-10 15:55:10 +00:00
/* Otherwise fall back to the default logging location, if we have one */
if (sapi_module.log_message) {
sapi_module.log_message(log_message);
1999-04-07 21:05:13 +00:00
}
}
/* is 4K big enough? */
#define PRINTF_BUFFER_SIZE 1024*4
/* wrapper for modules to use PHPWRITE */
1999-12-17 19:16:50 +00:00
PHPAPI int php_write(void *buf, int size)
1999-04-07 21:05:13 +00:00
{
return PHPWRITE(buf, size);
}
2000-02-19 13:11:02 +00:00
PHPAPI int php_printf(const char *format, ...)
1999-04-07 21:05:13 +00:00
{
va_list args;
int ret;
char buffer[PRINTF_BUFFER_SIZE];
int size;
va_start(args, format);
size = vsnprintf(buffer, sizeof(buffer), format, args);
1999-04-07 21:05:13 +00:00
ret = PHPWRITE(buffer, size);
va_end(args);
return ret;
}
/* extended error handling function */
static void php_error_cb(int type, const char *error_filename, const uint error_lineno, const char *format, va_list orig_args)
1999-04-07 21:05:13 +00:00
{
char buffer[1024];
int size = 0;
va_list args;
CLS_FETCH();
1999-04-07 21:05:13 +00:00
ELS_FETCH();
1999-04-21 04:02:11 +00:00
PLS_FETCH();
1999-04-07 21:05:13 +00:00
if (EG(error_reporting) & type || (type & E_CORE)) {
char *error_type_str;
switch (type) {
case E_ERROR:
case E_CORE_ERROR:
case E_COMPILE_ERROR:
2000-04-19 15:10:14 +00:00
case E_USER_ERROR:
1999-04-07 21:05:13 +00:00
error_type_str = "Fatal error";
break;
case E_WARNING:
case E_CORE_WARNING:
case E_COMPILE_WARNING:
2000-04-19 15:10:14 +00:00
case E_USER_WARNING:
1999-04-07 21:05:13 +00:00
error_type_str = "Warning";
break;
case E_PARSE:
error_type_str = "Parse error";
break;
case E_NOTICE:
error_type_str = "Warning";
break;
2000-04-19 15:10:14 +00:00
case E_USER_NOTICE:
error_type_str = "Notice";
break;
1999-04-07 21:05:13 +00:00
default:
error_type_str = "Unknown error";
break;
}
/* get include file name */
1999-11-23 03:10:46 +00:00
if (PG(log_errors) || PG(display_errors) || (!module_initialized)) {
args = orig_args;
1999-04-07 21:05:13 +00:00
size = vsnprintf(buffer, sizeof(buffer) - 1, format, args);
va_end(args);
buffer[sizeof(buffer) - 1] = 0;
1999-11-23 03:10:46 +00:00
if (PG(log_errors) || (!module_initialized)) {
1999-04-07 21:05:13 +00:00
char log_buffer[1024];
1999-10-19 19:11:02 +00:00
snprintf(log_buffer, 1024, "PHP %s: %s in %s on line %d", error_type_str, buffer, error_filename, error_lineno);
1999-12-17 19:16:50 +00:00
php_log_err(log_buffer);
1999-04-07 21:05:13 +00:00
}
1999-04-10 13:32:47 +00:00
if (PG(display_errors)) {
1999-04-10 16:25:23 +00:00
char *prepend_string = INI_STR("error_prepend_string");
char *append_string = INI_STR("error_append_string");
if (prepend_string) {
PUTS(prepend_string);
1999-04-07 21:05:13 +00:00
}
1999-10-19 19:11:02 +00:00
php_printf("<br>\n<b>%s</b>: %s in <b>%s</b> on line <b>%d</b><br>\n", error_type_str, buffer, error_filename, error_lineno);
1999-04-10 16:25:23 +00:00
if (append_string) {
PUTS(append_string);
1999-04-07 21:05:13 +00:00
}
}
#if ZEND_DEBUG
{
zend_bool trigger_break;
switch (type) {
case E_ERROR:
case E_CORE_ERROR:
case E_COMPILE_ERROR:
case E_USER_ERROR:
trigger_break=1;
break;
default:
trigger_break=0;
break;
}
zend_output_debug_string(trigger_break, "%s(%d) : %s - %s", error_filename, error_lineno, error_type_str, buffer);
}
#endif
1999-04-07 21:05:13 +00:00
}
}
switch (type) {
case E_ERROR:
case E_CORE_ERROR:
/*case E_PARSE: the parser would return 1 (failure), we can bail out nicely */
case E_COMPILE_ERROR:
2000-04-19 15:10:14 +00:00
case E_USER_ERROR:
if (module_initialized) {
zend_bailout();
return;
}
break;
}
1999-04-10 13:32:47 +00:00
if (PG(track_errors)) {
1999-07-21 15:10:04 +00:00
pval *tmp;
1999-04-07 21:05:13 +00:00
args = orig_args;
1999-04-07 21:05:13 +00:00
size = vsnprintf(buffer, sizeof(buffer) - 1, format, args);
va_end(args);
1999-04-07 21:05:13 +00:00
buffer[sizeof(buffer) - 1] = 0;
1999-12-26 21:21:33 +00:00
ALLOC_ZVAL(tmp);
1999-07-21 15:10:04 +00:00
INIT_PZVAL(tmp);
tmp->value.str.val = (char *) estrndup(buffer, size);
tmp->value.str.len = size;
tmp->type = IS_STRING;
1999-04-07 21:05:13 +00:00
zend_hash_update(EG(active_symbol_table), "php_errormsg", sizeof("php_errormsg"), (void **) & tmp, sizeof(pval *), NULL);
1999-04-07 21:05:13 +00:00
}
}
1999-08-31 15:39:13 +00:00
static long php_timeout_seconds;
1999-04-07 21:05:13 +00:00
#ifdef HAVE_SETITIMER
static void php_timeout(int dummy)
1999-04-07 21:05:13 +00:00
{
1999-04-10 21:34:53 +00:00
PLS_FETCH();
1999-04-07 21:05:13 +00:00
PG(connection_status) |= PHP_CONNECTION_TIMEOUT;
1999-08-31 15:39:13 +00:00
php_error(E_ERROR, "Maximum execution time of %d second%s exceeded",
php_timeout_seconds, php_timeout_seconds == 1 ? "" : "s");
1999-04-07 21:05:13 +00:00
}
#endif
/* This one doesn't exists on QNX */
#ifndef SIGPROF
#define SIGPROF 27
#endif
static void php_set_timeout(long seconds)
1999-04-07 21:05:13 +00:00
{
2000-02-11 15:59:30 +00:00
#ifdef PHP_WIN32
1999-04-07 21:05:13 +00:00
#else
# ifdef HAVE_SETITIMER
1999-04-07 21:05:13 +00:00
struct itimerval t_r; /* timeout requested */
t_r.it_value.tv_sec = seconds;
t_r.it_value.tv_usec = t_r.it_interval.tv_sec = t_r.it_interval.tv_usec = 0;
1999-08-31 15:39:13 +00:00
php_timeout_seconds = seconds;
1999-04-07 21:05:13 +00:00
setitimer(ITIMER_PROF, &t_r, NULL);
signal(SIGPROF, php_timeout);
# endif
1999-04-07 21:05:13 +00:00
#endif
}
1999-12-05 16:25:32 +00:00
static void php_unset_timeout(void)
1999-04-07 21:05:13 +00:00
{
2000-02-11 15:59:30 +00:00
#ifdef PHP_WIN32
1999-04-07 21:05:13 +00:00
#else
# ifdef HAVE_SETITIMER
1999-04-07 21:05:13 +00:00
struct itimerval no_timeout;
no_timeout.it_value.tv_sec = no_timeout.it_value.tv_usec = no_timeout.it_interval.tv_sec = no_timeout.it_interval.tv_usec = 0;
setitimer(ITIMER_PROF, &no_timeout, NULL);
# endif
1999-04-07 21:05:13 +00:00
#endif
}
2000-05-17 19:45:46 +00:00
/* {{{ proto void set_time_limit(int seconds)
Sets the maximum time a script can run */
PHP_FUNCTION(set_time_limit)
1999-04-07 21:05:13 +00:00
{
pval *new_timeout;
1999-04-21 04:02:11 +00:00
PLS_FETCH();
1999-04-07 21:05:13 +00:00
if (PG(safe_mode)) {
php_error(E_WARNING, "Cannot set time limit in safe mode");
1999-04-07 21:05:13 +00:00
RETURN_FALSE;
}
if (ARG_COUNT(ht) != 1 || getParameters(ht, 1, &new_timeout) == FAILURE) {
WRONG_PARAM_COUNT;
}
convert_to_long(new_timeout);
/* FIXME ** This is BAD...in a threaded situation, any user
can set the timeout for php on a server wide basis.
INI variables should not be reset via a user script
Fix what? At least on Unix, timers like these are
per-thread timers. Well, with a little work they will
be. If we use a bound thread and proper masking it
should work fine. Is this FIXME a WIN32 problem? Is
there no way to do per-thread timers on WIN32?
*/
php_unset_timeout();
php_set_timeout(new_timeout->value.lval);
1999-04-07 21:05:13 +00:00
}
2000-05-17 19:45:46 +00:00
/* }}} */
1999-04-07 21:05:13 +00:00
static FILE *php_fopen_wrapper_for_zend(const char *filename, char **opened_path)
1999-04-07 21:05:13 +00:00
{
int issock=0, socketd=0;
int old_chunk_size;
FILE *retval;
1999-12-17 19:51:39 +00:00
old_chunk_size = php_sock_set_def_chunk_size(1);
1999-12-17 19:16:50 +00:00
retval=php_fopen_wrapper((char *) filename, "r", USE_PATH|IGNORE_URL_WIN, &issock, &socketd, opened_path);
1999-12-17 19:51:39 +00:00
php_sock_set_def_chunk_size(old_chunk_size);
1999-04-07 21:05:13 +00:00
if (issock) {
retval = fdopen(socketd, "r");
}
return retval;
}
1999-06-19 19:23:24 +00:00
static int php_get_ini_entry_for_zend(char *name, uint name_length, zval *contents)
{
1999-06-19 22:56:34 +00:00
zval *retval = cfg_get_entry(name, name_length);
1999-06-19 19:23:24 +00:00
1999-06-19 22:56:34 +00:00
if (retval) {
*contents = *retval;
1999-06-19 19:23:24 +00:00
return SUCCESS;
} else {
return FAILURE;
}
}
1999-04-07 21:05:13 +00:00
static void php_message_handler_for_zend(long message, void *data)
{
switch (message) {
1999-04-21 04:02:11 +00:00
case ZMSG_ENABLE_TRACK_VARS: {
PLS_FETCH();
1999-04-21 04:02:11 +00:00
PG(track_vars) = 1;
}
1999-04-07 21:05:13 +00:00
break;
case ZMSG_FAILED_INCLUDE_FOPEN: {
PLS_FETCH();
1999-12-17 19:16:50 +00:00
php_error(E_WARNING, "Failed opening '%s' for inclusion (include_path='%s')", php_strip_url_passwd((char *) data), STR_PRINT(PG(include_path)));
}
1999-04-07 21:05:13 +00:00
break;
case ZMSG_FAILED_REQUIRE_FOPEN: {
PLS_FETCH();
1999-12-17 19:16:50 +00:00
php_error(E_COMPILE_ERROR, "Failed opening required '%s' (include_path='%s')", php_strip_url_passwd((char *) data), STR_PRINT(PG(include_path)));
}
1999-04-07 21:05:13 +00:00
break;
case ZMSG_FAILED_HIGHLIGHT_FOPEN:
1999-12-17 19:16:50 +00:00
php_error(E_WARNING, "Failed opening '%s' for highlighting", php_strip_url_passwd((char *) data));
1999-04-07 21:05:13 +00:00
break;
case ZMSG_MEMORY_LEAK_DETECTED:
case ZMSG_MEMORY_LEAK_REPEATED: {
1999-04-07 21:05:13 +00:00
ELS_FETCH();
if (EG(error_reporting)&E_WARNING) {
#if ZEND_DEBUG
char memory_leak_buf[512];
SLS_FETCH();
1999-04-07 21:05:13 +00:00
if (message==ZMSG_MEMORY_LEAK_DETECTED) {
1999-12-26 20:45:42 +00:00
zend_mem_header *t = (zend_mem_header *) data;
void *ptr = (void *)((char *)t+sizeof(zend_mem_header)+PLATFORM_PADDING);
snprintf(memory_leak_buf, 512, "%s(%d) : Freeing 0x%.8lX (%d bytes), script=%s\n", t->filename, t->lineno, (unsigned long)ptr, t->size, SAFE_FILENAME(SG(request_info).path_translated));
1999-08-28 11:17:28 +00:00
if (t->orig_filename) {
char relay_buf[512];
snprintf(relay_buf, 512, "%s(%d) : Actual location (location was relayed)\n", t->orig_filename, t->orig_lineno);
strcat(memory_leak_buf, relay_buf);
}
} else {
1999-05-30 12:00:06 +00:00
unsigned long leak_count = (unsigned long) data;
1999-05-30 12:00:06 +00:00
snprintf(memory_leak_buf, 512, "Last leak repeated %ld time%s\n", leak_count, (leak_count>1?"s":""));
}
2000-02-11 15:59:30 +00:00
# if defined(PHP_WIN32)
OutputDebugString(memory_leak_buf);
1999-04-07 21:05:13 +00:00
# else
fprintf(stderr, memory_leak_buf);
1999-04-07 21:05:13 +00:00
# endif
#endif
}
}
break;
1999-05-31 19:58:20 +00:00
case ZMSG_LOG_SCRIPT_NAME: {
struct tm *ta, tmbuf;
1999-08-27 04:31:53 +00:00
time_t curtime;
char *datetime_str, asctimebuf[52];
1999-05-31 19:58:20 +00:00
SLS_FETCH();
1999-08-27 04:31:53 +00:00
time(&curtime);
ta = php_localtime_r(&curtime, &tmbuf);
datetime_str = php_asctime_r(ta, asctimebuf);
datetime_str[strlen(datetime_str)-1]=0; /* get rid of the trailing newline */
1999-08-27 04:51:49 +00:00
fprintf(stderr, "[%s] Script: '%s'\n", datetime_str, SAFE_FILENAME(SG(request_info).path_translated));
1999-05-31 19:58:20 +00:00
}
1999-05-31 17:40:15 +00:00
break;
1999-04-07 21:05:13 +00:00
}
}
#if PHP_SIGCHILD
2000-05-19 10:48:05 +00:00
static void sigchld_handler(int apar)
{
2000-05-19 10:40:34 +00:00
while (waitpid(-1, NULL, WNOHANG) > 0)
;
signal(SIGCHLD,sigchld_handler);
}
#endif
int php_request_startup(CLS_D ELS_DC PLS_DC SLS_DC)
1999-04-07 21:05:13 +00:00
{
#if PHP_SIGCHILD
signal(SIGCHLD,sigchld_handler);
#endif
global_lock();
php_output_startup();
1999-04-21 04:02:11 +00:00
1999-04-07 21:05:13 +00:00
/* initialize global variables */
PG(modules_activated) = 0;
PG(header_is_being_sent) = 0;
PG(connection_status) = PHP_CONNECTION_NORMAL;
1999-06-05 19:00:56 +00:00
zend_activate(CLS_C ELS_CC);
sapi_activate(SLS_C);
#ifdef VIRTUAL_DIR
virtual_cwd_activate(SG(request_info).path_translated);
#endif
1999-04-07 21:05:13 +00:00
php_set_timeout(PG(max_execution_time));
if (PG(expose_php)) {
sapi_add_header(SAPI_PHP_VERSION_HEADER, sizeof(SAPI_PHP_VERSION_HEADER)-1, 1);
}
if (PG(output_buffering)) {
php_start_ob_buffering();
} else if (PG(implicit_flush)) {
php_start_implicit_flush();
}
1999-04-07 21:05:13 +00:00
return SUCCESS;
}
void php_request_shutdown_for_exec(void *dummy)
1999-04-07 21:05:13 +00:00
{
/* used to close fd's in the 3..255 range here, but it's problematic
*/
shutdown_memory_manager(1, 1);
}
void php_request_shutdown(void *dummy)
1999-04-07 21:05:13 +00:00
{
CLS_FETCH();
ELS_FETCH();
SLS_FETCH();
PLS_FETCH();
1999-04-07 21:05:13 +00:00
if (setjmp(EG(bailout))!=0) {
return;
}
1999-05-09 13:55:15 +00:00
sapi_send_headers();
php_end_ob_buffering(SG(request_info).headers_only?0:1);
1999-04-07 21:05:13 +00:00
2000-02-13 00:26:54 +00:00
php_call_shutdown_functions();
1999-04-07 21:05:13 +00:00
php_ini_rshutdown();
EG(error_reporting) = PG(error_reporting);
1999-04-07 21:05:13 +00:00
if (PG(modules_activated)) {
zend_deactivate_modules();
}
1999-06-05 19:00:56 +00:00
zend_deactivate(CLS_C ELS_CC);
1999-05-05 21:29:26 +00:00
sapi_deactivate(SLS_C);
shutdown_memory_manager(CG(unclean_shutdown), 0);
php_unset_timeout();
1999-04-07 21:05:13 +00:00
global_unlock();
1999-04-07 21:05:13 +00:00
}
1999-12-17 19:51:39 +00:00
static int php_config_ini_startup(void)
1999-04-07 21:05:13 +00:00
{
1999-12-17 19:16:50 +00:00
if (php_init_config() == FAILURE) {
php_printf("PHP: Unable to parse configuration file.\n");
1999-04-07 21:05:13 +00:00
return FAILURE;
}
return SUCCESS;
}
1999-12-17 19:51:39 +00:00
static void php_config_ini_shutdown(void)
1999-04-07 21:05:13 +00:00
{
1999-12-17 19:16:50 +00:00
php_shutdown_config();
1999-04-07 21:05:13 +00:00
}
1999-04-21 04:02:11 +00:00
static int php_body_write_wrapper(const char *str, uint str_length)
{
return php_body_write(str, str_length);
}
#ifdef ZTS
static void php_new_thread_end_handler(THREAD_T thread_id)
{
php_ini_refresh_caches(PHP_INI_STAGE_STARTUP);
}
#endif
1999-08-25 16:24:14 +00:00
#ifdef ZTS
static void core_globals_ctor(php_core_globals *core_globals)
{
1999-11-23 03:10:46 +00:00
memset(core_globals,0,sizeof(*core_globals));
1999-08-25 16:24:14 +00:00
}
#endif
int php_startup_extensions(zend_module_entry **ptr, int count)
{
zend_module_entry **end = ptr+count;
while (ptr < end) {
if (*ptr) {
if (zend_startup_module(*ptr)==FAILURE) {
return FAILURE;
}
}
ptr++;
}
return SUCCESS;
}
int php_global_startup_extensions(zend_module_entry **ptr, int count)
{
zend_module_entry **end = ptr+count;
while (ptr < end) {
if (*ptr) {
if ((*ptr)->global_startup_func &&
(*ptr)->global_startup_func()==FAILURE) {
return FAILURE;
}
}
ptr++;
}
return SUCCESS;
}
int php_global_shutdown_extensions(zend_module_entry **ptr, int count)
{
zend_module_entry **end = ptr+count;
while (ptr < end) {
if (*ptr) {
if ((*ptr)->global_shutdown_func &&
(*ptr)->global_shutdown_func()==FAILURE) {
return FAILURE;
}
}
ptr++;
}
return SUCCESS;
}
int php_module_startup(sapi_module_struct *sf)
1999-04-07 21:05:13 +00:00
{
zend_utility_functions zuf;
zend_utility_values zuv;
int module_number=0; /* for REGISTER_INI_ENTRIES() */
char *php_os;
1999-04-21 04:02:11 +00:00
#ifdef ZTS
zend_executor_globals *executor_globals;
1999-04-21 04:02:11 +00:00
php_core_globals *core_globals;
sapi_globals_struct *sapi_globals = ts_resource(sapi_globals_id);
1999-04-21 04:02:11 +00:00
#endif
2000-02-11 15:59:30 +00:00
#ifdef PHP_WIN32
WORD wVersionRequested = MAKEWORD(2, 0);
1999-04-07 21:05:13 +00:00
WSADATA wsaData;
1999-04-23 22:45:01 +00:00
#endif
2000-02-11 15:59:30 +00:00
#ifdef PHP_WIN32
1999-12-18 17:44:56 +00:00
{
DWORD dwVersion = GetVersion();
/* Get build numbers for Windows NT or Win95 */
if (dwVersion < 0x80000000){
php_os="WINNT";
} else {
php_os="WIN32";
}
}
#else
php_os=PHP_OS;
#endif
1999-04-23 22:45:01 +00:00
global_lock_init();
sapi_initialize_empty_request(SLS_C);
sapi_activate(SLS_C);
1999-04-23 22:45:01 +00:00
if (module_initialized) {
1999-04-07 21:05:13 +00:00
return SUCCESS;
}
sapi_module = *sf;
php_output_startup();
1999-04-07 21:05:13 +00:00
zuf.error_function = php_error_cb;
zuf.printf_function = php_printf;
zuf.write_function = php_body_write_wrapper;
1999-04-07 21:05:13 +00:00
zuf.fopen_function = php_fopen_wrapper_for_zend;
zuf.message_handler = php_message_handler_for_zend;
2000-02-10 18:44:33 +00:00
zuf.block_interruptions = sapi_module.block_interruptions;
zuf.unblock_interruptions = sapi_module.unblock_interruptions;
1999-06-19 19:23:24 +00:00
zuf.get_ini_entry = php_get_ini_entry_for_zend;
zuf.ticks_function = php_run_ticks;
2000-03-21 19:04:34 +00:00
zend_startup(&zuf, NULL, 1);
1999-04-07 21:05:13 +00:00
1999-04-21 04:02:11 +00:00
#ifdef ZTS
tsrm_set_new_thread_end_handler(php_new_thread_end_handler);
executor_globals = ts_resource(executor_globals_id);
1999-12-05 16:25:32 +00:00
core_globals_id = ts_allocate_id(sizeof(php_core_globals), (ts_allocate_ctor) core_globals_ctor, NULL);
1999-04-21 04:02:11 +00:00
core_globals = ts_resource(core_globals_id);
#endif
EG(error_reporting) = E_ALL & ~E_NOTICE;
1999-04-28 17:38:24 +00:00
PG(header_is_being_sent) = 0;
SG(request_info).headers_only = 0;
2000-02-10 20:03:17 +00:00
SG(request_info).argv0 = NULL;
1999-09-06 22:40:27 +00:00
PG(connection_status) = PHP_CONNECTION_NORMAL;
1999-04-21 04:02:11 +00:00
1999-04-07 21:05:13 +00:00
#if HAVE_SETLOCALE
setlocale(LC_CTYPE, "");
1999-04-07 21:05:13 +00:00
#endif
2000-02-11 15:59:30 +00:00
#ifdef PHP_WIN32
1999-04-07 21:05:13 +00:00
/* start up winsock services */
if (WSAStartup(wVersionRequested, &wsaData) != 0) {
php_printf("\nwinsock.dll unusable. %d\n", WSAGetLastError());
1999-04-07 21:05:13 +00:00
return FAILURE;
}
#endif
SET_MUTEX(gLock);
2000-04-15 14:30:18 +00:00
le_index_ptr = zend_register_list_destructors(NULL, NULL, 0);
1999-04-07 21:05:13 +00:00
FREE_MUTEX(gLock);
php_ini_mstartup();
1999-12-17 19:51:39 +00:00
if (php_config_ini_startup() == FAILURE) {
1999-04-07 21:05:13 +00:00
return FAILURE;
}
REGISTER_INI_ENTRIES();
zuv.short_tags = (zend_bool) PG(short_tags);
zuv.asp_tags = (zend_bool) PG(asp_tags);
zuv.allow_call_time_pass_reference = PG(allow_call_time_pass_reference);
zuv.import_use_extension = ".php";
zend_set_utility_values(&zuv);
php_startup_sapi_content_types();
REGISTER_MAIN_STRINGL_CONSTANT("PHP_VERSION", PHP_VERSION, sizeof(PHP_VERSION)-1, CONST_PERSISTENT | CONST_CS);
REGISTER_MAIN_STRINGL_CONSTANT("PHP_OS", php_os, strlen(php_os), CONST_PERSISTENT | CONST_CS);
if (php_startup_ticks(PLS_C) == FAILURE) {
php_printf("Unable to start PHP ticks\n");
return FAILURE;
}
if (php_startup_internal_extensions() == FAILURE) {
php_printf("Unable to start builtin modules\n");
1999-04-07 21:05:13 +00:00
return FAILURE;
}
1999-04-23 22:45:01 +00:00
module_initialized = 1;
sapi_deactivate(SLS_C);
1999-04-07 21:05:13 +00:00
return SUCCESS;
}
1999-05-28 03:54:15 +00:00
void php_module_shutdown_for_exec()
1999-04-07 21:05:13 +00:00
{
/* used to close fd's in the range 3.255 here, but it's problematic */
}
int php_module_shutdown_wrapper(sapi_module_struct *sapi_globals)
{
php_module_shutdown();
return SUCCESS;
}
void php_module_shutdown()
1999-04-07 21:05:13 +00:00
{
int module_number=0; /* for UNREGISTER_INI_ENTRIES() */
PLS_FETCH();
1999-04-07 21:05:13 +00:00
if (!module_initialized) {
return;
}
2000-02-10 16:52:07 +00:00
1999-04-07 21:05:13 +00:00
/* close down the ini config */
1999-12-17 19:51:39 +00:00
php_config_ini_shutdown();
1999-04-07 21:05:13 +00:00
2000-02-11 15:59:30 +00:00
#ifdef PHP_WIN32
1999-04-07 21:05:13 +00:00
/*close winsock */
1999-04-23 22:45:01 +00:00
WSACleanup();
1999-04-07 21:05:13 +00:00
#endif
php_shutdown_ticks(PLS_C);
2000-02-10 16:52:07 +00:00
sapi_flush();
1999-04-07 21:05:13 +00:00
global_lock_destroy();
1999-04-07 21:05:13 +00:00
zend_shutdown();
UNREGISTER_INI_ENTRIES();
php_ini_mshutdown();
1999-04-07 21:05:13 +00:00
shutdown_memory_manager(0, 1);
1999-04-23 22:45:01 +00:00
module_initialized = 0;
1999-04-07 21:05:13 +00:00
}
static inline void php_register_server_variables(ELS_D SLS_DC PLS_DC)
{
zval *array_ptr=NULL;
if (PG(track_vars)) {
ALLOC_ZVAL(array_ptr);
array_init(array_ptr);
INIT_PZVAL(array_ptr);
PG(http_globals).server = array_ptr;
}
/* Server variables */
if (sapi_module.register_server_variables) {
sapi_module.register_server_variables(array_ptr ELS_CC SLS_CC PLS_CC);
}
/* argv/argc support */
if (PG(register_argc_argv)) {
php_build_argv(SG(request_info).query_string, array_ptr ELS_CC PLS_CC);
}
/* PHP Authentication support */
if (SG(request_info).auth_user) {
php_register_variable("PHP_AUTH_USER", SG(request_info).auth_user, array_ptr ELS_CC PLS_CC);
}
if (SG(request_info).auth_password) {
php_register_variable("PHP_AUTH_PW", SG(request_info).auth_password, array_ptr ELS_CC PLS_CC);
}
}
2000-01-28 17:43:41 +00:00
static int php_hash_environment(ELS_D SLS_DC PLS_DC)
1999-04-07 21:05:13 +00:00
{
char *p;
1999-04-07 21:05:13 +00:00
unsigned char _gpc_flags[3] = {0,0,0};
zend_bool have_variables_order;
PG(http_globals).post = PG(http_globals).get = PG(http_globals).cookie = PG(http_globals).server = PG(http_globals).environment = PG(http_globals).post_files = NULL;
if (PG(variables_order)) {
p = PG(variables_order);
have_variables_order=1;
} else {
p = PG(gpc_order);
have_variables_order=0;
php_import_environment_variables(ELS_C PLS_CC);
}
while(p && *p) {
1999-04-07 21:05:13 +00:00
switch(*p++) {
case 'p':
case 'P':
if (!_gpc_flags[0] && !SG(headers_sent) && SG(request_info).request_method && !strcasecmp(SG(request_info).request_method, "POST")) {
1999-09-11 14:09:29 +00:00
php_treat_data(PARSE_POST, NULL ELS_CC PLS_CC SLS_CC); /* POST Data */
1999-04-07 21:05:13 +00:00
_gpc_flags[0]=1;
}
break;
case 'c':
case 'C':
if (!_gpc_flags[1]) {
1999-09-11 14:09:29 +00:00
php_treat_data(PARSE_COOKIE, NULL ELS_CC PLS_CC SLS_CC); /* Cookie Data */
1999-04-07 21:05:13 +00:00
_gpc_flags[1]=1;
}
break;
case 'g':
case 'G':
if (!_gpc_flags[2]) {
1999-09-11 14:09:29 +00:00
php_treat_data(PARSE_GET, NULL ELS_CC PLS_CC SLS_CC); /* GET Data */
1999-04-07 21:05:13 +00:00
_gpc_flags[2]=1;
}
break;
case 'e':
case 'E':
if (have_variables_order) {
php_import_environment_variables(ELS_C PLS_CC);
} else {
php_error(E_CORE_WARNING, "Unsupported 'e' element (environment) used in gpc_order - use variables_order instead");
}
break;
case 's':
case 'S':
php_register_server_variables(ELS_C SLS_CC PLS_CC);
break;
1999-04-07 21:05:13 +00:00
}
}
if (!have_variables_order) {
php_register_server_variables(ELS_C SLS_CC PLS_CC);
}
if (PG(http_globals).post) {
2000-03-24 11:16:24 +00:00
zend_hash_update(&EG(symbol_table), "HTTP_POST_VARS", sizeof("HTTP_POST_VARS"), &PG(http_globals).post, sizeof(zval *), NULL);
}
if (PG(http_globals).get) {
2000-03-24 11:16:24 +00:00
zend_hash_update(&EG(symbol_table), "HTTP_GET_VARS", sizeof("HTTP_GET_VARS"), &PG(http_globals).get, sizeof(zval *), NULL);
}
if (PG(http_globals).cookie) {
2000-03-24 11:16:24 +00:00
zend_hash_update(&EG(symbol_table), "HTTP_COOKIE_VARS", sizeof("HTTP_COOKIE_VARS"), &PG(http_globals).cookie, sizeof(zval *), NULL);
}
if (PG(http_globals).server) {
2000-03-24 11:16:24 +00:00
zend_hash_update(&EG(symbol_table), "HTTP_SERVER_VARS", sizeof("HTTP_SERVER_VARS"), &PG(http_globals).server, sizeof(zval *), NULL);
}
if (PG(http_globals).environment) {
2000-03-24 11:16:24 +00:00
zend_hash_update(&EG(symbol_table), "HTTP_ENV_VARS", sizeof("HTTP_ENV_VARS"), &PG(http_globals).environment, sizeof(zval *), NULL);
}
2000-02-26 18:59:29 +00:00
if (PG(http_globals).post_files) {
2000-03-24 11:16:24 +00:00
zend_hash_update(&EG(symbol_table), "HTTP_POST_FILES", sizeof("HTTP_POST_FILES"), &PG(http_globals).post_files, sizeof(zval *),NULL);
2000-02-26 18:59:29 +00:00
}
1999-04-07 21:05:13 +00:00
return SUCCESS;
}
static void php_build_argv(char *s, zval *track_vars_array ELS_DC PLS_DC)
1999-04-07 21:05:13 +00:00
{
pval *arr, *argc, *tmp;
1999-04-07 21:05:13 +00:00
int count = 0;
char *ss, *space;
1999-12-26 21:21:33 +00:00
ALLOC_ZVAL(arr);
array_init(arr);
INIT_PZVAL(arr);
/* Prepare argv */
2000-05-23 10:36:18 +00:00
if (s && *s) {
2000-05-22 23:24:55 +00:00
ss = s;
while (ss) {
space = strchr(ss, '+');
if (space) {
*space = '\0';
}
/* auto-type */
ALLOC_ZVAL(tmp);
tmp->type = IS_STRING;
tmp->value.str.len = strlen(ss);
tmp->value.str.val = estrndup(ss, tmp->value.str.len);
INIT_PZVAL(tmp);
count++;
if (zend_hash_next_index_insert(arr->value.ht, &tmp, sizeof(pval *), NULL)==FAILURE) {
if (tmp->type == IS_STRING) {
efree(tmp->value.str.val);
}
}
if (space) {
*space = '+';
ss = space + 1;
} else {
ss = space;
1999-04-07 21:05:13 +00:00
}
}
}
/* prepare argc */
ALLOC_ZVAL(argc);
argc->value.lval = count;
argc->type = IS_LONG;
INIT_PZVAL(argc);
if (PG(register_globals)) {
2000-03-24 11:16:24 +00:00
zend_hash_update(&EG(symbol_table), "argv", sizeof("argv"), &arr, sizeof(zval *), NULL);
zend_hash_add(&EG(symbol_table), "argc", sizeof("argc"), &argc, sizeof(zval *), NULL);
}
if (PG(track_vars)) {
2000-01-29 12:57:08 +00:00
if (PG(register_globals)) {
arr->refcount++;
argc->refcount++;
}
2000-03-24 11:16:24 +00:00
zend_hash_update(track_vars_array->value.ht, "argv", sizeof("argv"), &arr, sizeof(pval *), NULL);
zend_hash_update(track_vars_array->value.ht, "argc", sizeof("argc"), &argc, sizeof(pval *), NULL);
}
1999-04-07 21:05:13 +00:00
}
#include "logos.h"
PHPAPI void php_execute_script(zend_file_handle *primary_file CLS_DC ELS_DC PLS_DC)
1999-04-07 21:05:13 +00:00
{
zend_file_handle *prepend_file_p, *append_file_p;
zend_file_handle prepend_file, append_file;
SLS_FETCH();
1999-04-07 21:05:13 +00:00
2000-01-28 17:43:41 +00:00
php_hash_environment(ELS_C SLS_CC PLS_CC);
zend_activate_modules();
PG(modules_activated)=1;
if (SG(request_info).query_string && SG(request_info).query_string[0]=='='
1999-09-12 20:36:48 +00:00
&& PG(expose_php)) {
if (!strcmp(SG(request_info).query_string+1, PHP_LOGO_GUID)) {
sapi_add_header(CONTEXT_TYPE_IMAGE_GIF, sizeof(CONTEXT_TYPE_IMAGE_GIF)-1, 1);
2000-04-19 23:18:15 +00:00
PHPWRITE(php_logo, sizeof(php_logo));
return;
} else if (!strcmp(SG(request_info).query_string+1, PHP_EGG_LOGO_GUID)) {
sapi_add_header(CONTEXT_TYPE_IMAGE_GIF, sizeof(CONTEXT_TYPE_IMAGE_GIF)-1, 1);
2000-04-19 23:18:15 +00:00
PHPWRITE(php_egg_logo, sizeof(php_egg_logo));
1999-04-07 21:05:13 +00:00
return;
} else if (!strcmp(SG(request_info).query_string+1, ZEND_LOGO_GUID)) {
sapi_add_header(CONTEXT_TYPE_IMAGE_GIF, sizeof(CONTEXT_TYPE_IMAGE_GIF)-1, 1);
PHPWRITE(zend_logo, sizeof(zend_logo));
1999-04-07 21:05:13 +00:00
return;
} else if (!strcmp(SG(request_info).query_string+1, "PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000")) {
php_print_credits(PHP_CREDITS_ALL);
return;
1999-04-07 21:05:13 +00:00
}
}
1999-04-07 21:05:13 +00:00
if (setjmp(EG(bailout))!=0) {
return;
}
2000-02-11 15:59:30 +00:00
#ifdef PHP_WIN32
1999-04-18 15:09:46 +00:00
UpdateIniFromRegistry(primary_file->filename);
#endif
1999-04-07 21:05:13 +00:00
if (PG(auto_prepend_file) && PG(auto_prepend_file)[0]) {
1999-04-10 13:32:47 +00:00
prepend_file.filename = PG(auto_prepend_file);
prepend_file.free_filename = 0;
1999-04-07 21:05:13 +00:00
prepend_file.type = ZEND_HANDLE_FILENAME;
prepend_file_p = &prepend_file;
} else {
prepend_file_p = NULL;
}
if (PG(auto_append_file) && PG(auto_append_file)[0]) {
1999-04-10 13:32:47 +00:00
append_file.filename = PG(auto_append_file);
append_file.free_filename = 0;
1999-04-07 21:05:13 +00:00
append_file.type = ZEND_HANDLE_FILENAME;
append_file_p = &append_file;
} else {
append_file_p = NULL;
}
2000-04-27 20:22:40 +00:00
EG(main_op_array) = zend_compile_files(ZEND_REQUIRE CLS_CC, 3, prepend_file_p, primary_file, append_file_p);
1999-04-07 21:05:13 +00:00
if (EG(main_op_array)) {
EG(active_op_array) = EG(main_op_array);
zend_execute(EG(main_op_array) ELS_CC);
}
}
2000-02-11 15:59:30 +00:00
#ifdef PHP_WIN32
/* just so that this symbol gets exported... */
PHPAPI void dummy_indent()
{
zend_indent();
}
#endif
1999-04-07 21:05:13 +00:00
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
*/