1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2002-01-06 23:21:36 +08:00
|
|
|
| Copyright (c) 1998-2002 Zend Technologies Ltd. (http://www.zend.com) |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:16:21 +08:00
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
1999-07-16 22:58:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
2001-12-11 23:16:21 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
1999-07-16 22:58:16 +08: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-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
1999-07-16 22:58:16 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_compile.h"
|
|
|
|
#include "zend_execute.h"
|
|
|
|
#include "zend_API.h"
|
|
|
|
#include "zend_ptr_stack.h"
|
|
|
|
#include "zend_constants.h"
|
|
|
|
#include "zend_extensions.h"
|
2001-05-30 16:23:15 +08:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
2000-06-16 10:49:21 +08:00
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
2001-07-27 18:10:39 +08:00
|
|
|
ZEND_API void (*zend_execute)(zend_op_array *op_array TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2000-06-16 09:54:56 +08:00
|
|
|
#ifdef ZEND_WIN32
|
2000-06-16 22:27:28 +08:00
|
|
|
#include <process.h>
|
2000-06-16 09:54:56 +08:00
|
|
|
/* true global */
|
|
|
|
static WNDCLASS wc;
|
2000-06-16 22:27:28 +08:00
|
|
|
static HWND timeout_window;
|
|
|
|
static HANDLE timeout_thread_event;
|
|
|
|
static DWORD timeout_thread_id;
|
|
|
|
static int timeout_thread_initialized=0;
|
2000-06-16 09:54:56 +08:00
|
|
|
#endif
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-07-09 15:35:13 +08:00
|
|
|
#if ZEND_DEBUG
|
1999-04-08 02:10:10 +08:00
|
|
|
static void (*original_sigsegv_handler)(int);
|
|
|
|
static void zend_handle_sigsegv(int dummy)
|
|
|
|
{
|
|
|
|
fflush(stdout);
|
1999-05-22 19:20:56 +08:00
|
|
|
fflush(stderr);
|
1999-07-09 15:35:13 +08:00
|
|
|
if (original_sigsegv_handler==zend_handle_sigsegv) {
|
|
|
|
signal(SIGSEGV, original_sigsegv_handler);
|
|
|
|
} else {
|
|
|
|
signal(SIGSEGV, SIG_DFL);
|
|
|
|
}
|
1999-05-23 00:10:51 +08:00
|
|
|
{
|
2001-07-27 18:10:39 +08:00
|
|
|
TSRMLS_FETCH();
|
1999-05-23 00:10:51 +08:00
|
|
|
|
|
|
|
fprintf(stderr, "SIGSEGV caught on opcode %d on opline %d of %s() at %s:%d\n\n",
|
|
|
|
active_opline->opcode,
|
|
|
|
active_opline-EG(active_op_array)->opcodes,
|
2001-07-30 15:43:02 +08:00
|
|
|
get_active_function_name(TSRMLS_C),
|
2001-07-27 18:10:39 +08:00
|
|
|
zend_get_executed_filename(TSRMLS_C),
|
|
|
|
zend_get_executed_lineno(TSRMLS_C));
|
1999-05-23 00:10:51 +08:00
|
|
|
}
|
1999-07-09 15:35:13 +08:00
|
|
|
if (original_sigsegv_handler!=zend_handle_sigsegv) {
|
|
|
|
original_sigsegv_handler(dummy);
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
1999-07-09 15:35:13 +08:00
|
|
|
#endif
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
2001-07-31 12:53:54 +08:00
|
|
|
static void zend_extension_activator(zend_extension *extension TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
if (extension->activate) {
|
|
|
|
extension->activate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-31 12:53:54 +08:00
|
|
|
static void zend_extension_deactivator(zend_extension *extension TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
if (extension->deactivate) {
|
|
|
|
extension->deactivate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-31 12:53:54 +08:00
|
|
|
static int is_not_internal_function(zend_function *function TSRMLS_DC)
|
2000-06-05 06:09:16 +08:00
|
|
|
{
|
2001-08-02 15:00:43 +08:00
|
|
|
if (function->type == ZEND_INTERNAL_FUNCTION) {
|
2001-10-23 09:23:36 +08:00
|
|
|
return EG(full_tables_cleanup) ? 0 : ZEND_HASH_APPLY_STOP;
|
2001-08-02 15:00:43 +08:00
|
|
|
} else {
|
2001-10-23 09:23:36 +08:00
|
|
|
return EG(full_tables_cleanup) ? 1 : ZEND_HASH_APPLY_REMOVE;
|
2001-08-02 15:00:43 +08:00
|
|
|
}
|
2000-06-05 06:09:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-12 18:08:47 +08:00
|
|
|
static int is_not_internal_class(zend_class_entry **ce TSRMLS_DC)
|
2000-06-05 06:09:16 +08:00
|
|
|
{
|
2002-03-12 18:08:47 +08:00
|
|
|
if ((*ce)->type == ZEND_INTERNAL_CLASS) {
|
2001-10-23 09:23:36 +08:00
|
|
|
return EG(full_tables_cleanup) ? 0 : ZEND_HASH_APPLY_STOP;
|
2001-08-02 15:00:43 +08:00
|
|
|
} else {
|
2001-10-23 09:23:36 +08:00
|
|
|
return EG(full_tables_cleanup) ? 1 : ZEND_HASH_APPLY_REMOVE;
|
2001-08-02 15:00:43 +08:00
|
|
|
}
|
2000-06-05 06:09:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void init_executor(TSRMLS_D)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
1999-12-19 14:39:17 +08:00
|
|
|
INIT_ZVAL(EG(uninitialized_zval));
|
|
|
|
INIT_ZVAL(EG(error_zval));
|
1999-04-08 02:10:10 +08:00
|
|
|
EG(uninitialized_zval_ptr)=&EG(uninitialized_zval);
|
|
|
|
EG(error_zval_ptr)=&EG(error_zval);
|
|
|
|
zend_ptr_stack_init(&EG(arg_types_stack));
|
1999-07-15 20:17:34 +08:00
|
|
|
/* destroys stack frame, therefore makes core dumps worthless */
|
1999-12-20 02:54:40 +08:00
|
|
|
#if 0&&ZEND_DEBUG
|
1999-04-08 02:10:10 +08:00
|
|
|
original_sigsegv_handler = signal(SIGSEGV, zend_handle_sigsegv);
|
1999-07-15 20:17:34 +08:00
|
|
|
#endif
|
2001-09-10 08:07:32 +08:00
|
|
|
EG(return_value_ptr_ptr) = NULL;
|
1999-12-19 14:39:17 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
EG(symtable_cache_ptr) = EG(symtable_cache)-1;
|
|
|
|
EG(symtable_cache_limit)=EG(symtable_cache)+SYMTABLE_CACHE_SIZE-1;
|
|
|
|
EG(no_extensions)=0;
|
|
|
|
|
|
|
|
EG(function_table) = CG(function_table);
|
|
|
|
EG(class_table) = CG(class_table);
|
|
|
|
|
2000-02-04 22:45:58 +08:00
|
|
|
EG(in_execution) = 0;
|
|
|
|
|
1999-04-13 02:29:09 +08:00
|
|
|
zend_ptr_stack_init(&EG(argument_stack));
|
|
|
|
|
1999-12-22 01:14:31 +08:00
|
|
|
zend_hash_init(&EG(symbol_table), 50, NULL, ZVAL_PTR_DTOR, 0);
|
2002-01-21 04:42:15 +08:00
|
|
|
{
|
|
|
|
zval *globals;
|
|
|
|
|
|
|
|
ALLOC_ZVAL(globals);
|
|
|
|
globals->refcount=1;
|
|
|
|
globals->is_ref=1;
|
|
|
|
globals->type = IS_ARRAY;
|
|
|
|
globals->value.ht = &EG(symbol_table);
|
|
|
|
zend_hash_update(&EG(symbol_table), "GLOBALS", sizeof("GLOBALS"), &globals, sizeof(zval *), NULL);
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
EG(active_symbol_table) = &EG(symbol_table);
|
2001-12-14 00:55:04 +08:00
|
|
|
|
2001-07-31 12:53:54 +08:00
|
|
|
zend_llist_apply(&zend_extensions, (llist_apply_func_t) zend_extension_activator TSRMLS_CC);
|
1999-05-26 06:55:13 +08:00
|
|
|
EG(opline_ptr) = NULL;
|
1999-10-04 04:06:21 +08:00
|
|
|
EG(garbage_ptr) = 0;
|
1999-12-01 04:15:04 +08:00
|
|
|
|
2000-03-11 00:36:30 +08:00
|
|
|
zend_hash_init(&EG(included_files), 5, NULL, NULL, 0);
|
2000-01-25 03:00:30 +08:00
|
|
|
|
|
|
|
EG(ticks_count) = 0;
|
2000-04-19 23:08:06 +08:00
|
|
|
|
|
|
|
EG(user_error_handler) = NULL;
|
2000-06-16 22:27:28 +08:00
|
|
|
|
2000-06-18 02:04:58 +08:00
|
|
|
zend_ptr_stack_init(&EG(user_error_handlers));
|
2002-08-16 08:41:37 +08:00
|
|
|
zend_ptr_stack_init(&EG(user_exception_handlers));
|
2000-06-18 02:04:58 +08:00
|
|
|
|
2000-06-30 19:45:32 +08:00
|
|
|
EG(orig_error_reporting) = EG(error_reporting);
|
2002-05-31 20:09:19 +08:00
|
|
|
zend_objects_store_init(&EG(objects_store), 1024);
|
2001-10-26 22:13:42 +08:00
|
|
|
|
|
|
|
EG(full_tables_cleanup) = 0;
|
2000-06-16 22:27:28 +08:00
|
|
|
#ifdef ZEND_WIN32
|
|
|
|
EG(timed_out) = 0;
|
|
|
|
#endif
|
2001-08-30 23:26:30 +08:00
|
|
|
|
|
|
|
EG(exception) = NULL;
|
2001-12-07 01:47:04 +08:00
|
|
|
|
2002-03-01 22:27:26 +08:00
|
|
|
EG(scope) = NULL;
|
2001-12-14 00:55:04 +08:00
|
|
|
|
|
|
|
EG(main_class_ptr) = &CG(main_class);
|
|
|
|
CG(main_class).static_members = &EG(symbol_table);
|
|
|
|
|
2002-05-03 01:20:48 +08:00
|
|
|
EG(current_execute_data) = NULL;
|
|
|
|
|
2002-03-01 22:27:26 +08:00
|
|
|
EG(This) = NULL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-27 18:10:39 +08:00
|
|
|
void shutdown_executor(TSRMLS_D)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2001-07-21 22:25:27 +08:00
|
|
|
zend_try {
|
2002-05-31 20:09:19 +08:00
|
|
|
zend_objects_store_call_destructors(&EG(objects_store) TSRMLS_CC);
|
2002-01-25 20:55:03 +08:00
|
|
|
|
2001-07-20 22:20:34 +08:00
|
|
|
zend_ptr_stack_destroy(&EG(arg_types_stack));
|
|
|
|
|
|
|
|
while (EG(symtable_cache_ptr)>=EG(symtable_cache)) {
|
|
|
|
zend_hash_destroy(*EG(symtable_cache_ptr));
|
|
|
|
efree(*EG(symtable_cache_ptr));
|
|
|
|
EG(symtable_cache_ptr)--;
|
|
|
|
}
|
2001-07-31 12:53:54 +08:00
|
|
|
zend_llist_apply(&zend_extensions, (llist_apply_func_t) zend_extension_deactivator TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-20 22:20:34 +08:00
|
|
|
zend_hash_destroy(&EG(symbol_table));
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-20 22:20:34 +08:00
|
|
|
while (EG(garbage_ptr)--) {
|
|
|
|
if (EG(garbage)[EG(garbage_ptr)]->refcount==1) {
|
|
|
|
zval_ptr_dtor(&EG(garbage)[EG(garbage_ptr)]);
|
|
|
|
}
|
2000-02-01 19:41:15 +08:00
|
|
|
}
|
|
|
|
|
2001-07-20 22:20:34 +08:00
|
|
|
zend_ptr_stack_destroy(&EG(argument_stack));
|
2000-06-05 06:09:16 +08:00
|
|
|
|
2001-07-20 22:20:34 +08:00
|
|
|
/* Destroy all op arrays */
|
2001-10-26 22:13:42 +08:00
|
|
|
if (EG(full_tables_cleanup)) {
|
2001-10-23 09:23:36 +08:00
|
|
|
zend_hash_apply(EG(function_table), (apply_func_t) is_not_internal_function TSRMLS_CC);
|
|
|
|
zend_hash_apply(EG(class_table), (apply_func_t) is_not_internal_class TSRMLS_CC);
|
|
|
|
} else {
|
|
|
|
zend_hash_reverse_apply(EG(function_table), (apply_func_t) is_not_internal_function TSRMLS_CC);
|
|
|
|
zend_hash_reverse_apply(EG(class_table), (apply_func_t) is_not_internal_class TSRMLS_CC);
|
|
|
|
}
|
2001-07-21 22:25:27 +08:00
|
|
|
} zend_end_try();
|
2000-06-05 06:09:16 +08:00
|
|
|
|
2001-08-02 14:16:20 +08:00
|
|
|
/* The regular list must be destroyed after the main symbol table and
|
|
|
|
* op arrays are destroyed.
|
|
|
|
*/
|
|
|
|
zend_destroy_rsrc_list(&EG(regular_list) TSRMLS_CC);
|
2000-06-05 06:09:16 +08:00
|
|
|
|
2001-07-21 22:25:27 +08:00
|
|
|
zend_try {
|
2001-07-30 15:43:02 +08:00
|
|
|
clean_non_persistent_constants(TSRMLS_C);
|
1999-07-09 15:35:13 +08:00
|
|
|
#if ZEND_DEBUG
|
|
|
|
signal(SIGSEGV, original_sigsegv_handler);
|
|
|
|
#endif
|
2000-02-01 19:41:15 +08:00
|
|
|
|
2001-07-20 22:20:34 +08:00
|
|
|
zend_hash_destroy(&EG(included_files));
|
2000-04-19 23:08:06 +08:00
|
|
|
|
2001-07-20 22:20:34 +08:00
|
|
|
if (EG(user_error_handler)) {
|
|
|
|
zval_dtor(EG(user_error_handler));
|
|
|
|
FREE_ZVAL(EG(user_error_handler));
|
|
|
|
}
|
2000-06-18 02:04:58 +08:00
|
|
|
|
2002-08-16 08:41:37 +08:00
|
|
|
if (EG(user_exception_handler)) {
|
|
|
|
zval_dtor(EG(user_exception_handler));
|
|
|
|
FREE_ZVAL(EG(user_exception_handler));
|
|
|
|
}
|
|
|
|
|
2001-07-20 22:20:34 +08:00
|
|
|
zend_ptr_stack_clean(&EG(user_error_handlers), ZVAL_DESTRUCTOR, 1);
|
|
|
|
zend_ptr_stack_destroy(&EG(user_error_handlers));
|
2000-06-30 19:45:32 +08:00
|
|
|
|
2002-08-16 08:41:37 +08:00
|
|
|
zend_ptr_stack_clean(&EG(user_exception_handlers), ZVAL_DESTRUCTOR, 1);
|
|
|
|
zend_ptr_stack_destroy(&EG(user_exception_handlers));
|
|
|
|
|
2001-07-20 22:20:34 +08:00
|
|
|
EG(error_reporting) = EG(orig_error_reporting);
|
2002-05-31 20:09:19 +08:00
|
|
|
zend_objects_store_destroy(&EG(objects_store));
|
2001-07-21 22:25:27 +08:00
|
|
|
} zend_end_try();
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-30 15:43:02 +08:00
|
|
|
ZEND_API char *get_active_function_name(TSRMLS_D)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2002-04-21 04:14:14 +08:00
|
|
|
if (!zend_is_executing(TSRMLS_C)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
switch(EG(function_state_ptr)->function->type) {
|
|
|
|
case ZEND_USER_FUNCTION: {
|
|
|
|
char *function_name = ((zend_op_array *) EG(function_state_ptr)->function)->function_name;
|
|
|
|
|
|
|
|
if (function_name) {
|
|
|
|
return function_name;
|
|
|
|
} else {
|
|
|
|
return "main";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ZEND_INTERNAL_FUNCTION:
|
|
|
|
return ((zend_internal_function *) EG(function_state_ptr)->function)->function_name;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-27 18:10:39 +08:00
|
|
|
ZEND_API char *zend_get_executed_filename(TSRMLS_D)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2000-08-10 03:22:35 +08:00
|
|
|
if (EG(active_op_array)) {
|
|
|
|
return EG(active_op_array)->filename;
|
1999-05-26 06:55:13 +08:00
|
|
|
} else {
|
|
|
|
return "[no active file]";
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-27 18:10:39 +08:00
|
|
|
ZEND_API uint zend_get_executed_lineno(TSRMLS_D)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
1999-05-26 06:55:13 +08:00
|
|
|
if (EG(opline_ptr)) {
|
|
|
|
return active_opline->lineno;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-30 15:43:02 +08:00
|
|
|
ZEND_API zend_bool zend_is_executing(TSRMLS_D)
|
2000-02-04 22:45:58 +08:00
|
|
|
{
|
|
|
|
return EG(in_execution);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-18 01:33:37 +08:00
|
|
|
ZEND_API void _zval_ptr_dtor(zval **zval_ptr ZEND_FILE_LINE_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
#if DEBUG_ZEND>=2
|
|
|
|
printf("Reducing refcount for %x (%x): %d->%d\n", *zval_ptr, zval_ptr, (*zval_ptr)->refcount, (*zval_ptr)->refcount-1);
|
|
|
|
#endif
|
|
|
|
(*zval_ptr)->refcount--;
|
|
|
|
if ((*zval_ptr)->refcount==0) {
|
|
|
|
zval_dtor(*zval_ptr);
|
|
|
|
safe_free_zval_ptr(*zval_ptr);
|
2001-08-07 11:17:33 +08:00
|
|
|
} else if ((*zval_ptr)->refcount == 1) {
|
2000-01-26 13:03:22 +08:00
|
|
|
(*zval_ptr)->is_ref = 0;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
2000-01-26 13:03:22 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
ZEND_API int zend_is_true(zval *op)
|
|
|
|
{
|
|
|
|
return i_zend_is_true(op);
|
|
|
|
}
|
|
|
|
|
2001-12-01 00:29:47 +08:00
|
|
|
#include "../TSRM/tsrm_strtok_r.h"
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-31 12:53:54 +08:00
|
|
|
ZEND_API int zval_update_constant(zval **pp, void *arg TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
1999-11-22 02:11:10 +08:00
|
|
|
zval *p = *pp;
|
2000-06-08 14:07:38 +08:00
|
|
|
zend_bool inline_change = (zend_bool) (unsigned long) arg;
|
2001-07-16 19:41:06 +08:00
|
|
|
zval const_value;
|
1999-11-22 02:11:10 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
if (p->type == IS_CONSTANT) {
|
2000-04-27 06:10:06 +08:00
|
|
|
int refcount;
|
|
|
|
|
|
|
|
SEPARATE_ZVAL(pp);
|
|
|
|
p = *pp;
|
|
|
|
|
|
|
|
refcount = p->refcount;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-12-01 00:29:47 +08:00
|
|
|
if (strchr(p->value.str.val, ':')) {
|
|
|
|
char *cur, *temp;
|
|
|
|
char *last;
|
2002-06-17 02:25:05 +08:00
|
|
|
zend_class_entry **ce;
|
2001-12-01 00:29:47 +08:00
|
|
|
zval **value;
|
|
|
|
|
|
|
|
last = tsrm_strtok_r(p->value.str.val, ":", &temp);
|
|
|
|
|
2002-06-17 02:25:05 +08:00
|
|
|
if (zend_lookup_class(last, strlen(last), &ce TSRMLS_CC) == FAILURE) {
|
2002-06-30 00:01:40 +08:00
|
|
|
zend_error(E_ERROR, "Undefined class '%s'", last);
|
2000-06-01 03:07:09 +08:00
|
|
|
}
|
2001-12-22 23:31:44 +08:00
|
|
|
|
|
|
|
last = tsrm_strtok_r(NULL, ":", &temp);
|
2001-12-01 00:29:47 +08:00
|
|
|
|
|
|
|
for(;;) {
|
|
|
|
cur = tsrm_strtok_r(NULL, ":", &temp);
|
|
|
|
if (!cur) {
|
|
|
|
break;
|
|
|
|
}
|
2002-06-17 02:25:05 +08:00
|
|
|
if (zend_hash_find(&(*ce)->class_table, last, strlen(last)+1, (void **)&ce) == FAILURE) {
|
2002-06-30 00:01:40 +08:00
|
|
|
zend_error(E_ERROR, "Undefined sub-class '%s'", last);
|
2001-12-01 00:29:47 +08:00
|
|
|
}
|
|
|
|
last = cur;
|
|
|
|
}
|
2002-06-17 02:25:05 +08:00
|
|
|
if (zend_hash_find(&(*ce)->constants_table, last, strlen(last)+1, (void **) &value) == FAILURE) {
|
2002-06-30 00:01:40 +08:00
|
|
|
zend_error(E_ERROR, "Undefined class constant '%s'", last);
|
2001-12-01 00:29:47 +08:00
|
|
|
}
|
|
|
|
const_value = **value;
|
|
|
|
zval_copy_ctor(&const_value);
|
2000-06-01 03:07:09 +08:00
|
|
|
if (inline_change) {
|
|
|
|
STR_FREE(p->value.str.val);
|
|
|
|
}
|
2001-07-16 19:41:06 +08:00
|
|
|
*p = const_value;
|
2001-12-01 00:29:47 +08:00
|
|
|
} else {
|
|
|
|
if (!zend_get_constant(p->value.str.val, p->value.str.len, &const_value TSRMLS_CC)) {
|
|
|
|
zend_error(E_NOTICE, "Use of undefined constant %s - assumed '%s'",
|
|
|
|
p->value.str.val,
|
|
|
|
p->value.str.val);
|
|
|
|
p->type = IS_STRING;
|
|
|
|
if (!inline_change) {
|
|
|
|
zval_copy_ctor(p);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (inline_change) {
|
|
|
|
STR_FREE(p->value.str.val);
|
|
|
|
}
|
|
|
|
*p = const_value;
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
1999-07-10 04:43:59 +08:00
|
|
|
INIT_PZVAL(p);
|
1999-08-18 06:31:45 +08:00
|
|
|
p->refcount = refcount;
|
2000-06-01 03:07:09 +08:00
|
|
|
} else if (p->type == IS_CONSTANT_ARRAY) {
|
2001-07-16 19:41:06 +08:00
|
|
|
zval **element;
|
|
|
|
char *str_index;
|
2001-08-21 20:29:12 +08:00
|
|
|
uint str_index_len;
|
|
|
|
ulong num_index;
|
2001-07-16 19:41:06 +08:00
|
|
|
|
2000-04-27 06:10:06 +08:00
|
|
|
SEPARATE_ZVAL(pp);
|
|
|
|
p = *pp;
|
2000-06-01 03:07:09 +08:00
|
|
|
p->type = IS_ARRAY;
|
2001-07-16 19:41:06 +08:00
|
|
|
|
|
|
|
/* First go over the array and see if there are any constant indices */
|
|
|
|
zend_hash_internal_pointer_reset(p->value.ht);
|
|
|
|
while (zend_hash_get_current_data(p->value.ht, (void **) &element)==SUCCESS) {
|
|
|
|
if (!(Z_TYPE_PP(element) & IS_CONSTANT_INDEX)) {
|
|
|
|
zend_hash_move_forward(p->value.ht);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Z_TYPE_PP(element) &= ~IS_CONSTANT_INDEX;
|
|
|
|
if (zend_hash_get_current_key_ex(p->value.ht, &str_index, &str_index_len, &num_index, 0, NULL)!=HASH_KEY_IS_STRING) {
|
|
|
|
zend_hash_move_forward(p->value.ht);
|
|
|
|
continue;
|
|
|
|
}
|
2001-07-30 15:43:02 +08:00
|
|
|
if (!zend_get_constant(str_index, str_index_len-1, &const_value TSRMLS_CC)) {
|
2001-07-16 19:41:06 +08:00
|
|
|
zend_error(E_NOTICE, "Use of undefined constant %s - assumed '%s'", str_index, str_index);
|
|
|
|
zend_hash_move_forward(p->value.ht);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch (const_value.type) {
|
|
|
|
case IS_STRING:
|
|
|
|
zend_hash_update(p->value.ht, const_value.value.str.val, const_value.value.str.len+1, element, sizeof(zval *), NULL);
|
|
|
|
(*element)->refcount++;
|
|
|
|
break;
|
|
|
|
case IS_LONG:
|
|
|
|
zend_hash_index_update(p->value.ht, const_value.value.lval, element, sizeof(zval *), NULL);
|
|
|
|
(*element)->refcount++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
zend_hash_del(p->value.ht, str_index, str_index_len);
|
|
|
|
}
|
2001-07-31 12:53:54 +08:00
|
|
|
zend_hash_apply_with_argument(p->value.ht, (apply_func_arg_t) zval_update_constant, (void *) 1 TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
1999-11-22 02:11:10 +08:00
|
|
|
return 0;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-08-06 23:24:10 +08:00
|
|
|
|
2001-07-30 15:43:02 +08:00
|
|
|
int call_user_function(HashTable *function_table, zval **object_pp, zval *function_name, zval *retval_ptr, int param_count, zval *params[] TSRMLS_DC)
|
1999-08-06 23:24:10 +08:00
|
|
|
{
|
|
|
|
zval ***params_array = (zval ***) emalloc(sizeof(zval **)*param_count);
|
|
|
|
int i;
|
|
|
|
int ex_retval;
|
1999-12-20 02:54:40 +08:00
|
|
|
zval *local_retval_ptr;
|
1999-08-06 23:24:10 +08:00
|
|
|
|
|
|
|
for (i=0; i<param_count; i++) {
|
|
|
|
params_array[i] = ¶ms[i];
|
|
|
|
}
|
2001-07-30 15:43:02 +08:00
|
|
|
ex_retval = call_user_function_ex(function_table, object_pp, function_name, &local_retval_ptr, param_count, params_array, 1, NULL TSRMLS_CC);
|
1999-12-20 02:54:40 +08:00
|
|
|
if (local_retval_ptr) {
|
|
|
|
COPY_PZVAL_TO_ZVAL(*retval_ptr, local_retval_ptr);
|
|
|
|
} else {
|
|
|
|
INIT_ZVAL(*retval_ptr);
|
|
|
|
}
|
1999-08-06 23:24:10 +08:00
|
|
|
efree(params_array);
|
|
|
|
return ex_retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-30 15:43:02 +08:00
|
|
|
int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *function_name, zval **retval_ptr_ptr, int param_count, zval **params[], int no_separation, HashTable *symbol_table TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
int i;
|
1999-12-20 02:54:40 +08:00
|
|
|
zval **original_return_value;
|
1999-04-08 02:10:10 +08:00
|
|
|
HashTable *calling_symbol_table;
|
|
|
|
zend_function_state *original_function_state_ptr;
|
|
|
|
zend_op_array *original_op_array;
|
|
|
|
zend_op **original_opline_ptr;
|
2001-02-12 23:18:05 +08:00
|
|
|
int orig_free_op1, orig_free_op2;
|
|
|
|
int (*orig_unary_op)(zval *result, zval *op1);
|
2001-07-30 12:54:16 +08:00
|
|
|
int (*orig_binary_op)(zval *result, zval *op1, zval *op2 TSRMLS_DC);
|
2001-07-16 01:48:50 +08:00
|
|
|
zval function_name_copy;
|
2002-03-01 22:27:26 +08:00
|
|
|
zend_class_entry *current_scope;
|
|
|
|
zend_class_entry *calling_scope = NULL;
|
2002-01-05 23:18:30 +08:00
|
|
|
zval *current_this;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-08-23 21:50:42 +08:00
|
|
|
zend_execute_data execute_data;
|
|
|
|
|
|
|
|
/* Initialize execute_data */
|
|
|
|
EX(fbc) = NULL;
|
|
|
|
EX(object) = NULL;
|
|
|
|
EX(Ts) = NULL;
|
|
|
|
EX(op_array) = NULL;
|
2002-08-28 23:05:15 +08:00
|
|
|
EX(opline) = NULL;
|
2000-01-16 06:52:24 +08:00
|
|
|
*retval_ptr_ptr = NULL;
|
|
|
|
|
2000-06-03 11:28:08 +08:00
|
|
|
if (function_name->type==IS_ARRAY) { /* assume array($obj, $name) couple */
|
|
|
|
zval **tmp_object_ptr, **tmp_real_function_name;
|
|
|
|
|
|
|
|
if (zend_hash_index_find(function_name->value.ht, 0, (void **) &tmp_object_ptr)==FAILURE) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
if (zend_hash_index_find(function_name->value.ht, 1, (void **) &tmp_real_function_name)==FAILURE) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
function_name = *tmp_real_function_name;
|
2000-08-23 02:35:42 +08:00
|
|
|
SEPARATE_ZVAL_IF_NOT_REF(tmp_object_ptr);
|
2000-12-14 06:50:10 +08:00
|
|
|
object_pp = tmp_object_ptr;
|
|
|
|
(*object_pp)->is_ref = 1;
|
2000-06-03 11:28:08 +08:00
|
|
|
}
|
|
|
|
|
2000-12-24 08:29:14 +08:00
|
|
|
if (object_pp && !*object_pp) {
|
|
|
|
object_pp = NULL;
|
|
|
|
}
|
2002-02-07 22:08:43 +08:00
|
|
|
|
2000-12-14 06:50:10 +08:00
|
|
|
if (object_pp) {
|
2002-02-07 22:08:43 +08:00
|
|
|
/* TBI!! new object handlers */
|
2001-02-04 08:06:08 +08:00
|
|
|
if (Z_TYPE_PP(object_pp) == IS_OBJECT) {
|
2002-03-14 20:18:01 +08:00
|
|
|
if(!IS_ZEND_STD_OBJECT(**object_pp)) {
|
|
|
|
zend_error(E_WARNING, "Cannot use call_user_function on overloaded objects");
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
2001-08-07 11:17:33 +08:00
|
|
|
function_table = &Z_OBJCE_PP(object_pp)->function_table;
|
2002-08-23 21:50:42 +08:00
|
|
|
EX(object) = *object_pp;
|
2002-03-01 22:27:26 +08:00
|
|
|
calling_scope = Z_OBJCE_PP(object_pp);
|
2001-02-04 08:06:08 +08:00
|
|
|
} else if (Z_TYPE_PP(object_pp) == IS_STRING) {
|
2002-03-14 20:18:01 +08:00
|
|
|
zend_class_entry **ce;
|
2001-02-28 11:53:00 +08:00
|
|
|
char *lc_class;
|
|
|
|
int found;
|
|
|
|
|
|
|
|
lc_class = estrndup(Z_STRVAL_PP(object_pp), Z_STRLEN_PP(object_pp));
|
|
|
|
zend_str_tolower(lc_class, Z_STRLEN_PP(object_pp));
|
2002-06-17 02:25:05 +08:00
|
|
|
found = zend_lookup_class(lc_class, Z_STRLEN_PP(object_pp), &ce TSRMLS_CC);
|
2001-02-28 11:53:00 +08:00
|
|
|
efree(lc_class);
|
|
|
|
if (found == FAILURE)
|
2001-02-04 08:06:08 +08:00
|
|
|
return FAILURE;
|
|
|
|
|
2002-03-14 20:18:01 +08:00
|
|
|
function_table = &(*ce)->function_table;
|
|
|
|
calling_scope = *ce;
|
2001-02-04 08:06:08 +08:00
|
|
|
object_pp = NULL;
|
|
|
|
} else
|
1999-04-08 02:10:10 +08:00
|
|
|
return FAILURE;
|
|
|
|
}
|
2000-06-03 11:28:08 +08:00
|
|
|
|
|
|
|
if (function_name->type!=IS_STRING) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
2001-07-16 01:48:50 +08:00
|
|
|
function_name_copy = *function_name;
|
|
|
|
zval_copy_ctor(&function_name_copy);
|
|
|
|
zend_str_tolower(function_name_copy.value.str.val, function_name_copy.value.str.len);
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
original_function_state_ptr = EG(function_state_ptr);
|
2002-08-23 21:50:42 +08:00
|
|
|
if (zend_hash_find(function_table, function_name_copy.value.str.val, function_name_copy.value.str.len+1, (void **) &EX(function_state).function)==FAILURE) {
|
2001-07-16 01:48:50 +08:00
|
|
|
zval_dtor(&function_name_copy);
|
1999-04-08 02:10:10 +08:00
|
|
|
return FAILURE;
|
|
|
|
}
|
2001-07-16 01:48:50 +08:00
|
|
|
zval_dtor(&function_name_copy);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
for (i=0; i<param_count; i++) {
|
|
|
|
zval *param;
|
|
|
|
|
2002-08-23 21:50:42 +08:00
|
|
|
if (EX(function_state).function->common.arg_types
|
|
|
|
&& i<EX(function_state).function->common.arg_types[0]
|
|
|
|
&& EX(function_state).function->common.arg_types[i+1]==BYREF_FORCE
|
1999-08-06 23:24:10 +08:00
|
|
|
&& !PZVAL_IS_REF(*params[i])) {
|
|
|
|
if ((*params[i])->refcount>1) {
|
|
|
|
zval *new_zval;
|
|
|
|
|
|
|
|
if (no_separation) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
1999-12-27 05:21:33 +08:00
|
|
|
ALLOC_ZVAL(new_zval);
|
1999-08-06 23:24:10 +08:00
|
|
|
*new_zval = **params[i];
|
1999-08-07 05:43:49 +08:00
|
|
|
zval_copy_ctor(new_zval);
|
1999-08-06 23:24:10 +08:00
|
|
|
new_zval->refcount = 1;
|
|
|
|
(*params[i])->refcount--;
|
|
|
|
*params[i] = new_zval;
|
|
|
|
}
|
|
|
|
(*params[i])->refcount++;
|
1999-10-02 07:31:39 +08:00
|
|
|
(*params[i])->is_ref = 1;
|
1999-08-06 23:24:10 +08:00
|
|
|
param = *params[i];
|
|
|
|
} else if (*params[i] != &EG(uninitialized_zval)) {
|
|
|
|
(*params[i])->refcount++;
|
|
|
|
param = *params[i];
|
|
|
|
} else {
|
1999-12-27 05:21:33 +08:00
|
|
|
ALLOC_ZVAL(param);
|
1999-08-06 23:24:10 +08:00
|
|
|
*param = **(params[i]);
|
|
|
|
INIT_PZVAL(param);
|
|
|
|
}
|
1999-04-13 02:29:09 +08:00
|
|
|
zend_ptr_stack_push(&EG(argument_stack), param);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2000-03-27 02:40:24 +08:00
|
|
|
zend_ptr_stack_n_push(&EG(argument_stack), 2, (void *) (long) param_count, NULL);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-08-23 21:50:42 +08:00
|
|
|
EG(function_state_ptr) = &EX(function_state);
|
2001-02-03 15:21:35 +08:00
|
|
|
|
2002-03-01 22:27:26 +08:00
|
|
|
current_scope = EG(scope);
|
|
|
|
EG(scope) = calling_scope;
|
2001-12-27 04:17:34 +08:00
|
|
|
|
2002-03-01 22:27:26 +08:00
|
|
|
current_this = EG(This);
|
2002-01-05 23:18:30 +08:00
|
|
|
|
2002-01-15 00:55:23 +08:00
|
|
|
if (object_pp) {
|
2002-03-01 22:27:26 +08:00
|
|
|
EG(This) = *object_pp;
|
2002-01-15 00:55:23 +08:00
|
|
|
|
2002-03-01 22:27:26 +08:00
|
|
|
if (!PZVAL_IS_REF(EG(This))) {
|
|
|
|
EG(This)->refcount++; /* For $this pointer */
|
2002-01-05 23:18:30 +08:00
|
|
|
} else {
|
|
|
|
zval *this_ptr;
|
|
|
|
|
|
|
|
ALLOC_ZVAL(this_ptr);
|
2002-03-01 22:27:26 +08:00
|
|
|
*this_ptr = *EG(This);
|
2002-01-05 23:18:30 +08:00
|
|
|
INIT_PZVAL(this_ptr);
|
|
|
|
zval_copy_ctor(this_ptr);
|
2002-03-01 22:27:26 +08:00
|
|
|
EG(This) = this_ptr;
|
2002-01-05 23:18:30 +08:00
|
|
|
}
|
2002-01-15 00:55:23 +08:00
|
|
|
} else {
|
2002-03-01 22:27:26 +08:00
|
|
|
EG(This) = NULL;
|
2002-01-05 23:18:30 +08:00
|
|
|
}
|
|
|
|
|
2002-08-23 21:50:42 +08:00
|
|
|
EX(prev_execute_data) = EG(current_execute_data);
|
|
|
|
EG(current_execute_data) = &execute_data;
|
2002-01-05 23:18:30 +08:00
|
|
|
|
2002-08-23 21:50:42 +08:00
|
|
|
if (EX(function_state).function->type == ZEND_USER_FUNCTION) {
|
1999-04-14 03:28:03 +08:00
|
|
|
calling_symbol_table = EG(active_symbol_table);
|
2000-06-18 00:50:38 +08:00
|
|
|
if (symbol_table) {
|
|
|
|
EG(active_symbol_table) = symbol_table;
|
|
|
|
} else {
|
|
|
|
ALLOC_HASHTABLE(EG(active_symbol_table));
|
|
|
|
zend_hash_init(EG(active_symbol_table), 0, NULL, ZVAL_PTR_DTOR, 0);
|
|
|
|
}
|
2002-01-05 23:18:30 +08:00
|
|
|
|
1999-12-20 02:54:40 +08:00
|
|
|
original_return_value = EG(return_value_ptr_ptr);
|
1999-04-08 02:10:10 +08:00
|
|
|
original_op_array = EG(active_op_array);
|
1999-12-20 02:54:40 +08:00
|
|
|
EG(return_value_ptr_ptr) = retval_ptr_ptr;
|
2002-08-23 21:50:42 +08:00
|
|
|
EG(active_op_array) = (zend_op_array *) EX(function_state).function;
|
1999-12-20 02:54:40 +08:00
|
|
|
original_opline_ptr = EG(opline_ptr);
|
2001-02-12 23:16:11 +08:00
|
|
|
orig_free_op1 = EG(free_op1);
|
|
|
|
orig_free_op2 = EG(free_op2);
|
|
|
|
orig_unary_op = EG(unary_op);
|
|
|
|
orig_binary_op = EG(binary_op);
|
2001-07-27 18:10:39 +08:00
|
|
|
zend_execute(EG(active_op_array) TSRMLS_CC);
|
2000-06-18 00:50:38 +08:00
|
|
|
if (!symbol_table) {
|
|
|
|
zend_hash_destroy(EG(active_symbol_table));
|
|
|
|
FREE_HASHTABLE(EG(active_symbol_table));
|
|
|
|
}
|
1999-04-14 03:28:03 +08:00
|
|
|
EG(active_symbol_table) = calling_symbol_table;
|
1999-04-08 02:10:10 +08:00
|
|
|
EG(active_op_array) = original_op_array;
|
1999-12-20 02:54:40 +08:00
|
|
|
EG(return_value_ptr_ptr)=original_return_value;
|
1999-04-08 02:10:10 +08:00
|
|
|
EG(opline_ptr) = original_opline_ptr;
|
2001-02-12 23:16:11 +08:00
|
|
|
EG(free_op1) = orig_free_op1;
|
|
|
|
EG(free_op2) = orig_free_op2;
|
|
|
|
EG(unary_op) = orig_unary_op;
|
|
|
|
EG(binary_op) = orig_binary_op;
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
1999-12-20 02:54:40 +08:00
|
|
|
ALLOC_INIT_ZVAL(*retval_ptr_ptr);
|
2002-08-23 21:50:42 +08:00
|
|
|
((zend_internal_function *) EX(function_state).function)->handler(param_count, *retval_ptr_ptr, (object_pp?*object_pp:NULL), 1 TSRMLS_CC);
|
1999-12-20 02:54:40 +08:00
|
|
|
INIT_PZVAL(*retval_ptr_ptr);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2001-07-27 18:10:39 +08:00
|
|
|
zend_ptr_stack_clear_multiple(TSRMLS_C);
|
1999-04-08 02:10:10 +08:00
|
|
|
EG(function_state_ptr) = original_function_state_ptr;
|
|
|
|
|
2002-03-01 22:27:26 +08:00
|
|
|
if (EG(This)) {
|
|
|
|
zval_ptr_dtor(&EG(This));
|
2002-01-05 23:18:30 +08:00
|
|
|
}
|
2002-03-01 22:27:26 +08:00
|
|
|
EG(scope) = current_scope;
|
|
|
|
EG(This) = current_this;
|
2002-08-23 21:50:42 +08:00
|
|
|
EG(current_execute_data) = EX(prev_execute_data); \
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
2002-06-17 02:25:05 +08:00
|
|
|
ZEND_API int zend_lookup_class(char *name, int name_length, zend_class_entry ***ce TSRMLS_DC)
|
|
|
|
{
|
2002-06-26 23:13:14 +08:00
|
|
|
zval **args[1];
|
|
|
|
zval *autoload_function;
|
|
|
|
zval *class_name;
|
|
|
|
zval *retval_ptr;
|
|
|
|
int retval;
|
|
|
|
|
2002-07-27 23:53:14 +08:00
|
|
|
if (EG(scope)) {
|
|
|
|
if (zend_hash_find(&EG(scope)->class_table, name, name_length+1, (void **) ce) == SUCCESS) {
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
2002-06-26 23:13:14 +08:00
|
|
|
if (zend_hash_find(EG(class_table), name, name_length+1, (void **) ce) == SUCCESS) {
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
MAKE_STD_ZVAL(autoload_function);
|
|
|
|
ZVAL_STRINGL(autoload_function, "__autoload", sizeof("__autoload")-1, 1);
|
2002-06-17 02:25:05 +08:00
|
|
|
|
2002-06-26 23:13:14 +08:00
|
|
|
MAKE_STD_ZVAL(class_name);
|
|
|
|
ZVAL_STRINGL(class_name, name, name_length, 1);
|
|
|
|
args[0] = &class_name;
|
|
|
|
|
|
|
|
retval = call_user_function_ex(EG(function_table), NULL, autoload_function, &retval_ptr, 1, args, 0, NULL TSRMLS_CC);
|
|
|
|
|
|
|
|
zval_ptr_dtor(&autoload_function);
|
|
|
|
zval_ptr_dtor(&class_name);
|
|
|
|
|
|
|
|
if (retval == FAILURE) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
2002-08-14 00:46:40 +08:00
|
|
|
if (EG(exception)) {
|
|
|
|
zend_error(E_ERROR, "__autoload threw an exception");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If an exception is thrown retval_ptr will be NULL but we bailout before we reach this point */
|
2002-06-26 23:13:14 +08:00
|
|
|
zval_ptr_dtor(&retval_ptr);
|
|
|
|
|
|
|
|
return zend_hash_find(EG(class_table), name, name_length + 1, (void **) ce);
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
ZEND_API int zend_eval_string(char *str, zval *retval_ptr, char *string_name TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
zval pv;
|
|
|
|
zend_op_array *new_op_array;
|
|
|
|
zend_op_array *original_active_op_array = EG(active_op_array);
|
|
|
|
zend_function_state *original_function_state_ptr = EG(function_state_ptr);
|
2002-04-24 02:06:54 +08:00
|
|
|
zend_uchar original_handle_op_arrays;
|
2000-05-07 02:49:46 +08:00
|
|
|
int retval;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-12-20 02:54:40 +08:00
|
|
|
if (retval_ptr) {
|
1999-04-08 02:10:10 +08:00
|
|
|
pv.value.str.len = strlen(str)+sizeof("return ;")-1;
|
|
|
|
pv.value.str.val = emalloc(pv.value.str.len+1);
|
|
|
|
strcpy(pv.value.str.val, "return ");
|
|
|
|
strcat(pv.value.str.val, str);
|
|
|
|
strcat(pv.value.str.val, " ;");
|
|
|
|
} else {
|
|
|
|
pv.value.str.len = strlen(str);
|
|
|
|
pv.value.str.val = estrndup(str, pv.value.str.len);
|
|
|
|
}
|
|
|
|
pv.type = IS_STRING;
|
|
|
|
|
|
|
|
/*printf("Evaluating '%s'\n", pv.value.str.val);*/
|
|
|
|
|
|
|
|
original_handle_op_arrays = CG(handle_op_arrays);
|
|
|
|
CG(handle_op_arrays) = 0;
|
2001-07-28 18:51:54 +08:00
|
|
|
new_op_array = compile_string(&pv, string_name TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
CG(handle_op_arrays) = original_handle_op_arrays;
|
|
|
|
|
|
|
|
if (new_op_array) {
|
1999-12-20 02:54:40 +08:00
|
|
|
zval *local_retval_ptr=NULL;
|
|
|
|
zval **original_return_value_ptr_ptr = EG(return_value_ptr_ptr);
|
1999-04-08 02:10:10 +08:00
|
|
|
zend_op **original_opline_ptr = EG(opline_ptr);
|
|
|
|
|
1999-12-20 02:54:40 +08:00
|
|
|
EG(return_value_ptr_ptr) = &local_retval_ptr;
|
1999-04-08 02:10:10 +08:00
|
|
|
EG(active_op_array) = new_op_array;
|
|
|
|
EG(no_extensions)=1;
|
1999-12-20 02:54:40 +08:00
|
|
|
|
2001-07-27 18:10:39 +08:00
|
|
|
zend_execute(new_op_array TSRMLS_CC);
|
1999-12-20 02:54:40 +08:00
|
|
|
|
|
|
|
if (local_retval_ptr) {
|
|
|
|
if (retval_ptr) {
|
|
|
|
COPY_PZVAL_TO_ZVAL(*retval_ptr, local_retval_ptr);
|
|
|
|
} else {
|
|
|
|
zval_ptr_dtor(&local_retval_ptr);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (retval_ptr) {
|
|
|
|
INIT_ZVAL(*retval_ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
EG(no_extensions)=0;
|
|
|
|
EG(opline_ptr) = original_opline_ptr;
|
|
|
|
EG(active_op_array) = original_active_op_array;
|
|
|
|
EG(function_state_ptr) = original_function_state_ptr;
|
|
|
|
destroy_op_array(new_op_array);
|
|
|
|
efree(new_op_array);
|
1999-12-20 02:54:40 +08:00
|
|
|
EG(return_value_ptr_ptr) = original_return_value_ptr_ptr;
|
2000-05-07 02:49:46 +08:00
|
|
|
retval = SUCCESS;
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
2000-05-07 02:49:46 +08:00
|
|
|
retval = FAILURE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
zval_dtor(&pv);
|
2000-05-07 02:49:46 +08:00
|
|
|
return retval;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void execute_new_code(TSRMLS_D)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2001-04-30 12:50:34 +08:00
|
|
|
zend_op *opline, *end;
|
2001-07-15 22:08:58 +08:00
|
|
|
zend_op *ret_opline;
|
2001-09-10 08:07:32 +08:00
|
|
|
zval *local_retval=NULL;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-15 22:08:58 +08:00
|
|
|
if (!CG(interactive)
|
1999-04-27 19:00:59 +08:00
|
|
|
|| CG(active_op_array)->backpatch_count>0
|
|
|
|
|| CG(active_op_array)->function_name
|
|
|
|
|| CG(active_op_array)->type!=ZEND_USER_FUNCTION) {
|
1999-04-08 02:10:10 +08:00
|
|
|
return;
|
|
|
|
}
|
2001-04-30 12:50:34 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
ret_opline = get_next_op(CG(active_op_array) TSRMLS_CC);
|
2001-07-15 22:08:58 +08:00
|
|
|
ret_opline->opcode = ZEND_RETURN;
|
|
|
|
ret_opline->op1.op_type = IS_CONST;
|
|
|
|
INIT_ZVAL(ret_opline->op1.u.constant);
|
|
|
|
SET_UNUSED(ret_opline->op2);
|
|
|
|
|
|
|
|
if (!CG(active_op_array)->start_op) {
|
|
|
|
CG(active_op_array)->start_op = CG(active_op_array)->opcodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
opline=CG(active_op_array)->start_op;
|
2001-05-06 23:00:58 +08:00
|
|
|
end=CG(active_op_array)->opcodes+CG(active_op_array)->last;
|
2001-04-30 12:50:34 +08:00
|
|
|
|
|
|
|
while (opline<end) {
|
|
|
|
if (opline->op1.op_type==IS_CONST) {
|
|
|
|
opline->op1.u.constant.is_ref = 1;
|
|
|
|
opline->op1.u.constant.refcount = 2; /* Make sure is_ref won't be reset */
|
|
|
|
}
|
|
|
|
if (opline->op2.op_type==IS_CONST) {
|
|
|
|
opline->op2.u.constant.is_ref = 1;
|
|
|
|
opline->op2.u.constant.refcount = 2;
|
|
|
|
}
|
|
|
|
opline++;
|
|
|
|
}
|
|
|
|
|
2001-09-10 08:07:32 +08:00
|
|
|
EG(return_value_ptr_ptr) = &local_retval;
|
1999-04-08 02:10:10 +08:00
|
|
|
EG(active_op_array) = CG(active_op_array);
|
2001-07-27 18:10:39 +08:00
|
|
|
zend_execute(CG(active_op_array) TSRMLS_CC);
|
2001-09-10 08:07:32 +08:00
|
|
|
if (local_retval) {
|
|
|
|
zval_ptr_dtor(&local_retval);
|
|
|
|
}
|
|
|
|
|
2001-07-15 22:08:58 +08:00
|
|
|
CG(active_op_array)->last--; /* get rid of that ZEND_RETURN */
|
|
|
|
CG(active_op_array)->start_op = CG(active_op_array)->opcodes+CG(active_op_array)->last;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
1999-04-13 02:29:09 +08:00
|
|
|
|
|
|
|
|
2000-07-02 23:39:54 +08:00
|
|
|
ZEND_API void zend_timeout(int dummy)
|
2000-06-16 09:54:56 +08:00
|
|
|
{
|
2001-07-27 18:10:39 +08:00
|
|
|
TSRMLS_FETCH();
|
2000-06-16 09:54:56 +08:00
|
|
|
|
|
|
|
/* is there any point in this? we're terminating the request anyway...
|
|
|
|
PG(connection_status) |= PHP_CONNECTION_TIMEOUT;
|
|
|
|
*/
|
|
|
|
zend_error(E_ERROR, "Maximum execution time of %d second%s exceeded",
|
|
|
|
EG(timeout_seconds), EG(timeout_seconds) == 1 ? "" : "s");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-16 10:49:21 +08:00
|
|
|
#ifdef ZEND_WIN32
|
2000-06-16 09:54:56 +08:00
|
|
|
static LRESULT CALLBACK zend_timeout_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
switch (message) {
|
|
|
|
case WM_DESTROY:
|
|
|
|
PostQuitMessage(0);
|
2000-06-16 22:27:28 +08:00
|
|
|
break;
|
|
|
|
case WM_REGISTER_ZEND_TIMEOUT:
|
|
|
|
/* wParam is the thread id pointer, lParam is the timeout amount in seconds */
|
2000-06-26 23:17:36 +08:00
|
|
|
if (lParam==0) {
|
|
|
|
KillTimer(timeout_window, wParam);
|
|
|
|
} else {
|
|
|
|
SetTimer(timeout_window, wParam, lParam*1000, NULL);
|
|
|
|
}
|
2000-06-16 22:27:28 +08:00
|
|
|
break;
|
|
|
|
case WM_UNREGISTER_ZEND_TIMEOUT:
|
|
|
|
/* wParam is the thread id pointer */
|
|
|
|
KillTimer(timeout_window, wParam);
|
|
|
|
break;
|
|
|
|
case WM_TIMER: {
|
|
|
|
#ifdef ZTS
|
2001-07-28 18:51:54 +08:00
|
|
|
void ***tsrm_ls;
|
2000-06-16 22:27:28 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
tsrm_ls = ts_resource_ex(0, &wParam);
|
|
|
|
if (!tsrm_ls) {
|
2000-06-16 22:27:28 +08:00
|
|
|
/* Thread died before receiving its timeout? */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
KillTimer(timeout_window, wParam);
|
2001-07-28 18:51:54 +08:00
|
|
|
EG(timed_out) = 1;
|
2000-06-16 22:27:28 +08:00
|
|
|
}
|
|
|
|
break;
|
2000-06-16 09:54:56 +08:00
|
|
|
default:
|
2001-08-11 23:56:40 +08:00
|
|
|
return DefWindowProc(hWnd, message, wParam, lParam);
|
2000-06-16 09:54:56 +08:00
|
|
|
}
|
2000-06-16 22:27:28 +08:00
|
|
|
return 0;
|
2000-06-16 09:54:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-16 22:27:28 +08:00
|
|
|
|
|
|
|
static unsigned __stdcall timeout_thread_proc(void *pArgs)
|
2000-06-16 09:54:56 +08:00
|
|
|
{
|
2000-06-16 22:27:28 +08:00
|
|
|
MSG message;
|
|
|
|
|
2000-06-16 09:54:56 +08:00
|
|
|
wc.style=0;
|
|
|
|
wc.lpfnWndProc = zend_timeout_WndProc;
|
|
|
|
wc.cbClsExtra=0;
|
|
|
|
wc.cbWndExtra=0;
|
|
|
|
wc.hInstance=NULL;
|
|
|
|
wc.hIcon=NULL;
|
|
|
|
wc.hCursor=NULL;
|
|
|
|
wc.hbrBackground=(HBRUSH)(COLOR_BACKGROUND + 5);
|
|
|
|
wc.lpszMenuName=NULL;
|
|
|
|
wc.lpszClassName = "Zend Timeout Window";
|
2001-04-28 02:51:56 +08:00
|
|
|
if (!RegisterClass(&wc)) {
|
2000-06-16 22:27:28 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
timeout_window = CreateWindow(wc.lpszClassName, wc.lpszClassName, 0, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
|
|
|
|
SetEvent(timeout_thread_event);
|
|
|
|
while (GetMessage(&message, NULL, 0, 0)) {
|
|
|
|
SendMessage(timeout_window, message.message, message.wParam, message.lParam);
|
|
|
|
if (message.message == WM_QUIT) {
|
|
|
|
break;
|
|
|
|
}
|
2000-06-16 09:54:56 +08:00
|
|
|
}
|
2000-06-16 22:27:28 +08:00
|
|
|
DestroyWindow(timeout_window);
|
|
|
|
UnregisterClass(wc.lpszClassName, NULL);
|
|
|
|
return 0;
|
2000-06-16 09:54:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-16 22:27:28 +08:00
|
|
|
void zend_init_timeout_thread()
|
2000-06-16 09:54:56 +08:00
|
|
|
{
|
2000-06-16 22:27:28 +08:00
|
|
|
timeout_thread_event = CreateEvent(NULL, FALSE, FALSE, NULL);
|
|
|
|
_beginthreadex(NULL, 0, timeout_thread_proc, NULL, 0, &timeout_thread_id);
|
|
|
|
WaitForSingleObject(timeout_thread_event, INFINITE);
|
2000-06-16 09:54:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-16 22:27:28 +08:00
|
|
|
void zend_shutdown_timeout_thread()
|
2000-06-16 09:54:56 +08:00
|
|
|
{
|
2000-06-16 22:27:28 +08:00
|
|
|
if (!timeout_thread_initialized) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
PostThreadMessage(timeout_thread_id, WM_QUIT, 0, 0);
|
2000-06-16 09:54:56 +08:00
|
|
|
}
|
2000-06-16 22:27:28 +08:00
|
|
|
|
2000-06-16 09:54:56 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* This one doesn't exists on QNX */
|
|
|
|
#ifndef SIGPROF
|
|
|
|
#define SIGPROF 27
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void zend_set_timeout(long seconds)
|
|
|
|
{
|
2001-07-27 18:10:39 +08:00
|
|
|
TSRMLS_FETCH();
|
2000-06-16 09:54:56 +08:00
|
|
|
|
|
|
|
EG(timeout_seconds) = seconds;
|
|
|
|
#ifdef ZEND_WIN32
|
2000-06-16 22:27:28 +08:00
|
|
|
if (timeout_thread_initialized==0 && InterlockedIncrement(&timeout_thread_initialized)==1) {
|
|
|
|
/* We start up this process-wide thread here and not in zend_startup(), because if Zend
|
|
|
|
* is initialized inside a DllMain(), you're not supposed to start threads from it.
|
|
|
|
*/
|
|
|
|
zend_init_timeout_thread();
|
|
|
|
}
|
|
|
|
PostThreadMessage(timeout_thread_id, WM_REGISTER_ZEND_TIMEOUT, (WPARAM) GetCurrentThreadId(), (LPARAM) seconds);
|
2000-06-16 09:54:56 +08:00
|
|
|
#else
|
|
|
|
# ifdef HAVE_SETITIMER
|
2000-06-16 10:49:21 +08:00
|
|
|
{
|
|
|
|
struct itimerval t_r; /* timeout requested */
|
2000-07-04 00:53:39 +08:00
|
|
|
sigset_t sigset;
|
2000-06-16 09:54:56 +08:00
|
|
|
|
2000-06-16 10:49:21 +08:00
|
|
|
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;
|
2000-06-16 09:54:56 +08:00
|
|
|
|
2000-06-16 10:49:21 +08:00
|
|
|
setitimer(ITIMER_PROF, &t_r, NULL);
|
|
|
|
signal(SIGPROF, zend_timeout);
|
2000-07-04 00:53:39 +08:00
|
|
|
sigemptyset(&sigset);
|
|
|
|
sigaddset(&sigset, SIGPROF);
|
2001-08-11 23:56:40 +08:00
|
|
|
sigprocmask(SIG_UNBLOCK, &sigset, NULL);
|
2000-06-16 10:49:21 +08:00
|
|
|
}
|
2000-06-16 09:54:56 +08:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-30 15:43:02 +08:00
|
|
|
void zend_unset_timeout(TSRMLS_D)
|
2000-06-16 09:54:56 +08:00
|
|
|
{
|
|
|
|
#ifdef ZEND_WIN32
|
2000-06-16 22:27:28 +08:00
|
|
|
PostThreadMessage(timeout_thread_id, WM_UNREGISTER_ZEND_TIMEOUT, (WPARAM) GetCurrentThreadId(), (LPARAM) 0);
|
2000-06-16 09:54:56 +08:00
|
|
|
#else
|
|
|
|
# ifdef HAVE_SETITIMER
|
2000-06-16 10:49:21 +08:00
|
|
|
{
|
|
|
|
struct itimerval no_timeout;
|
2000-06-16 09:54:56 +08:00
|
|
|
|
2000-06-16 10:49:21 +08:00
|
|
|
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;
|
2000-06-16 09:54:56 +08:00
|
|
|
|
2000-06-16 10:49:21 +08:00
|
|
|
setitimer(ITIMER_PROF, &no_timeout, NULL);
|
|
|
|
}
|
2000-06-16 09:54:56 +08:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
}
|