php-src/Zend/zend.c

1112 lines
31 KiB
C
Raw Normal View History

1999-04-07 18:10:10 +00:00
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
2002-12-31 15:59:15 +00:00
| Copyright (c) 1998-2003 Zend Technologies Ltd. (http://www.zend.com) |
1999-04-07 18:10:10 +00:00
+----------------------------------------------------------------------+
2001-12-11 15:16:21 +00:00
| This source file is subject to version 2.00 of the Zend license, |
1999-07-16 14:58:16 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
2001-12-11 15:16:21 +00:00
| http://www.zend.com/license/2_00.txt. |
1999-07-16 14:58:16 +00:00
| If you did not receive a copy of the Zend license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@zend.com so we can mail you a copy immediately. |
1999-04-07 18:10:10 +00:00
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
/* $Id$ */
1999-04-07 18:18:16 +00:00
1999-04-07 18:10:10 +00:00
#include "zend.h"
#include "zend_extensions.h"
2001-02-26 18:18:34 +00:00
#include "zend_modules.h"
1999-04-07 18:10:10 +00:00
#include "zend_constants.h"
#include "zend_list.h"
#include "zend_API.h"
2003-03-23 04:32:24 +00:00
#include "zend_default_classes.h"
#include "zend_builtin_functions.h"
#include "zend_ini.h"
1999-04-07 18:10:10 +00:00
#ifdef ZTS
2003-06-02 12:13:11 +00:00
# define GLOBAL_FUNCTION_TABLE global_function_table
# define GLOBAL_CLASS_TABLE global_class_table
# define GLOBAL_CONSTANTS_TABLE global_constants_table
# define GLOBAL_AUTO_GLOBALS_TABLE global_auto_globals_table
#else
2003-06-02 12:13:11 +00:00
# define GLOBAL_FUNCTION_TABLE CG(function_table)
# define GLOBAL_CLASS_TABLE CG(class_table)
# define GLOBAL_AUTO_GLOBALS_TABLE CG(auto_globals)
#endif
2000-06-29 15:07:59 +00:00
#if defined(ZEND_WIN32) && ZEND_DEBUG
BOOL WINAPI IsDebuggerPresent(VOID);
#endif
1999-04-07 18:10:10 +00:00
/* true multithread-shared globals */
ZEND_API zend_class_entry *zend_standard_class_def = NULL;
1999-04-07 18:10:10 +00:00
ZEND_API int (*zend_printf)(const char *format, ...);
ZEND_API zend_write_func_t zend_write;
ZEND_API FILE *(*zend_fopen)(const char *filename, char **opened_path);
ZEND_API int (*zend_stream_open_function)(const char *filename, zend_file_handle *handle TSRMLS_DC);
ZEND_API void (*zend_block_interruptions)(void);
ZEND_API void (*zend_unblock_interruptions)(void);
2000-02-17 08:03:13 +00:00
ZEND_API void (*zend_ticks_function)(int ticks);
ZEND_API void (*zend_error_cb)(int type, const char *error_filename, const uint error_lineno, const char *format, va_list args);
int (*zend_vspprintf)(char **pbuf, size_t max_len, const char *format, va_list ap);
2002-09-19 15:58:01 +00:00
void (*zend_on_timeout)(int seconds TSRMLS_DC);
2000-03-05 19:50:10 +00:00
static void (*zend_message_dispatcher_p)(long message, void *data);
static int (*zend_get_configuration_directive_p)(char *name, uint name_length, zval *contents);
1999-06-19 20:42:15 +00:00
2002-11-19 17:51:30 +00:00
static ZEND_INI_MH(OnUpdateErrorReporting)
{
if (!new_value) {
EG(error_reporting) = E_ALL & ~E_NOTICE;
} else {
EG(error_reporting) = atoi(new_value);
}
return SUCCESS;
}
static ZEND_INI_MH(OnUpdateImplicitClone)
{
if (!new_value) {
EG(implicit_clone) = 0;
} else {
EG(implicit_clone) = atoi(new_value) ? 1 : 0;
}
return SUCCESS;
}
2002-11-19 17:51:30 +00:00
ZEND_INI_BEGIN()
ZEND_INI_ENTRY("error_reporting", NULL, ZEND_INI_ALL, OnUpdateErrorReporting)
ZEND_INI_ENTRY("zend2.implicit_clone", NULL, ZEND_INI_ALL, OnUpdateImplicitClone)
2002-11-19 17:51:30 +00:00
ZEND_INI_END()
#ifdef ZTS
1999-04-24 16:16:11 +00:00
ZEND_API int compiler_globals_id;
ZEND_API int executor_globals_id;
ZEND_API int alloc_globals_id;
zend_class_entry global_main_class;
2003-06-02 12:13:11 +00:00
HashTable *global_function_table;
HashTable *global_class_table;
HashTable *global_constants_table;
HashTable *global_auto_globals_table;
#endif
1999-04-07 18:10:10 +00:00
2002-09-03 10:25:06 +00:00
ZEND_API zend_utility_values zend_uv;
1999-04-07 18:10:10 +00:00
1999-12-22 20:24:52 +00:00
ZEND_API zval zval_used_for_init; /* True global variable */
1999-04-07 18:10:10 +00:00
/* version information */
static char *zend_version_info;
static uint zend_version_info_length;
2002-12-31 15:59:15 +00:00
#define ZEND_CORE_VERSION_INFO "Zend Engine v" ZEND_VERSION ", Copyright (c) 1998-2003 Zend Technologies\n"
1999-04-07 18:10:10 +00:00
1999-12-21 17:14:31 +00:00
#define PRINT_ZVAL_INDENT 4
1999-04-07 18:10:10 +00:00
static void print_hash(HashTable *ht, int indent, zend_bool is_object TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
zval **tmp;
char *string_key;
HashPosition iterator;
2001-08-21 12:29:12 +00:00
ulong num_key;
uint str_len;
1999-04-07 18:10:10 +00:00
int i;
for (i=0; i<indent; i++) {
ZEND_PUTS(" ");
}
ZEND_PUTS("(\n");
1999-12-21 17:14:31 +00:00
indent += PRINT_ZVAL_INDENT;
zend_hash_internal_pointer_reset_ex(ht, &iterator);
while (zend_hash_get_current_data_ex(ht, (void **) &tmp, &iterator) == SUCCESS) {
1999-04-07 18:10:10 +00:00
for (i=0; i<indent; i++) {
ZEND_PUTS(" ");
}
ZEND_PUTS("[");
switch (zend_hash_get_current_key_ex(ht, &string_key, &str_len, &num_key, 0, &iterator)) {
1999-04-07 18:10:10 +00:00
case HASH_KEY_IS_STRING:
if (is_object) {
char *prop_name, *class_name;
unmangle_property_name(string_key, &class_name, &prop_name);
ZEND_PUTS(prop_name);
if (class_name) {
if (class_name[0]=='*') {
ZEND_PUTS(":protected");
} else {
ZEND_PUTS(":private");
}
}
} else {
2003-07-24 08:24:07 +00:00
ZEND_WRITE(string_key, str_len-1);
}
1999-04-07 18:10:10 +00:00
break;
case HASH_KEY_IS_LONG:
2001-08-11 15:56:40 +00:00
zend_printf("%ld", num_key);
1999-04-07 18:10:10 +00:00
break;
}
ZEND_PUTS("] => ");
2003-01-12 14:25:58 +00:00
zend_print_zval_r(*tmp, indent+PRINT_ZVAL_INDENT TSRMLS_CC);
1999-04-07 18:10:10 +00:00
ZEND_PUTS("\n");
zend_hash_move_forward_ex(ht, &iterator);
1999-04-07 18:10:10 +00:00
}
1999-12-21 17:14:31 +00:00
indent -= PRINT_ZVAL_INDENT;
1999-04-07 18:10:10 +00:00
for (i=0; i<indent; i++) {
ZEND_PUTS(" ");
}
ZEND_PUTS(")\n");
}
2003-01-12 14:25:58 +00:00
static void print_flat_hash(HashTable *ht TSRMLS_DC)
2002-12-01 19:47:02 +00:00
{
zval **tmp;
char *string_key;
HashPosition iterator;
ulong num_key;
uint str_len;
int i = 0;
zend_hash_internal_pointer_reset_ex(ht, &iterator);
while (zend_hash_get_current_data_ex(ht, (void **) &tmp, &iterator) == SUCCESS) {
if (i++ > 0) {
ZEND_PUTS(",");
}
ZEND_PUTS("[");
switch (zend_hash_get_current_key_ex(ht, &string_key, &str_len, &num_key, 0, &iterator)) {
case HASH_KEY_IS_STRING:
ZEND_PUTS(string_key);
break;
case HASH_KEY_IS_LONG:
zend_printf("%ld", num_key);
break;
}
ZEND_PUTS("] => ");
2003-01-12 14:25:58 +00:00
zend_print_flat_zval_r(*tmp TSRMLS_CC);
2002-12-01 19:47:02 +00:00
zend_hash_move_forward_ex(ht, &iterator);
}
}
ZEND_API void zend_make_printable_zval(zval *expr, zval *expr_copy, int *use_copy)
1999-04-07 18:10:10 +00:00
{
if (expr->type==IS_STRING) {
*use_copy = 0;
return;
}
switch (expr->type) {
2000-01-04 13:22:58 +00:00
case IS_NULL:
expr_copy->value.str.len = 0;
expr_copy->value.str.val = empty_string;
2000-02-01 11:37:33 +00:00
break;
case IS_BOOL:
1999-07-15 20:38:00 +00:00
if (expr->value.lval) {
expr_copy->value.str.len = 1;
expr_copy->value.str.val = estrndup("1", 1);
} else {
expr_copy->value.str.len = 0;
expr_copy->value.str.val = empty_string;
}
break;
case IS_RESOURCE:
expr_copy->value.str.val = (char *) emalloc(sizeof("Resource id #")-1 + MAX_LENGTH_OF_LONG);
expr_copy->value.str.len = sprintf(expr_copy->value.str.val, "Resource id #%ld", expr->value.lval);
break;
case IS_ARRAY:
expr_copy->value.str.len = sizeof("Array")-1;
expr_copy->value.str.val = estrndup("Array", expr_copy->value.str.len);
break;
case IS_OBJECT:
if (expr->value.obj.handlers->cast_object) {
TSRMLS_FETCH();
if (expr->value.obj.handlers->cast_object(expr, expr_copy, IS_STRING, 0 TSRMLS_CC) == SUCCESS) {
break;
}
}
expr_copy->value.str.val = (char *) emalloc(sizeof("Object id #")-1 + MAX_LENGTH_OF_LONG);
expr_copy->value.str.len = sprintf(expr_copy->value.str.val, "Object id #%ld", (long)expr->value.obj.handle);
#if 0
/* FIXME: This might break BC for some people */
expr_copy->value.str.len = sizeof("Object")-1;
expr_copy->value.str.val = estrndup("Object", expr_copy->value.str.len);
#endif
break;
2002-10-12 21:15:35 +00:00
case IS_DOUBLE:
*expr_copy = *expr;
zval_copy_ctor(expr_copy);
zend_locale_sprintf_double(expr_copy ZEND_FILE_LINE_CC);
break;
default:
*expr_copy = *expr;
zval_copy_ctor(expr_copy);
convert_to_string(expr_copy);
break;
}
expr_copy->type = IS_STRING;
*use_copy = 1;
}
ZEND_API int zend_print_zval(zval *expr, int indent)
{
return zend_print_zval_ex(zend_write, expr, indent);
}
ZEND_API int zend_print_zval_ex(zend_write_func_t write_func, zval *expr, int indent)
{
zval expr_copy;
int use_copy;
zend_make_printable_zval(expr, &expr_copy, &use_copy);
if (use_copy) {
1999-04-07 18:10:10 +00:00
expr = &expr_copy;
}
if (expr->value.str.len==0) { /* optimize away empty strings */
if (use_copy) {
zval_dtor(expr);
}
1999-04-07 18:10:10 +00:00
return 0;
}
2001-08-11 15:56:40 +00:00
write_func(expr->value.str.val, expr->value.str.len);
if (use_copy) {
1999-04-07 18:10:10 +00:00
zval_dtor(expr);
}
return expr->value.str.len;
}
2003-01-12 14:25:58 +00:00
ZEND_API void zend_print_flat_zval_r(zval *expr TSRMLS_DC)
2002-12-01 19:47:02 +00:00
{
switch (expr->type) {
case IS_ARRAY:
ZEND_PUTS("Array (");
if (++expr->value.ht->nApplyCount>1) {
ZEND_PUTS(" *RECURSION*");
expr->value.ht->nApplyCount--;
return;
}
2003-01-12 14:25:58 +00:00
print_flat_hash(expr->value.ht TSRMLS_CC);
2002-12-01 19:47:02 +00:00
ZEND_PUTS(")");
expr->value.ht->nApplyCount--;
break;
case IS_OBJECT:
{
2003-01-12 13:45:50 +00:00
HashTable *properties = NULL;
char *class_name = NULL;
zend_uint clen;
2003-01-14 12:13:51 +00:00
if (Z_OBJ_HANDLER_P(expr, get_class_name)) {
2003-01-12 13:45:50 +00:00
Z_OBJ_HANDLER_P(expr, get_class_name)(expr, &class_name, &clen, 0 TSRMLS_CC);
}
zend_printf("%s Object (", class_name?class_name:"Unknown Class");
if (class_name) {
efree(class_name);
2003-01-12 13:45:50 +00:00
}
2003-01-14 12:13:51 +00:00
if (Z_OBJ_HANDLER_P(expr, get_properties)) {
2003-01-12 13:45:50 +00:00
properties = Z_OBJPROP_P(expr);
}
2003-01-14 12:13:51 +00:00
if (properties) {
2003-01-12 13:45:50 +00:00
if (++properties->nApplyCount>1) {
ZEND_PUTS(" *RECURSION*");
properties->nApplyCount--;
return;
}
2003-01-12 14:25:58 +00:00
print_flat_hash(properties TSRMLS_CC);
2003-01-12 13:45:50 +00:00
properties->nApplyCount--;
}
ZEND_PUTS(")");
break;
2002-12-01 19:47:02 +00:00
}
default:
zend_print_variable(expr);
break;
}
}
1999-04-07 18:10:10 +00:00
2003-01-12 14:25:58 +00:00
ZEND_API void zend_print_zval_r(zval *expr, int indent TSRMLS_DC)
{
2003-01-12 14:25:58 +00:00
zend_print_zval_r_ex(zend_write, expr, indent TSRMLS_CC);
}
2003-01-12 14:25:58 +00:00
ZEND_API void zend_print_zval_r_ex(zend_write_func_t write_func, zval *expr, int indent TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
2002-11-30 11:20:25 +00:00
switch (expr->type) {
1999-04-07 18:10:10 +00:00
case IS_ARRAY:
ZEND_PUTS("Array\n");
2000-11-02 23:17:55 +00:00
if (++expr->value.ht->nApplyCount>1) {
ZEND_PUTS(" *RECURSION*");
2002-08-28 09:49:40 +00:00
expr->value.ht->nApplyCount--;
2000-11-02 23:17:55 +00:00
return;
}
print_hash(expr->value.ht, indent, 0 TSRMLS_CC);
2000-11-02 23:17:55 +00:00
expr->value.ht->nApplyCount--;
1999-04-07 18:10:10 +00:00
break;
case IS_OBJECT:
2001-07-29 08:22:57 +00:00
{
2003-01-12 13:45:50 +00:00
HashTable *properties = NULL;
char *class_name = NULL;
zend_uint clen;
2003-01-14 12:13:51 +00:00
if (Z_OBJ_HANDLER_P(expr, get_class_name)) {
2003-01-12 13:45:50 +00:00
Z_OBJ_HANDLER_P(expr, get_class_name)(expr, &class_name, &clen, 0 TSRMLS_CC);
}
zend_printf("%s Object\n", class_name?class_name:"Unknown Class");
if (class_name) {
efree(class_name);
2003-01-12 13:45:50 +00:00
}
2003-01-14 12:13:51 +00:00
if (Z_OBJ_HANDLER_P(expr, get_properties)) {
2003-01-12 13:45:50 +00:00
properties = Z_OBJPROP_P(expr);
}
2003-01-14 12:13:51 +00:00
if (properties) {
2003-01-12 13:45:50 +00:00
if (++properties->nApplyCount>1) {
ZEND_PUTS(" *RECURSION*");
properties->nApplyCount--;
return;
}
print_hash(properties, indent, 1 TSRMLS_CC);
2003-01-12 13:45:50 +00:00
properties->nApplyCount--;
2001-07-29 08:22:57 +00:00
}
break;
2000-11-02 23:17:55 +00:00
}
1999-04-07 18:10:10 +00:00
default:
zend_print_variable(expr);
break;
}
}
static FILE *zend_fopen_wrapper(const char *filename, char **opened_path)
1999-04-07 18:10:10 +00:00
{
if (opened_path) {
*opened_path = estrdup(filename);
}
return fopen(filename, "rb");
1999-04-07 18:10:10 +00:00
}
2003-02-16 11:34:49 +00:00
static void register_standard_class(TSRMLS_D)
1999-04-07 18:10:10 +00:00
{
zend_standard_class_def = malloc(sizeof(zend_class_entry));
zend_standard_class_def->type = ZEND_INTERNAL_CLASS;
2003-02-10 16:11:24 +00:00
zend_standard_class_def->name_length = sizeof("stdClass") - 1;
2003-02-16 18:17:19 +00:00
zend_standard_class_def->name = zend_strndup("stdClass", zend_standard_class_def->name_length);
2003-02-16 11:34:49 +00:00
zend_initialize_class_data(zend_standard_class_def, 1 TSRMLS_CC);
zend_hash_add(CG(class_table), "stdclass", sizeof("stdclass"), &zend_standard_class_def, sizeof(zend_class_entry *), NULL);
1999-04-07 18:10:10 +00:00
}
static void zend_set_default_compile_time_values(TSRMLS_D)
{
/* default compile-time values */
CG(asp_tags) = 0;
CG(short_tags) = 1;
CG(allow_call_time_pass_reference) = 1;
CG(extended_info) = 0;
}
#ifdef ZTS
static void compiler_globals_ctor(zend_compiler_globals *compiler_globals TSRMLS_DC)
{
zend_function tmp_func;
zend_class_entry tmp_class;
compiler_globals->compiled_filename = NULL;
2003-06-02 12:13:11 +00:00
compiler_globals->function_table = (HashTable *) malloc(sizeof(HashTable));
zend_hash_init_ex(compiler_globals->function_table, 100, NULL, ZEND_FUNCTION_DTOR, 1, 0);
zend_hash_copy(compiler_globals->function_table, global_function_table, NULL, &tmp_func, sizeof(zend_function));
2003-06-02 12:13:11 +00:00
compiler_globals->class_table = (HashTable *) malloc(sizeof(HashTable));
zend_hash_init_ex(compiler_globals->class_table, 10, NULL, ZEND_CLASS_DTOR, 1, 0);
zend_hash_copy(compiler_globals->class_table, global_class_table, (copy_ctor_func_t) zend_class_add_ref, &tmp_class, sizeof(zend_class_entry));
1999-12-27 11:22:57 +00:00
zend_set_default_compile_time_values(TSRMLS_C);
CG(interactive) = 0;
compiler_globals->auto_globals = (HashTable *) malloc(sizeof(HashTable));
zend_hash_init_ex(compiler_globals->auto_globals, 8, NULL, NULL, 1, 0);
zend_hash_copy(compiler_globals->auto_globals, global_auto_globals_table, NULL, NULL, sizeof(zend_auto_global) /* empty element */);
}
static void compiler_globals_dtor(zend_compiler_globals *compiler_globals TSRMLS_DC)
{
if (compiler_globals->function_table != GLOBAL_FUNCTION_TABLE) {
zend_hash_destroy(compiler_globals->function_table);
}
if (compiler_globals->class_table != GLOBAL_CLASS_TABLE) {
zend_hash_destroy(compiler_globals->class_table);
}
if (compiler_globals->auto_globals != global_auto_globals_table) {
zend_hash_destroy(compiler_globals->auto_globals);
free(compiler_globals->auto_globals);
}
}
static void executor_globals_ctor(zend_executor_globals *executor_globals TSRMLS_DC)
{
zend_startup_constants(TSRMLS_C);
zend_copy_constants(EG(zend_constants), GLOBAL_CONSTANTS_TABLE);
zend_init_rsrc_plist(TSRMLS_C);
EG(lambda_count)=0;
EG(user_error_handler) = NULL;
EG(user_exception_handler) = NULL;
2001-07-15 12:24:10 +00:00
EG(in_execution) = 0;
2002-11-02 09:05:18 +00:00
EG(current_execute_data) = NULL;
}
static void executor_globals_dtor(zend_executor_globals *executor_globals TSRMLS_DC)
{
zend_ini_shutdown(TSRMLS_C);
}
static void zend_new_thread_end_handler(THREAD_T thread_id TSRMLS_DC)
{
zend_copy_ini_directives(TSRMLS_C);
zend_ini_refresh_caches(ZEND_INI_STAGE_STARTUP TSRMLS_CC);
}
#endif
static void alloc_globals_ctor(zend_alloc_globals *alloc_globals_p TSRMLS_DC)
{
start_memory_manager(TSRMLS_C);
}
#ifdef ZTS
2001-08-05 01:37:10 +00:00
static void alloc_globals_dtor(zend_alloc_globals *alloc_globals_p TSRMLS_DC)
{
2002-02-26 19:17:26 +00:00
shutdown_memory_manager(0, 1 TSRMLS_CC);
2001-08-05 01:37:10 +00:00
}
#endif
2001-08-05 01:37:10 +00:00
#ifdef __FreeBSD__
/* FreeBSD floating point precision fix */
#include <floatingpoint.h>
#endif
static void scanner_globals_ctor(zend_scanner_globals *scanner_globals_p TSRMLS_DC)
{
scanner_globals_p->c_buf_p = (char *) 0;
scanner_globals_p->init = 1;
scanner_globals_p->start = 0;
scanner_globals_p->current_buffer = NULL;
2001-09-19 22:34:11 +00:00
scanner_globals_p->yy_in = NULL;
scanner_globals_p->yy_out = NULL;
2001-09-22 00:09:24 +00:00
scanner_globals_p->_yy_more_flag = 0;
scanner_globals_p->_yy_more_len = 0;
2002-08-15 00:25:27 +00:00
scanner_globals_p->yy_start_stack_ptr = 0;
scanner_globals_p->yy_start_stack_depth = 0;
scanner_globals_p->yy_start_stack = 0;
}
void zend_init_opcodes_handlers();
int zend_startup(zend_utility_functions *utility_functions, char **extensions, int start_builtin_functions)
1999-04-07 18:10:10 +00:00
{
#ifdef ZTS
zend_compiler_globals *compiler_globals;
zend_executor_globals *executor_globals;
void ***tsrm_ls;
extern ZEND_API ts_rsrc_id ini_scanner_globals_id;
extern ZEND_API ts_rsrc_id language_scanner_globals_id;
#else
extern zend_scanner_globals ini_scanner_globals;
extern zend_scanner_globals language_scanner_globals;
#endif
#ifdef ZTS
2001-08-05 01:37:10 +00:00
ts_allocate_id(&alloc_globals_id, sizeof(zend_alloc_globals), (ts_allocate_ctor) alloc_globals_ctor, (ts_allocate_dtor) alloc_globals_dtor);
1999-09-05 19:03:35 +00:00
#else
alloc_globals_ctor(&alloc_globals TSRMLS_CC);
#endif
#ifdef __FreeBSD__
/* FreeBSD floating point precision fix */
fpsetmask(0);
#endif
zend_startup_extensions_mechanism();
1999-04-07 18:10:10 +00:00
/* Set up utility functions and values */
zend_error_cb = utility_functions->error_function;
1999-04-07 18:10:10 +00:00
zend_printf = utility_functions->printf_function;
zend_write = (zend_write_func_t) utility_functions->write_function;
1999-04-07 18:10:10 +00:00
zend_fopen = utility_functions->fopen_function;
if (!zend_fopen) {
zend_fopen = zend_fopen_wrapper;
}
zend_stream_open_function = utility_functions->stream_open_function;
2000-03-05 19:50:10 +00:00
zend_message_dispatcher_p = utility_functions->message_handler;
1999-04-07 18:10:10 +00:00
zend_block_interruptions = utility_functions->block_interruptions;
zend_unblock_interruptions = utility_functions->unblock_interruptions;
zend_get_configuration_directive_p = utility_functions->get_configuration_directive;
zend_ticks_function = utility_functions->ticks_function;
2002-09-19 15:58:01 +00:00
zend_on_timeout = utility_functions->on_timeout;
zend_vspprintf = utility_functions->vspprintf_function;
1999-06-19 20:42:15 +00:00
zend_compile_file = compile_file;
1999-04-07 18:10:10 +00:00
zend_execute = execute;
zend_execute_internal = NULL;
1999-04-07 18:10:10 +00:00
zend_init_opcodes_handlers();
1999-04-07 18:10:10 +00:00
/* set up version */
zend_version_info = strdup(ZEND_CORE_VERSION_INFO);
zend_version_info_length = sizeof(ZEND_CORE_VERSION_INFO)-1;
GLOBAL_FUNCTION_TABLE = (HashTable *) malloc(sizeof(HashTable));
GLOBAL_CLASS_TABLE = (HashTable *) malloc(sizeof(HashTable));
2003-06-02 12:13:11 +00:00
GLOBAL_AUTO_GLOBALS_TABLE = (HashTable *) malloc(sizeof(HashTable));
2003-06-04 09:09:47 +00:00
#ifdef ZTS
2003-06-04 08:52:43 +00:00
GLOBAL_CONSTANTS_TABLE = (HashTable *) malloc(sizeof(HashTable));
2003-06-04 09:09:47 +00:00
#endif
zend_hash_init_ex(GLOBAL_FUNCTION_TABLE, 100, NULL, ZEND_FUNCTION_DTOR, 1, 0);
zend_hash_init_ex(GLOBAL_CLASS_TABLE, 10, NULL, ZEND_CLASS_DTOR, 1, 0);
zend_hash_init_ex(&module_registry, 50, NULL, ZEND_MODULE_DTOR, 1, 0);
zend_init_rsrc_list_dtors();
1999-04-07 18:10:10 +00:00
/* This zval can be used to initialize allocate zval's to an uninit'ed value */
zval_used_for_init.is_ref = 0;
zval_used_for_init.refcount = 1;
2000-01-04 13:22:58 +00:00
zval_used_for_init.type = IS_NULL;
#ifdef ZTS
2002-09-19 15:15:39 +00:00
zend_hash_init_ex(GLOBAL_CONSTANTS_TABLE, 20, NULL, ZEND_CONSTANT_DTOR, 1, 0);
zend_hash_init_ex(GLOBAL_AUTO_GLOBALS_TABLE, 8, NULL, (dtor_func_t) zend_auto_global_dtor, 1, 0);
ts_allocate_id(&compiler_globals_id, sizeof(zend_compiler_globals), (ts_allocate_ctor) compiler_globals_ctor, (ts_allocate_dtor) compiler_globals_dtor);
ts_allocate_id(&executor_globals_id, sizeof(zend_executor_globals), (ts_allocate_ctor) executor_globals_ctor, (ts_allocate_dtor) executor_globals_dtor);
ts_allocate_id(&language_scanner_globals_id, sizeof(zend_scanner_globals), (ts_allocate_ctor) scanner_globals_ctor, NULL);
ts_allocate_id(&ini_scanner_globals_id, sizeof(zend_scanner_globals), (ts_allocate_ctor) scanner_globals_ctor, NULL);
compiler_globals = ts_resource(compiler_globals_id);
executor_globals = ts_resource(executor_globals_id);
tsrm_ls = ts_resource_ex(0, NULL);
compiler_globals_dtor(compiler_globals, tsrm_ls);
*compiler_globals->function_table = *GLOBAL_FUNCTION_TABLE;
*compiler_globals->class_table = *GLOBAL_CLASS_TABLE;
compiler_globals->auto_globals = GLOBAL_AUTO_GLOBALS_TABLE;
zend_hash_destroy(executor_globals->zend_constants);
*executor_globals->zend_constants = *GLOBAL_CONSTANTS_TABLE;
1999-07-14 19:49:19 +00:00
#else
zend_hash_init_ex(CG(auto_globals), 8, NULL, (dtor_func_t) zend_auto_global_dtor, 1, 0);
scanner_globals_ctor(&ini_scanner_globals TSRMLS_CC);
scanner_globals_ctor(&language_scanner_globals TSRMLS_CC);
1999-08-20 17:02:11 +00:00
zend_startup_constants();
zend_set_default_compile_time_values(TSRMLS_C);
EG(user_error_handler) = NULL;
EG(user_exception_handler) = NULL;
#endif
2003-02-16 11:34:49 +00:00
register_standard_class(TSRMLS_C);
zend_register_standard_constants(TSRMLS_C);
zend_register_auto_global("GLOBALS", sizeof("GLOBALS")-1, NULL TSRMLS_CC);
1999-05-09 12:24:21 +00:00
#ifndef ZTS
zend_init_rsrc_plist(TSRMLS_C);
1999-05-09 12:24:21 +00:00
#endif
if (start_builtin_functions) {
zend_startup_builtin_functions(TSRMLS_C);
}
2003-03-23 04:32:24 +00:00
zend_register_default_classes(TSRMLS_C);
zend_ini_startup(TSRMLS_C);
#ifdef ZTS
tsrm_set_new_thread_end_handler(zend_new_thread_end_handler);
#endif
1999-04-07 18:10:10 +00:00
return SUCCESS;
}
2002-11-19 17:51:30 +00:00
void zend_register_standard_ini_entries(TSRMLS_D)
{
int module_number = 0;
REGISTER_INI_ENTRIES();
}
2002-09-17 12:42:11 +00:00
#ifdef ZTS
/* Unlink the global (r/o) copies of the class, function and constant tables,
* and use a fresh r/w copy for the startup thread
*/
void zend_post_startup(TSRMLS_D)
{
zend_compiler_globals *compiler_globals = ts_resource(compiler_globals_id);
zend_executor_globals *executor_globals = ts_resource(executor_globals_id);
2002-09-17 12:42:11 +00:00
*GLOBAL_FUNCTION_TABLE = *compiler_globals->function_table;
*GLOBAL_CLASS_TABLE = *compiler_globals->class_table;
*GLOBAL_CONSTANTS_TABLE = *executor_globals->zend_constants;
2003-01-09 09:22:44 +00:00
zend_destroy_rsrc_list(&EG(persistent_list) TSRMLS_CC);
2002-09-17 12:42:11 +00:00
compiler_globals_ctor(compiler_globals, tsrm_ls);
executor_globals_ctor(executor_globals, tsrm_ls);
2002-09-17 12:42:11 +00:00
}
#endif
2001-07-31 04:53:54 +00:00
void zend_shutdown(TSRMLS_D)
1999-04-07 18:10:10 +00:00
{
#ifdef ZEND_WIN32
zend_shutdown_timeout_thread();
#endif
1999-05-09 12:24:21 +00:00
#ifndef ZTS
2001-08-02 06:16:20 +00:00
zend_destroy_rsrc_list(&EG(persistent_list) TSRMLS_CC);
1999-05-09 12:24:21 +00:00
#endif
2002-06-18 17:36:33 +00:00
zend_hash_graceful_reverse_destroy(&module_registry);
zend_destroy_rsrc_list_dtors();
zend_hash_destroy(GLOBAL_FUNCTION_TABLE);
2001-12-26 11:18:00 +00:00
zend_hash_destroy(GLOBAL_CLASS_TABLE);
zend_hash_destroy(GLOBAL_AUTO_GLOBALS_TABLE);
free(GLOBAL_AUTO_GLOBALS_TABLE);
2001-07-31 04:53:54 +00:00
zend_shutdown_extensions(TSRMLS_C);
1999-04-07 18:10:10 +00:00
free(zend_version_info);
zend_shutdown_constants(TSRMLS_C);
#ifdef ZTS
zend_hash_destroy(GLOBAL_CONSTANTS_TABLE);
#endif
1999-04-07 18:10:10 +00:00
}
void zend_set_utility_values(zend_utility_values *utility_values)
{
zend_uv = *utility_values;
zend_uv.import_use_extension_length = strlen(zend_uv.import_use_extension);
}
1999-04-07 18:10:10 +00:00
/* this should be compatible with the standard zenderror */
void zenderror(char *error)
{
2003-09-22 04:21:44 +00:00
zend_error(E_PARSE, "%s", error);
1999-04-07 18:10:10 +00:00
}
BEGIN_EXTERN_C()
2001-07-21 16:21:22 +00:00
ZEND_API void _zend_bailout(char *filename, uint lineno)
1999-04-07 18:10:10 +00:00
{
TSRMLS_FETCH();
1999-04-07 18:10:10 +00:00
if (!EG(bailout_set)) {
2001-07-21 16:21:22 +00:00
zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!", filename, lineno);
exit(-1);
}
CG(unclean_shutdown) = 1;
CG(in_compilation) = EG(in_execution) = 0;
EG(current_execute_data) = NULL;
1999-04-07 18:10:10 +00:00
longjmp(EG(bailout), FAILURE);
}
END_EXTERN_C()
1999-04-07 18:10:10 +00:00
void zend_append_version_info(zend_extension *extension)
{
char *new_info;
uint new_info_length;
new_info_length = sizeof(" with v, by \n")
+ strlen(extension->name)
+ strlen(extension->version)
+ strlen(extension->copyright)
+ strlen(extension->author);
new_info = (char *) malloc(new_info_length+1);
sprintf(new_info, " with %s v%s, %s, by %s\n", extension->name, extension->version, extension->copyright, extension->author);
zend_version_info = (char *) realloc(zend_version_info, zend_version_info_length+new_info_length+1);
strcat(zend_version_info, new_info);
zend_version_info_length += new_info_length;
free(new_info);
}
ZEND_API char *get_zend_version()
{
return zend_version_info;
}
void zend_activate(TSRMLS_D)
{
init_compiler(TSRMLS_C);
init_executor(TSRMLS_C);
startup_scanner(TSRMLS_C);
}
2001-07-31 04:53:54 +00:00
void zend_activate_modules(TSRMLS_D)
{
2001-07-31 04:53:54 +00:00
zend_hash_apply(&module_registry, (apply_func_t) module_registry_request_startup TSRMLS_CC);
}
void zend_deactivate_modules(TSRMLS_D)
{
EG(opline_ptr) = NULL; /* we're no longer executing anything */
zend_try {
2001-07-31 04:53:54 +00:00
zend_hash_apply(&module_registry, (apply_func_t) module_registry_cleanup TSRMLS_CC);
} zend_end_try();
}
void zend_deactivate(TSRMLS_D)
{
/* we're no longer executing anything */
EG(opline_ptr) = NULL;
EG(active_symbol_table) = NULL;
zend_try {
shutdown_scanner(TSRMLS_C);
} zend_end_try();
/* shutdown_executor() takes care of its own bailout handling */
shutdown_executor(TSRMLS_C);
zend_try {
shutdown_compiler(TSRMLS_C);
} zend_end_try();
zend_try {
zend_ini_deactivate(TSRMLS_C);
} zend_end_try();
}
2000-03-05 19:50:10 +00:00
static int exec_done_cb(zend_module_entry *module TSRMLS_DC)
{
if (module->exec_finished_func) {
module->exec_finished_func();
}
return 0;
}
void zend_exec_finished(TSRMLS_D)
{
zend_hash_apply(&module_registry, (apply_func_t) exec_done_cb TSRMLS_CC);
}
2000-03-06 10:46:40 +00:00
BEGIN_EXTERN_C()
2000-03-05 19:50:10 +00:00
ZEND_API void zend_message_dispatcher(long message, void *data)
{
if (zend_message_dispatcher_p) {
zend_message_dispatcher_p(message, data);
}
}
2000-03-06 10:46:40 +00:00
END_EXTERN_C()
2000-03-05 19:50:10 +00:00
ZEND_API int zend_get_configuration_directive(char *name, uint name_length, zval *contents)
2000-03-05 19:50:10 +00:00
{
if (zend_get_configuration_directive_p) {
return zend_get_configuration_directive_p(name, name_length, contents);
2000-03-05 19:50:10 +00:00
} else {
return FAILURE;
}
}
ZEND_API void zend_error(int type, const char *format, ...)
{
va_list args;
zval ***params;
zval *retval;
2000-06-29 15:07:59 +00:00
zval *z_error_type, *z_error_message, *z_error_filename, *z_error_lineno, *z_context;
2003-09-14 19:56:37 +00:00
zval lz_context;
char *error_filename;
uint error_lineno;
2000-06-28 22:08:47 +00:00
zval *orig_user_error_handler;
TSRMLS_FETCH();
/* Obtain relevant filename and lineno */
switch (type) {
case E_CORE_ERROR:
case E_CORE_WARNING:
error_filename = NULL;
error_lineno = 0;
break;
case E_PARSE:
case E_COMPILE_ERROR:
case E_COMPILE_WARNING:
case E_ERROR:
case E_NOTICE:
case E_WARNING:
case E_USER_ERROR:
case E_USER_WARNING:
case E_USER_NOTICE:
2001-07-30 07:43:02 +00:00
if (zend_is_compiling(TSRMLS_C)) {
error_filename = zend_get_compiled_filename(TSRMLS_C);
error_lineno = zend_get_compiled_lineno(TSRMLS_C);
2001-07-30 07:43:02 +00:00
} else if (zend_is_executing(TSRMLS_C)) {
error_filename = zend_get_executed_filename(TSRMLS_C);
error_lineno = zend_get_executed_lineno(TSRMLS_C);
} else {
error_filename = NULL;
error_lineno = 0;
}
break;
default:
error_filename = NULL;
error_lineno = 0;
break;
}
if (!error_filename) {
error_filename = "Unknown";
}
va_start(args, format);
/* if we don't have a user defined error handler */
if (!EG(user_error_handler)) {
zend_error_cb(type, error_filename, error_lineno, format, args);
} else switch (type) {
case E_ERROR:
case E_PARSE:
case E_CORE_ERROR:
case E_CORE_WARNING:
case E_COMPILE_ERROR:
case E_COMPILE_WARNING:
/* The error may not be safe to handle in user-space */
zend_error_cb(type, error_filename, error_lineno, format, args);
break;
default:
/* Handle the error in user space */
2000-06-29 15:07:59 +00:00
ALLOC_INIT_ZVAL(z_error_message);
ALLOC_INIT_ZVAL(z_error_type);
2000-06-28 22:08:47 +00:00
ALLOC_INIT_ZVAL(z_error_filename);
ALLOC_INIT_ZVAL(z_error_lineno);
z_error_message->value.str.len = zend_vspprintf(&z_error_message->value.str.val, 0, format, args);
2000-06-29 15:07:59 +00:00
z_error_message->type = IS_STRING;
2000-06-29 15:07:59 +00:00
z_error_type->value.lval = type;
z_error_type->type = IS_LONG;
2000-06-28 22:08:47 +00:00
if (error_filename) {
z_error_filename->value.str.len = strlen(error_filename);
z_error_filename->value.str.val = estrndup(error_filename, z_error_filename->value.str.len);
z_error_filename->type = IS_STRING;
}
2000-06-28 22:08:47 +00:00
z_error_lineno->value.lval = error_lineno;
z_error_lineno->type = IS_LONG;
2003-09-14 19:56:37 +00:00
lz_context.value.ht = EG(active_symbol_table);
lz_context.type = IS_ARRAY;
lz_context.is_ref = 1;
lz_context.refcount = 2; /* we don't want this one to be freed */
z_context = &lz_context;
2000-06-29 15:07:59 +00:00
params = (zval ***) emalloc(sizeof(zval **)*5);
params[0] = &z_error_type;
params[1] = &z_error_message;
2000-06-28 22:08:47 +00:00
params[2] = &z_error_filename;
params[3] = &z_error_lineno;
2000-06-29 15:07:59 +00:00
params[4] = &z_context;
2000-06-28 22:08:47 +00:00
orig_user_error_handler = EG(user_error_handler);
EG(user_error_handler) = NULL;
2001-07-30 07:43:02 +00:00
if (call_user_function_ex(CG(function_table), NULL, orig_user_error_handler, &retval, 5, params, 1, NULL TSRMLS_CC)==SUCCESS) {
2002-11-24 20:15:56 +00:00
if (retval) {
zval_ptr_dtor(&retval);
}
} else {
/* The user error handler failed, use built-in error handler */
zend_error_cb(type, error_filename, error_lineno, format, args);
}
2000-06-28 22:08:47 +00:00
EG(user_error_handler) = orig_user_error_handler;
efree(params);
2000-06-29 15:07:59 +00:00
zval_ptr_dtor(&z_error_message);
zval_ptr_dtor(&z_error_type);
2000-06-28 22:08:47 +00:00
zval_ptr_dtor(&z_error_filename);
zval_ptr_dtor(&z_error_lineno);
2003-09-14 19:56:37 +00:00
ZVAL_DELREF(z_context);
break;
}
va_end(args);
if (type == E_PARSE) {
EG(exit_status) = 255;
zend_init_compiler_data_structures(TSRMLS_C);
}
}
ZEND_API void zend_output_debug_string(zend_bool trigger_break, char *format, ...)
{
#if ZEND_DEBUG
va_list args;
va_start(args, format);
2000-06-03 07:34:20 +00:00
# ifdef ZEND_WIN32
{
char output_buf[1024];
vsnprintf(output_buf, 1024, format, args);
OutputDebugString(output_buf);
OutputDebugString("\n");
if (trigger_break && IsDebuggerPresent()) {
DebugBreak();
}
}
# else
vfprintf(stderr, format, args);
fprintf(stderr, "\n");
# endif
va_end(args);
#endif
}
2001-08-31 13:11:52 +00:00
ZEND_API int zend_execute_scripts(int type TSRMLS_DC, zval **retval, int file_count, ...)
{
va_list files;
int i;
zend_file_handle *file_handle;
2001-05-07 11:08:18 +00:00
zend_op_array *orig_op_array = EG(active_op_array);
zval *local_retval=NULL;
va_start(files, file_count);
for (i=0; i<file_count; i++) {
file_handle = va_arg(files, zend_file_handle *);
if (!file_handle) {
continue;
}
EG(active_op_array) = zend_compile_file(file_handle, ZEND_INCLUDE TSRMLS_CC);
zend_destroy_file_handle(file_handle TSRMLS_CC);
if (EG(active_op_array)) {
EG(return_value_ptr_ptr) = retval ? retval : &local_retval;
zend_execute(EG(active_op_array) TSRMLS_CC);
2001-12-08 20:58:20 +00:00
if (EG(exception)) {
char ex_class_name[128];
if (Z_TYPE_P(EG(exception)) == IS_OBJECT) {
2003-03-31 07:34:05 +00:00
strncpy(ex_class_name, Z_OBJ_CLASS_NAME_P(EG(exception)), 127);
ex_class_name[127] = '\0';
} else {
strcpy(ex_class_name, "Unknown Exception");
}
#if 1 /* support set_exception_handler() */
if (EG(user_exception_handler)) {
zval *orig_user_exception_handler;
zval ***params, *retval2, *old_exception;
params = (zval ***)emalloc(sizeof(zval **));
old_exception = EG(exception);
EG(exception) = NULL;
params[0] = &old_exception;
orig_user_exception_handler = EG(user_exception_handler);
if (call_user_function_ex(CG(function_table), NULL, orig_user_exception_handler, &retval2, 1, params, 1, NULL TSRMLS_CC) == SUCCESS) {
if (retval2 != NULL) {
zval_ptr_dtor(&retval2);
}
} else {
zend_exception_error(EG(exception) TSRMLS_CC);
zval_ptr_dtor(&EG(exception));
EG(exception) = NULL;
}
2002-08-16 07:11:37 +00:00
efree(params);
zval_ptr_dtor(&old_exception);
if (EG(exception)) {
zval_ptr_dtor(&EG(exception));
EG(exception) = NULL;
}
} else {
zend_exception_error(EG(exception) TSRMLS_CC);
zval_ptr_dtor(&EG(exception));
EG(exception) = NULL;
}
if (retval == NULL && *EG(return_value_ptr_ptr) != NULL) {
2002-08-16 07:11:37 +00:00
zval_ptr_dtor(EG(return_value_ptr_ptr));
local_retval = NULL;
}
#else
zend_exception_error(EG(exception) TSRMLS_CC);
2001-12-08 20:58:20 +00:00
zval_ptr_dtor(&EG(exception));
2003-09-01 13:05:50 +00:00
EG(exception) = NULL;
#endif
2001-12-08 20:58:20 +00:00
} else if (!retval) {
zval_ptr_dtor(EG(return_value_ptr_ptr));
local_retval = NULL;
2001-08-31 13:11:52 +00:00
}
destroy_op_array(EG(active_op_array) TSRMLS_CC);
efree(EG(active_op_array));
} else if (type==ZEND_REQUIRE) {
va_end(files);
2001-05-07 11:08:18 +00:00
EG(active_op_array) = orig_op_array;
return FAILURE;
}
}
va_end(files);
2001-05-07 11:08:18 +00:00
EG(active_op_array) = orig_op_array;
return SUCCESS;
}
#define COMPILED_STRING_DESCRIPTION_FORMAT "%s(%d) : %s"
ZEND_API char *zend_make_compiled_string_description(char *name TSRMLS_DC)
{
char *cur_filename;
int cur_lineno;
char *compiled_string_description;
2001-07-30 07:43:02 +00:00
if (zend_is_compiling(TSRMLS_C)) {
cur_filename = zend_get_compiled_filename(TSRMLS_C);
cur_lineno = zend_get_compiled_lineno(TSRMLS_C);
2001-07-30 07:43:02 +00:00
} else if (zend_is_executing(TSRMLS_C)) {
cur_filename = zend_get_executed_filename(TSRMLS_C);
cur_lineno = zend_get_executed_lineno(TSRMLS_C);
} else {
cur_filename = "Unknown";
cur_lineno = 0;
}
compiled_string_description = emalloc(sizeof(COMPILED_STRING_DESCRIPTION_FORMAT)+strlen(name)+strlen(cur_filename)+MAX_LENGTH_OF_LONG);
sprintf(compiled_string_description, COMPILED_STRING_DESCRIPTION_FORMAT, cur_filename, cur_lineno, name);
return compiled_string_description;
}
2001-01-15 10:52:06 +00:00
void free_estring(char **str_p)
{
efree(*str_p);
}
2002-08-16 10:12:17 +00:00
2003-02-10 16:11:24 +00:00
2002-08-16 10:12:17 +00:00
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* indent-tabs-mode: t
* End:
*/