2006-05-10 07:53:23 +08:00
/*
2003-02-01 09:49:15 +08:00
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
| Zend Engine |
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
2018-01-02 12:57:58 +08:00
| Copyright ( c ) 1998 - 2018 Zend Technologies Ltd . ( http : //www.zend.com) |
2003-02-01 09:49:15 +08: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 |
2003-06-11 04:04:29 +08:00
| available through the world - wide - web at the following url : |
2003-02-01 09:49:15 +08:00
| http : //www.zend.com/license/2_00.txt. |
| 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 . |
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
| Authors : Andi Gutmans < andi @ zend . com > |
| Zeev Suraski < zeev @ zend . com > |
2015-08-31 16:38:16 +08:00
| Dmitry Stogov < dmitry @ zend . com > |
2003-02-01 09:49:15 +08:00
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
*/
/* $Id$ */
2002-02-07 22:08:43 +08:00
# include "zend.h"
# include "zend_globals.h"
# include "zend_variables.h"
# include "zend_API.h"
# include "zend_objects.h"
2002-05-31 20:09:19 +08:00
# include "zend_objects_API.h"
2002-02-07 22:08:43 +08:00
# include "zend_object_handlers.h"
2003-11-25 04:57:54 +08:00
# include "zend_interfaces.h"
2015-07-04 02:41:17 +08:00
# include "zend_exceptions.h"
2008-08-15 05:36:56 +08:00
# include "zend_closures.h"
2009-06-18 21:46:16 +08:00
# include "zend_compile.h"
2013-12-13 03:25:10 +08:00
# include "zend_hash.h"
2002-02-07 22:08:43 +08:00
2002-02-21 19:50:44 +08:00
# define DEBUG_OBJECT_HANDLERS 0
2002-02-07 22:08:43 +08:00
2017-09-18 18:13:24 +08:00
# define ZEND_WRONG_PROPERTY_OFFSET 0
2014-02-10 14:04:30 +08:00
/* guard flags */
# define IN_GET (1<<0)
# define IN_SET (1<<1)
# define IN_UNSET (1<<2)
# define IN_ISSET (1<<3)
2003-01-12 22:39:45 +08:00
2002-09-04 17:07:58 +08:00
/*
__X accessors explanation :
if we have __get and property that is not part of the properties array is
requested , we call __get handler . If it fails , we return uninitialized .
if we have __set and property that is not part of the properties array is
set , we call __set handler . If it fails , we do not change the array .
for both handlers above , when we are inside __get / __set , no further calls for
2007-10-11 09:03:19 +08:00
__get / __set for this property of this object will be made , to prevent endless
2007-03-24 01:16:55 +08:00
recursion and enable accessors to change properties array .
2002-09-04 17:07:58 +08:00
if we have __call and method which is not part of the class function table is
2006-05-10 07:53:23 +08:00
called , we cal __call handler .
2002-09-04 17:07:58 +08:00
*/
2010-05-24 22:11:39 +08:00
ZEND_API void rebuild_object_properties ( zend_object * zobj ) /* { { { */
{
if ( ! zobj - > properties ) {
zend_property_info * prop_info ;
zend_class_entry * ce = zobj - > ce ;
2017-09-20 07:25:56 +08:00
zobj - > properties = zend_new_array ( ce - > default_properties_count ) ;
2010-05-24 22:11:39 +08:00
if ( ce - > default_properties_count ) {
2015-03-07 00:23:54 +08:00
zend_hash_real_init ( zobj - > properties , 0 ) ;
2014-04-18 23:18:11 +08:00
ZEND_HASH_FOREACH_PTR ( & ce - > properties_info , prop_info ) {
2010-05-24 22:11:39 +08:00
if ( /*prop_info->ce == ce &&*/
2015-08-26 08:27:05 +08:00
( prop_info - > flags & ZEND_ACC_STATIC ) = = 0 ) {
if ( UNEXPECTED ( Z_TYPE_P ( OBJ_PROP ( zobj , prop_info - > offset ) ) = = IS_UNDEF ) ) {
2018-01-22 19:58:16 +08:00
HT_FLAGS ( zobj - > properties ) | = HASH_FLAG_HAS_EMPTY_IND ;
2015-08-26 08:27:05 +08:00
}
2014-03-26 22:07:31 +08:00
2017-12-31 12:35:25 +08:00
_zend_hash_append_ind ( zobj - > properties , prop_info - > name ,
2015-03-07 00:23:54 +08:00
OBJ_PROP ( zobj , prop_info - > offset ) ) ;
2012-05-13 13:12:48 +08:00
}
2014-04-18 23:18:11 +08:00
} ZEND_HASH_FOREACH_END ( ) ;
2010-05-24 22:11:39 +08:00
while ( ce - > parent & & ce - > parent - > default_properties_count ) {
ce = ce - > parent ;
2014-04-18 23:18:11 +08:00
ZEND_HASH_FOREACH_PTR ( & ce - > properties_info , prop_info ) {
2010-05-24 22:11:39 +08:00
if ( prop_info - > ce = = ce & &
2012-05-13 13:12:48 +08:00
( prop_info - > flags & ZEND_ACC_STATIC ) = = 0 & &
2015-08-26 08:27:05 +08:00
( prop_info - > flags & ZEND_ACC_PRIVATE ) ! = 0 ) {
2014-03-26 22:07:31 +08:00
zval zv ;
2015-01-03 17:22:58 +08:00
2015-08-26 08:27:05 +08:00
if ( UNEXPECTED ( Z_TYPE_P ( OBJ_PROP ( zobj , prop_info - > offset ) ) = = IS_UNDEF ) ) {
2018-01-22 19:58:16 +08:00
HT_FLAGS ( zobj - > properties ) | = HASH_FLAG_HAS_EMPTY_IND ;
2015-08-26 08:27:05 +08:00
}
2014-11-06 19:50:03 +08:00
ZVAL_INDIRECT ( & zv , OBJ_PROP ( zobj , prop_info - > offset ) ) ;
2014-03-26 22:07:31 +08:00
zend_hash_add ( zobj - > properties , prop_info - > name , & zv ) ;
2012-05-13 13:12:48 +08:00
}
2014-04-18 23:18:11 +08:00
} ZEND_HASH_FOREACH_END ( ) ;
2010-05-24 22:11:39 +08:00
}
}
}
}
2011-09-15 22:50:38 +08:00
/* }}} */
2010-05-24 22:11:39 +08:00
2014-12-14 06:06:14 +08:00
ZEND_API HashTable * zend_std_get_properties ( zval * object ) /* { { { */
2002-02-07 22:08:43 +08:00
{
zend_object * zobj ;
2002-04-22 22:22:27 +08:00
zobj = Z_OBJ_P ( object ) ;
2010-05-24 22:11:39 +08:00
if ( ! zobj - > properties ) {
rebuild_object_properties ( zobj ) ;
}
2002-02-07 22:08:43 +08:00
return zobj - > properties ;
}
2007-11-03 03:40:39 +08:00
/* }}} */
2014-12-14 06:06:14 +08:00
ZEND_API HashTable * zend_std_get_gc ( zval * object , zval * * table , int * n ) /* { { { */
2011-11-02 14:31:33 +08:00
{
if ( Z_OBJ_HANDLER_P ( object , get_properties ) ! = zend_std_get_properties ) {
* table = NULL ;
* n = 0 ;
2014-12-14 06:06:14 +08:00
return Z_OBJ_HANDLER_P ( object , get_properties ) ( object ) ;
2011-11-02 14:31:33 +08:00
} else {
zend_object * zobj = Z_OBJ_P ( object ) ;
2015-05-07 02:33:49 +08:00
if ( zobj - > properties ) {
* table = NULL ;
* n = 0 ;
return zobj - > properties ;
} else {
* table = zobj - > properties_table ;
* n = zobj - > ce - > default_properties_count ;
return NULL ;
}
2011-11-02 14:31:33 +08:00
}
}
/* }}} */
2014-12-14 06:06:14 +08:00
ZEND_API HashTable * zend_std_get_debug_info ( zval * object , int * is_temp ) /* { { { */
2007-11-03 03:40:39 +08:00
{
2014-02-18 11:13:00 +08:00
zend_class_entry * ce = Z_OBJCE_P ( object ) ;
2014-04-26 04:32:51 +08:00
zval retval ;
HashTable * ht ;
2014-02-18 11:13:00 +08:00
if ( ! ce - > __debugInfo ) {
* is_temp = 0 ;
return Z_OBJ_HANDLER_P ( object , get_properties )
2014-12-14 06:06:14 +08:00
? Z_OBJ_HANDLER_P ( object , get_properties ) ( object )
2014-02-18 11:13:00 +08:00
: NULL ;
}
2014-04-26 04:32:51 +08:00
zend_call_method_with_0_params ( object , ce , & ce - > __debugInfo , ZEND_DEBUGINFO_FUNC_NAME , & retval ) ;
if ( Z_TYPE ( retval ) = = IS_ARRAY ) {
2016-11-29 03:59:57 +08:00
if ( ! Z_REFCOUNTED ( retval ) ) {
2014-06-03 06:43:53 +08:00
* is_temp = 1 ;
2015-02-14 03:20:39 +08:00
return zend_array_dup ( Z_ARRVAL ( retval ) ) ;
2014-06-03 06:43:53 +08:00
} else if ( Z_REFCOUNT ( retval ) < = 1 ) {
2014-02-18 11:13:00 +08:00
* is_temp = 1 ;
2015-09-15 04:04:27 +08:00
ht = Z_ARR ( retval ) ;
2014-02-18 11:13:00 +08:00
return ht ;
} else {
* is_temp = 0 ;
zval_ptr_dtor ( & retval ) ;
2014-06-03 06:43:53 +08:00
return Z_ARRVAL ( retval ) ;
2014-02-18 11:13:00 +08:00
}
2014-04-26 04:32:51 +08:00
} else if ( Z_TYPE ( retval ) = = IS_NULL ) {
2014-02-18 11:13:00 +08:00
* is_temp = 1 ;
2017-09-20 07:25:56 +08:00
ht = zend_new_array ( 0 ) ;
2014-04-26 04:32:51 +08:00
return ht ;
2014-02-18 11:13:00 +08:00
}
2015-04-01 18:32:23 +08:00
zend_error_noreturn ( E_ERROR , ZEND_DEBUGINFO_FUNC_NAME " () must return an array " ) ;
2014-04-12 01:33:56 +08:00
return NULL ; /* Compilers are dumb and don't understand that noreturn means that the function does NOT need a return value... */
2007-11-03 03:40:39 +08:00
}
/* }}} */
2002-02-07 22:08:43 +08:00
2014-12-14 06:06:14 +08:00
static void zend_std_call_getter ( zval * object , zval * member , zval * retval ) /* { { { */
2002-09-04 17:07:58 +08:00
{
2004-09-29 06:55:22 +08:00
zend_class_entry * ce = Z_OBJCE_P ( object ) ;
2016-05-13 16:55:09 +08:00
zend_class_entry * orig_fake_scope = EG ( fake_scope ) ;
EG ( fake_scope ) = NULL ;
2006-05-10 07:53:23 +08:00
2004-09-29 06:55:22 +08:00
/* __get handler is called with one argument:
property name
2002-09-04 17:07:58 +08:00
2014-11-20 03:59:31 +08:00
it should return whether the call was successful or not
2002-09-04 17:07:58 +08:00
*/
2014-02-10 14:04:30 +08:00
zend_call_method_with_1_params ( object , ce , & ce - > __get , ZEND_GET_FUNC_NAME , retval , member ) ;
2002-09-04 17:07:58 +08:00
2016-05-13 16:55:09 +08:00
EG ( fake_scope ) = orig_fake_scope ;
2002-09-04 17:07:58 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2002-09-04 17:07:58 +08:00
2016-10-29 20:51:41 +08:00
static void zend_std_call_setter ( zval * object , zval * member , zval * value ) /* { { { */
2002-09-04 17:07:58 +08:00
{
2004-09-29 06:55:22 +08:00
zend_class_entry * ce = Z_OBJCE_P ( object ) ;
2016-05-13 16:55:09 +08:00
zend_class_entry * orig_fake_scope = EG ( fake_scope ) ;
EG ( fake_scope ) = NULL ;
2005-02-02 15:19:22 +08:00
2002-09-04 17:07:58 +08:00
/* __set handler is called with two arguments:
2004-09-29 06:55:22 +08:00
property name
value to be set
2002-09-04 17:07:58 +08:00
*/
2016-10-29 20:51:41 +08:00
zend_call_method_with_2_params ( object , ce , & ce - > __set , ZEND_SET_FUNC_NAME , NULL , member , value ) ;
2002-09-04 17:07:58 +08:00
2016-10-29 20:51:41 +08:00
EG ( fake_scope ) = orig_fake_scope ;
2002-09-04 17:07:58 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2002-09-04 17:07:58 +08:00
2014-12-14 06:06:14 +08:00
static void zend_std_call_unsetter ( zval * object , zval * member ) /* { { { */
2005-07-08 00:07:09 +08:00
{
zend_class_entry * ce = Z_OBJCE_P ( object ) ;
2016-05-13 16:55:09 +08:00
zend_class_entry * orig_fake_scope = EG ( fake_scope ) ;
EG ( fake_scope ) = NULL ;
2006-05-10 07:53:23 +08:00
2005-07-08 00:07:09 +08:00
/* __unset handler is called with one argument:
property name
*/
2006-05-10 07:53:23 +08:00
2014-02-10 14:04:30 +08:00
zend_call_method_with_1_params ( object , ce , & ce - > __unset , ZEND_UNSET_FUNC_NAME , NULL , member ) ;
2005-07-08 00:07:09 +08:00
2016-05-13 16:55:09 +08:00
EG ( fake_scope ) = orig_fake_scope ;
2005-07-08 00:07:09 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2005-07-08 00:07:09 +08:00
2014-12-14 06:06:14 +08:00
static void zend_std_call_issetter ( zval * object , zval * member , zval * retval ) /* { { { */
2005-07-08 00:07:09 +08:00
{
zend_class_entry * ce = Z_OBJCE_P ( object ) ;
2016-05-13 16:55:09 +08:00
zend_class_entry * orig_fake_scope = EG ( fake_scope ) ;
EG ( fake_scope ) = NULL ;
2006-05-10 07:53:23 +08:00
2005-07-08 00:07:09 +08:00
/* __isset handler is called with one argument:
property name
it should return whether the property is set or not
*/
2006-05-10 07:53:23 +08:00
2014-02-10 14:04:30 +08:00
zend_call_method_with_1_params ( object , ce , & ce - > __isset , ZEND_ISSET_FUNC_NAME , retval , member ) ;
2005-07-08 00:07:09 +08:00
2016-05-13 16:55:09 +08:00
EG ( fake_scope ) = orig_fake_scope ;
2005-07-08 00:07:09 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-02-04 20:12:34 +08:00
2014-12-14 06:06:14 +08:00
static zend_always_inline int zend_verify_property_access ( zend_property_info * property_info , zend_class_entry * ce ) /* { { { */
2003-02-04 20:12:34 +08:00
{
2016-04-28 09:13:34 +08:00
zend_class_entry * scope ;
2015-06-03 18:43:05 +08:00
if ( property_info - > flags & ZEND_ACC_PUBLIC ) {
return 1 ;
} else if ( property_info - > flags & ZEND_ACC_PRIVATE ) {
2016-04-28 09:13:34 +08:00
if ( EG ( fake_scope ) ) {
scope = EG ( fake_scope ) ;
} else {
scope = zend_get_executed_scope ( ) ;
}
return ( ce = = scope | | property_info - > ce = = scope ) ;
2015-11-07 22:50:24 +08:00
} else if ( property_info - > flags & ZEND_ACC_PROTECTED ) {
2016-04-28 09:13:34 +08:00
if ( EG ( fake_scope ) ) {
scope = EG ( fake_scope ) ;
} else {
scope = zend_get_executed_scope ( ) ;
}
return zend_check_protected ( property_info - > ce , scope ) ;
2003-02-04 20:12:34 +08:00
}
2015-11-07 22:50:24 +08:00
return 0 ;
2003-02-04 20:12:34 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-02-04 20:12:34 +08:00
2010-05-24 22:11:39 +08:00
static zend_always_inline zend_bool is_derived_class ( zend_class_entry * child_class , zend_class_entry * parent_class ) /* { { { */
2003-07-21 20:13:16 +08:00
{
child_class = child_class - > parent ;
while ( child_class ) {
if ( child_class = = parent_class ) {
return 1 ;
}
child_class = child_class - > parent ;
}
return 0 ;
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-07-21 20:13:16 +08:00
2017-10-25 16:45:17 +08:00
static zend_always_inline uintptr_t zend_get_property_offset ( zend_class_entry * ce , zend_string * member , int silent , void * * cache_slot ) /* { { { */
2003-02-07 18:05:36 +08:00
{
2014-10-21 00:33:35 +08:00
zval * zv ;
zend_property_info * property_info = NULL ;
uint32_t flags ;
2016-04-28 09:13:34 +08:00
zend_class_entry * scope ;
2003-03-19 00:30:23 +08:00
2014-07-08 00:54:31 +08:00
if ( cache_slot & & EXPECTED ( ce = = CACHED_PTR_EX ( cache_slot ) ) ) {
2017-10-25 16:45:17 +08:00
return ( uintptr_t ) CACHED_PTR_EX ( cache_slot + 1 ) ;
2010-05-24 22:11:39 +08:00
}
2016-03-24 01:57:59 +08:00
if ( UNEXPECTED ( ZSTR_VAL ( member ) [ 0 ] = = ' \0 ' & & ZSTR_LEN ( member ) ! = 0 ) ) {
2005-04-29 01:40:11 +08:00
if ( ! silent ) {
2016-03-24 01:57:59 +08:00
zend_throw_error ( NULL , " Cannot access property started with ' \\ 0' " ) ;
2005-04-29 01:40:11 +08:00
}
2015-01-13 16:33:00 +08:00
return ZEND_WRONG_PROPERTY_OFFSET ;
2005-04-29 01:40:11 +08:00
}
2014-10-21 00:33:35 +08:00
if ( UNEXPECTED ( zend_hash_num_elements ( & ce - > properties_info ) = = 0 ) ) {
goto exit_dynamic ;
}
zv = zend_hash_find ( & ce - > properties_info , member ) ;
if ( EXPECTED ( zv ! = NULL ) ) {
property_info = ( zend_property_info * ) Z_PTR_P ( zv ) ;
flags = property_info - > flags ;
if ( UNEXPECTED ( ( flags & ZEND_ACC_SHADOW ) ! = 0 ) ) {
2005-06-10 01:20:44 +08:00
/* if it's a shadow - go to access it's private */
property_info = NULL ;
} else {
2014-12-14 06:06:14 +08:00
if ( EXPECTED ( zend_verify_property_access ( property_info , ce ) ! = 0 ) ) {
2014-10-21 00:33:35 +08:00
if ( UNEXPECTED ( ! ( flags & ZEND_ACC_CHANGED ) )
| | UNEXPECTED ( ( flags & ZEND_ACC_PRIVATE ) ) ) {
2014-11-06 19:50:03 +08:00
if ( UNEXPECTED ( ( flags & ZEND_ACC_STATIC ) ! = 0 ) ) {
if ( ! silent ) {
2015-06-30 18:59:27 +08:00
zend_error ( E_NOTICE , " Accessing static property %s::$%s as non static " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( member ) ) ;
2014-11-06 19:50:03 +08:00
}
2015-01-13 16:33:00 +08:00
return ZEND_DYNAMIC_PROPERTY_OFFSET ;
2005-06-10 01:20:44 +08:00
}
2014-10-21 00:33:35 +08:00
goto exit ;
2005-06-08 16:08:18 +08:00
}
2005-06-10 01:20:44 +08:00
} else {
/* Try to look in the scope instead */
2014-10-21 00:33:35 +08:00
property_info = ZEND_WRONG_PROPERTY_INFO ;
2003-03-19 00:30:23 +08:00
}
2003-02-07 18:05:36 +08:00
}
2003-02-14 06:47:25 +08:00
}
2015-01-03 17:22:58 +08:00
2016-04-28 09:13:34 +08:00
if ( EG ( fake_scope ) ) {
scope = EG ( fake_scope ) ;
} else {
scope = zend_get_executed_scope ( ) ;
}
if ( scope ! = ce
& & scope
& & is_derived_class ( ce , scope )
& & ( zv = zend_hash_find ( & scope - > properties_info , member ) ) ! = NULL
2014-10-21 00:33:35 +08:00
& & ( ( zend_property_info * ) Z_PTR_P ( zv ) ) - > flags & ZEND_ACC_PRIVATE ) {
property_info = ( zend_property_info * ) Z_PTR_P ( zv ) ;
2015-01-13 16:33:00 +08:00
if ( UNEXPECTED ( ( property_info - > flags & ZEND_ACC_STATIC ) ! = 0 ) ) {
return ZEND_DYNAMIC_PROPERTY_OFFSET ;
2014-11-06 19:50:03 +08:00
}
2014-10-21 00:33:35 +08:00
} else if ( UNEXPECTED ( property_info = = NULL ) ) {
exit_dynamic :
2014-07-08 00:54:31 +08:00
if ( cache_slot ) {
2017-10-24 15:28:19 +08:00
CACHE_POLYMORPHIC_PTR_EX ( cache_slot , ce , ( void * ) ZEND_DYNAMIC_PROPERTY_OFFSET ) ;
2010-05-24 22:11:39 +08:00
}
2015-01-13 16:33:00 +08:00
return ZEND_DYNAMIC_PROPERTY_OFFSET ;
2014-10-21 00:33:35 +08:00
} else if ( UNEXPECTED ( property_info = = ZEND_WRONG_PROPERTY_INFO ) ) {
/* Information was available, but we were denied access. Error out. */
if ( ! silent ) {
2015-07-08 01:10:22 +08:00
zend_throw_error ( NULL , " Cannot access %s property %s::$%s " , zend_visibility_string ( flags ) , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( member ) ) ;
2003-03-19 00:30:23 +08:00
}
2015-01-13 16:33:00 +08:00
return ZEND_WRONG_PROPERTY_OFFSET ;
2014-10-21 00:33:35 +08:00
}
exit :
if ( cache_slot ) {
2017-10-25 16:45:17 +08:00
CACHE_POLYMORPHIC_PTR_EX ( cache_slot , ce , ( void * ) ( uintptr_t ) property_info - > offset ) ;
2003-02-07 18:05:36 +08:00
}
2015-01-13 16:33:00 +08:00
return property_info - > offset ;
2003-02-07 18:05:36 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-02-07 18:05:36 +08:00
2014-12-14 06:06:14 +08:00
ZEND_API zend_property_info * zend_get_property_info ( zend_class_entry * ce , zend_string * member , int silent ) /* { { { */
2010-04-20 18:57:45 +08:00
{
2015-01-13 16:33:00 +08:00
zval * zv ;
zend_property_info * property_info = NULL ;
uint32_t flags ;
2016-04-28 09:13:34 +08:00
zend_class_entry * scope ;
2015-01-13 16:33:00 +08:00
2016-03-24 01:57:59 +08:00
if ( UNEXPECTED ( ZSTR_VAL ( member ) [ 0 ] = = ' \0 ' & & ZSTR_LEN ( member ) ! = 0 ) ) {
2015-01-13 16:33:00 +08:00
if ( ! silent ) {
2016-03-24 01:57:59 +08:00
zend_throw_error ( NULL , " Cannot access property started with ' \\ 0' " ) ;
2015-01-13 16:33:00 +08:00
}
return ZEND_WRONG_PROPERTY_INFO ;
}
if ( UNEXPECTED ( zend_hash_num_elements ( & ce - > properties_info ) = = 0 ) ) {
goto exit_dynamic ;
}
zv = zend_hash_find ( & ce - > properties_info , member ) ;
if ( EXPECTED ( zv ! = NULL ) ) {
property_info = ( zend_property_info * ) Z_PTR_P ( zv ) ;
flags = property_info - > flags ;
if ( UNEXPECTED ( ( flags & ZEND_ACC_SHADOW ) ! = 0 ) ) {
/* if it's a shadow - go to access it's private */
property_info = NULL ;
} else {
if ( EXPECTED ( zend_verify_property_access ( property_info , ce ) ! = 0 ) ) {
if ( UNEXPECTED ( ! ( flags & ZEND_ACC_CHANGED ) )
| | UNEXPECTED ( ( flags & ZEND_ACC_PRIVATE ) ) ) {
if ( UNEXPECTED ( ( flags & ZEND_ACC_STATIC ) ! = 0 ) ) {
if ( ! silent ) {
2015-06-30 18:59:27 +08:00
zend_error ( E_NOTICE , " Accessing static property %s::$%s as non static " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( member ) ) ;
2015-01-13 16:33:00 +08:00
}
}
goto exit ;
}
} else {
/* Try to look in the scope instead */
property_info = ZEND_WRONG_PROPERTY_INFO ;
}
}
}
2016-04-28 09:13:34 +08:00
if ( EG ( fake_scope ) ) {
scope = EG ( fake_scope ) ;
} else {
scope = zend_get_executed_scope ( ) ;
}
if ( scope ! = ce
& & scope
& & is_derived_class ( ce , scope )
& & ( zv = zend_hash_find ( & scope - > properties_info , member ) ) ! = NULL
2015-01-13 16:33:00 +08:00
& & ( ( zend_property_info * ) Z_PTR_P ( zv ) ) - > flags & ZEND_ACC_PRIVATE ) {
property_info = ( zend_property_info * ) Z_PTR_P ( zv ) ;
} else if ( UNEXPECTED ( property_info = = NULL ) ) {
exit_dynamic :
return NULL ;
} else if ( UNEXPECTED ( property_info = = ZEND_WRONG_PROPERTY_INFO ) ) {
/* Information was available, but we were denied access. Error out. */
if ( ! silent ) {
2015-07-08 01:10:22 +08:00
zend_throw_error ( NULL , " Cannot access %s property %s::$%s " , zend_visibility_string ( flags ) , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( member ) ) ;
2015-01-13 16:33:00 +08:00
}
return ZEND_WRONG_PROPERTY_INFO ;
}
exit :
return property_info ;
2010-04-20 18:57:45 +08:00
}
/* }}} */
2014-12-14 06:06:14 +08:00
ZEND_API int zend_check_property_access ( zend_object * zobj , zend_string * prop_info_name ) /* { { { */
2003-12-19 04:07:30 +08:00
{
zend_property_info * property_info ;
2014-04-02 03:27:51 +08:00
const char * class_name = NULL ;
const char * prop_name ;
zend_string * member ;
2014-09-16 06:23:58 +08:00
size_t prop_name_len ;
2003-12-19 04:07:30 +08:00
2015-06-30 18:59:27 +08:00
if ( ZSTR_VAL ( prop_info_name ) [ 0 ] = = 0 ) {
2014-09-16 06:23:58 +08:00
zend_unmangle_property_name_ex ( prop_info_name , & class_name , & prop_name , & prop_name_len ) ;
2014-08-26 01:24:55 +08:00
member = zend_string_init ( prop_name , prop_name_len , 0 ) ;
2014-04-02 03:27:51 +08:00
} else {
2014-08-26 01:24:55 +08:00
member = zend_string_copy ( prop_info_name ) ;
2014-04-02 03:27:51 +08:00
}
2015-01-13 16:33:00 +08:00
property_info = zend_get_property_info ( zobj - > ce , member , 1 ) ;
2014-08-26 01:24:55 +08:00
zend_string_release ( member ) ;
2014-10-17 23:10:05 +08:00
if ( property_info = = NULL ) {
/* undefined public property */
if ( class_name & & class_name [ 0 ] ! = ' * ' ) {
/* we we're looking for a private prop */
return FAILURE ;
}
return SUCCESS ;
} else if ( property_info = = ZEND_WRONG_PROPERTY_INFO ) {
2003-12-19 04:07:30 +08:00
return FAILURE ;
}
2007-11-03 03:40:39 +08:00
if ( class_name & & class_name [ 0 ] ! = ' * ' ) {
2005-06-06 15:52:08 +08:00
if ( ! ( property_info - > flags & ZEND_ACC_PRIVATE ) ) {
/* we we're looking for a private prop but found a non private one of the same name */
return FAILURE ;
2015-06-30 18:59:27 +08:00
} else if ( strcmp ( ZSTR_VAL ( prop_info_name ) + 1 , ZSTR_VAL ( property_info - > name ) + 1 ) ) {
2005-06-06 15:52:08 +08:00
/* we we're looking for a private prop but found a private one of the same name but another class */
return FAILURE ;
}
2003-12-19 04:07:30 +08:00
}
2014-12-14 06:06:14 +08:00
return zend_verify_property_access ( property_info , zobj - > ce ) ? SUCCESS : FAILURE ;
2003-12-19 04:07:30 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-12-19 04:07:30 +08:00
2015-01-31 18:12:31 +08:00
static void zend_property_guard_dtor ( zval * el ) /* { { { */ {
2016-04-27 05:24:20 +08:00
uint32_t * ptr = ( uint32_t * ) Z_PTR_P ( el ) ;
if ( EXPECTED ( ! ( ( ( zend_uintptr_t ) ptr ) & 1 ) ) ) {
efree_size ( ptr , sizeof ( uint32_t ) ) ;
}
2015-01-31 18:12:31 +08:00
}
/* }}} */
2016-04-30 13:48:47 +08:00
ZEND_API uint32_t * zend_get_property_guard ( zend_object * zobj , zend_string * member ) /* { { { */
2005-11-15 21:35:23 +08:00
{
2015-02-04 20:24:13 +08:00
HashTable * guards ;
2016-04-27 05:24:20 +08:00
zval * zv ;
uint32_t * ptr ;
2015-02-04 20:24:13 +08:00
2018-02-27 22:38:56 +08:00
ZEND_ASSERT ( zobj - > ce - > ce_flags & ZEND_ACC_USE_GUARDS ) ;
2016-04-27 05:24:20 +08:00
zv = zobj - > properties_table + zobj - > ce - > default_properties_count ;
if ( EXPECTED ( Z_TYPE_P ( zv ) = = IS_STRING ) ) {
zend_string * str = Z_STR_P ( zv ) ;
if ( EXPECTED ( str = = member ) | |
/* hash values are always pred-calculated here */
( EXPECTED ( ZSTR_H ( str ) = = ZSTR_H ( member ) ) & &
2017-12-04 22:17:02 +08:00
EXPECTED ( zend_string_equal_content ( str , member ) ) ) ) {
2018-01-23 17:56:22 +08:00
return & Z_PROPERTY_GUARD_P ( zv ) ;
} else if ( EXPECTED ( Z_PROPERTY_GUARD_P ( zv ) = = 0 ) ) {
2016-04-27 05:24:20 +08:00
zend_string_release ( Z_STR_P ( zv ) ) ;
ZVAL_STR_COPY ( zv , member ) ;
2018-01-23 17:56:22 +08:00
return & Z_PROPERTY_GUARD_P ( zv ) ;
2016-04-27 05:24:20 +08:00
} else {
ALLOC_HASHTABLE ( guards ) ;
zend_hash_init ( guards , 8 , NULL , zend_property_guard_dtor , 0 ) ;
/* mark pointer as "special" using low bit */
2017-04-02 19:30:35 +08:00
zend_hash_add_new_ptr ( guards , str ,
2018-01-23 17:56:22 +08:00
( void * ) ( ( ( zend_uintptr_t ) & Z_PROPERTY_GUARD_P ( zv ) ) | 1 ) ) ;
2016-04-29 01:19:28 +08:00
zend_string_release ( Z_STR_P ( zv ) ) ;
2016-04-27 05:24:20 +08:00
ZVAL_ARR ( zv , guards ) ;
}
} else if ( EXPECTED ( Z_TYPE_P ( zv ) = = IS_ARRAY ) ) {
guards = Z_ARRVAL_P ( zv ) ;
2015-02-04 20:24:13 +08:00
ZEND_ASSERT ( guards ! = NULL ) ;
2016-04-27 05:24:20 +08:00
zv = zend_hash_find ( guards , member ) ;
if ( zv ! = NULL ) {
return ( uint32_t * ) ( ( ( zend_uintptr_t ) Z_PTR_P ( zv ) ) & ~ 1 ) ;
2015-02-04 20:24:13 +08:00
}
} else {
2016-04-27 05:24:20 +08:00
ZEND_ASSERT ( Z_TYPE_P ( zv ) = = IS_UNDEF ) ;
ZVAL_STR_COPY ( zv , member ) ;
2018-01-23 17:56:22 +08:00
Z_PROPERTY_GUARD_P ( zv ) = 0 ;
return & Z_PROPERTY_GUARD_P ( zv ) ;
2016-04-27 05:24:20 +08:00
}
/* we have to allocate uint32_t separately because ht->arData may be reallocated */
ptr = ( uint32_t * ) emalloc ( sizeof ( uint32_t ) ) ;
* ptr = 0 ;
return ( uint32_t * ) zend_hash_add_new_ptr ( guards , member , ptr ) ;
2005-11-15 21:35:23 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2005-11-15 21:35:23 +08:00
2014-12-14 06:06:14 +08:00
zval * zend_std_read_property ( zval * object , zval * member , int type , void * * cache_slot , zval * rv ) /* { { { */
2002-02-07 22:08:43 +08:00
{
zend_object * zobj ;
2017-10-26 18:05:23 +08:00
zval tmp_member , tmp_object ;
2014-02-10 14:04:30 +08:00
zval * retval ;
2017-10-25 16:45:17 +08:00
uintptr_t property_offset ;
2017-10-26 10:08:39 +08:00
uint32_t * guard = NULL ;
2004-03-22 02:07:27 +08:00
2002-04-22 22:22:27 +08:00
zobj = Z_OBJ_P ( object ) ;
2002-02-07 22:08:43 +08:00
2014-02-10 14:04:30 +08:00
ZVAL_UNDEF ( & tmp_member ) ;
2010-05-06 20:52:27 +08:00
if ( UNEXPECTED ( Z_TYPE_P ( member ) ! = IS_STRING ) ) {
2017-12-08 00:24:55 +08:00
ZVAL_STR ( & tmp_member , zval_get_string_func ( member ) ) ;
2014-02-10 14:04:30 +08:00
member = & tmp_member ;
2014-07-08 00:54:31 +08:00
cache_slot = NULL ;
2002-02-07 22:08:43 +08:00
}
# if DEBUG_OBJECT_HANDLERS
fprintf ( stderr , " Read object #%d property: %s \n " , Z_OBJ_HANDLE_P ( object ) , Z_STRVAL_P ( member ) ) ;
2007-10-11 09:03:19 +08:00
# endif
2003-02-04 20:12:34 +08:00
2004-07-19 22:26:53 +08:00
/* make zend_get_property_info silent if we have getter - we may want to use it */
2015-01-13 16:33:00 +08:00
property_offset = zend_get_property_offset ( zobj - > ce , Z_STR_P ( member ) , ( type = = BP_VAR_IS ) | | ( zobj - > ce - > __get ! = NULL ) , cache_slot ) ;
2003-02-04 20:12:34 +08:00
2017-09-18 18:13:24 +08:00
if ( EXPECTED ( IS_VALID_PROPERTY_OFFSET ( property_offset ) ) ) {
retval = OBJ_PROP ( zobj , property_offset ) ;
if ( EXPECTED ( Z_TYPE_P ( retval ) ! = IS_UNDEF ) ) {
goto exit ;
}
} else if ( EXPECTED ( IS_DYNAMIC_PROPERTY_OFFSET ( property_offset ) ) ) {
if ( EXPECTED ( zobj - > properties ! = NULL ) ) {
2017-10-23 23:29:13 +08:00
if ( ! IS_UNKNOWN_DYNAMIC_PROPERTY_OFFSET ( property_offset ) ) {
2017-10-25 16:45:17 +08:00
uintptr_t idx = ZEND_DECODE_DYN_PROP_OFFSET ( property_offset ) ;
2017-10-23 23:29:13 +08:00
2017-10-24 15:28:19 +08:00
if ( EXPECTED ( idx < zobj - > properties - > nNumUsed * sizeof ( Bucket ) ) ) {
Bucket * p = ( Bucket * ) ( ( char * ) zobj - > properties - > arData + idx ) ;
2017-10-23 23:29:13 +08:00
if ( EXPECTED ( Z_TYPE ( p - > val ) ! = IS_UNDEF ) & &
( EXPECTED ( p - > key = = Z_STR_P ( member ) ) | |
( EXPECTED ( p - > h = = ZSTR_H ( Z_STR_P ( member ) ) ) & &
EXPECTED ( p - > key ! = NULL ) & &
2017-12-04 22:17:02 +08:00
EXPECTED ( zend_string_equal_content ( p - > key , Z_STR_P ( member ) ) ) ) ) ) {
2017-10-23 23:29:13 +08:00
retval = & p - > val ;
goto exit ;
}
}
2017-10-24 15:28:19 +08:00
CACHE_PTR_EX ( cache_slot + 1 , ( void * ) ZEND_DYNAMIC_PROPERTY_OFFSET ) ;
2017-10-23 23:29:13 +08:00
}
2014-10-17 23:10:05 +08:00
retval = zend_hash_find ( zobj - > properties , Z_STR_P ( member ) ) ;
2017-10-23 23:29:13 +08:00
if ( EXPECTED ( retval ) ) {
if ( cache_slot ) {
2017-10-25 16:45:17 +08:00
uintptr_t idx = ( char * ) retval - ( char * ) zobj - > properties - > arData ;
2017-10-24 15:28:19 +08:00
CACHE_PTR_EX ( cache_slot + 1 , ( void * ) ZEND_ENCODE_DYN_PROP_OFFSET ( idx ) ) ;
2017-10-23 23:29:13 +08:00
}
goto exit ;
}
2014-02-10 14:04:30 +08:00
}
2015-04-01 05:37:59 +08:00
} else if ( UNEXPECTED ( EG ( exception ) ) ) {
retval = & EG ( uninitialized_zval ) ;
goto exit ;
2014-02-10 14:04:30 +08:00
}
2017-10-26 18:05:23 +08:00
ZVAL_UNDEF ( & tmp_object ) ;
2016-03-26 18:43:56 +08:00
/* magic isset */
if ( ( type = = BP_VAR_IS ) & & zobj - > ce - > __isset ) {
2017-10-24 02:07:49 +08:00
zval tmp_result ;
2017-10-26 10:07:08 +08:00
guard = zend_get_property_guard ( zobj , Z_STR_P ( member ) ) ;
2016-03-26 18:43:56 +08:00
if ( ! ( ( * guard ) & IN_ISSET ) ) {
2017-10-26 18:05:23 +08:00
if ( Z_TYPE ( tmp_member ) = = IS_UNDEF ) {
ZVAL_COPY ( & tmp_member , member ) ;
member = & tmp_member ;
}
2016-03-26 18:43:56 +08:00
ZVAL_COPY ( & tmp_object , object ) ;
ZVAL_UNDEF ( & tmp_result ) ;
* guard | = IN_ISSET ;
zend_std_call_issetter ( & tmp_object , member , & tmp_result ) ;
* guard & = ~ IN_ISSET ;
2017-12-31 12:35:25 +08:00
2016-03-26 18:43:56 +08:00
if ( ! zend_is_true ( & tmp_result ) ) {
retval = & EG ( uninitialized_zval ) ;
zval_ptr_dtor ( & tmp_object ) ;
zval_ptr_dtor ( & tmp_result ) ;
goto exit ;
}
zval_ptr_dtor ( & tmp_result ) ;
}
}
2014-03-26 22:07:31 +08:00
/* magic get */
2014-02-10 14:04:30 +08:00
if ( zobj - > ce - > __get ) {
2017-10-26 10:07:08 +08:00
if ( guard = = NULL ) {
guard = zend_get_property_guard ( zobj , Z_STR_P ( member ) ) ;
}
2014-02-10 14:04:30 +08:00
if ( ! ( ( * guard ) & IN_GET ) ) {
2002-09-04 17:07:58 +08:00
/* have getter - try with it! */
2017-10-26 18:05:23 +08:00
if ( Z_TYPE ( tmp_object ) = = IS_UNDEF ) {
ZVAL_COPY ( & tmp_object , object ) ;
}
2014-02-10 14:04:30 +08:00
* guard | = IN_GET ; /* prevent circular getting */
2014-12-14 06:06:14 +08:00
zend_std_call_getter ( & tmp_object , member , rv ) ;
2014-02-10 14:04:30 +08:00
* guard & = ~ IN_GET ;
2002-09-04 17:07:58 +08:00
2014-02-27 19:40:13 +08:00
if ( Z_TYPE_P ( rv ) ! = IS_UNDEF ) {
retval = rv ;
2007-10-07 13:22:07 +08:00
if ( ! Z_ISREF_P ( rv ) & &
2007-01-10 23:58:08 +08:00
( type = = BP_VAR_W | | type = = BP_VAR_RW | | type = = BP_VAR_UNSET ) ) {
2010-05-06 20:52:27 +08:00
if ( UNEXPECTED ( Z_TYPE_P ( rv ) ! = IS_OBJECT ) ) {
2015-06-30 18:59:27 +08:00
zend_error ( E_NOTICE , " Indirect modification of overloaded property %s::$%s has no effect " , ZSTR_VAL ( zobj - > ce - > name ) , Z_STRVAL_P ( member ) ) ;
2006-07-21 18:32:17 +08:00
}
}
2002-09-04 17:07:58 +08:00
} else {
2014-02-27 19:40:13 +08:00
retval = & EG ( uninitialized_zval ) ;
2002-09-04 17:07:58 +08:00
}
2014-04-16 22:06:03 +08:00
zval_ptr_dtor ( & tmp_object ) ;
2014-10-17 23:10:05 +08:00
goto exit ;
2017-11-29 14:46:21 +08:00
} else if ( Z_STRVAL_P ( member ) [ 0 ] = = ' \0 ' & & Z_STRLEN_P ( member ) ! = 0 ) {
2017-10-26 18:05:23 +08:00
zval_ptr_dtor ( & tmp_object ) ;
2017-11-29 14:46:21 +08:00
zend_throw_error ( NULL , " Cannot access property started with ' \\ 0' " ) ;
retval = & EG ( uninitialized_zval ) ;
goto exit ;
2014-02-10 14:04:30 +08:00
}
2002-02-07 22:08:43 +08:00
}
2017-10-26 18:05:23 +08:00
zval_ptr_dtor ( & tmp_object ) ;
2014-10-17 23:10:05 +08:00
if ( ( type ! = BP_VAR_IS ) ) {
2015-06-30 18:59:27 +08:00
zend_error ( E_NOTICE , " Undefined property: %s::$%s " , ZSTR_VAL ( zobj - > ce - > name ) , Z_STRVAL_P ( member ) ) ;
2014-10-17 23:10:05 +08:00
}
retval = & EG ( uninitialized_zval ) ;
2014-03-26 22:07:31 +08:00
2014-02-10 14:04:30 +08:00
exit :
2015-09-10 14:57:22 +08:00
if ( UNEXPECTED ( Z_REFCOUNTED ( tmp_member ) ) ) {
2005-06-03 19:16:19 +08:00
zval_ptr_dtor ( & tmp_member ) ;
2002-02-07 22:08:43 +08:00
}
2015-09-10 14:39:25 +08:00
2014-02-10 14:04:30 +08:00
return retval ;
2002-02-07 22:08:43 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2002-02-07 22:08:43 +08:00
2014-12-14 06:06:14 +08:00
ZEND_API void zend_std_write_property ( zval * object , zval * member , zval * value , void * * cache_slot ) /* { { { */
2002-02-07 22:08:43 +08:00
{
zend_object * zobj ;
2014-02-10 14:04:30 +08:00
zval tmp_member ;
zval * variable_ptr ;
2017-10-25 16:45:17 +08:00
uintptr_t property_offset ;
2004-07-19 22:26:53 +08:00
2002-04-22 22:22:27 +08:00
zobj = Z_OBJ_P ( object ) ;
2002-02-07 22:08:43 +08:00
2014-02-10 14:04:30 +08:00
ZVAL_UNDEF ( & tmp_member ) ;
2010-05-06 20:52:27 +08:00
if ( UNEXPECTED ( Z_TYPE_P ( member ) ! = IS_STRING ) ) {
2017-12-08 00:24:55 +08:00
ZVAL_STR ( & tmp_member , zval_get_string_func ( member ) ) ;
2014-02-10 14:04:30 +08:00
member = & tmp_member ;
2014-07-08 00:54:31 +08:00
cache_slot = NULL ;
2002-02-07 22:08:43 +08:00
}
2015-01-13 16:33:00 +08:00
property_offset = zend_get_property_offset ( zobj - > ce , Z_STR_P ( member ) , ( zobj - > ce - > __set ! = NULL ) , cache_slot ) ;
2003-02-04 20:12:34 +08:00
2017-09-18 18:13:24 +08:00
if ( EXPECTED ( IS_VALID_PROPERTY_OFFSET ( property_offset ) ) ) {
variable_ptr = OBJ_PROP ( zobj , property_offset ) ;
if ( Z_TYPE_P ( variable_ptr ) ! = IS_UNDEF ) {
goto found ;
}
} else if ( EXPECTED ( IS_DYNAMIC_PROPERTY_OFFSET ( property_offset ) ) ) {
if ( EXPECTED ( zobj - > properties ! = NULL ) ) {
2015-06-17 17:50:16 +08:00
if ( UNEXPECTED ( GC_REFCOUNT ( zobj - > properties ) > 1 ) ) {
if ( EXPECTED ( ! ( GC_FLAGS ( zobj - > properties ) & IS_ARRAY_IMMUTABLE ) ) ) {
2017-10-27 06:28:58 +08:00
GC_DELREF ( zobj - > properties ) ;
2015-06-17 17:50:16 +08:00
}
zobj - > properties = zend_array_dup ( zobj - > properties ) ;
}
2014-10-17 23:10:05 +08:00
if ( ( variable_ptr = zend_hash_find ( zobj - > properties , Z_STR_P ( member ) ) ) ! = NULL ) {
2014-02-10 14:04:30 +08:00
found :
2015-04-03 06:32:20 +08:00
zend_assign_to_variable ( variable_ptr , value , IS_CV ) ;
2014-03-26 22:07:31 +08:00
goto exit ;
2002-02-07 22:08:43 +08:00
}
}
2015-04-01 05:37:59 +08:00
} else if ( UNEXPECTED ( EG ( exception ) ) ) {
goto exit ;
2014-02-10 14:04:30 +08:00
}
2014-03-26 22:07:31 +08:00
/* magic set */
2014-02-10 14:04:30 +08:00
if ( zobj - > ce - > __set ) {
2016-04-27 05:24:20 +08:00
uint32_t * guard = zend_get_property_guard ( zobj , Z_STR_P ( member ) ) ;
2005-11-15 21:35:23 +08:00
2014-02-10 14:04:30 +08:00
if ( ! ( ( * guard ) & IN_SET ) ) {
2017-10-26 19:04:42 +08:00
zval tmp_object ;
ZVAL_COPY ( & tmp_object , object ) ;
2014-02-10 14:04:30 +08:00
( * guard ) | = IN_SET ; /* prevent circular setting */
2017-10-26 19:04:42 +08:00
zend_std_call_setter ( & tmp_object , member , value ) ;
2014-02-10 14:04:30 +08:00
( * guard ) & = ~ IN_SET ;
2017-10-26 19:04:42 +08:00
zval_ptr_dtor ( & tmp_object ) ;
2017-09-18 18:13:24 +08:00
} else if ( EXPECTED ( ! IS_WRONG_PROPERTY_OFFSET ( property_offset ) ) ) {
2014-03-07 06:03:25 +08:00
goto write_std_property ;
2014-02-10 14:04:30 +08:00
} else {
2016-03-24 01:57:59 +08:00
if ( Z_STRVAL_P ( member ) [ 0 ] = = ' \0 ' & & Z_STRLEN_P ( member ) ! = 0 ) {
zend_throw_error ( NULL , " Cannot access property started with ' \\ 0' " ) ;
goto exit ;
2010-10-01 17:49:20 +08:00
}
2002-10-10 01:14:25 +08:00
}
2017-09-18 18:13:24 +08:00
} else if ( EXPECTED ( ! IS_WRONG_PROPERTY_OFFSET ( property_offset ) ) ) {
2014-09-14 05:30:32 +08:00
zval tmp ;
2014-03-07 06:03:25 +08:00
write_std_property :
2014-03-05 17:55:56 +08:00
if ( Z_REFCOUNTED_P ( value ) ) {
2014-02-19 16:03:01 +08:00
if ( Z_ISREF_P ( value ) ) {
2014-09-14 05:30:32 +08:00
/* if we assign referenced variable, we should separate it */
2015-06-12 01:41:43 +08:00
ZVAL_COPY ( & tmp , Z_REFVAL_P ( value ) ) ;
2014-03-18 16:37:51 +08:00
value = & tmp ;
2014-03-05 04:28:01 +08:00
} else {
Z_ADDREF_P ( value ) ;
2014-02-19 16:03:01 +08:00
}
2014-02-10 14:04:30 +08:00
}
2017-09-18 18:13:24 +08:00
if ( EXPECTED ( IS_VALID_PROPERTY_OFFSET ( property_offset ) ) ) {
2015-01-13 16:33:00 +08:00
ZVAL_COPY_VALUE ( OBJ_PROP ( zobj , property_offset ) , value ) ;
2014-02-10 14:04:30 +08:00
} else {
if ( ! zobj - > properties ) {
rebuild_object_properties ( zobj ) ;
}
2014-11-06 22:45:14 +08:00
zend_hash_add_new ( zobj - > properties , Z_STR_P ( member ) , value ) ;
2014-02-10 14:04:30 +08:00
}
2002-09-04 17:07:58 +08:00
}
2006-07-26 23:29:27 +08:00
2014-03-26 22:07:31 +08:00
exit :
2015-09-10 14:57:22 +08:00
if ( UNEXPECTED ( Z_REFCOUNTED ( tmp_member ) ) ) {
2005-06-03 19:16:19 +08:00
zval_ptr_dtor ( & tmp_member ) ;
2002-02-07 22:08:43 +08:00
}
}
2007-11-03 03:40:39 +08:00
/* }}} */
2002-02-07 22:08:43 +08:00
2014-12-14 06:06:14 +08:00
zval * zend_std_read_dimension ( zval * object , zval * offset , int type , zval * rv ) /* { { { */
2003-07-07 18:53:27 +08:00
{
2003-11-25 04:57:54 +08:00
zend_class_entry * ce = Z_OBJCE_P ( object ) ;
2017-10-26 21:03:42 +08:00
zval tmp_offset , tmp_object ;
2006-05-10 07:53:23 +08:00
2014-12-14 06:06:14 +08:00
if ( EXPECTED ( instanceof_function_ex ( ce , zend_ce_arrayaccess , 1 ) ! = 0 ) ) {
2016-03-20 20:33:00 +08:00
if ( offset = = NULL ) {
2004-07-14 17:01:58 +08:00
/* [] construct */
2017-10-26 21:03:42 +08:00
ZVAL_NULL ( & tmp_offset ) ;
2005-02-02 15:19:22 +08:00
} else {
2017-10-24 02:07:49 +08:00
ZVAL_DEREF ( offset ) ;
2017-10-26 21:03:42 +08:00
ZVAL_COPY ( & tmp_offset , offset ) ;
2004-07-14 17:01:58 +08:00
}
2016-03-20 20:33:00 +08:00
2017-10-26 21:03:42 +08:00
ZVAL_COPY ( & tmp_object , object ) ;
2016-03-20 20:33:00 +08:00
if ( type = = BP_VAR_IS ) {
2017-10-26 21:03:42 +08:00
zend_call_method_with_1_params ( & tmp_object , ce , NULL , " offsetexists " , rv , & tmp_offset ) ;
2016-03-20 20:33:00 +08:00
if ( UNEXPECTED ( Z_ISUNDEF_P ( rv ) ) ) {
2017-10-26 21:03:42 +08:00
zval_ptr_dtor ( & tmp_object ) ;
zval_ptr_dtor ( & tmp_offset ) ;
2016-03-20 20:33:00 +08:00
return NULL ;
}
if ( ! i_zend_is_true ( rv ) ) {
2017-10-26 21:03:42 +08:00
zval_ptr_dtor ( & tmp_object ) ;
zval_ptr_dtor ( & tmp_offset ) ;
2016-03-20 20:33:00 +08:00
zval_ptr_dtor ( rv ) ;
return & EG ( uninitialized_zval ) ;
}
zval_ptr_dtor ( rv ) ;
}
2017-10-26 21:03:42 +08:00
zend_call_method_with_1_params ( & tmp_object , ce , NULL , " offsetget " , rv , & tmp_offset ) ;
2004-07-14 17:04:13 +08:00
2017-10-26 21:03:42 +08:00
zval_ptr_dtor ( & tmp_object ) ;
zval_ptr_dtor ( & tmp_offset ) ;
2004-07-14 17:04:13 +08:00
2014-02-27 19:40:13 +08:00
if ( UNEXPECTED ( Z_TYPE_P ( rv ) = = IS_UNDEF ) ) {
2010-05-06 20:52:27 +08:00
if ( UNEXPECTED ( ! EG ( exception ) ) ) {
2015-07-08 01:10:22 +08:00
zend_throw_error ( NULL , " Undefined offset for object of type %s used as array " , ZSTR_VAL ( ce - > name ) ) ;
2003-12-11 17:56:06 +08:00
}
2014-02-10 14:04:30 +08:00
return NULL ;
2003-12-11 17:56:06 +08:00
}
2014-02-27 19:40:13 +08:00
return rv ;
2003-11-25 04:57:54 +08:00
} else {
2015-07-08 01:10:22 +08:00
zend_throw_error ( NULL , " Cannot use object of type %s as array " , ZSTR_VAL ( ce - > name ) ) ;
2014-02-10 14:04:30 +08:00
return NULL ;
2003-11-25 04:57:54 +08:00
}
2003-07-07 18:53:27 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-07-07 18:53:27 +08:00
2014-12-14 06:06:14 +08:00
static void zend_std_write_dimension ( zval * object , zval * offset , zval * value ) /* { { { */
2003-07-07 17:00:36 +08:00
{
2003-11-25 04:57:54 +08:00
zend_class_entry * ce = Z_OBJCE_P ( object ) ;
2017-10-26 21:03:42 +08:00
zval tmp_offset , tmp_object ;
2005-02-02 15:19:22 +08:00
2014-12-14 06:06:14 +08:00
if ( EXPECTED ( instanceof_function_ex ( ce , zend_ce_arrayaccess , 1 ) ! = 0 ) ) {
2003-12-23 00:27:14 +08:00
if ( ! offset ) {
2017-10-26 21:03:42 +08:00
ZVAL_NULL ( & tmp_offset ) ;
2005-02-02 15:19:22 +08:00
} else {
2017-10-24 02:07:49 +08:00
ZVAL_DEREF ( offset ) ;
2017-10-26 21:03:42 +08:00
ZVAL_COPY ( & tmp_offset , offset ) ;
2003-12-23 00:27:14 +08:00
}
2017-10-26 21:03:42 +08:00
ZVAL_COPY ( & tmp_object , object ) ;
zend_call_method_with_2_params ( & tmp_object , ce , NULL , " offsetset " , NULL , & tmp_offset , value ) ;
zval_ptr_dtor ( & tmp_object ) ;
zval_ptr_dtor ( & tmp_offset ) ;
2003-11-25 04:57:54 +08:00
} else {
2015-07-08 01:10:22 +08:00
zend_throw_error ( NULL , " Cannot use object of type %s as array " , ZSTR_VAL ( ce - > name ) ) ;
2003-11-25 04:57:54 +08:00
}
2003-07-07 17:00:36 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-07-07 17:00:36 +08:00
2014-12-14 06:06:14 +08:00
static int zend_std_has_dimension ( zval * object , zval * offset , int check_empty ) /* { { { */
2003-11-11 00:14:44 +08:00
{
2003-11-25 04:57:54 +08:00
zend_class_entry * ce = Z_OBJCE_P ( object ) ;
2017-10-26 21:03:42 +08:00
zval retval , tmp_offset , tmp_object ;
2003-11-25 04:57:54 +08:00
int result ;
2006-05-10 07:53:23 +08:00
2014-12-14 06:06:14 +08:00
if ( EXPECTED ( instanceof_function_ex ( ce , zend_ce_arrayaccess , 1 ) ! = 0 ) ) {
2017-10-24 02:07:49 +08:00
ZVAL_DEREF ( offset ) ;
2017-10-26 21:03:42 +08:00
ZVAL_COPY ( & tmp_offset , offset ) ;
ZVAL_COPY ( & tmp_object , object ) ;
zend_call_method_with_1_params ( & tmp_object , ce , NULL , " offsetexists " , & retval , & tmp_offset ) ;
2014-02-10 14:04:30 +08:00
if ( EXPECTED ( Z_TYPE ( retval ) ! = IS_UNDEF ) ) {
2014-12-14 06:06:14 +08:00
result = i_zend_is_true ( & retval ) ;
2005-03-19 23:32:18 +08:00
zval_ptr_dtor ( & retval ) ;
2010-05-06 20:52:27 +08:00
if ( check_empty & & result & & EXPECTED ( ! EG ( exception ) ) ) {
2017-10-26 21:03:42 +08:00
zend_call_method_with_1_params ( & tmp_object , ce , NULL , " offsetget " , & retval , & tmp_offset ) ;
2014-02-10 14:04:30 +08:00
if ( EXPECTED ( Z_TYPE ( retval ) ! = IS_UNDEF ) ) {
2014-12-14 06:06:14 +08:00
result = i_zend_is_true ( & retval ) ;
2005-07-08 00:07:09 +08:00
zval_ptr_dtor ( & retval ) ;
}
}
2005-03-19 23:32:18 +08:00
} else {
2005-07-08 00:07:09 +08:00
result = 0 ;
2005-03-19 23:32:18 +08:00
}
2017-10-26 21:03:42 +08:00
zval_ptr_dtor ( & tmp_object ) ;
zval_ptr_dtor ( & tmp_offset ) ;
2003-11-25 04:57:54 +08:00
} else {
2015-07-08 01:10:22 +08:00
zend_throw_error ( NULL , " Cannot use object of type %s as array " , ZSTR_VAL ( ce - > name ) ) ;
2003-11-25 04:57:54 +08:00
return 0 ;
}
2005-07-08 00:07:09 +08:00
return result ;
2003-11-11 00:14:44 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-11-11 00:14:44 +08:00
2014-12-14 06:06:14 +08:00
static zval * zend_std_get_property_ptr_ptr ( zval * object , zval * member , int type , void * * cache_slot ) /* { { { */
2002-02-07 22:08:43 +08:00
{
zend_object * zobj ;
2017-11-16 22:09:32 +08:00
zend_string * name , * tmp_name ;
2014-10-17 23:10:05 +08:00
zval * retval = NULL ;
2017-10-25 16:45:17 +08:00
uintptr_t property_offset ;
2006-05-10 07:53:23 +08:00
2002-04-22 22:22:27 +08:00
zobj = Z_OBJ_P ( object ) ;
2017-11-16 22:09:32 +08:00
name = zval_get_tmp_string ( member , & tmp_name ) ;
2002-02-07 22:08:43 +08:00
# if DEBUG_OBJECT_HANDLERS
2015-06-30 18:59:27 +08:00
fprintf ( stderr , " Ptr object #%d property: %s \n " , Z_OBJ_HANDLE_P ( object ) , ZSTR_VAL ( name ) ) ;
2006-05-10 07:53:23 +08:00
# endif
2002-02-07 22:08:43 +08:00
2015-01-13 16:33:00 +08:00
property_offset = zend_get_property_offset ( zobj - > ce , name , ( zobj - > ce - > __get ! = NULL ) , cache_slot ) ;
2003-02-05 17:41:31 +08:00
2017-09-18 18:13:24 +08:00
if ( EXPECTED ( IS_VALID_PROPERTY_OFFSET ( property_offset ) ) ) {
retval = OBJ_PROP ( zobj , property_offset ) ;
if ( UNEXPECTED ( Z_TYPE_P ( retval ) = = IS_UNDEF ) ) {
2015-06-17 17:50:16 +08:00
if ( EXPECTED ( ! zobj - > ce - > __get ) | |
UNEXPECTED ( ( * zend_get_property_guard ( zobj , name ) ) & IN_GET ) ) {
2017-09-18 18:13:24 +08:00
ZVAL_NULL ( retval ) ;
2015-06-17 17:50:16 +08:00
/* Notice is thrown after creation of the property, to avoid EG(std_property_info)
* being overwritten in an error handler . */
if ( UNEXPECTED ( type = = BP_VAR_RW | | type = = BP_VAR_R ) ) {
2015-06-30 18:59:27 +08:00
zend_error ( E_NOTICE , " Undefined property: %s::$%s " , ZSTR_VAL ( zobj - > ce - > name ) , ZSTR_VAL ( name ) ) ;
2015-06-17 17:50:16 +08:00
}
2017-09-18 18:13:24 +08:00
} else {
/* we do have getter - fail and let it try again with usual get/set */
retval = NULL ;
}
}
} else if ( EXPECTED ( IS_DYNAMIC_PROPERTY_OFFSET ( property_offset ) ) ) {
if ( EXPECTED ( zobj - > properties ) ) {
if ( UNEXPECTED ( GC_REFCOUNT ( zobj - > properties ) > 1 ) ) {
if ( EXPECTED ( ! ( GC_FLAGS ( zobj - > properties ) & IS_ARRAY_IMMUTABLE ) ) ) {
2017-10-27 06:28:58 +08:00
GC_DELREF ( zobj - > properties ) ;
2017-09-18 18:13:24 +08:00
}
zobj - > properties = zend_array_dup ( zobj - > properties ) ;
}
if ( EXPECTED ( ( retval = zend_hash_find ( zobj - > properties , name ) ) ! = NULL ) ) {
2017-11-16 22:09:32 +08:00
zend_tmp_string_release ( tmp_name ) ;
2017-09-18 18:13:24 +08:00
return retval ;
}
}
if ( EXPECTED ( ! zobj - > ce - > __get ) | |
UNEXPECTED ( ( * zend_get_property_guard ( zobj , name ) ) & IN_GET ) ) {
if ( UNEXPECTED ( ! zobj - > properties ) ) {
rebuild_object_properties ( zobj ) ;
}
retval = zend_hash_update ( zobj - > properties , name , & EG ( uninitialized_zval ) ) ;
/* Notice is thrown after creation of the property, to avoid EG(std_property_info)
* being overwritten in an error handler . */
if ( UNEXPECTED ( type = = BP_VAR_RW | | type = = BP_VAR_R ) ) {
zend_error ( E_NOTICE , " Undefined property: %s::$%s " , ZSTR_VAL ( zobj - > ce - > name ) , ZSTR_VAL ( name ) ) ;
2014-02-10 14:04:30 +08:00
}
2002-09-04 17:07:58 +08:00
}
2002-02-07 22:08:43 +08:00
}
2014-02-10 14:04:30 +08:00
2017-11-16 22:09:32 +08:00
zend_tmp_string_release ( tmp_name ) ;
2002-02-07 22:08:43 +08:00
return retval ;
}
2007-11-03 03:40:39 +08:00
/* }}} */
2002-02-07 22:08:43 +08:00
2014-12-14 06:06:14 +08:00
static void zend_std_unset_property ( zval * object , zval * member , void * * cache_slot ) /* { { { */
2002-02-07 22:08:43 +08:00
{
zend_object * zobj ;
2014-02-10 14:04:30 +08:00
zval tmp_member ;
2017-10-25 16:45:17 +08:00
uintptr_t property_offset ;
2006-05-10 07:53:23 +08:00
2002-04-22 22:22:27 +08:00
zobj = Z_OBJ_P ( object ) ;
2002-02-07 22:08:43 +08:00
2014-02-10 14:04:30 +08:00
ZVAL_UNDEF ( & tmp_member ) ;
2010-05-06 20:52:27 +08:00
if ( UNEXPECTED ( Z_TYPE_P ( member ) ! = IS_STRING ) ) {
2017-12-08 00:24:55 +08:00
ZVAL_STR ( & tmp_member , zval_get_string_func ( member ) ) ;
2014-02-10 14:04:30 +08:00
member = & tmp_member ;
2014-07-08 00:54:31 +08:00
cache_slot = NULL ;
2002-02-07 22:08:43 +08:00
}
2003-02-05 22:27:30 +08:00
2015-01-13 16:33:00 +08:00
property_offset = zend_get_property_offset ( zobj - > ce , Z_STR_P ( member ) , ( zobj - > ce - > __unset ! = NULL ) , cache_slot ) ;
2006-05-10 07:53:23 +08:00
2017-09-18 18:13:24 +08:00
if ( EXPECTED ( IS_VALID_PROPERTY_OFFSET ( property_offset ) ) ) {
zval * slot = OBJ_PROP ( zobj , property_offset ) ;
2014-10-17 23:10:05 +08:00
2017-09-18 18:13:24 +08:00
if ( Z_TYPE_P ( slot ) ! = IS_UNDEF ) {
zval_ptr_dtor ( slot ) ;
ZVAL_UNDEF ( slot ) ;
if ( zobj - > properties ) {
2018-01-22 19:58:16 +08:00
HT_FLAGS ( zobj - > properties ) | = HASH_FLAG_HAS_EMPTY_IND ;
2015-06-17 17:50:16 +08:00
}
2017-09-18 18:13:24 +08:00
goto exit ;
}
} else if ( EXPECTED ( IS_DYNAMIC_PROPERTY_OFFSET ( property_offset ) )
& & EXPECTED ( zobj - > properties ! = NULL ) ) {
if ( UNEXPECTED ( GC_REFCOUNT ( zobj - > properties ) > 1 ) ) {
if ( EXPECTED ( ! ( GC_FLAGS ( zobj - > properties ) & IS_ARRAY_IMMUTABLE ) ) ) {
2017-10-27 06:28:58 +08:00
GC_DELREF ( zobj - > properties ) ;
2015-06-17 17:50:16 +08:00
}
2017-09-18 18:13:24 +08:00
zobj - > properties = zend_array_dup ( zobj - > properties ) ;
}
if ( EXPECTED ( zend_hash_del ( zobj - > properties , Z_STR_P ( member ) ) ! = FAILURE ) ) {
goto exit ;
2014-03-26 22:07:31 +08:00
}
2015-04-01 05:37:59 +08:00
} else if ( UNEXPECTED ( EG ( exception ) ) ) {
goto exit ;
2014-02-10 14:04:30 +08:00
}
2015-01-03 17:22:58 +08:00
2014-03-26 22:07:31 +08:00
/* magic unset */
if ( zobj - > ce - > __unset ) {
2016-04-27 05:24:20 +08:00
uint32_t * guard = zend_get_property_guard ( zobj , Z_STR_P ( member ) ) ;
2014-03-26 22:07:31 +08:00
if ( ! ( ( * guard ) & IN_UNSET ) ) {
2017-10-26 19:04:42 +08:00
zval tmp_object ;
2014-03-26 22:07:31 +08:00
/* have unseter - try with it! */
2017-10-26 19:04:42 +08:00
ZVAL_COPY ( & tmp_object , object ) ;
2014-03-26 22:07:31 +08:00
( * guard ) | = IN_UNSET ; /* prevent circular unsetting */
2017-10-26 19:04:42 +08:00
zend_std_call_unsetter ( & tmp_object , member ) ;
2014-03-26 22:07:31 +08:00
( * guard ) & = ~ IN_UNSET ;
2017-10-26 19:04:42 +08:00
zval_ptr_dtor ( & tmp_object ) ;
2014-03-26 22:07:31 +08:00
} else {
2016-03-24 01:57:59 +08:00
if ( Z_STRVAL_P ( member ) [ 0 ] = = ' \0 ' & & Z_STRLEN_P ( member ) ! = 0 ) {
zend_throw_error ( NULL , " Cannot access property started with ' \\ 0' " ) ;
goto exit ;
2010-08-01 21:27:02 +08:00
}
2005-07-08 00:07:09 +08:00
}
}
2014-02-10 14:04:30 +08:00
exit :
2015-09-10 14:57:22 +08:00
if ( UNEXPECTED ( Z_REFCOUNTED ( tmp_member ) ) ) {
2005-07-08 00:07:09 +08:00
zval_ptr_dtor ( & tmp_member ) ;
2002-02-07 22:08:43 +08:00
}
}
2007-11-03 03:40:39 +08:00
/* }}} */
2002-02-07 22:08:43 +08:00
2014-12-14 06:06:14 +08:00
static void zend_std_unset_dimension ( zval * object , zval * offset ) /* { { { */
2003-07-31 01:12:06 +08:00
{
2003-11-25 04:57:54 +08:00
zend_class_entry * ce = Z_OBJCE_P ( object ) ;
2017-10-26 21:03:42 +08:00
zval tmp_offset , tmp_object ;
2006-05-10 07:53:23 +08:00
2014-12-14 06:06:14 +08:00
if ( instanceof_function_ex ( ce , zend_ce_arrayaccess , 1 ) ) {
2017-10-24 02:07:49 +08:00
ZVAL_DEREF ( offset ) ;
2017-10-26 21:03:42 +08:00
ZVAL_COPY ( & tmp_offset , offset ) ;
ZVAL_COPY ( & tmp_object , object ) ;
zend_call_method_with_1_params ( & tmp_object , ce , NULL , " offsetunset " , NULL , & tmp_offset ) ;
zval_ptr_dtor ( & tmp_object ) ;
zval_ptr_dtor ( & tmp_offset ) ;
2003-11-25 04:57:54 +08:00
} else {
2015-07-08 01:10:22 +08:00
zend_throw_error ( NULL , " Cannot use object of type %s as array " , ZSTR_VAL ( ce - > name ) ) ;
2003-11-25 04:57:54 +08:00
}
2003-07-31 01:12:06 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-07-31 01:12:06 +08:00
2003-02-03 00:17:25 +08:00
/* Ensures that we're allowed to call a private method.
* Returns the function address that should be called , or NULL
* if no such function exists .
*/
2014-12-14 06:06:14 +08:00
static inline zend_function * zend_check_private_int ( zend_function * fbc , zend_class_entry * ce , zend_string * function_name ) /* { { { */
2003-02-03 00:17:25 +08:00
{
2014-02-10 14:04:30 +08:00
zval * func ;
2016-04-28 09:13:34 +08:00
zend_class_entry * scope ;
2014-02-10 14:04:30 +08:00
2003-02-03 00:17:25 +08:00
if ( ! ce ) {
return 0 ;
}
/* We may call a private function if:
* 1. The class of our object is the same as the scope , and the private
* function ( EX ( fbc ) ) has the same scope .
* 2. One of our parent classes are the same as the scope , and it contains
* a private function with the same name that has the same scope .
*/
2016-04-28 09:13:34 +08:00
scope = zend_get_executed_scope ( ) ;
if ( fbc - > common . scope = = ce & & scope = = ce ) {
2003-02-03 00:17:25 +08:00
/* rule #1 checks out ok, allow the function call */
return fbc ;
}
/* Check rule #2 */
ce = ce - > parent ;
while ( ce ) {
2016-04-28 09:13:34 +08:00
if ( ce = = scope ) {
2014-02-10 14:04:30 +08:00
if ( ( func = zend_hash_find ( & ce - > function_table , function_name ) ) ) {
fbc = Z_FUNC_P ( func ) ;
if ( fbc - > common . fn_flags & ZEND_ACC_PRIVATE
2016-04-28 09:13:34 +08:00
& & fbc - > common . scope = = scope ) {
2014-02-10 14:04:30 +08:00
return fbc ;
}
2003-02-03 00:17:25 +08:00
}
break ;
}
ce = ce - > parent ;
}
return NULL ;
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-02-03 00:17:25 +08:00
2014-12-14 06:06:14 +08:00
ZEND_API int zend_check_private ( zend_function * fbc , zend_class_entry * ce , zend_string * function_name ) /* { { { */
2005-04-27 23:45:36 +08:00
{
2014-12-14 06:06:14 +08:00
return zend_check_private_int ( fbc , ce , function_name ) ! = NULL ;
2005-04-27 23:45:36 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2005-04-27 23:45:36 +08:00
2003-02-03 00:17:25 +08:00
/* Ensures that we're allowed to call a protected method.
*/
2007-11-03 03:40:39 +08:00
ZEND_API int zend_check_protected ( zend_class_entry * ce , zend_class_entry * scope ) /* { { { */
2003-02-03 00:17:25 +08:00
{
zend_class_entry * fbc_scope = ce ;
/* Is the context that's calling the function, the same as one of
* the function ' s parents ?
*/
while ( fbc_scope ) {
if ( fbc_scope = = scope ) {
return 1 ;
}
fbc_scope = fbc_scope - > parent ;
}
/* Is the function's scope the same as our current object context,
* or any of the parents of our context ?
*/
while ( scope ) {
if ( scope = = ce ) {
return 1 ;
}
scope = scope - > parent ;
}
return 0 ;
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-02-03 00:17:25 +08:00
2015-04-11 04:01:00 +08:00
ZEND_API zend_function * zend_get_call_trampoline_func ( zend_class_entry * ce , zend_string * method_name , int is_static ) /* { { { */
2009-01-08 06:12:39 +08:00
{
2016-05-07 15:07:04 +08:00
size_t mname_len ;
2015-04-11 04:01:00 +08:00
zend_op_array * func ;
zend_function * fbc = is_static ? ce - > __callstatic : ce - > __call ;
ZEND_ASSERT ( fbc ) ;
if ( EXPECTED ( EG ( trampoline ) . common . function_name = = NULL ) ) {
func = & EG ( trampoline ) . op_array ;
} else {
func = ecalloc ( 1 , sizeof ( zend_op_array ) ) ;
}
func - > type = ZEND_USER_FUNCTION ;
2015-04-23 02:46:13 +08:00
func - > arg_flags [ 0 ] = 0 ;
func - > arg_flags [ 1 ] = 0 ;
func - > arg_flags [ 2 ] = 0 ;
2015-04-11 04:01:00 +08:00
func - > fn_flags = ZEND_ACC_CALL_VIA_TRAMPOLINE | ZEND_ACC_PUBLIC ;
if ( is_static ) {
func - > fn_flags | = ZEND_ACC_STATIC ;
}
func - > opcodes = & EG ( call_trampoline_op ) ;
func - > prototype = fbc ;
2015-04-11 23:57:42 +08:00
func - > scope = fbc - > common . scope ;
2016-01-28 16:41:15 +08:00
/* reserve space for arguments, local and temorary variables */
func - > T = ( fbc - > type = = ZEND_USER_FUNCTION ) ? MAX ( fbc - > op_array . last_var + fbc - > op_array . T , 2 ) : 2 ;
2015-06-29 21:44:54 +08:00
func - > filename = ( fbc - > type = = ZEND_USER_FUNCTION ) ? fbc - > op_array . filename : ZSTR_EMPTY_ALLOC ( ) ;
2015-04-11 04:01:00 +08:00
func - > line_start = ( fbc - > type = = ZEND_USER_FUNCTION ) ? fbc - > op_array . line_start : 0 ;
func - > line_end = ( fbc - > type = = ZEND_USER_FUNCTION ) ? fbc - > op_array . line_end : 0 ;
2014-04-12 04:50:36 +08:00
//??? keep compatibility for "\0" characters
//??? see: Zend/tests/bug46238.phpt
2016-05-07 15:07:04 +08:00
if ( UNEXPECTED ( ( mname_len = strlen ( ZSTR_VAL ( method_name ) ) ) ! = ZSTR_LEN ( method_name ) ) ) {
func - > function_name = zend_string_init ( ZSTR_VAL ( method_name ) , mname_len , 0 ) ;
2014-04-12 04:50:36 +08:00
} else {
2015-04-11 04:01:00 +08:00
func - > function_name = zend_string_copy ( method_name ) ;
2014-04-12 04:50:36 +08:00
}
2009-01-08 06:12:39 +08:00
2015-04-11 04:01:00 +08:00
return ( zend_function * ) func ;
}
/* }}} */
static zend_always_inline zend_function * zend_get_user_call_function ( zend_class_entry * ce , zend_string * method_name ) /* { { { */
{
return zend_get_call_trampoline_func ( ce , method_name , 0 ) ;
2009-01-08 06:12:39 +08:00
}
/* }}} */
2014-12-14 06:06:14 +08:00
static union _zend_function * zend_std_get_method ( zend_object * * obj_ptr , zend_string * method_name , const zval * key ) /* { { { */
2002-02-07 22:08:43 +08:00
{
2014-03-28 06:11:22 +08:00
zend_object * zobj = * obj_ptr ;
2014-02-10 14:04:30 +08:00
zval * func ;
2003-02-03 00:17:25 +08:00
zend_function * fbc ;
2014-02-10 14:04:30 +08:00
zend_string * lc_method_name ;
2016-04-28 09:13:34 +08:00
zend_class_entry * scope = NULL ;
2014-05-02 23:01:36 +08:00
ALLOCA_FLAG ( use_heap ) ;
2007-10-11 09:03:19 +08:00
2010-05-06 20:52:27 +08:00
if ( EXPECTED ( key ! = NULL ) ) {
2014-04-17 19:40:45 +08:00
lc_method_name = Z_STR_P ( key ) ;
2015-01-16 02:43:17 +08:00
# ifdef ZEND_ALLOCA_MAX_SIZE
2015-01-16 02:08:21 +08:00
use_heap = 0 ;
2015-01-16 02:43:17 +08:00
# endif
2010-04-20 18:57:45 +08:00
} else {
2015-06-30 18:59:27 +08:00
ZSTR_ALLOCA_ALLOC ( lc_method_name , ZSTR_LEN ( method_name ) , use_heap ) ;
zend_str_tolower_copy ( ZSTR_VAL ( lc_method_name ) , ZSTR_VAL ( method_name ) , ZSTR_LEN ( method_name ) ) ;
2010-04-20 18:57:45 +08:00
}
2007-10-11 09:03:19 +08:00
2014-02-10 14:04:30 +08:00
if ( UNEXPECTED ( ( func = zend_hash_find ( & zobj - > ce - > function_table , lc_method_name ) ) = = NULL ) ) {
2015-01-16 07:21:27 +08:00
if ( UNEXPECTED ( ! key ) ) {
2015-06-29 21:44:54 +08:00
ZSTR_ALLOCA_FREE ( lc_method_name , use_heap ) ;
2015-01-16 07:21:27 +08:00
}
2003-01-29 23:02:57 +08:00
if ( zobj - > ce - > __call ) {
2014-02-10 14:04:30 +08:00
return zend_get_user_call_function ( zobj - > ce , method_name ) ;
2003-01-29 23:02:57 +08:00
} else {
return NULL ;
2002-09-04 17:07:58 +08:00
}
2002-02-07 22:08:43 +08:00
}
2002-06-06 01:34:56 +08:00
2014-02-10 14:04:30 +08:00
fbc = Z_FUNC_P ( func ) ;
2003-02-03 00:17:25 +08:00
/* Check access level */
2006-09-12 19:01:16 +08:00
if ( fbc - > op_array . fn_flags & ZEND_ACC_PRIVATE ) {
zend_function * updated_fbc ;
/* Ensure that if we're calling a private function, we're allowed to do so.
2009-01-08 06:12:39 +08:00
* If we ' re not and __call ( ) handler exists , invoke it , otherwise error out .
2006-09-12 19:01:16 +08:00
*/
2014-12-14 06:06:14 +08:00
updated_fbc = zend_check_private_int ( fbc , zobj - > ce , lc_method_name ) ;
2010-05-06 20:52:27 +08:00
if ( EXPECTED ( updated_fbc ! = NULL ) ) {
2009-01-08 06:12:39 +08:00
fbc = updated_fbc ;
} else {
if ( zobj - > ce - > __call ) {
2014-02-10 14:04:30 +08:00
fbc = zend_get_user_call_function ( zobj - > ce , method_name ) ;
2009-01-08 06:12:39 +08:00
} else {
2016-04-28 09:13:34 +08:00
scope = zend_get_executed_scope ( ) ;
zend_throw_error ( NULL , " Call to %s method %s::%s() from context '%s' " , zend_visibility_string ( fbc - > common . fn_flags ) , ZEND_FN_SCOPE_NAME ( fbc ) , ZSTR_VAL ( method_name ) , scope ? ZSTR_VAL ( scope - > name ) : " " ) ;
2015-04-01 05:37:59 +08:00
fbc = NULL ;
2009-01-08 06:12:39 +08:00
}
2006-09-12 19:01:16 +08:00
}
} else {
2003-02-03 00:17:25 +08:00
/* Ensure that we haven't overridden a private function and end up calling
* the overriding public function . . .
*/
2016-04-28 09:13:34 +08:00
if ( fbc - > op_array . fn_flags & ( ZEND_ACC_CHANGED | ZEND_ACC_PROTECTED ) ) {
scope = zend_get_executed_scope ( ) ;
}
if ( fbc - > op_array . fn_flags & ZEND_ACC_CHANGED ) {
if ( scope & & is_derived_class ( fbc - > common . scope , scope ) ) {
if ( ( func = zend_hash_find ( & scope - > function_table , lc_method_name ) ) ! = NULL ) {
zend_function * priv_fbc = Z_FUNC_P ( func ) ;
if ( priv_fbc - > common . fn_flags & ZEND_ACC_PRIVATE
& & priv_fbc - > common . scope = = scope ) {
fbc = priv_fbc ;
}
2014-02-10 14:04:30 +08:00
}
2003-02-03 00:17:25 +08:00
}
}
2016-04-28 09:13:34 +08:00
if ( fbc - > common . fn_flags & ZEND_ACC_PROTECTED ) {
2006-09-12 19:01:16 +08:00
/* Ensure that if we're calling a protected function, we're allowed to do so.
2009-01-08 06:12:39 +08:00
* If we ' re not and __call ( ) handler exists , invoke it , otherwise error out .
2006-09-12 19:01:16 +08:00
*/
2016-04-28 09:13:34 +08:00
if ( UNEXPECTED ( ! zend_check_protected ( zend_get_function_root_class ( fbc ) , scope ) ) ) {
2009-01-08 06:12:39 +08:00
if ( zobj - > ce - > __call ) {
2014-02-10 14:04:30 +08:00
fbc = zend_get_user_call_function ( zobj - > ce , method_name ) ;
2009-01-08 06:12:39 +08:00
} else {
2016-04-28 09:13:34 +08:00
zend_throw_error ( NULL , " Call to %s method %s::%s() from context '%s' " , zend_visibility_string ( fbc - > common . fn_flags ) , ZEND_FN_SCOPE_NAME ( fbc ) , ZSTR_VAL ( method_name ) , scope ? ZSTR_VAL ( scope - > name ) : " " ) ;
2015-04-01 05:37:59 +08:00
fbc = NULL ;
2009-01-08 06:12:39 +08:00
}
2006-09-12 19:01:16 +08:00
}
2003-02-03 00:17:25 +08:00
}
}
2015-01-16 07:21:27 +08:00
if ( UNEXPECTED ( ! key ) ) {
2015-06-29 21:44:54 +08:00
ZSTR_ALLOCA_FREE ( lc_method_name , use_heap ) ;
2015-01-16 07:21:27 +08:00
}
2003-02-03 00:17:25 +08:00
return fbc ;
2002-02-07 22:08:43 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2002-02-07 22:08:43 +08:00
2015-04-11 04:01:00 +08:00
static zend_always_inline zend_function * zend_get_user_callstatic_function ( zend_class_entry * ce , zend_string * method_name ) /* { { { */
2009-06-12 09:05:25 +08:00
{
2015-04-11 04:01:00 +08:00
return zend_get_call_trampoline_func ( ce , method_name , 1 ) ;
2009-06-12 09:05:25 +08:00
}
/* }}} */
2014-12-14 06:06:14 +08:00
ZEND_API zend_function * zend_std_get_static_method ( zend_class_entry * ce , zend_string * function_name , const zval * key ) /* { { { */
2003-02-03 00:17:25 +08:00
{
2008-03-17 22:54:42 +08:00
zend_function * fbc = NULL ;
2014-02-10 14:04:30 +08:00
zend_string * lc_function_name ;
2015-04-23 17:16:37 +08:00
zend_object * object ;
2016-04-28 09:13:34 +08:00
zend_class_entry * scope ;
2003-02-03 00:17:25 +08:00
2010-05-06 20:52:27 +08:00
if ( EXPECTED ( key ! = NULL ) ) {
2014-04-17 19:40:45 +08:00
lc_function_name = Z_STR_P ( key ) ;
2010-04-20 18:57:45 +08:00
} else {
2014-12-24 20:04:51 +08:00
lc_function_name = zend_string_tolower ( function_name ) ;
2010-04-20 18:57:45 +08:00
}
2012-05-13 13:12:48 +08:00
2017-01-23 19:54:58 +08:00
do {
2014-02-10 14:04:30 +08:00
zval * func = zend_hash_find ( & ce - > function_table , lc_function_name ) ;
if ( EXPECTED ( func ! = NULL ) ) {
fbc = Z_FUNC_P ( func ) ;
2017-01-23 19:54:58 +08:00
} else if ( ce - > constructor
& & ZSTR_LEN ( lc_function_name ) = = ZSTR_LEN ( ce - > name )
& & zend_binary_strncasecmp ( ZSTR_VAL ( lc_function_name ) , ZSTR_LEN ( lc_function_name ) , ZSTR_VAL ( ce - > name ) , ZSTR_LEN ( lc_function_name ) , ZSTR_LEN ( lc_function_name ) ) = = 0
/* Only change the method to the constructor if the constructor isn't called __construct
* we check for __ so we can be binary safe for lowering , we should use ZEND_CONSTRUCTOR_FUNC_NAME
*/
& & ( ZSTR_VAL ( ce - > constructor - > common . function_name ) [ 0 ] ! = ' _ '
| | ZSTR_VAL ( ce - > constructor - > common . function_name ) [ 1 ] ! = ' _ ' ) ) {
fbc = ce - > constructor ;
2007-09-29 16:52:40 +08:00
} else {
2014-02-10 14:04:30 +08:00
if ( UNEXPECTED ( ! key ) ) {
2014-12-24 20:04:51 +08:00
zend_string_release ( lc_function_name ) ;
2014-02-10 14:04:30 +08:00
}
if ( ce - > __call & &
2015-04-23 17:16:37 +08:00
( object = zend_get_this_object ( EG ( current_execute_data ) ) ) ! = NULL & &
instanceof_function ( object - > ce , ce ) ) {
2015-04-11 04:01:00 +08:00
/* Call the top-level defined __call().
* see : tests / classes / __call_004 . phpt */
2015-04-23 17:16:37 +08:00
zend_class_entry * call_ce = object - > ce ;
2015-04-11 04:01:00 +08:00
while ( ! call_ce - > __call ) {
call_ce = call_ce - > parent ;
}
return zend_get_user_call_function ( call_ce , function_name ) ;
2014-02-10 14:04:30 +08:00
} else if ( ce - > __callstatic ) {
return zend_get_user_callstatic_function ( ce , function_name ) ;
} else {
return NULL ;
}
2003-03-12 07:19:45 +08:00
}
2017-01-23 19:54:58 +08:00
} while ( 0 ) ;
2007-11-03 03:40:39 +08:00
# if MBO_0
/* right now this function is used for non static method lookup too */
/* Is the function static */
2010-05-06 20:52:27 +08:00
if ( UNEXPECTED ( ! ( fbc - > common . fn_flags & ZEND_ACC_STATIC ) ) ) {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_ERROR , " Cannot call non static method %s::%s() without object " , ZEND_FN_SCOPE_NAME ( fbc ) , ZSTR_VAL ( fbc - > common . function_name ) ) ;
2007-11-03 03:40:39 +08:00
}
2012-05-13 13:12:48 +08:00
# endif
2003-02-03 00:17:25 +08:00
if ( fbc - > op_array . fn_flags & ZEND_ACC_PUBLIC ) {
/* No further checks necessary, most common case */
} else if ( fbc - > op_array . fn_flags & ZEND_ACC_PRIVATE ) {
zend_function * updated_fbc ;
/* Ensure that if we're calling a private function, we're allowed to do so.
*/
2016-04-28 09:13:34 +08:00
scope = zend_get_executed_scope ( ) ;
updated_fbc = zend_check_private_int ( fbc , scope , lc_function_name ) ;
2010-05-06 20:52:27 +08:00
if ( EXPECTED ( updated_fbc ! = NULL ) ) {
2009-06-12 09:05:25 +08:00
fbc = updated_fbc ;
} else {
if ( ce - > __callstatic ) {
2014-02-10 14:04:30 +08:00
fbc = zend_get_user_callstatic_function ( ce , function_name ) ;
2010-04-20 18:57:45 +08:00
} else {
2016-04-28 09:13:34 +08:00
zend_throw_error ( NULL , " Call to %s method %s::%s() from context '%s' " , zend_visibility_string ( fbc - > common . fn_flags ) , ZEND_FN_SCOPE_NAME ( fbc ) , ZSTR_VAL ( function_name ) , scope ? ZSTR_VAL ( scope - > name ) : " " ) ;
2015-04-01 05:37:59 +08:00
fbc = NULL ;
2009-06-12 09:05:25 +08:00
}
2003-02-03 00:17:25 +08:00
}
} else if ( ( fbc - > common . fn_flags & ZEND_ACC_PROTECTED ) ) {
/* Ensure that if we're calling a protected function, we're allowed to do so.
*/
2016-04-28 09:13:34 +08:00
scope = zend_get_executed_scope ( ) ;
if ( UNEXPECTED ( ! zend_check_protected ( zend_get_function_root_class ( fbc ) , scope ) ) ) {
2009-06-12 09:05:25 +08:00
if ( ce - > __callstatic ) {
2014-02-10 14:04:30 +08:00
fbc = zend_get_user_callstatic_function ( ce , function_name ) ;
2010-04-20 18:57:45 +08:00
} else {
2016-04-28 09:13:34 +08:00
zend_throw_error ( NULL , " Call to %s method %s::%s() from context '%s' " , zend_visibility_string ( fbc - > common . fn_flags ) , ZEND_FN_SCOPE_NAME ( fbc ) , ZSTR_VAL ( function_name ) , scope ? ZSTR_VAL ( scope - > name ) : " " ) ;
2015-04-01 05:37:59 +08:00
fbc = NULL ;
2009-06-12 09:05:25 +08:00
}
2003-02-03 00:17:25 +08:00
}
}
2010-05-06 20:52:27 +08:00
if ( UNEXPECTED ( ! key ) ) {
2014-12-24 20:04:51 +08:00
zend_string_release ( lc_function_name ) ;
2010-04-20 18:57:45 +08:00
}
2003-02-03 00:17:25 +08:00
return fbc ;
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-02-03 00:17:25 +08:00
2015-01-13 14:33:15 +08:00
ZEND_API zval * zend_std_get_static_property ( zend_class_entry * ce , zend_string * property_name , zend_bool silent ) /* { { { */
2003-02-05 21:35:52 +08:00
{
2015-01-13 14:33:15 +08:00
zend_property_info * property_info = zend_hash_find_ptr ( & ce - > properties_info , property_name ) ;
2015-01-13 08:32:51 +08:00
zval * ret ;
2012-05-13 13:12:48 +08:00
2015-01-13 14:33:15 +08:00
if ( UNEXPECTED ( property_info = = NULL ) ) {
goto undeclared_property ;
}
2003-02-05 21:35:52 +08:00
2015-01-13 14:33:15 +08:00
if ( UNEXPECTED ( ! zend_verify_property_access ( property_info , ce ) ) ) {
if ( ! silent ) {
2015-07-08 01:10:22 +08:00
zend_throw_error ( NULL , " Cannot access %s property %s::$%s " , zend_visibility_string ( property_info - > flags ) , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( property_name ) ) ;
2010-05-24 22:11:39 +08:00
}
2015-01-13 14:33:15 +08:00
return NULL ;
}
2005-09-01 18:05:32 +08:00
2015-01-13 14:33:15 +08:00
if ( UNEXPECTED ( ( property_info - > flags & ZEND_ACC_STATIC ) = = 0 ) ) {
goto undeclared_property ;
}
2003-02-05 21:35:52 +08:00
2015-05-21 09:13:10 +08:00
if ( UNEXPECTED ( ! ( ce - > ce_flags & ZEND_ACC_CONSTANTS_UPDATED ) ) ) {
if ( UNEXPECTED ( zend_update_class_constants ( ce ) ) ! = SUCCESS ) {
return NULL ;
}
2015-04-02 07:05:25 +08:00
}
2015-01-13 14:33:15 +08:00
ret = CE_STATIC_MEMBERS ( ce ) + property_info - > offset ;
2006-05-10 07:53:23 +08:00
2015-01-13 14:33:15 +08:00
/* check if static properties were destoyed */
if ( UNEXPECTED ( CE_STATIC_MEMBERS ( ce ) = = NULL ) ) {
2015-01-13 08:32:51 +08:00
undeclared_property :
2015-01-13 14:33:15 +08:00
if ( ! silent ) {
2015-07-08 01:10:22 +08:00
zend_throw_error ( NULL , " Access to undeclared static property: %s::$%s " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( property_name ) ) ;
2013-05-21 13:58:11 +08:00
}
2015-01-13 14:33:15 +08:00
ret = NULL ;
2013-05-21 13:58:11 +08:00
}
2015-01-03 17:22:58 +08:00
2015-01-13 08:32:51 +08:00
return ret ;
2003-02-05 21:35:52 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-02-05 21:35:52 +08:00
2015-08-19 19:40:56 +08:00
ZEND_API ZEND_COLD zend_bool zend_std_unset_static_property ( zend_class_entry * ce , zend_string * property_name ) /* { { { */
2003-02-17 22:06:39 +08:00
{
2015-07-08 01:10:22 +08:00
zend_throw_error ( NULL , " Attempt to unset static property %s::$%s " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( property_name ) ) ;
2003-02-17 22:06:39 +08:00
return 0 ;
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-02-17 22:06:39 +08:00
2014-12-14 06:06:14 +08:00
ZEND_API union _zend_function * zend_std_get_constructor ( zend_object * zobj ) /* { { { */
2002-02-07 22:08:43 +08:00
{
2003-02-03 00:17:25 +08:00
zend_function * constructor = zobj - > ce - > constructor ;
2016-04-28 09:13:34 +08:00
zend_class_entry * scope ;
2003-02-03 00:17:25 +08:00
if ( constructor ) {
if ( constructor - > op_array . fn_flags & ZEND_ACC_PUBLIC ) {
/* No further checks necessary */
} else if ( constructor - > op_array . fn_flags & ZEND_ACC_PRIVATE ) {
/* Ensure that if we're calling a private function, we're allowed to do so.
*/
2016-04-28 09:13:34 +08:00
if ( EG ( fake_scope ) ) {
scope = EG ( fake_scope ) ;
} else {
scope = zend_get_executed_scope ( ) ;
}
if ( UNEXPECTED ( constructor - > common . scope ! = scope ) ) {
if ( scope ) {
zend_throw_error ( NULL , " Call to private %s::%s() from context '%s' " , ZSTR_VAL ( constructor - > common . scope - > name ) , ZSTR_VAL ( constructor - > common . function_name ) , ZSTR_VAL ( scope - > name ) ) ;
2015-04-01 05:37:59 +08:00
constructor = NULL ;
2006-07-05 19:39:00 +08:00
} else {
2015-07-08 01:10:22 +08:00
zend_throw_error ( NULL , " Call to private %s::%s() from invalid context " , ZSTR_VAL ( constructor - > common . scope - > name ) , ZSTR_VAL ( constructor - > common . function_name ) ) ;
2015-04-01 05:37:59 +08:00
constructor = NULL ;
2006-07-05 19:39:00 +08:00
}
2003-02-03 00:17:25 +08:00
}
} else if ( ( constructor - > common . fn_flags & ZEND_ACC_PROTECTED ) ) {
/* Ensure that if we're calling a protected function, we're allowed to do so.
2007-11-03 03:40:39 +08:00
* Constructors only have prototype if they are defined by an interface but
* it is the compilers responsibility to take care of the prototype .
2003-02-03 00:17:25 +08:00
*/
2016-04-28 09:13:34 +08:00
if ( EG ( fake_scope ) ) {
scope = EG ( fake_scope ) ;
} else {
scope = zend_get_executed_scope ( ) ;
}
if ( UNEXPECTED ( ! zend_check_protected ( zend_get_function_root_class ( constructor ) , scope ) ) ) {
if ( scope ) {
zend_throw_error ( NULL , " Call to protected %s::%s() from context '%s' " , ZSTR_VAL ( constructor - > common . scope - > name ) , ZSTR_VAL ( constructor - > common . function_name ) , ZSTR_VAL ( scope - > name ) ) ;
2015-04-01 05:37:59 +08:00
constructor = NULL ;
2006-07-05 19:39:00 +08:00
} else {
2015-07-08 01:10:22 +08:00
zend_throw_error ( NULL , " Call to protected %s::%s() from invalid context " , ZSTR_VAL ( constructor - > common . scope - > name ) , ZSTR_VAL ( constructor - > common . function_name ) ) ;
2015-04-01 05:37:59 +08:00
constructor = NULL ;
2006-07-05 19:39:00 +08:00
}
2003-02-03 00:17:25 +08:00
}
}
}
return constructor ;
2002-02-07 22:08:43 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-02-05 22:27:30 +08:00
2014-12-14 06:06:14 +08:00
static int zend_std_compare_objects ( zval * o1 , zval * o2 ) /* { { { */
2002-02-07 22:08:43 +08:00
{
zend_object * zobj1 , * zobj2 ;
2006-05-10 07:53:23 +08:00
2002-04-22 22:22:27 +08:00
zobj1 = Z_OBJ_P ( o1 ) ;
zobj2 = Z_OBJ_P ( o2 ) ;
2002-02-07 22:08:43 +08:00
2017-10-06 06:34:50 +08:00
if ( zobj1 = = zobj2 ) {
return 0 ; /* the same object */
}
2002-09-15 15:45:26 +08:00
if ( zobj1 - > ce ! = zobj2 - > ce ) {
2002-02-07 22:08:43 +08:00
return 1 ; /* different classes */
}
2010-05-24 22:11:39 +08:00
if ( ! zobj1 - > properties & & ! zobj2 - > properties ) {
2015-04-29 00:11:45 +08:00
zval * p1 , * p2 , * end ;
2013-01-09 15:30:50 +08:00
2015-04-29 00:11:45 +08:00
if ( ! zobj1 - > ce - > default_properties_count ) {
return 0 ;
}
p1 = zobj1 - > properties_table ;
p2 = zobj2 - > properties_table ;
end = p1 + zobj1 - > ce - > default_properties_count ;
2017-10-06 06:34:50 +08:00
2017-10-06 16:47:11 +08:00
/* It's enough to protect only one of the objects.
* The second one may be referenced from the first and this may cause
* false recursion detection .
*/
2017-10-06 06:34:50 +08:00
/* use bitwise OR to make only one conditional jump */
2017-10-06 16:47:11 +08:00
if ( UNEXPECTED ( Z_IS_RECURSIVE_P ( o1 ) ) ) {
2017-10-06 06:34:50 +08:00
zend_error_noreturn ( E_ERROR , " Nesting level too deep - recursive dependency? " ) ;
}
Z_PROTECT_RECURSION_P ( o1 ) ;
2015-04-29 00:11:45 +08:00
do {
if ( Z_TYPE_P ( p1 ) ! = IS_UNDEF ) {
if ( Z_TYPE_P ( p2 ) ! = IS_UNDEF ) {
2010-05-24 22:11:39 +08:00
zval result ;
2014-12-14 06:06:14 +08:00
if ( compare_function ( & result , p1 , p2 ) = = FAILURE ) {
2017-10-06 06:34:50 +08:00
Z_UNPROTECT_RECURSION_P ( o1 ) ;
2010-05-24 22:11:39 +08:00
return 1 ;
}
2014-08-26 01:24:55 +08:00
if ( Z_LVAL ( result ) ! = 0 ) {
2017-10-06 06:34:50 +08:00
Z_UNPROTECT_RECURSION_P ( o1 ) ;
2014-08-26 01:24:55 +08:00
return Z_LVAL ( result ) ;
2010-05-24 22:11:39 +08:00
}
} else {
2017-10-06 06:34:50 +08:00
Z_UNPROTECT_RECURSION_P ( o1 ) ;
2010-05-24 22:11:39 +08:00
return 1 ;
}
} else {
2015-04-29 00:11:45 +08:00
if ( Z_TYPE_P ( p2 ) ! = IS_UNDEF ) {
2017-10-06 06:34:50 +08:00
Z_UNPROTECT_RECURSION_P ( o1 ) ;
2010-05-24 22:11:39 +08:00
return 1 ;
}
}
2015-04-29 00:11:45 +08:00
p1 + + ;
p2 + + ;
} while ( p1 ! = end ) ;
2017-10-06 06:34:50 +08:00
Z_UNPROTECT_RECURSION_P ( o1 ) ;
2010-05-24 22:11:39 +08:00
return 0 ;
} else {
if ( ! zobj1 - > properties ) {
rebuild_object_properties ( zobj1 ) ;
}
if ( ! zobj2 - > properties ) {
rebuild_object_properties ( zobj2 ) ;
}
2014-12-22 12:16:25 +08:00
return zend_compare_symbol_tables ( zobj1 - > properties , zobj2 - > properties ) ;
2010-05-24 22:11:39 +08:00
}
2002-02-07 22:08:43 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2002-02-07 22:08:43 +08:00
2014-12-14 06:06:14 +08:00
static int zend_std_has_property ( zval * object , zval * member , int has_set_exists , void * * cache_slot ) /* { { { */
2002-02-07 22:08:43 +08:00
{
zend_object * zobj ;
int result ;
2014-02-10 14:04:30 +08:00
zval * value = NULL ;
zval tmp_member ;
2017-10-25 16:45:17 +08:00
uintptr_t property_offset ;
2006-05-10 07:53:23 +08:00
2003-02-05 22:27:30 +08:00
zobj = Z_OBJ_P ( object ) ;
2014-02-10 14:04:30 +08:00
ZVAL_UNDEF ( & tmp_member ) ;
2010-05-06 20:52:27 +08:00
if ( UNEXPECTED ( Z_TYPE_P ( member ) ! = IS_STRING ) ) {
2017-12-08 00:24:55 +08:00
ZVAL_STR ( & tmp_member , zval_get_string_func ( member ) ) ;
2014-02-10 14:04:30 +08:00
member = & tmp_member ;
2014-07-08 00:54:31 +08:00
cache_slot = NULL ;
2002-02-07 22:08:43 +08:00
}
2003-02-05 22:27:30 +08:00
2015-01-13 16:33:00 +08:00
property_offset = zend_get_property_offset ( zobj - > ce , Z_STR_P ( member ) , 1 , cache_slot ) ;
2005-07-08 00:07:09 +08:00
2017-09-18 18:13:24 +08:00
if ( EXPECTED ( IS_VALID_PROPERTY_OFFSET ( property_offset ) ) ) {
value = OBJ_PROP ( zobj , property_offset ) ;
if ( Z_TYPE_P ( value ) ! = IS_UNDEF ) {
goto found ;
}
} else if ( EXPECTED ( IS_DYNAMIC_PROPERTY_OFFSET ( property_offset ) ) ) {
2017-10-23 23:29:13 +08:00
if ( EXPECTED ( zobj - > properties ! = NULL ) ) {
if ( ! IS_UNKNOWN_DYNAMIC_PROPERTY_OFFSET ( property_offset ) ) {
2017-10-25 16:45:17 +08:00
uintptr_t idx = ZEND_DECODE_DYN_PROP_OFFSET ( property_offset ) ;
2017-10-23 23:29:13 +08:00
2017-10-24 15:28:19 +08:00
if ( EXPECTED ( idx < zobj - > properties - > nNumUsed * sizeof ( Bucket ) ) ) {
Bucket * p = ( Bucket * ) ( ( char * ) zobj - > properties - > arData + idx ) ;
2017-10-23 23:29:13 +08:00
if ( EXPECTED ( Z_TYPE ( p - > val ) ! = IS_UNDEF ) & &
( EXPECTED ( p - > key = = Z_STR_P ( member ) ) | |
( EXPECTED ( p - > h = = ZSTR_H ( Z_STR_P ( member ) ) ) & &
EXPECTED ( p - > key ! = NULL ) & &
2017-12-04 22:17:02 +08:00
EXPECTED ( zend_string_equal_content ( p - > key , Z_STR_P ( member ) ) ) ) ) ) {
2017-10-23 23:29:13 +08:00
value = & p - > val ;
goto found ;
}
}
2017-10-24 15:28:19 +08:00
CACHE_PTR_EX ( cache_slot + 1 , ( void * ) ZEND_DYNAMIC_PROPERTY_OFFSET ) ;
2017-10-23 23:29:13 +08:00
}
value = zend_hash_find ( zobj - > properties , Z_STR_P ( member ) ) ;
if ( value ) {
if ( cache_slot ) {
2017-10-25 16:45:17 +08:00
uintptr_t idx = ( char * ) value - ( char * ) zobj - > properties - > arData ;
2017-10-24 15:28:19 +08:00
CACHE_PTR_EX ( cache_slot + 1 , ( void * ) ZEND_ENCODE_DYN_PROP_OFFSET ( idx ) ) ;
2017-10-23 23:29:13 +08:00
}
2014-02-10 14:04:30 +08:00
found :
2017-10-23 23:29:13 +08:00
switch ( has_set_exists ) {
case 0 :
ZVAL_DEREF ( value ) ;
result = ( Z_TYPE_P ( value ) ! = IS_NULL ) ;
break ;
default :
result = zend_is_true ( value ) ;
break ;
case 2 :
result = 1 ;
break ;
}
goto exit ;
2014-02-10 14:04:30 +08:00
}
}
2015-04-01 05:37:59 +08:00
} else if ( UNEXPECTED ( EG ( exception ) ) ) {
result = 0 ;
goto exit ;
2014-02-10 14:04:30 +08:00
}
result = 0 ;
if ( ( has_set_exists ! = 2 ) & & zobj - > ce - > __isset ) {
2016-04-27 05:24:20 +08:00
uint32_t * guard = zend_get_property_guard ( zobj , Z_STR_P ( member ) ) ;
2014-02-10 14:04:30 +08:00
if ( ! ( ( * guard ) & IN_ISSET ) ) {
zval rv ;
2014-04-16 22:06:03 +08:00
zval tmp_object ;
2003-02-05 22:27:30 +08:00
2005-07-08 00:07:09 +08:00
/* have issetter - try with it! */
2017-10-26 18:05:23 +08:00
if ( Z_TYPE ( tmp_member ) = = IS_UNDEF ) {
ZVAL_COPY ( & tmp_member , member ) ;
member = & tmp_member ;
}
2014-04-16 22:06:03 +08:00
ZVAL_COPY ( & tmp_object , object ) ;
2014-02-10 14:04:30 +08:00
( * guard ) | = IN_ISSET ; /* prevent circular getting */
2014-12-14 06:06:14 +08:00
zend_std_call_issetter ( & tmp_object , member , & rv ) ;
2014-02-10 14:04:30 +08:00
if ( Z_TYPE ( rv ) ! = IS_UNDEF ) {
2014-12-14 06:06:14 +08:00
result = zend_is_true ( & rv ) ;
2005-07-08 00:07:09 +08:00
zval_ptr_dtor ( & rv ) ;
2008-05-03 08:38:55 +08:00
if ( has_set_exists & & result ) {
2014-02-10 14:04:30 +08:00
if ( EXPECTED ( ! EG ( exception ) ) & & zobj - > ce - > __get & & ! ( ( * guard ) & IN_GET ) ) {
( * guard ) | = IN_GET ;
2014-12-14 06:06:14 +08:00
zend_std_call_getter ( & tmp_object , member , & rv ) ;
2014-02-10 14:04:30 +08:00
( * guard ) & = ~ IN_GET ;
if ( Z_TYPE ( rv ) ! = IS_UNDEF ) {
2014-12-14 06:06:14 +08:00
result = i_zend_is_true ( & rv ) ;
2008-05-03 08:38:55 +08:00
zval_ptr_dtor ( & rv ) ;
} else {
result = 0 ;
}
} else {
result = 0 ;
2005-07-08 00:07:09 +08:00
}
}
}
2014-02-10 14:04:30 +08:00
( * guard ) & = ~ IN_ISSET ;
2014-04-16 22:06:03 +08:00
zval_ptr_dtor ( & tmp_object ) ;
2002-02-07 22:08:43 +08:00
}
}
2014-02-10 14:04:30 +08:00
exit :
2015-09-10 14:57:22 +08:00
if ( UNEXPECTED ( Z_REFCOUNTED ( tmp_member ) ) ) {
2005-07-08 00:07:09 +08:00
zval_ptr_dtor ( & tmp_member ) ;
2002-02-07 22:08:43 +08:00
}
return result ;
}
2007-11-03 03:40:39 +08:00
/* }}} */
2002-02-07 22:08:43 +08:00
2014-12-14 06:06:14 +08:00
zend_string * zend_std_object_get_class_name ( const zend_object * zobj ) /* { { { */
2003-01-12 21:56:51 +08:00
{
2014-10-10 01:15:07 +08:00
return zend_string_copy ( zobj - > ce - > name ) ;
2003-01-12 21:56:51 +08:00
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-01-12 21:56:51 +08:00
2014-12-14 06:06:14 +08:00
ZEND_API int zend_std_cast_object_tostring ( zval * readobj , zval * writeobj , int type ) /* { { { */
2003-12-16 00:59:21 +08:00
{
2014-02-10 14:04:30 +08:00
zval retval ;
2006-05-10 07:53:23 +08:00
zend_class_entry * ce ;
2003-12-16 00:59:21 +08:00
switch ( type ) {
case IS_STRING :
2006-05-10 07:53:23 +08:00
ce = Z_OBJCE_P ( readobj ) ;
if ( ce - > __tostring & &
2014-02-10 14:04:30 +08:00
( zend_call_method_with_0_params ( readobj , ce , & ce - > __tostring , " __tostring " , & retval ) | | EG ( exception ) ) ) {
2010-05-06 20:52:27 +08:00
if ( UNEXPECTED ( EG ( exception ) ! = NULL ) ) {
2015-11-29 15:38:19 +08:00
zval * msg , ex , rv ;
2014-02-24 17:49:53 +08:00
zval_ptr_dtor ( & retval ) ;
2015-11-29 15:38:19 +08:00
ZVAL_OBJ ( & ex , EG ( exception ) ) ;
2012-09-06 15:26:40 +08:00
EG ( exception ) = NULL ;
2015-11-29 15:38:19 +08:00
msg = zend_read_property ( Z_OBJCE ( ex ) , & ex , " message " , sizeof ( " message " ) - 1 , 1 , & rv ) ;
if ( UNEXPECTED ( Z_TYPE_P ( msg ) ! = IS_STRING ) ) {
ZVAL_EMPTY_STRING ( & rv ) ;
msg = & rv ;
}
zend_error_noreturn ( E_ERROR ,
" Method %s::__toString() must not throw an exception, caught %s: %s " ,
ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( Z_OBJCE ( ex ) - > name ) , Z_STRVAL_P ( msg ) ) ;
2007-10-19 04:44:41 +08:00
return FAILURE ;
}
2014-02-10 14:04:30 +08:00
if ( EXPECTED ( Z_TYPE ( retval ) = = IS_STRING ) ) {
2014-02-21 16:56:23 +08:00
ZVAL_COPY_VALUE ( writeobj , & retval ) ;
2006-05-10 07:53:23 +08:00
return SUCCESS ;
2003-12-16 00:59:21 +08:00
} else {
2006-05-10 07:53:23 +08:00
zval_ptr_dtor ( & retval ) ;
ZVAL_EMPTY_STRING ( writeobj ) ;
2015-06-30 18:59:27 +08:00
zend_error ( E_RECOVERABLE_ERROR , " Method %s::__toString() must return a string value " , ZSTR_VAL ( ce - > name ) ) ;
2006-05-10 07:53:23 +08:00
return SUCCESS ;
2003-12-16 00:59:21 +08:00
}
}
2006-05-10 07:53:23 +08:00
return FAILURE ;
2014-04-30 22:32:42 +08:00
case _IS_BOOL :
2017-12-26 04:19:45 +08:00
ZVAL_TRUE ( writeobj ) ;
2006-05-10 07:53:23 +08:00
return SUCCESS ;
2014-08-26 01:24:55 +08:00
case IS_LONG :
2006-05-10 07:53:23 +08:00
ce = Z_OBJCE_P ( readobj ) ;
2015-06-30 18:59:27 +08:00
zend_error ( E_NOTICE , " Object of class %s could not be converted to int " , ZSTR_VAL ( ce - > name ) ) ;
2014-08-26 01:24:55 +08:00
ZVAL_LONG ( writeobj , 1 ) ;
2006-05-10 07:53:23 +08:00
return SUCCESS ;
case IS_DOUBLE :
ce = Z_OBJCE_P ( readobj ) ;
2015-06-30 18:59:27 +08:00
zend_error ( E_NOTICE , " Object of class %s could not be converted to float " , ZSTR_VAL ( ce - > name ) ) ;
2006-05-10 07:53:23 +08:00
ZVAL_DOUBLE ( writeobj , 1 ) ;
return SUCCESS ;
2017-12-25 20:18:45 +08:00
case _IS_NUMBER :
ce = Z_OBJCE_P ( readobj ) ;
zend_error ( E_NOTICE , " Object of class %s could not be converted to number " , ZSTR_VAL ( ce - > name ) ) ;
ZVAL_LONG ( writeobj , 1 ) ;
return SUCCESS ;
2003-12-16 00:59:21 +08:00
default :
2014-02-10 14:04:30 +08:00
ZVAL_NULL ( writeobj ) ;
2003-12-16 00:59:21 +08:00
break ;
}
return FAILURE ;
}
2007-11-03 03:40:39 +08:00
/* }}} */
2003-09-18 19:38:33 +08:00
2014-12-14 06:06:14 +08:00
int zend_std_get_closure ( zval * obj , zend_class_entry * * ce_ptr , zend_function * * fptr_ptr , zend_object * * obj_ptr ) /* { { { */
2008-08-15 05:36:56 +08:00
{
2014-02-10 14:04:30 +08:00
zval * func ;
2017-12-26 04:21:05 +08:00
zend_class_entry * ce = Z_OBJCE_P ( obj ) ;
2008-08-15 05:36:56 +08:00
2017-12-18 11:55:14 +08:00
if ( ( func = zend_hash_find_ex ( & ce - > function_table , ZSTR_KNOWN ( ZEND_STR_MAGIC_INVOKE ) , 1 ) ) = = NULL ) {
2008-08-15 05:36:56 +08:00
return FAILURE ;
}
2014-02-10 14:04:30 +08:00
* fptr_ptr = Z_FUNC_P ( func ) ;
2008-08-15 05:36:56 +08:00
* ce_ptr = ce ;
if ( ( * fptr_ptr ) - > common . fn_flags & ZEND_ACC_STATIC ) {
2014-03-28 06:11:22 +08:00
if ( obj_ptr ) {
* obj_ptr = NULL ;
2008-08-15 05:36:56 +08:00
}
} else {
2014-03-28 06:11:22 +08:00
if ( obj_ptr ) {
* obj_ptr = Z_OBJ_P ( obj ) ;
2008-08-15 05:36:56 +08:00
}
}
return SUCCESS ;
}
/* }}} */
2018-03-14 19:01:45 +08:00
ZEND_API const zend_object_handlers std_object_handlers = {
2014-04-09 05:50:15 +08:00
0 , /* offset */
zend_object_std_dtor , /* free_obj */
2014-02-21 19:48:56 +08:00
zend_objects_destroy_object , /* dtor_obj */
2003-07-07 17:12:15 +08:00
zend_objects_clone_obj , /* clone_obj */
2006-05-10 07:53:23 +08:00
2003-07-07 17:12:15 +08:00
zend_std_read_property , /* read_property */
zend_std_write_property , /* write_property */
2003-07-07 18:53:27 +08:00
zend_std_read_dimension , /* read_dimension */
2003-07-07 17:12:15 +08:00
zend_std_write_dimension , /* write_dimension */
2003-10-05 15:52:28 +08:00
zend_std_get_property_ptr_ptr , /* get_property_ptr_ptr */
2003-07-07 17:12:15 +08:00
NULL , /* get */
NULL , /* set */
zend_std_has_property , /* has_property */
zend_std_unset_property , /* unset_property */
2003-11-11 00:14:44 +08:00
zend_std_has_dimension , /* has_dimension */
2003-07-31 01:12:06 +08:00
zend_std_unset_dimension , /* unset_dimension */
2003-07-07 17:12:15 +08:00
zend_std_get_properties , /* get_properties */
zend_std_get_method , /* get_method */
NULL , /* call_method */
zend_std_get_constructor , /* get_constructor */
zend_std_object_get_class_name , /* get_class_name */
zend_std_compare_objects , /* compare_objects */
2006-05-10 07:53:23 +08:00
zend_std_cast_object_tostring , /* cast_object */
2004-05-04 23:03:28 +08:00
NULL , /* count_elements */
2014-02-18 11:13:00 +08:00
zend_std_get_debug_info , /* get_debug_info */
2008-08-15 05:36:56 +08:00
zend_std_get_closure , /* get_closure */
2011-11-02 14:31:33 +08:00
zend_std_get_gc , /* get_gc */
2013-06-17 23:48:13 +08:00
NULL , /* do_operation */
NULL , /* compare */
2002-02-07 22:08:43 +08:00
} ;
2003-02-01 09:49:15 +08:00
/*
* Local variables :
* tab - width : 4
* c - basic - offset : 4
* indent - tabs - mode : t
* End :
2017-07-05 00:12:45 +08:00
* vim600 : sw = 4 ts = 4 fdm = marker
* vim < 600 : sw = 4 ts = 4
2003-02-01 09:49:15 +08:00
*/