php-src/Zend/zend_execute_API.c

1750 lines
51 KiB
C
Raw Normal View History

1999-04-07 18:10:10 +00:00
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
2014-01-03 03:08:10 +00:00
| Copyright (c) 1998-2014 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, |
| 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-07-16 14:58:16 +00:00
1999-04-07 18:10:10 +00:00
#include <stdio.h>
#include <signal.h>
#include "zend.h"
#include "zend_compile.h"
#include "zend_execute.h"
#include "zend_API.h"
#include "zend_stack.h"
1999-04-07 18:10:10 +00:00
#include "zend_constants.h"
#include "zend_extensions.h"
#include "zend_exceptions.h"
#include "zend_closures.h"
#include "zend_generators.h"
#include "zend_vm.h"
2009-03-18 10:41:39 +00:00
#include "zend_float.h"
2001-05-30 08:23:15 +00:00
#ifdef HAVE_SYS_TIME_H
2000-06-16 02:49:21 +00:00
#include <sys/time.h>
#endif
1999-04-07 18:10:10 +00:00
ZEND_API void (*zend_execute_ex)(zend_execute_data *execute_data TSRMLS_DC);
ZEND_API void (*zend_execute_internal)(zend_execute_data *execute_data_ptr, zend_fcall_info *fci, int return_value_used TSRMLS_DC);
1999-04-07 18:10:10 +00:00
2003-08-06 07:38:56 +00:00
/* true globals */
ZEND_API const zend_fcall_info empty_fcall_info = { 0, NULL, {{0},0}, NULL, NULL, 0, NULL, NULL, 0 };
ZEND_API const zend_fcall_info_cache empty_fcall_info_cache = { 0, NULL, NULL, NULL, NULL };
2003-08-05 23:50:59 +00:00
#ifdef ZEND_WIN32
#include <process.h>
static WNDCLASS wc;
static HWND timeout_window;
static HANDLE timeout_thread_event;
static HANDLE timeout_thread_handle;
static DWORD timeout_thread_id;
static int timeout_thread_initialized=0;
#endif
#if 0&&ZEND_DEBUG
1999-04-07 18:10:10 +00:00
static void (*original_sigsegv_handler)(int);
static void zend_handle_sigsegv(int dummy) /* {{{ */
1999-04-07 18:10:10 +00:00
{
fflush(stdout);
fflush(stderr);
if (original_sigsegv_handler == zend_handle_sigsegv) {
signal(SIGSEGV, original_sigsegv_handler);
} else {
signal(SIGSEGV, SIG_DFL);
}
{
TSRMLS_FETCH();
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 07:43:02 +00:00
get_active_function_name(TSRMLS_C),
zend_get_executed_filename(TSRMLS_C),
zend_get_executed_lineno(TSRMLS_C));
/* See http://support.microsoft.com/kb/190351 */
#ifdef PHP_WIN32
fflush(stderr);
#endif
}
if (original_sigsegv_handler!=zend_handle_sigsegv) {
original_sigsegv_handler(dummy);
}
1999-04-07 18:10:10 +00:00
}
/* }}} */
#endif
1999-04-07 18:10:10 +00:00
static void zend_extension_activator(zend_extension *extension TSRMLS_DC) /* {{{ */
1999-04-07 18:10:10 +00:00
{
if (extension->activate) {
extension->activate();
}
}
/* }}} */
1999-04-07 18:10:10 +00:00
static void zend_extension_deactivator(zend_extension *extension TSRMLS_DC) /* {{{ */
1999-04-07 18:10:10 +00:00
{
if (extension->deactivate) {
extension->deactivate();
}
}
/* }}} */
1999-04-07 18:10:10 +00:00
static int clean_non_persistent_function(zend_function *function TSRMLS_DC) /* {{{ */
{
return (function->type == ZEND_INTERNAL_FUNCTION) ? ZEND_HASH_APPLY_STOP : ZEND_HASH_APPLY_REMOVE;
}
/* }}} */
static int clean_non_persistent_function_full(zend_function *function TSRMLS_DC) /* {{{ */
{
return (function->type == ZEND_INTERNAL_FUNCTION) ? ZEND_HASH_APPLY_KEEP : ZEND_HASH_APPLY_REMOVE;
}
/* }}} */
static int clean_non_persistent_class(zend_class_entry **ce TSRMLS_DC) /* {{{ */
{
return ((*ce)->type == ZEND_INTERNAL_CLASS) ? ZEND_HASH_APPLY_STOP : ZEND_HASH_APPLY_REMOVE;
}
/* }}} */
static int clean_non_persistent_class_full(zend_class_entry **ce TSRMLS_DC) /* {{{ */
{
return ((*ce)->type == ZEND_INTERNAL_CLASS) ? ZEND_HASH_APPLY_KEEP : ZEND_HASH_APPLY_REMOVE;
}
/* }}} */
void init_executor(TSRMLS_D) /* {{{ */
1999-04-07 18:10:10 +00:00
{
zval tmp;
zend_init_fpu(TSRMLS_C);
ZVAL_NULL(&EG(uninitialized_zval));
/* trick to make uninitialized_zval never be modified, passed by ref, etc. */
ZVAL_NULL(&EG(error_zval));
1999-07-15 12:17:34 +00:00
/* destroys stack frame, therefore makes core dumps worthless */
#if 0&&ZEND_DEBUG
1999-04-07 18:10:10 +00:00
original_sigsegv_handler = signal(SIGSEGV, zend_handle_sigsegv);
1999-07-15 12:17:34 +00:00
#endif
EG(symtable_cache_ptr) = EG(symtable_cache) - 1;
EG(symtable_cache_limit) = EG(symtable_cache) + SYMTABLE_CACHE_SIZE - 1;
EG(no_extensions) = 0;
1999-04-07 18:10:10 +00:00
EG(function_table) = CG(function_table);
EG(class_table) = CG(class_table);
EG(in_execution) = 0;
EG(in_autoload) = NULL;
EG(autoload_func) = NULL;
EG(error_handling) = EH_NORMAL;
zend_vm_stack_init(TSRMLS_C);
ZVAL_LONG(&tmp, 0);
zend_vm_stack_push(&tmp TSRMLS_CC);
zend_hash_init(&EG(symbol_table).ht, 50, NULL, ZVAL_PTR_DTOR, 0);
EG(active_symbol_table) = &EG(symbol_table).ht;
2001-07-31 04:53:54 +00:00
zend_llist_apply(&zend_extensions, (llist_apply_func_t) zend_extension_activator TSRMLS_CC);
EG(opline_ptr) = NULL;
zend_hash_init(&EG(included_files), 5, NULL, NULL, 0);
EG(ticks_count) = 0;
ZVAL_UNDEF(&EG(user_error_handler));
EG(current_execute_data) = NULL;
zend_stack_init(&EG(user_error_handlers_error_reporting));
zend_stack_init(&EG(user_error_handlers));
zend_stack_init(&EG(user_exception_handlers));
zend_objects_store_init(&EG(objects_store), 1024);
2001-10-26 14:13:42 +00:00
EG(full_tables_cleanup) = 0;
#ifdef ZEND_WIN32
EG(timed_out) = 0;
#endif
2001-08-30 15:26:30 +00:00
EG(exception) = NULL;
2008-08-14 10:24:52 +00:00
EG(prev_exception) = NULL;
EG(scope) = NULL;
EG(called_scope) = NULL;
ZVAL_UNDEF(&EG(This));
2006-10-11 16:11:56 +00:00
EG(active_op_array) = NULL;
EG(active) = 1;
EG(start_op) = NULL;
1999-04-07 18:10:10 +00:00
}
/* }}} */
1999-04-07 18:10:10 +00:00
static int zval_call_destructor(zval *zv TSRMLS_DC) /* {{{ */
{
if (Z_TYPE_P(zv) == IS_OBJECT && Z_REFCOUNT_P(zv) == 1) {
return ZEND_HASH_APPLY_REMOVE;
} else {
return ZEND_HASH_APPLY_KEEP;
}
}
/* }}} */
void shutdown_destructors(TSRMLS_D) /* {{{ */
{
zend_try {
int symbols;
do {
symbols = zend_hash_num_elements(&EG(symbol_table).ht);
zend_hash_reverse_apply(&EG(symbol_table).ht, (apply_func_t) zval_call_destructor TSRMLS_CC);
} while (symbols != zend_hash_num_elements(&EG(symbol_table).ht));
zend_objects_store_call_destructors(&EG(objects_store) TSRMLS_CC);
} zend_catch {
/* if we couldn't destruct cleanly, mark all objects as destructed anyway */
zend_objects_store_mark_destructed(&EG(objects_store) TSRMLS_CC);
} zend_end_try();
}
/* }}} */
void shutdown_executor(TSRMLS_D) /* {{{ */
1999-04-07 18:10:10 +00:00
{
zend_try {
/* Removed because this can not be safely done, e.g. in this situation:
Object 1 creates object 2
Object 3 holds reference to object 2.
Now when 1 and 2 are destroyed, 3 can still access 2 in its destructor, with
very problematic results */
/* zend_objects_store_call_destructors(&EG(objects_store) TSRMLS_CC); */
/* Moved after symbol table cleaners, because some of the cleaners can call
destructors, which would use EG(symtable_cache_ptr) and thus leave leaks */
/* 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 04:53:54 +00:00
zend_llist_apply(&zend_extensions, (llist_apply_func_t) zend_extension_deactivator TSRMLS_CC);
zend_hash_graceful_reverse_destroy(&EG(symbol_table).ht);
} zend_end_try();
zend_try {
zval *zeh;
/* remove error handlers before destroying classes and functions,
* so that if handler used some class, crash would not happen */
if (Z_TYPE(EG(user_error_handler)) != IS_UNDEF) {
zeh = &EG(user_error_handler);
zval_ptr_dtor(zeh);
2014-02-24 09:26:09 +00:00
ZVAL_UNDEF(&EG(user_error_handler));
}
if (Z_TYPE(EG(user_exception_handler)) != IS_UNDEF) {
zeh = &EG(user_exception_handler);
zval_ptr_dtor(zeh);
2014-02-24 09:26:09 +00:00
ZVAL_UNDEF(&EG(user_exception_handler));
}
zend_stack_destroy(&EG(user_error_handlers_error_reporting));
zend_stack_init(&EG(user_error_handlers_error_reporting));
zend_stack_clean(&EG(user_error_handlers), (void (*)(void *))ZVAL_DESTRUCTOR, 1);
zend_stack_clean(&EG(user_exception_handlers), (void (*)(void *))ZVAL_DESTRUCTOR, 1);
} zend_end_try();
zend_try {
/* Cleanup static data for functions and arrays.
* We need a separate cleanup stage because of the following problem:
* Suppose we destroy class X, which destroys the class's function table,
* and in the function table we have function foo() that has static $bar.
* Now if an object of class X is assigned to $bar, its destructor will be
* called and will fail since X's function table is in mid-destruction.
* So we want first of all to clean up all data and then move to tables destruction.
* Note that only run-time accessed data need to be cleaned up, pre-defined data can
* not contain objects and thus are not probelmatic */
if (EG(full_tables_cleanup)) {
zend_hash_apply(EG(function_table), (apply_func_t) zend_cleanup_function_data_full TSRMLS_CC);
zend_hash_apply(EG(class_table), (apply_func_t) zend_cleanup_class_data TSRMLS_CC);
} else {
zend_hash_reverse_apply(EG(function_table), (apply_func_t) zend_cleanup_function_data TSRMLS_CC);
zend_hash_reverse_apply(EG(class_table), (apply_func_t) zend_cleanup_user_class_data TSRMLS_CC);
zend_cleanup_internal_classes(TSRMLS_C);
}
} zend_end_try();
2003-03-02 15:24:04 +00:00
zend_try {
2008-08-11 17:44:15 +00:00
zend_objects_store_free_object_storage(&EG(objects_store) TSRMLS_CC);
zend_vm_stack_destroy(TSRMLS_C);
/* Destroy all op arrays */
2001-10-26 14:13:42 +00:00
if (EG(full_tables_cleanup)) {
zend_hash_reverse_apply(EG(function_table), (apply_func_t) clean_non_persistent_function_full TSRMLS_CC);
zend_hash_reverse_apply(EG(class_table), (apply_func_t) clean_non_persistent_class_full TSRMLS_CC);
2001-10-23 01:23:36 +00:00
} else {
zend_hash_reverse_apply(EG(function_table), (apply_func_t) clean_non_persistent_function TSRMLS_CC);
zend_hash_reverse_apply(EG(class_table), (apply_func_t) clean_non_persistent_class TSRMLS_CC);
2001-10-23 01:23:36 +00:00
}
while (EG(symtable_cache_ptr)>=EG(symtable_cache)) {
zend_hash_destroy(*EG(symtable_cache_ptr));
FREE_HASHTABLE(*EG(symtable_cache_ptr));
EG(symtable_cache_ptr)--;
}
} zend_end_try();
2002-09-16 01:36:48 +00:00
zend_try {
clean_non_persistent_constants(TSRMLS_C);
} zend_end_try();
zend_try {
#if 0&&ZEND_DEBUG
signal(SIGSEGV, original_sigsegv_handler);
#endif
zend_hash_destroy(&EG(included_files));
zend_stack_destroy(&EG(user_error_handlers_error_reporting));
zend_stack_destroy(&EG(user_error_handlers));
zend_stack_destroy(&EG(user_exception_handlers));
zend_objects_store_destroy(&EG(objects_store));
if (EG(in_autoload)) {
zend_hash_destroy(EG(in_autoload));
FREE_HASHTABLE(EG(in_autoload));
}
} zend_end_try();
zend_shutdown_fpu(TSRMLS_C);
EG(active) = 0;
1999-04-07 18:10:10 +00:00
}
/* }}} */
1999-04-07 18:10:10 +00:00
2004-03-16 10:14:57 +00:00
/* return class name and "::" or "". */
ZEND_API const char *get_active_class_name(const char **space TSRMLS_DC) /* {{{ */
2004-03-16 10:14:57 +00:00
{
if (!zend_is_executing(TSRMLS_C)) {
if (space) {
*space = "";
}
return "";
}
switch (EG(current_execute_data)->function_state.function->type) {
2004-03-16 10:14:57 +00:00
case ZEND_USER_FUNCTION:
case ZEND_INTERNAL_FUNCTION:
{
zend_class_entry *ce = EG(current_execute_data)->function_state.function->common.scope;
2004-03-16 10:14:57 +00:00
if (space) {
*space = ce ? "::" : "";
}
return ce ? ce->name->val : "";
2004-03-16 10:14:57 +00:00
}
default:
if (space) {
*space = "";
}
return "";
}
}
/* }}} */
2004-03-16 10:14:57 +00:00
ZEND_API const char *get_active_function_name(TSRMLS_D) /* {{{ */
1999-04-07 18:10:10 +00:00
{
2002-04-20 20:14:14 +00:00
if (!zend_is_executing(TSRMLS_C)) {
return NULL;
}
switch (EG(current_execute_data)->function_state.function->type) {
1999-04-07 18:10:10 +00:00
case ZEND_USER_FUNCTION: {
2014-02-25 10:14:22 +00:00
zend_string *function_name = ((zend_op_array *) EG(current_execute_data)->function_state.function)->function_name;
1999-04-07 18:10:10 +00:00
if (function_name) {
2014-02-25 10:14:22 +00:00
return function_name->val;
1999-04-07 18:10:10 +00:00
} else {
return "main";
}
}
break;
case ZEND_INTERNAL_FUNCTION:
return ((zend_internal_function *) EG(current_execute_data)->function_state.function)->function_name->val;
1999-04-07 18:10:10 +00:00
break;
default:
return NULL;
}
}
/* }}} */
1999-04-07 18:10:10 +00:00
ZEND_API const char *zend_get_executed_filename(TSRMLS_D) /* {{{ */
1999-04-07 18:10:10 +00:00
{
if (EG(active_op_array)) {
return EG(active_op_array)->filename->val;
} else {
return "[no active file]";
}
1999-04-07 18:10:10 +00:00
}
/* }}} */
1999-04-07 18:10:10 +00:00
ZEND_API uint zend_get_executed_lineno(TSRMLS_D) /* {{{ */
1999-04-07 18:10:10 +00:00
{
2012-07-22 21:25:00 +00:00
if(EG(exception) && EG(opline_ptr) && active_opline->opcode == ZEND_HANDLE_EXCEPTION &&
active_opline->lineno == 0 && EG(opline_before_exception)) {
return EG(opline_before_exception)->lineno;
}
if (EG(opline_ptr)) {
return active_opline->lineno;
} else {
return 0;
}
1999-04-07 18:10:10 +00:00
}
/* }}} */
1999-04-07 18:10:10 +00:00
ZEND_API zend_bool zend_is_executing(TSRMLS_D) /* {{{ */
{
return EG(in_execution);
}
/* }}} */
ZEND_API void _zval_ptr_dtor(zval *zval_ptr ZEND_FILE_LINE_DC) /* {{{ */
1999-04-07 18:10:10 +00:00
{
TSRMLS_FETCH();
i_zval_ptr_dtor(zval_ptr ZEND_FILE_LINE_RELAY_CC TSRMLS_CC);
1999-04-07 18:10:10 +00:00
}
/* }}} */
ZEND_API void _zval_internal_ptr_dtor(zval *zval_ptr ZEND_FILE_LINE_DC) /* {{{ */
{
if (IS_REFCOUNTED(Z_TYPE_P(zval_ptr))) {
Z_DELREF_P(zval_ptr);
if (Z_REFCOUNT_P(zval_ptr) == 0) {
_zval_internal_dtor_for_ptr(zval_ptr ZEND_FILE_LINE_CC);
} else if (Z_REFCOUNT_P(zval_ptr) == 1) {
if (Z_ISREF_P(zval_ptr)) {
//??? zend_reference *ref = Z_REF_P(zval_ptr);
//??? ZVAL_COPY_VALUE(zval_ptr, Z_REFVAL_P(zval_ptr));
//??? efree(ref);
}
}
}
}
/* }}} */
ZEND_API int zend_is_true(zval *op TSRMLS_DC) /* {{{ */
1999-04-07 18:10:10 +00:00
{
return i_zend_is_true(op TSRMLS_CC);
1999-04-07 18:10:10 +00:00
}
/* }}} */
1999-04-07 18:10:10 +00:00
#include "../TSRM/tsrm_strtok_r.h"
1999-04-07 18:10:10 +00:00
2014-02-24 11:25:24 +00:00
#define IS_VISITED_CONSTANT 0x080 //??? IS_CONSTANT_INDEX
#define IS_CONSTANT_VISITED(p) (Z_TYPE_P(p) & IS_VISITED_CONSTANT)
#define Z_REAL_TYPE_P(p) (Z_TYPE_P(p) & ~IS_VISITED_CONSTANT)
#define MARK_CONSTANT_VISITED(p) Z_TYPE_P(p) |= IS_VISITED_CONSTANT
static void zval_deep_copy(zval *p)
{
zval value;
2014-02-24 11:25:24 +00:00
ZVAL_DUP(&value, p);
//??? Z_TYPE(value) &= ~IS_CONSTANT_INDEX;
//??? zval_copy_ctor(&value);
//??? Z_TYPE(value) = Z_TYPE_P(p);
ZVAL_COPY_VALUE(p, &value);
}
ZEND_API int zval_update_constant_ex(zval *p, void *arg, zend_class_entry *scope TSRMLS_DC) /* {{{ */
1999-04-07 18:10:10 +00:00
{
2007-04-16 08:09:56 +00:00
zend_bool inline_change = (zend_bool) (zend_uintptr_t) arg;
2001-07-16 11:41:06 +00:00
zval const_value;
char *colon;
if (IS_CONSTANT_VISITED(p)) {
zend_error(E_ERROR, "Cannot declare self-referencing constant '%s'", Z_STRVAL_P(p));
2013-11-06 18:21:07 +00:00
} else if ((Z_TYPE_P(p) & IS_CONSTANT_TYPE_MASK) == IS_CONSTANT) {
int refcount;
//??? zend_uchar is_ref;
SEPARATE_ZVAL_IF_NOT_REF(p);
2013-11-06 18:21:07 +00:00
MARK_CONSTANT_VISITED(p);
2013-11-06 18:21:07 +00:00
refcount = Z_REFCOUNT_P(p);
//??? is_ref = Z_ISREF_P(p);
1999-04-07 18:10:10 +00:00
if (!zend_get_constant_ex(Z_STRVAL_P(p), Z_STRLEN_P(p), &const_value, scope, Z_REAL_TYPE_P(p) TSRMLS_CC)) {
2013-11-06 18:21:07 +00:00
char *actual = Z_STRVAL_P(p);
2013-11-06 18:21:07 +00:00
if ((colon = (char*)zend_memrchr(Z_STRVAL_P(p), ':', Z_STRLEN_P(p)))) {
int len;
2013-11-06 18:21:07 +00:00
zend_error(E_ERROR, "Undefined class constant '%s'", Z_STRVAL_P(p));
len = Z_STRLEN_P(p) - ((colon - Z_STRVAL_P(p)) + 1);
if (inline_change) {
zend_string *tmp = STR_INIT(colon + 1, len, 0);
STR_RELEASE(Z_STR_P(p));
Z_STR_P(p) = tmp;
} else {
//??? Z_STRVAL_P(p) = colon + 1;
Z_STR_P(p) = STR_INIT(colon + 1, len, 0);
}
2013-11-06 18:21:07 +00:00
} else {
zend_string *save = Z_STR_P(p);
char *slash;
2013-11-06 18:21:07 +00:00
int actual_len = Z_STRLEN_P(p);
if ((Z_TYPE_P(p) & IS_CONSTANT_UNQUALIFIED) && (slash = (char *)zend_memrchr(actual, '\\', actual_len))) {
actual = slash + 1;
actual_len -= (actual - Z_STRVAL_P(p));
if (inline_change) {
zend_string *s = STR_INIT(actual, actual_len, 0);
//??? STR_RELEASE(Z_STR_P(p));
Z_STR_P(p) = s;
}
2013-11-06 18:21:07 +00:00
}
if (actual[0] == '\\') {
if (inline_change) {
memmove(Z_STRVAL_P(p), Z_STRVAL_P(p)+1, Z_STRLEN_P(p));
--Z_STRLEN_P(p);
} else {
++actual;
}
2013-11-06 18:21:07 +00:00
--actual_len;
}
if ((Z_TYPE_P(p) & IS_CONSTANT_UNQUALIFIED) == 0) {
if (save->val[0] == '\\') {
zend_error(E_ERROR, "Undefined constant '%s'", save->val + 1);
} else {
zend_error(E_ERROR, "Undefined constant '%s'", save->val);
}
if (inline_change) {
//??? STR_RELEASE(save);
}
2013-11-06 18:21:07 +00:00
save = NULL;
}
if (inline_change && save && save->val != actual) {
//??? STR_RELEASE(save);
}
2013-11-06 18:21:07 +00:00
zend_error(E_NOTICE, "Use of undefined constant %s - assumed '%s'", actual, actual);
p->type = IS_STRING;
if (!inline_change) {
ZVAL_STRINGL(p, actual, actual_len);
2013-11-06 18:21:07 +00:00
}
}
} else {
if (inline_change) {
2014-02-24 11:25:24 +00:00
STR_RELEASE(Z_STR_P(p));
}
2014-02-24 11:25:24 +00:00
ZVAL_COPY_VALUE(p, &const_value);
2013-11-06 18:21:07 +00:00
}
if (IS_REFCOUNTED(Z_TYPE_P(p))) Z_SET_REFCOUNT_P(p, refcount);
//??? Z_SET_ISREF_TO_P(p, is_ref);
2013-11-06 18:21:07 +00:00
} else if (Z_TYPE_P(p) == IS_CONSTANT_ARRAY) {
zval *element, new_val;
zend_string *str_index;
2013-11-06 18:21:07 +00:00
ulong num_index;
int ret;
SEPARATE_ZVAL_IF_NOT_REF(p);
2013-11-06 18:21:07 +00:00
Z_TYPE_P(p) = IS_ARRAY;
2013-11-06 18:21:07 +00:00
if (!inline_change) {
HashTable *ht = Z_ARRVAL_P(p);
ZVAL_NEW_ARR(p);
zend_hash_init(Z_ARRVAL_P(p), zend_hash_num_elements(ht), NULL, ZVAL_PTR_DTOR, 0);
zend_hash_copy(Z_ARRVAL_P(p), ht, zval_deep_copy);
2012-07-22 21:25:00 +00:00
}
2013-11-06 18:21:07 +00:00
/* First go over the array and see if there are any constant indices */
zend_hash_internal_pointer_reset(Z_ARRVAL_P(p));
while ((element = zend_hash_get_current_data(Z_ARRVAL_P(p))) != NULL) {
2014-02-24 11:25:24 +00:00
if (zend_hash_get_current_key_ex(Z_ARRVAL_P(p), &str_index, &num_index, 0, NULL) != HASH_KEY_IS_STRING) {
2013-11-06 18:21:07 +00:00
zend_hash_move_forward(Z_ARRVAL_P(p));
continue;
}
2014-02-24 11:25:24 +00:00
if (!(str_index->gc.u.v.flags & (IS_STR_CONSTANT | IS_STR_AST))) {
2013-11-06 18:21:07 +00:00
zend_hash_move_forward(Z_ARRVAL_P(p));
continue;
}
2014-02-24 11:25:24 +00:00
if (str_index->gc.u.v.flags & IS_STR_AST) {
zend_ast_evaluate(&const_value, (zend_ast *)str_index->val, scope TSRMLS_CC);
zend_ast_destroy((zend_ast *)str_index->val);
//???
2014-02-24 11:49:15 +00:00
} else if (!zend_get_constant_ex(str_index->val, str_index->len, &const_value, scope, str_index->gc.u.v.flags TSRMLS_CC)) {
2014-02-24 11:25:24 +00:00
char *actual, *str;
const char *save = str_index->val;
int len;
str = str_index->val;
len = str_index->len;
if ((colon = (char*)zend_memrchr(str, ':', len))) {
zend_error(E_ERROR, "Undefined class constant '%s'", str);
len -= ((colon - str) + 1);
str = colon;
2013-11-06 18:21:07 +00:00
} else {
2014-02-24 11:25:24 +00:00
if (str_index->gc.u.v.flags & IS_STR_CONSTANT_UNQUALIFIED) {
if ((actual = (char *)zend_memrchr(str, '\\', len))) {
2013-11-06 18:21:07 +00:00
actual++;
2014-02-24 11:25:24 +00:00
len -= (actual - str);
str = actual;
}
}
2014-02-24 11:25:24 +00:00
if (str[0] == '\\') {
++str;
--len;
2013-11-06 18:21:07 +00:00
}
if (save[0] == '\\') {
++save;
}
2014-02-24 11:49:15 +00:00
if (!(str_index->gc.u.v.flags & IS_STR_CONSTANT_UNQUALIFIED)) {
2013-11-06 18:21:07 +00:00
zend_error(E_ERROR, "Undefined constant '%s'", save);
}
2014-02-24 11:49:15 +00:00
zend_error(E_NOTICE, "Use of undefined constant %s - assumed '%s'", str, str);
}
2014-02-24 11:25:24 +00:00
if (str == str_index->val && len == str_index->len) {
ZVAL_STR(&const_value, str_index);
} else {
ZVAL_STRINGL(&const_value, str, len);
}
2013-11-06 18:21:07 +00:00
}
2014-02-25 21:09:34 +00:00
if (Z_REFCOUNTED_P(element) && Z_REFCOUNT_P(element) > 1) {
ZVAL_DUP(&new_val, element);
2013-11-06 18:21:07 +00:00
/* preserve this bit for inheritance */
2014-02-24 11:25:24 +00:00
//??? Z_TYPE_P(element) |= IS_CONSTANT_INDEX;
2013-11-06 18:21:07 +00:00
zval_ptr_dtor(element);
ZVAL_COPY_VALUE(element, &new_val);
2013-11-06 18:21:07 +00:00
}
2002-09-10 08:35:50 +00:00
2013-11-06 18:21:07 +00:00
switch (Z_TYPE(const_value)) {
case IS_STRING:
ret = zend_symtable_update_current_key(Z_ARRVAL_P(p), Z_STR(const_value), HASH_UPDATE_KEY_IF_BEFORE);
2013-11-06 18:21:07 +00:00
break;
case IS_BOOL:
case IS_LONG:
ret = zend_hash_update_current_key_ex(Z_ARRVAL_P(p), HASH_KEY_IS_LONG, NULL, Z_LVAL(const_value), HASH_UPDATE_KEY_IF_BEFORE, NULL);
2013-11-06 18:21:07 +00:00
break;
case IS_DOUBLE:
ret = zend_hash_update_current_key_ex(Z_ARRVAL_P(p), HASH_KEY_IS_LONG, NULL, zend_dval_to_lval(Z_DVAL(const_value)), HASH_UPDATE_KEY_IF_BEFORE, NULL);
2013-11-06 18:21:07 +00:00
break;
case IS_NULL:
ret = zend_hash_update_current_key_ex(Z_ARRVAL_P(p), HASH_KEY_IS_STRING, STR_EMPTY_ALLOC(), 0, HASH_UPDATE_KEY_IF_BEFORE, NULL);
2013-11-06 18:21:07 +00:00
break;
default:
ret = SUCCESS;
break;
2001-07-16 11:41:06 +00:00
}
2013-11-06 18:21:07 +00:00
if (ret == SUCCESS) {
zend_hash_move_forward(Z_ARRVAL_P(p));
}
zval_dtor(&const_value);
}
2013-11-06 18:21:07 +00:00
zend_hash_apply_with_argument(Z_ARRVAL_P(p), (apply_func_arg_t) zval_update_constant_inline_change, (void *) scope TSRMLS_CC);
zend_hash_internal_pointer_reset(Z_ARRVAL_P(p));
} else if (Z_TYPE_P(p) == IS_CONSTANT_AST) {
SEPARATE_ZVAL_IF_NOT_REF(p);
2013-11-06 18:21:07 +00:00
zend_ast_evaluate(&const_value, Z_ASTVAL_P(p), scope TSRMLS_CC);
2013-11-06 18:21:07 +00:00
if (inline_change) {
zend_ast_destroy(Z_ASTVAL_P(p));
2014-02-25 12:20:42 +00:00
efree(Z_AST_P(p));
2001-07-16 11:41:06 +00:00
}
2013-11-06 18:21:07 +00:00
ZVAL_COPY_VALUE(p, &const_value);
1999-04-07 18:10:10 +00:00
}
return 0;
1999-04-07 18:10:10 +00:00
}
/* }}} */
1999-04-07 18:10:10 +00:00
ZEND_API int zval_update_constant_inline_change(zval *pp, void *scope TSRMLS_DC) /* {{{ */
{
return zval_update_constant_ex(pp, (void*)1, scope TSRMLS_CC);
}
/* }}} */
ZEND_API int zval_update_constant_no_inline_change(zval *pp, void *scope TSRMLS_DC) /* {{{ */
{
return zval_update_constant_ex(pp, (void*)0, scope TSRMLS_CC);
}
/* }}} */
ZEND_API int zval_update_constant(zval *pp, void *arg TSRMLS_DC) /* {{{ */
{
2006-10-18 17:04:49 +00:00
return zval_update_constant_ex(pp, arg, NULL TSRMLS_CC);
}
/* }}} */
1999-08-06 15:24:10 +00:00
int call_user_function(HashTable *function_table, zval *object, zval *function_name, zval *retval_ptr, zend_uint param_count, zval params[] TSRMLS_DC) /* {{{ */
1999-08-06 15:24:10 +00:00
{
zval *params_array;
zend_uint i;
1999-08-06 15:24:10 +00:00
int ex_retval;
2004-07-18 09:55:02 +00:00
if (param_count) {
params_array = (zval *) emalloc(sizeof(zval) * param_count);
2004-07-18 09:55:02 +00:00
for (i=0; i<param_count; i++) {
ZVAL_COPY_VALUE(&params_array[i], &params[i]);
2004-07-18 09:55:02 +00:00
}
} else {
params_array = NULL;
1999-08-06 15:24:10 +00:00
}
ZVAL_UNDEF(retval_ptr);
ex_retval = call_user_function_ex(function_table, object, function_name, retval_ptr, param_count, params_array, 1, NULL TSRMLS_CC);
2004-07-18 09:55:02 +00:00
if (params_array) {
efree(params_array);
}
1999-08-06 15:24:10 +00:00
return ex_retval;
}
/* }}} */
1999-08-06 15:24:10 +00:00
int call_user_function_ex(HashTable *function_table, zval *object, zval *function_name, zval *retval_ptr, zend_uint param_count, zval params[], int no_separation, HashTable *symbol_table TSRMLS_DC) /* {{{ */
2003-05-20 16:44:42 +00:00
{
zend_fcall_info fci;
fci.size = sizeof(fci);
fci.function_table = function_table;
fci.object_ptr = object;
ZVAL_COPY_VALUE(&fci.function_name, function_name);
fci.retval = retval_ptr;
fci.param_count = param_count;
fci.params = params;
fci.no_separation = (zend_bool) no_separation;
fci.symbol_table = symbol_table;
return zend_call_function(&fci, NULL TSRMLS_CC);
2003-05-20 16:44:42 +00:00
}
/* }}} */
2003-05-20 16:44:42 +00:00
int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TSRMLS_DC) /* {{{ */
1999-04-07 18:10:10 +00:00
{
zend_uint i;
1999-04-07 18:10:10 +00:00
HashTable *calling_symbol_table;
zend_op_array *original_op_array;
zend_op **original_opline_ptr;
zend_class_entry *current_scope;
zend_class_entry *current_called_scope;
zend_class_entry *calling_scope = NULL;
2008-07-24 09:42:18 +00:00
zend_class_entry *called_scope = NULL;
zval current_this;
zend_execute_data execute_data;
zend_fcall_info_cache fci_cache_local;
zval tmp;
ZVAL_UNDEF(fci->retval);
if (!EG(active)) {
return FAILURE; /* executor is already inactive */
}
if (EG(exception)) {
return FAILURE; /* we would result in an instable executor otherwise */
}
switch (fci->size) {
case sizeof(zend_fcall_info):
break; /* nothing to do currently */
default:
zend_error(E_ERROR, "Corrupted fcall_info provided to zend_call_function()");
break;
}
/* Initialize execute_data */
if (EG(current_execute_data)) {
execute_data = *EG(current_execute_data);
EX(op_array) = NULL;
EX(opline) = NULL;
ZVAL_UNDEF(&EX(object));
} else {
2004-02-11 13:01:39 +00:00
/* This only happens when we're called outside any execute()'s
* It shouldn't be strictly necessary to NULL execute_data out,
* but it may make bugs easier to spot
*/
memset(&execute_data, 0, sizeof(zend_execute_data));
}
2000-01-15 22:52:24 +00:00
if (!fci_cache || !fci_cache->initialized) {
zend_string *callable_name;
char *error = NULL;
if (!fci_cache) {
fci_cache = &fci_cache_local;
}
if (!zend_is_callable_ex(&fci->function_name, fci->object_ptr, IS_CALLABLE_CHECK_SILENT, &callable_name, fci_cache, &error TSRMLS_CC)) {
if (error) {
zend_error(E_WARNING, "Invalid callback %s, %s", callable_name->val, error);
efree(error);
}
2008-07-26 19:14:38 +00:00
if (callable_name) {
STR_RELEASE(callable_name);
2008-07-26 19:14:38 +00:00
}
1999-04-07 18:10:10 +00:00
return FAILURE;
} else if (error) {
/* Capitalize the first latter of the error message */
if (error[0] >= 'a' && error[0] <= 'z') {
error[0] += ('A' - 'a');
}
zend_error(E_STRICT, "%s", error);
efree(error);
2003-05-20 16:44:42 +00:00
}
STR_RELEASE(callable_name);
}
EX(function_state).function = fci_cache->function_handler;
calling_scope = fci_cache->calling_scope;
called_scope = fci_cache->called_scope;
fci->object_ptr = fci_cache->object_ptr;
if (fci->object_ptr) {
ZVAL_COPY_VALUE(&EX(object), fci->object_ptr);
} else {
ZVAL_UNDEF(&EX(object));
}
if (fci->object_ptr && Z_TYPE_P(fci->object_ptr) == IS_OBJECT &&
(!EG(objects_store).object_buckets ||
!IS_VALID(EG(objects_store).object_buckets[Z_OBJ_HANDLE_P(fci->object_ptr)]))) {
return FAILURE;
}
2006-02-25 18:25:45 +00:00
if (EX(function_state).function->common.fn_flags & (ZEND_ACC_ABSTRACT|ZEND_ACC_DEPRECATED)) {
if (EX(function_state).function->common.fn_flags & ZEND_ACC_ABSTRACT) {
2014-02-21 16:53:09 +00:00
zend_error_noreturn(E_ERROR, "Cannot call abstract method %s::%s()", EX(function_state).function->common.scope->name->val, EX(function_state).function->common.function_name->val);
2006-02-25 18:25:45 +00:00
}
if (EX(function_state).function->common.fn_flags & ZEND_ACC_DEPRECATED) {
2008-03-09 20:52:29 +00:00
zend_error(E_DEPRECATED, "Function %s%s%s() is deprecated",
EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name->val : "",
2006-02-25 18:25:45 +00:00
EX(function_state).function->common.scope ? "::" : "",
EX(function_state).function->common.function_name->val);
2006-02-25 18:25:45 +00:00
}
}
ZEND_VM_STACK_GROW_IF_NEEDED(fci->param_count + 1);
for (i=0; i<fci->param_count; i++) {
zval *param;
1999-04-07 18:10:10 +00:00
if (ARG_SHOULD_BE_SENT_BY_REF(EX(function_state).function, i + 1)) {
2014-02-21 14:39:27 +00:00
if (Z_REFCOUNTED(fci->params[i])) {
if (!Z_ISREF(fci->params[i]) && Z_REFCOUNT(fci->params[i]) > 1) {
zval new_zval;
if (fci->no_separation &&
!ARG_MAY_BE_SENT_BY_REF(EX(function_state).function, i + 1)) {
if (i || UNEXPECTED(ZEND_VM_STACK_ELEMETS(EG(argument_stack)) == (EG(argument_stack)->top))) {
/* hack to clean up the stack */
ZVAL_LONG(&tmp, i);
zend_vm_stack_push(&tmp TSRMLS_CC);
zend_vm_stack_clear_multiple(0 TSRMLS_CC);
}
zend_error(E_WARNING, "Parameter %d to %s%s%s() expected to be a reference, value given",
i+1,
EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name->val : "",
EX(function_state).function->common.scope ? "::" : "",
EX(function_state).function->common.function_name->val);
return FAILURE;
}
2006-12-21 11:08:00 +00:00
2014-02-21 14:39:27 +00:00
ZVAL_DUP(&new_zval, &fci->params[i]);
Z_DELREF(fci->params[i]);
ZVAL_COPY_VALUE(&fci->params[i], &new_zval);
1999-08-06 15:24:10 +00:00
}
2014-02-21 14:39:27 +00:00
Z_ADDREF(fci->params[i]);
1999-08-06 15:24:10 +00:00
}
//??? Z_SET_ISREF_PP(fci->params[i]);
param = &fci->params[i];
} else if (Z_ISREF(fci->params[i]) &&
/* don't separate references for __call */
(EX(function_state).function->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) == 0 ) {
param = &tmp;
ZVAL_DUP(param, &fci->params[i]);
} else {
param = &tmp;
ZVAL_COPY(param, &fci->params[i]);
1999-08-06 15:24:10 +00:00
}
zend_vm_stack_push(param TSRMLS_CC);
1999-04-07 18:10:10 +00:00
}
EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C);
ZVAL_LONG(&tmp, fci->param_count);
zend_vm_stack_push(&tmp TSRMLS_CC);
1999-04-07 18:10:10 +00:00
current_scope = EG(scope);
EG(scope) = calling_scope;
ZVAL_COPY_VALUE(&current_this, &EG(This));
current_called_scope = EG(called_scope);
2008-07-24 09:42:18 +00:00
if (called_scope) {
EG(called_scope) = called_scope;
} else if (EX(function_state).function->type != ZEND_INTERNAL_FUNCTION) {
EG(called_scope) = NULL;
}
if (fci->object_ptr) {
2004-03-16 14:59:06 +00:00
if ((EX(function_state).function->common.fn_flags & ZEND_ACC_STATIC)) {
ZVAL_UNDEF(&EG(This));
2004-03-16 14:59:06 +00:00
} else {
ZVAL_COPY(&EG(This), fci->object_ptr);
}
} else {
ZVAL_UNDEF(&EG(This));
}
EX(prev_execute_data) = EG(current_execute_data);
EG(current_execute_data) = &execute_data;
if (EX(function_state).function->type == ZEND_USER_FUNCTION) {
1999-04-13 19:28:03 +00:00
calling_symbol_table = EG(active_symbol_table);
2003-09-11 17:04:26 +00:00
EG(scope) = EX(function_state).function->common.scope;
if (fci->symbol_table) {
EG(active_symbol_table) = fci->symbol_table;
} else {
EG(active_symbol_table) = NULL;
}
1999-04-07 18:10:10 +00:00
original_op_array = EG(active_op_array);
EG(active_op_array) = (zend_op_array *) EX(function_state).function;
original_opline_ptr = EG(opline_ptr);
if (EG(active_op_array)->fn_flags & ZEND_ACC_GENERATOR) {
zend_generator_create_zval(EG(active_op_array), fci->retval TSRMLS_CC);
} else {
zend_execute(EG(active_op_array), fci->retval TSRMLS_CC);
}
if (!fci->symbol_table && EG(active_symbol_table)) {
zend_clean_and_cache_symbol_table(EG(active_symbol_table) TSRMLS_CC);
}
1999-04-13 19:28:03 +00:00
EG(active_symbol_table) = calling_symbol_table;
1999-04-07 18:10:10 +00:00
EG(active_op_array) = original_op_array;
EG(opline_ptr) = original_opline_ptr;
} else if (EX(function_state).function->type == ZEND_INTERNAL_FUNCTION) {
int call_via_handler = (EX(function_state).function->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0;
//??? ALLOC_INIT_ZVAL(*fci->retval_ptr_ptr);
2003-09-11 17:06:53 +00:00
if (EX(function_state).function->common.scope) {
2003-09-11 17:04:26 +00:00
EG(scope) = EX(function_state).function->common.scope;
}
if (EXPECTED(zend_execute_internal == NULL)) {
2012-07-22 21:25:00 +00:00
/* saves one function call if zend_execute_internal is not used */
EX(function_state).function->internal_function.handler(fci->param_count, fci->retval, fci->object_ptr, 1 TSRMLS_CC);
2012-07-22 21:25:00 +00:00
} else {
zend_execute_internal(&execute_data, fci, 1 TSRMLS_CC);
2012-07-22 21:25:00 +00:00
}
/* We shouldn't fix bad extensions here,
because it can break proper ones (Bug #34045)
if (!EX(function_state).function->common.return_reference)
{
INIT_PZVAL(*fci->retval_ptr_ptr);
}*/
if (EG(exception) && fci->retval) {
zval_ptr_dtor(fci->retval);
ZVAL_UNDEF(fci->retval);
2008-01-14 18:13:12 +00:00
}
if (call_via_handler) {
/* We must re-initialize function again */
fci_cache->initialized = 0;
}
} else { /* ZEND_OVERLOADED_FUNCTION */
//??? ALLOC_INIT_ZVAL(*fci->retval_ptr_ptr);
/* Not sure what should be done here if it's a static method */
if (fci->object_ptr) {
Z_OBJ_HT_P(fci->object_ptr)->call_method(EX(function_state).function->common.function_name, fci->param_count, fci->retval, fci->object_ptr, 1 TSRMLS_CC);
} else {
zend_error_noreturn(E_ERROR, "Cannot call overloaded function for non-object");
}
if (EX(function_state).function->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY) {
efree((char*)EX(function_state).function->common.function_name);
}
efree(EX(function_state).function);
if (EG(exception) && fci->retval) {
zval_ptr_dtor(fci->retval);
ZVAL_UNDEF(fci->retval);
}
1999-04-07 18:10:10 +00:00
}
2012-12-13 13:29:30 +00:00
zend_vm_stack_clear_multiple(0 TSRMLS_CC);
1999-04-07 18:10:10 +00:00
zval_ptr_dtor(&EG(This));
EG(called_scope) = current_called_scope;
EG(scope) = current_scope;
ZVAL_COPY_VALUE(&EG(This), &current_this);
EG(current_execute_data) = EX(prev_execute_data);
if (EG(exception)) {
zend_throw_exception_internal(NULL TSRMLS_CC);
}
return SUCCESS;
1999-04-07 18:10:10 +00:00
}
/* }}} */
1999-04-07 18:10:10 +00:00
ZEND_API zend_class_entry *zend_lookup_class_ex(zend_string *name, const zend_literal *key, int use_autoload TSRMLS_DC) /* {{{ */
{
zend_class_entry *ce = NULL;
zval args[1];
zval local_retval;
int retval;
zend_string *lc_name;
zend_fcall_info fcall_info;
zend_fcall_info_cache fcall_cache;
2004-11-17 12:06:27 +00:00
if (key) {
lc_name = Z_STR(key->constant);
} else {
if (name == NULL || !name->len) {
return NULL;
}
if (name->val[0] == '\\') {
lc_name = STR_ALLOC(name->len - 1, 0);
zend_str_tolower_copy(lc_name->val, name->val + 1, name->len - 1);
} else {
lc_name = STR_ALLOC(name->len, 0);
zend_str_tolower_copy(lc_name->val, name->val, name->len);
}
}
2009-04-08 13:17:58 +00:00
ce = zend_hash_find_ptr(EG(class_table), lc_name);
if (ce) {
if (!key) {
STR_FREE(lc_name);
}
return ce;
}
/* The compiler is not-reentrant. Make sure we __autoload() only during run-time
2013-07-23 23:55:43 +00:00
* (doesn't impact functionality of __autoload()
*/
if (!use_autoload || zend_is_compiling(TSRMLS_C)) {
if (!key) {
STR_FREE(lc_name);
}
return NULL;
}
/* Verify class name before passing it to __autoload() */
if (strspn(name->val, "0123456789_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\177\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377\\") != name->len) {
if (!key) {
STR_FREE(lc_name);
}
return NULL;
}
if (EG(in_autoload) == NULL) {
ALLOC_HASHTABLE(EG(in_autoload));
zend_hash_init(EG(in_autoload), 0, NULL, NULL, 0);
}
if (zend_hash_add_empty_element(EG(in_autoload), lc_name) == NULL) {
if (!key) {
STR_FREE(lc_name);
}
return NULL;
}
ZVAL_UNDEF(&local_retval);
if (name->val[0] == '\\') {
ZVAL_STRINGL(&args[0], name->val + 1, name->len - 1);
} else {
ZVAL_STR(&args[0], STR_COPY(name));
}
fcall_info.size = sizeof(fcall_info);
fcall_info.function_table = EG(function_table);
ZVAL_STRINGL(&fcall_info.function_name, ZEND_AUTOLOAD_FUNC_NAME, sizeof(ZEND_AUTOLOAD_FUNC_NAME) - 1);
fcall_info.symbol_table = NULL;
fcall_info.retval = &local_retval;
fcall_info.param_count = 1;
fcall_info.params = args;
fcall_info.object_ptr = NULL;
fcall_info.no_separation = 1;
fcall_cache.initialized = EG(autoload_func) ? 1 : 0;
fcall_cache.function_handler = EG(autoload_func);
fcall_cache.calling_scope = NULL;
2008-07-25 08:23:07 +00:00
fcall_cache.called_scope = NULL;
fcall_cache.object_ptr = NULL;
2008-08-14 10:24:52 +00:00
zend_exception_save(TSRMLS_C);
retval = zend_call_function(&fcall_info, &fcall_cache TSRMLS_CC);
zend_exception_restore(TSRMLS_C);
EG(autoload_func) = fcall_cache.function_handler;
zval_ptr_dtor(&args[0]);
zval_dtor(&fcall_info.function_name);
zend_hash_del(EG(in_autoload), lc_name);
zval_ptr_dtor(&local_retval);
if (retval == SUCCESS) {
ce = zend_hash_find_ptr(EG(class_table), lc_name);
}
if (!key) {
STR_FREE(lc_name);
}
return ce;
}
/* }}} */
1999-04-07 18:10:10 +00:00
ZEND_API zend_class_entry *zend_lookup_class(zend_string *name TSRMLS_DC) /* {{{ */
{
return zend_lookup_class_ex(name, NULL, 1 TSRMLS_CC);
}
/* }}} */
ZEND_API int zend_eval_stringl(char *str, int str_len, zval *retval_ptr, char *string_name TSRMLS_DC) /* {{{ */
1999-04-07 18:10:10 +00:00
{
zval pv;
zend_op_array *new_op_array;
zend_op_array *original_active_op_array = EG(active_op_array);
zend_uint original_compiler_options;
int retval;
1999-04-07 18:10:10 +00:00
if (retval_ptr) {
ZVAL_STR(&pv, STR_ALLOC(str_len + sizeof("return ;")-1, 1));
memcpy(Z_STRVAL(pv), "return ", sizeof("return ") - 1);
memcpy(Z_STRVAL(pv) + sizeof("return ") - 1, str, str_len);
Z_STRVAL(pv)[Z_STRLEN(pv) - 1] = ';';
2006-12-28 00:17:48 +00:00
Z_STRVAL(pv)[Z_STRLEN(pv)] = '\0';
1999-04-07 18:10:10 +00:00
} else {
ZVAL_STRINGL(&pv, str, str_len);
1999-04-07 18:10:10 +00:00
}
/*printf("Evaluating '%s'\n", pv.value.str.val);*/
original_compiler_options = CG(compiler_options);
CG(compiler_options) = ZEND_COMPILE_DEFAULT_FOR_EVAL;
2006-06-13 12:57:48 +00:00
new_op_array = zend_compile_string(&pv, string_name TSRMLS_CC);
CG(compiler_options) = original_compiler_options;
1999-04-07 18:10:10 +00:00
if (new_op_array) {
zval local_retval;
1999-04-07 18:10:10 +00:00
zend_op **original_opline_ptr = EG(opline_ptr);
2009-07-30 05:01:53 +00:00
int orig_interactive = CG(interactive);
1999-04-07 18:10:10 +00:00
EG(active_op_array) = new_op_array;
EG(no_extensions)=1;
2008-04-29 09:18:26 +00:00
if (!EG(active_symbol_table)) {
zend_rebuild_symbol_table(TSRMLS_C);
}
2009-07-30 05:01:53 +00:00
CG(interactive) = 0;
zend_try {
ZVAL_UNDEF(&local_retval);
zend_execute(new_op_array, &local_retval TSRMLS_CC);
} zend_catch {
destroy_op_array(new_op_array TSRMLS_CC);
efree(new_op_array);
zend_bailout();
} zend_end_try();
2009-07-30 05:01:53 +00:00
CG(interactive) = orig_interactive;
if (Z_TYPE(local_retval) != IS_UNDEF) {
if (retval_ptr) {
COPY_PZVAL_TO_ZVAL(*retval_ptr, &local_retval);
} else {
zval_ptr_dtor(&local_retval);
}
} else {
if (retval_ptr) {
ZVAL_NULL(retval_ptr);
}
}
1999-04-07 18:10:10 +00:00
EG(no_extensions)=0;
EG(opline_ptr) = original_opline_ptr;
EG(active_op_array) = original_active_op_array;
destroy_op_array(new_op_array TSRMLS_CC);
1999-04-07 18:10:10 +00:00
efree(new_op_array);
retval = SUCCESS;
1999-04-07 18:10:10 +00:00
} else {
retval = FAILURE;
1999-04-07 18:10:10 +00:00
}
2014-02-24 12:35:55 +00:00
zval_dtor(&pv);
return retval;
1999-04-07 18:10:10 +00:00
}
/* }}} */
1999-04-07 18:10:10 +00:00
ZEND_API int zend_eval_string(char *str, zval *retval_ptr, char *string_name TSRMLS_DC) /* {{{ */
{
return zend_eval_stringl(str, strlen(str), retval_ptr, string_name TSRMLS_CC);
}
/* }}} */
ZEND_API int zend_eval_stringl_ex(char *str, int str_len, zval *retval_ptr, char *string_name, int handle_exceptions TSRMLS_DC) /* {{{ */
{
int result;
result = zend_eval_stringl(str, str_len, retval_ptr, string_name TSRMLS_CC);
if (handle_exceptions && EG(exception)) {
2009-01-02 13:14:49 +00:00
zend_exception_error(EG(exception), E_ERROR TSRMLS_CC);
result = FAILURE;
}
return result;
}
/* }}} */
ZEND_API int zend_eval_string_ex(char *str, zval *retval_ptr, char *string_name, int handle_exceptions TSRMLS_DC) /* {{{ */
{
return zend_eval_stringl_ex(str, strlen(str), retval_ptr, string_name, handle_exceptions TSRMLS_CC);
}
/* }}} */
void execute_new_code(TSRMLS_D) /* {{{ */
1999-04-07 18:10:10 +00:00
{
2004-03-16 14:59:06 +00:00
zend_op *opline, *end;
zend_op *ret_opline;
2009-07-30 05:01:53 +00:00
int orig_interactive;
1999-04-07 18:10:10 +00:00
if (!(CG(active_op_array)->fn_flags & ZEND_ACC_INTERACTIVE)
|| CG(context).backpatch_count>0
|| CG(active_op_array)->function_name
|| CG(active_op_array)->type!=ZEND_USER_FUNCTION) {
1999-04-07 18:10:10 +00:00
return;
}
2001-04-30 04:50:34 +00:00
ret_opline = get_next_op(CG(active_op_array) TSRMLS_CC);
ret_opline->opcode = ZEND_RETURN;
ret_opline->op1_type = IS_CONST;
ret_opline->op1.constant = zend_add_literal(CG(active_op_array), &EG(uninitialized_zval) TSRMLS_CC);
SET_UNUSED(ret_opline->op2);
if (!EG(start_op)) {
EG(start_op) = CG(active_op_array)->opcodes;
}
opline=EG(start_op);
end=CG(active_op_array)->opcodes+CG(active_op_array)->last;
2001-04-30 04:50:34 +00:00
2004-03-16 14:59:06 +00:00
while (opline<end) {
if (opline->op1_type == IS_CONST) {
opline->op1.zv = &CG(active_op_array)->literals[opline->op1.constant].constant;
2004-03-16 14:59:06 +00:00
}
if (opline->op2_type == IS_CONST) {
opline->op2.zv = &CG(active_op_array)->literals[opline->op2.constant].constant;
2004-03-16 14:59:06 +00:00
}
switch (opline->opcode) {
case ZEND_GOTO:
if (Z_TYPE_P(opline->op2.zv) != IS_LONG) {
zend_resolve_goto_label(CG(active_op_array), opline, 1 TSRMLS_CC);
}
/* break omitted intentionally */
case ZEND_JMP:
opline->op1.jmp_addr = &CG(active_op_array)->opcodes[opline->op1.opline_num];
break;
case ZEND_JMPZ:
case ZEND_JMPNZ:
case ZEND_JMPZ_EX:
case ZEND_JMPNZ_EX:
case ZEND_JMP_SET:
case ZEND_JMP_SET_VAR:
opline->op2.jmp_addr = &CG(active_op_array)->opcodes[opline->op2.opline_num];
break;
}
ZEND_VM_SET_OPCODE_HANDLER(opline);
opline++;
2004-03-16 14:59:06 +00:00
}
2012-07-22 21:25:00 +00:00
zend_release_labels(1 TSRMLS_CC);
2012-07-22 21:25:00 +00:00
1999-04-07 18:10:10 +00:00
EG(active_op_array) = CG(active_op_array);
2009-07-30 05:01:53 +00:00
orig_interactive = CG(interactive);
CG(interactive) = 0;
zend_execute(CG(active_op_array), NULL TSRMLS_CC);
2009-07-30 05:01:53 +00:00
CG(interactive) = orig_interactive;
if (EG(exception)) {
2009-01-02 13:14:49 +00:00
zend_exception_error(EG(exception), E_ERROR TSRMLS_CC);
}
CG(active_op_array)->last -= 1; /* get rid of that ZEND_RETURN */
EG(start_op) = CG(active_op_array)->opcodes+CG(active_op_array)->last;
1999-04-07 18:10:10 +00:00
}
/* }}} */
ZEND_API void zend_timeout(int dummy) /* {{{ */
{
TSRMLS_FETCH();
2002-09-19 15:58:01 +00:00
if (zend_on_timeout) {
#ifdef ZEND_SIGNALS
2012-07-22 21:25:00 +00:00
/*
We got here because we got a timeout signal, so we are in a signal handler
at this point. However, we want to be able to timeout any user-supplied
shutdown functions, so pretend we are not in a signal handler while we are
2012-07-22 21:25:00 +00:00
calling these
*/
SIGG(running) = 0;
#endif
2002-09-19 15:58:01 +00:00
zend_on_timeout(EG(timeout_seconds) TSRMLS_CC);
}
zend_error(E_ERROR, "Maximum execution time of %d second%s exceeded", EG(timeout_seconds), EG(timeout_seconds) == 1 ? "" : "s");
}
/* }}} */
2000-06-16 02:49:21 +00:00
#ifdef ZEND_WIN32
static LRESULT CALLBACK zend_timeout_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) /* {{{ */
{
switch (message) {
case WM_DESTROY:
PostQuitMessage(0);
break;
case WM_REGISTER_ZEND_TIMEOUT:
/* wParam is the thread id pointer, lParam is the timeout amount in seconds */
if (lParam == 0) {
KillTimer(timeout_window, wParam);
} else {
#ifdef ZTS
void ***tsrm_ls;
#endif
SetTimer(timeout_window, wParam, lParam*1000, NULL);
#ifdef ZTS
tsrm_ls = ts_resource_ex(0, &wParam);
if (!tsrm_ls) {
/* shouldn't normally happen */
break;
}
#endif
EG(timed_out) = 0;
}
break;
case WM_UNREGISTER_ZEND_TIMEOUT:
/* wParam is the thread id pointer */
KillTimer(timeout_window, wParam);
break;
case WM_TIMER: {
#ifdef ZTS
void ***tsrm_ls;
tsrm_ls = ts_resource_ex(0, &wParam);
if (!tsrm_ls) {
/* Thread died before receiving its timeout? */
break;
}
#endif
KillTimer(timeout_window, wParam);
EG(timed_out) = 1;
}
break;
default:
2001-08-11 15:56:40 +00:00
return DefWindowProc(hWnd, message, wParam, lParam);
}
return 0;
}
/* }}} */
static unsigned __stdcall timeout_thread_proc(void *pArgs) /* {{{ */
{
MSG message;
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";
if (!RegisterClass(&wc)) {
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;
}
}
DestroyWindow(timeout_window);
UnregisterClass(wc.lpszClassName, NULL);
SetEvent(timeout_thread_handle);
return 0;
}
/* }}} */
void zend_init_timeout_thread(void) /* {{{ */
{
timeout_thread_event = CreateEvent(NULL, FALSE, FALSE, NULL);
timeout_thread_handle = CreateEvent(NULL, FALSE, FALSE, NULL);
_beginthreadex(NULL, 0, timeout_thread_proc, NULL, 0, &timeout_thread_id);
WaitForSingleObject(timeout_thread_event, INFINITE);
}
/* }}} */
void zend_shutdown_timeout_thread(void) /* {{{ */
{
if (!timeout_thread_initialized) {
return;
}
PostThreadMessage(timeout_thread_id, WM_QUIT, 0, 0);
/* Wait for thread termination */
WaitForSingleObject(timeout_thread_handle, 5000);
CloseHandle(timeout_thread_handle);
timeout_thread_initialized = 0;
}
/* }}} */
#endif
/* This one doesn't exists on QNX */
#ifndef SIGPROF
#define SIGPROF 27
#endif
void zend_set_timeout(long seconds, int reset_signals) /* {{{ */
{
TSRMLS_FETCH();
EG(timeout_seconds) = seconds;
#ifdef ZEND_WIN32
if(!seconds) {
return;
}
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);
#else
# ifdef HAVE_SETITIMER
2000-06-16 02:49:21 +00:00
{
struct itimerval t_r; /* timeout requested */
int signo;
if(seconds) {
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;
# ifdef __CYGWIN__
setitimer(ITIMER_REAL, &t_r, NULL);
}
signo = SIGALRM;
# else
setitimer(ITIMER_PROF, &t_r, NULL);
}
signo = SIGPROF;
# endif
if (reset_signals) {
# ifdef ZEND_SIGNALS
zend_signal(signo, zend_timeout TSRMLS_CC);
# else
sigset_t sigset;
signal(signo, zend_timeout);
sigemptyset(&sigset);
sigaddset(&sigset, signo);
sigprocmask(SIG_UNBLOCK, &sigset, NULL);
# endif
}
2000-06-16 02:49:21 +00:00
}
# endif /* HAVE_SETITIMER */
#endif
}
/* }}} */
void zend_unset_timeout(TSRMLS_D) /* {{{ */
{
#ifdef ZEND_WIN32
if(timeout_thread_initialized) {
PostThreadMessage(timeout_thread_id, WM_UNREGISTER_ZEND_TIMEOUT, (WPARAM) GetCurrentThreadId(), (LPARAM) 0);
}
#else
# ifdef HAVE_SETITIMER
if (EG(timeout_seconds)) {
2000-06-16 02:49:21 +00:00
struct itimerval no_timeout;
2000-06-16 02:49:21 +00: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;
#ifdef __CYGWIN__
setitimer(ITIMER_REAL, &no_timeout, NULL);
#else
2000-06-16 02:49:21 +00:00
setitimer(ITIMER_PROF, &no_timeout, NULL);
#endif
2000-06-16 02:49:21 +00:00
}
# endif
#endif
}
/* }}} */
zend_class_entry *zend_fetch_class(zend_string *class_name, int fetch_type TSRMLS_DC) /* {{{ */
2003-08-03 08:21:08 +00:00
{
zend_class_entry *ce;
int use_autoload = (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) == 0;
int silent = (fetch_type & ZEND_FETCH_CLASS_SILENT) != 0;
2003-08-03 08:21:08 +00:00
fetch_type &= ZEND_FETCH_CLASS_MASK;
2003-08-03 08:21:08 +00:00
check_fetch_type:
switch (fetch_type) {
case ZEND_FETCH_CLASS_SELF:
if (!EG(scope)) {
zend_error(E_ERROR, "Cannot access self:: when no class scope is active");
}
return EG(scope);
case ZEND_FETCH_CLASS_PARENT:
if (!EG(scope)) {
zend_error(E_ERROR, "Cannot access parent:: when no class scope is active");
}
if (!EG(scope)->parent) {
zend_error(E_ERROR, "Cannot access parent:: when current class scope has no parent");
}
return EG(scope)->parent;
case ZEND_FETCH_CLASS_STATIC:
if (!EG(called_scope)) {
zend_error(E_ERROR, "Cannot access static:: when no class scope is active");
}
return EG(called_scope);
2003-08-03 08:21:08 +00:00
case ZEND_FETCH_CLASS_AUTO: {
fetch_type = zend_get_class_fetch_type(class_name->val, class_name->len);
2003-08-03 08:21:08 +00:00
if (fetch_type!=ZEND_FETCH_CLASS_DEFAULT) {
goto check_fetch_type;
}
}
break;
}
if ((ce = zend_lookup_class_ex(class_name, NULL, use_autoload TSRMLS_CC)) == NULL) {
if (use_autoload) {
if (!silent && !EG(exception)) {
if (fetch_type == ZEND_FETCH_CLASS_INTERFACE) {
zend_error(E_ERROR, "Interface '%s' not found", class_name->val);
Implemented Traits for PHP as proposed in the RFC [TRAITS] # RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior # Ok, here we go, I guess that will result in more discussion, which is fine # by me. But now, the patch is here, and properly archived. # # See below a list of notes to the patch, it also includes a list of # points which should be fixed # # Internals of the Traits Patch # ----------------------------- # # Open TODOs # """""""""" # # - Reflection API # - support for traits for internal classes # - currently destroy_zend_class does not handle that case # # Introduced Structures # """"""""""""""""""""" # # Data structures to encode the composition information specified in the # source: # - zend_trait_method_reference # - zend_trait_precedence # - zend_trait_alias # # Changes # """"""" # # zend_class_entry # - uses NULL terminated lists of pointers for # - trait_aliases # - trait_precedences # - do you prefer an explicit counter? # - the information is only necessary during class composition # but might be interesting for reflection # - did not want to blow up class further with not really necessary length counters # # added keywords # - trait # - insteadof # # Added opcodes # ZEND_ADD_TRAIT # - similar to ZEND_ADD_INTERFACE # - adds the trait to the list of traits of a class, no actual composition done # ZEND_BIND_TRAITS # - emitted in zend_do_end_class_declaration # - concludes the class definition and will initiate the trait composition # when the class definition is encountered during runtime # # Added Flags # ZEND_ACC_TRAIT = 0x120 # ZEND_ACC_IMPLEMENT_TRAITS = 0x400000 # ZEND_FETCH_CLASS_TRAIT = 14 # # zend_vm_execute.h # - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER, # ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective # # zend_compile.c # - refactored do_inherit_method_check # split into do_inherit_method_check and do_inheritance_check_on_method # - added helper functions use a '_' as prefix and are not mentioned in the # headers # - _copy_functions # prepare hash-maps of functions which should be merged into a class # here the aliases are handled # - _merge_functions # builds a hash-table of the methods which need to be added to a class # does the conflict detection # - reused php_runkit_function_copy_ctor # - it is not identical with the original code anymore, needed to update it # think I fixed some bugs, not sure whether all have been reported back to runkit # - has to be renamed, left the name for the moment, to make its origin obvious # - here might be optimization potential # - not sure whether everything needs to be copied # - copying the literals might be broken # - added it since the literals array is freed by efree and gave problems # with doubled frees # - all immutable parts of the zend_op array should not be copied # - am not sure which parts are immutable # - and not sure how to avoid doubled frees on the same arrays on shutdown # - _merge_functions_to_class # does the final merging with the target class to handle inherited # and overridden methods # - small helper for NULL terminated lists # zend_init_list, zend_add_to_list # # zend_language_parser.y # - reused class definition for traits # - there should be something with regard to properties # - if they get explicitly defined, it might be worthwhile to # check that there are no collisions with other traits in a composition # (however, I would not introduce elaborate language features to control that # but a notice for such conflicts might be nice to the developers)
2010-04-22 22:05:56 +00:00
} else if (fetch_type == ZEND_FETCH_CLASS_TRAIT) {
zend_error(E_ERROR, "Trait '%s' not found", class_name->val);
Implemented Traits for PHP as proposed in the RFC [TRAITS] # RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior # Ok, here we go, I guess that will result in more discussion, which is fine # by me. But now, the patch is here, and properly archived. # # See below a list of notes to the patch, it also includes a list of # points which should be fixed # # Internals of the Traits Patch # ----------------------------- # # Open TODOs # """""""""" # # - Reflection API # - support for traits for internal classes # - currently destroy_zend_class does not handle that case # # Introduced Structures # """"""""""""""""""""" # # Data structures to encode the composition information specified in the # source: # - zend_trait_method_reference # - zend_trait_precedence # - zend_trait_alias # # Changes # """"""" # # zend_class_entry # - uses NULL terminated lists of pointers for # - trait_aliases # - trait_precedences # - do you prefer an explicit counter? # - the information is only necessary during class composition # but might be interesting for reflection # - did not want to blow up class further with not really necessary length counters # # added keywords # - trait # - insteadof # # Added opcodes # ZEND_ADD_TRAIT # - similar to ZEND_ADD_INTERFACE # - adds the trait to the list of traits of a class, no actual composition done # ZEND_BIND_TRAITS # - emitted in zend_do_end_class_declaration # - concludes the class definition and will initiate the trait composition # when the class definition is encountered during runtime # # Added Flags # ZEND_ACC_TRAIT = 0x120 # ZEND_ACC_IMPLEMENT_TRAITS = 0x400000 # ZEND_FETCH_CLASS_TRAIT = 14 # # zend_vm_execute.h # - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER, # ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective # # zend_compile.c # - refactored do_inherit_method_check # split into do_inherit_method_check and do_inheritance_check_on_method # - added helper functions use a '_' as prefix and are not mentioned in the # headers # - _copy_functions # prepare hash-maps of functions which should be merged into a class # here the aliases are handled # - _merge_functions # builds a hash-table of the methods which need to be added to a class # does the conflict detection # - reused php_runkit_function_copy_ctor # - it is not identical with the original code anymore, needed to update it # think I fixed some bugs, not sure whether all have been reported back to runkit # - has to be renamed, left the name for the moment, to make its origin obvious # - here might be optimization potential # - not sure whether everything needs to be copied # - copying the literals might be broken # - added it since the literals array is freed by efree and gave problems # with doubled frees # - all immutable parts of the zend_op array should not be copied # - am not sure which parts are immutable # - and not sure how to avoid doubled frees on the same arrays on shutdown # - _merge_functions_to_class # does the final merging with the target class to handle inherited # and overridden methods # - small helper for NULL terminated lists # zend_init_list, zend_add_to_list # # zend_language_parser.y # - reused class definition for traits # - there should be something with regard to properties # - if they get explicitly defined, it might be worthwhile to # check that there are no collisions with other traits in a composition # (however, I would not introduce elaborate language features to control that # but a notice for such conflicts might be nice to the developers)
2010-04-22 22:05:56 +00:00
} else {
zend_error(E_ERROR, "Class '%s' not found", class_name->val);
2012-07-22 21:25:00 +00:00
}
}
}
return NULL;
2003-08-03 08:21:08 +00:00
}
return ce;
2003-08-03 08:21:08 +00:00
}
/* }}} */
zend_class_entry *zend_fetch_class_by_name(zend_string *class_name, const zend_literal *key, int fetch_type TSRMLS_DC) /* {{{ */
{
zend_class_entry *ce;
int use_autoload = (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) == 0;
if ((ce = zend_lookup_class_ex(class_name, key, use_autoload TSRMLS_CC)) == NULL) {
if (use_autoload) {
if ((fetch_type & ZEND_FETCH_CLASS_SILENT) == 0 && !EG(exception)) {
if ((fetch_type & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_INTERFACE) {
zend_error(E_ERROR, "Interface '%s' not found", class_name->val);
2010-04-23 08:56:03 +00:00
} else if ((fetch_type & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_TRAIT) {
zend_error(E_ERROR, "Trait '%s' not found", class_name->val);
} else {
zend_error(E_ERROR, "Class '%s' not found", class_name->val);
2012-07-22 21:25:00 +00:00
}
}
}
return NULL;
}
return ce;
}
/* }}} */
#define MAX_ABSTRACT_INFO_CNT 3
#define MAX_ABSTRACT_INFO_FMT "%s%s%s%s"
#define DISPLAY_ABSTRACT_FN(idx) \
ai.afn[idx] ? ZEND_FN_SCOPE_NAME(ai.afn[idx]) : "", \
ai.afn[idx] ? "::" : "", \
ai.afn[idx] ? ai.afn[idx]->common.function_name->val : "", \
ai.afn[idx] && ai.afn[idx + 1] ? ", " : (ai.afn[idx] && ai.cnt > MAX_ABSTRACT_INFO_CNT ? ", ..." : "")
typedef struct _zend_abstract_info {
zend_function *afn[MAX_ABSTRACT_INFO_CNT + 1];
int cnt;
int ctor;
} zend_abstract_info;
2014-02-21 16:35:40 +00:00
static int zend_verify_abstract_class_function(zval *zv, zend_abstract_info *ai TSRMLS_DC) /* {{{ */
{
2014-02-21 16:35:40 +00:00
zend_function *fn = Z_PTR_P(zv);
if (fn->common.fn_flags & ZEND_ACC_ABSTRACT) {
if (ai->cnt < MAX_ABSTRACT_INFO_CNT) {
ai->afn[ai->cnt] = fn;
}
if (fn->common.fn_flags & ZEND_ACC_CTOR) {
if (!ai->ctor) {
ai->cnt++;
ai->ctor = 1;
} else {
ai->afn[ai->cnt] = NULL;
}
} else {
ai->cnt++;
}
}
return 0;
}
/* }}} */
void zend_verify_abstract_class(zend_class_entry *ce TSRMLS_DC) /* {{{ */
{
zend_abstract_info ai;
if ((ce->ce_flags & ZEND_ACC_IMPLICIT_ABSTRACT_CLASS) && !(ce->ce_flags & ZEND_ACC_EXPLICIT_ABSTRACT_CLASS)) {
memset(&ai, 0, sizeof(ai));
zend_hash_apply_with_argument(&ce->function_table, (apply_func_arg_t) zend_verify_abstract_class_function, &ai TSRMLS_CC);
2004-03-08 16:52:59 +00:00
if (ai.cnt) {
zend_error(E_ERROR, "Class %s contains %d abstract method%s and must therefore be declared abstract or implement the remaining methods (" MAX_ABSTRACT_INFO_FMT MAX_ABSTRACT_INFO_FMT MAX_ABSTRACT_INFO_FMT ")",
ce->name->val, ai.cnt,
ai.cnt > 1 ? "s" : "",
2004-03-08 16:52:59 +00:00
DISPLAY_ABSTRACT_FN(0),
DISPLAY_ABSTRACT_FN(1),
DISPLAY_ABSTRACT_FN(2)
);
}
}
}
/* }}} */
ZEND_API void zend_reset_all_cv(HashTable *symbol_table TSRMLS_DC) /* {{{ */
{
zend_execute_data *ex;
int i;
for (ex = EG(current_execute_data); ex; ex = ex->prev_execute_data) {
2005-10-27 19:25:52 +00:00
if (ex->op_array && ex->symbol_table == symbol_table) {
for (i = 0; i < ex->op_array->last_var; i++) {
ZVAL_UNDEF(EX_VAR_NUM_2(ex, i));
}
}
}
}
/* }}} */
ZEND_API void zend_delete_variable(zend_execute_data *ex, HashTable *ht, zend_string *name TSRMLS_DC) /* {{{ */
{
if (zend_hash_del(ht, name) == SUCCESS) {
while (ex && ex->symbol_table == ht) {
int i;
if (ex->op_array) {
for (i = 0; i < ex->op_array->last_var; i++) {
if (ex->op_array->vars[i]->h == name->h &&
ex->op_array->vars[i]->len == name->len &&
!memcmp(ex->op_array->vars[i]->val, name->val, name->len)) {
ZVAL_UNDEF(EX_VAR_NUM_2(ex, i));
break;
}
}
}
ex = ex->prev_execute_data;
}
}
}
/* }}} */
ZEND_API int zend_delete_global_variable(zend_string *name TSRMLS_DC) /* {{{ */
{
zend_execute_data *ex;
if (zend_hash_del(&EG(symbol_table).ht, name) == SUCCESS) {
for (ex = EG(current_execute_data); ex; ex = ex->prev_execute_data) {
if (ex->op_array && ex->symbol_table == &EG(symbol_table).ht) {
int i;
for (i = 0; i < ex->op_array->last_var; i++) {
if (ex->op_array->vars[i]->h == name->h &&
ex->op_array->vars[i]->len == name->len &&
!memcmp(ex->op_array->vars[i]->val, name->val, name->len)
) {
ZVAL_UNDEF(EX_VAR_NUM_2(ex, i));
break;
}
}
}
}
return SUCCESS;
}
return FAILURE;
}
/* }}} */
ZEND_API void zend_rebuild_symbol_table(TSRMLS_D) /* {{{ */
{
zend_uint i;
zend_execute_data *ex;
if (!EG(active_symbol_table)) {
2012-07-22 21:25:00 +00:00
/* Search for last called user function */
ex = EG(current_execute_data);
while (ex && !ex->op_array) {
ex = ex->prev_execute_data;
}
if (ex && ex->symbol_table) {
EG(active_symbol_table) = ex->symbol_table;
return;
}
if (ex && ex->op_array) {
if (EG(symtable_cache_ptr)>=EG(symtable_cache)) {
/*printf("Cache hit! Reusing %x\n", symtable_cache[symtable_cache_ptr]);*/
EG(active_symbol_table) = *(EG(symtable_cache_ptr)--);
} else {
ALLOC_HASHTABLE(EG(active_symbol_table));
zend_hash_init(EG(active_symbol_table), ex->op_array->last_var, NULL, ZVAL_PTR_DTOR, 0);
/*printf("Cache miss! Initialized %x\n", EG(active_symbol_table));*/
}
ex->symbol_table = EG(active_symbol_table);
if (ex->op_array->this_var != -1 &&
Z_TYPE_P(EX_VAR_NUM_2(ex, ex->op_array->this_var)) == IS_UNDEF &&
Z_TYPE(EG(This)) != IS_UNDEF) {
ZVAL_COPY_VALUE(EX_VAR_NUM_2(ex, ex->op_array->this_var), &EG(This));
}
for (i = 0; i < ex->op_array->last_var; i++) {
if (Z_TYPE_P(EX_VAR_NUM_2(ex, i)) != IS_UNDEF) {
zval *zv = zend_hash_update(EG(active_symbol_table),
ex->op_array->vars[i],
EX_VAR_NUM_2(ex, i));
ZVAL_INDIRECT(EX_VAR_NUM_2(ex, i), zv);
}
}
}
}
}
/* }}} */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* indent-tabs-mode: t
* End:
*/