2014-09-19 06:01:05 +08:00
/*
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
| Zend Engine |
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
2019-01-30 17:23:29 +08:00
| Copyright ( c ) Zend Technologies Ltd . ( http : //www.zend.com) |
2014-09-19 06:01:05 +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 |
| available through the world - wide - web at the following url : |
| 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 . |
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
2018-11-01 23:20:07 +08:00
| Authors : Andi Gutmans < andi @ php . net > |
| Zeev Suraski < zeev @ php . net > |
2014-09-19 06:01:05 +08:00
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
*/
# include "zend.h"
# include "zend_API.h"
# include "zend_compile.h"
# include "zend_execute.h"
2015-01-09 04:40:36 +08:00
# include "zend_inheritance.h"
2019-05-08 18:30:16 +08:00
# include "zend_interfaces.h"
2014-09-21 05:27:10 +08:00
# include "zend_smart_str.h"
2017-04-11 04:04:18 +08:00
# include "zend_operators.h"
2014-09-19 06:01:05 +08:00
2019-05-27 17:39:56 +08:00
static void add_dependency_obligation ( zend_class_entry * ce , zend_class_entry * dependency_ce ) ;
static void add_compatibility_obligation (
zend_class_entry * ce , const zend_function * child_fn , const zend_function * parent_fn ,
zend_bool always_error ) ;
2018-08-10 10:19:55 +08:00
static void overridden_ptr_dtor ( zval * zv ) /* { { { */
2014-09-19 06:01:05 +08:00
{
2015-08-12 11:15:09 +08:00
efree_size ( Z_PTR_P ( zv ) , sizeof ( zend_function ) ) ;
2014-09-19 06:01:05 +08:00
}
/* }}} */
static zend_property_info * zend_duplicate_property_info_internal ( zend_property_info * property_info ) /* { { { */
{
zend_property_info * new_property_info = pemalloc ( sizeof ( zend_property_info ) , 1 ) ;
memcpy ( new_property_info , property_info , sizeof ( zend_property_info ) ) ;
zend_string_addref ( new_property_info - > name ) ;
2019-01-07 19:28:51 +08:00
if ( ZEND_TYPE_IS_NAME ( new_property_info - > type ) ) {
zend_string_addref ( ZEND_TYPE_NAME ( new_property_info - > type ) ) ;
}
2014-09-19 06:01:05 +08:00
return new_property_info ;
}
/* }}} */
2015-03-05 07:10:38 +08:00
static zend_function * zend_duplicate_function ( zend_function * func , zend_class_entry * ce ) /* { { { */
{
zend_function * new_function ;
2015-03-06 22:07:36 +08:00
if ( UNEXPECTED ( func - > type = = ZEND_INTERNAL_FUNCTION ) ) {
if ( UNEXPECTED ( ce - > type & ZEND_INTERNAL_CLASS ) ) {
2015-03-05 07:10:38 +08:00
new_function = pemalloc ( sizeof ( zend_internal_function ) , 1 ) ;
memcpy ( new_function , func , sizeof ( zend_internal_function ) ) ;
} else {
new_function = zend_arena_alloc ( & CG ( arena ) , sizeof ( zend_internal_function ) ) ;
memcpy ( new_function , func , sizeof ( zend_internal_function ) ) ;
new_function - > common . fn_flags | = ZEND_ACC_ARENA_ALLOCATED ;
}
2015-03-06 22:07:36 +08:00
if ( EXPECTED ( new_function - > common . function_name ) ) {
2015-03-05 07:10:38 +08:00
zend_string_addref ( new_function - > common . function_name ) ;
}
} else {
if ( func - > op_array . refcount ) {
( * func - > op_array . refcount ) + + ;
}
2019-06-26 18:27:13 +08:00
if ( EXPECTED ( ! func - > op_array . static_variables )
| | ( func - > op_array . fn_flags & ZEND_ACC_PRIVATE ) ) {
2015-03-05 07:10:38 +08:00
/* reuse the same op_array structure */
return func ;
}
new_function = zend_arena_alloc ( & CG ( arena ) , sizeof ( zend_op_array ) ) ;
memcpy ( new_function , func , sizeof ( zend_op_array ) ) ;
2018-10-17 20:52:50 +08:00
if ( ZEND_MAP_PTR_GET ( func - > op_array . static_variables_ptr ) ) {
/* See: Zend/tests/method_static_var.phpt */
new_function - > op_array . static_variables = ZEND_MAP_PTR_GET ( func - > op_array . static_variables_ptr ) ;
}
if ( ! ( GC_FLAGS ( new_function - > op_array . static_variables ) & IS_ARRAY_IMMUTABLE ) ) {
GC_ADDREF ( new_function - > op_array . static_variables ) ;
}
ZEND_MAP_PTR_INIT ( new_function - > op_array . static_variables_ptr , & new_function - > op_array . static_variables ) ;
2015-03-05 07:10:38 +08:00
}
return new_function ;
}
/* }}} */
2014-12-14 06:06:14 +08:00
static void do_inherit_parent_constructor ( zend_class_entry * ce ) /* { { { */
2014-09-19 06:01:05 +08:00
{
2018-09-05 18:16:10 +08:00
zend_class_entry * parent = ce - > parent ;
ZEND_ASSERT ( parent ! = NULL ) ;
2014-09-19 06:01:05 +08:00
/* You cannot change create_object */
2018-09-05 18:16:10 +08:00
ce - > create_object = parent - > create_object ;
2014-09-19 06:01:05 +08:00
/* Inherit special functions if needed */
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( ! ce - > get_iterator ) ) {
2018-09-05 18:16:10 +08:00
ce - > get_iterator = parent - > get_iterator ;
2014-09-19 06:01:05 +08:00
}
2018-10-17 20:52:50 +08:00
if ( parent - > iterator_funcs_ptr ) {
/* Must be initialized through iface->interface_gets_implemented() */
ZEND_ASSERT ( ce - > iterator_funcs_ptr ) ;
2014-09-19 06:01:05 +08:00
}
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( ! ce - > __get ) ) {
2018-09-05 18:16:10 +08:00
ce - > __get = parent - > __get ;
2014-09-19 06:01:05 +08:00
}
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( ! ce - > __set ) ) {
2018-09-05 18:16:10 +08:00
ce - > __set = parent - > __set ;
2014-09-19 06:01:05 +08:00
}
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( ! ce - > __unset ) ) {
2018-09-05 18:16:10 +08:00
ce - > __unset = parent - > __unset ;
2014-09-19 06:01:05 +08:00
}
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( ! ce - > __isset ) ) {
2018-09-05 18:16:10 +08:00
ce - > __isset = parent - > __isset ;
2014-09-19 06:01:05 +08:00
}
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( ! ce - > __call ) ) {
2018-09-05 18:16:10 +08:00
ce - > __call = parent - > __call ;
2014-09-19 06:01:05 +08:00
}
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( ! ce - > __callstatic ) ) {
2018-09-05 18:16:10 +08:00
ce - > __callstatic = parent - > __callstatic ;
2014-09-19 06:01:05 +08:00
}
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( ! ce - > __tostring ) ) {
2018-09-05 18:16:10 +08:00
ce - > __tostring = parent - > __tostring ;
2014-09-19 06:01:05 +08:00
}
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( ! ce - > clone ) ) {
2018-09-05 18:16:10 +08:00
ce - > clone = parent - > clone ;
2014-09-19 06:01:05 +08:00
}
2019-02-15 18:20:28 +08:00
if ( EXPECTED ( ! ce - > serialize_func ) ) {
ce - > serialize_func = parent - > serialize_func ;
}
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( ! ce - > serialize ) ) {
2018-09-05 18:16:10 +08:00
ce - > serialize = parent - > serialize ;
2014-09-19 06:01:05 +08:00
}
2019-02-15 18:20:28 +08:00
if ( EXPECTED ( ! ce - > unserialize_func ) ) {
ce - > unserialize_func = parent - > unserialize_func ;
}
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( ! ce - > unserialize ) ) {
2018-09-05 18:16:10 +08:00
ce - > unserialize = parent - > unserialize ;
2014-09-19 06:01:05 +08:00
}
if ( ! ce - > destructor ) {
2018-09-05 18:16:10 +08:00
ce - > destructor = parent - > destructor ;
2014-09-19 06:01:05 +08:00
}
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( ! ce - > __debugInfo ) ) {
2018-09-05 18:16:10 +08:00
ce - > __debugInfo = parent - > __debugInfo ;
2014-09-19 06:01:05 +08:00
}
2015-03-05 07:10:38 +08:00
2014-09-19 06:01:05 +08:00
if ( ce - > constructor ) {
2018-09-05 18:16:10 +08:00
if ( parent - > constructor & & UNEXPECTED ( parent - > constructor - > common . fn_flags & ZEND_ACC_FINAL ) ) {
2015-03-05 07:10:38 +08:00
zend_error_noreturn ( E_ERROR , " Cannot override final %s::%s() with %s::%s() " ,
2018-09-05 18:16:10 +08:00
ZSTR_VAL ( parent - > name ) , ZSTR_VAL ( parent - > constructor - > common . function_name ) ,
2015-06-30 18:59:27 +08:00
ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( ce - > constructor - > common . function_name ) ) ;
2014-09-19 06:01:05 +08:00
}
return ;
}
2018-09-05 18:16:10 +08:00
ce - > constructor = parent - > constructor ;
2014-09-19 06:01:05 +08:00
}
/* }}} */
char * zend_visibility_string ( uint32_t fn_flags ) /* { { { */
{
if ( fn_flags & ZEND_ACC_PUBLIC ) {
return " public " ;
2018-09-11 16:56:45 +08:00
} else if ( fn_flags & ZEND_ACC_PRIVATE ) {
return " private " ;
} else {
ZEND_ASSERT ( fn_flags & ZEND_ACC_PROTECTED ) ;
return " protected " ;
2014-09-19 06:01:05 +08:00
}
}
/* }}} */
2019-05-08 18:11:12 +08:00
static zend_string * resolve_class_name ( const zend_function * fe , zend_string * name ) {
2019-05-09 16:41:06 +08:00
zend_class_entry * ce = fe - > common . scope ;
ZEND_ASSERT ( ce ) ;
if ( zend_string_equals_literal_ci ( name , " parent " ) & & ce - > parent ) {
2019-05-27 17:39:56 +08:00
if ( ce - > ce_flags & ZEND_ACC_RESOLVED_PARENT ) {
2019-05-09 16:41:06 +08:00
return ce - > parent - > name ;
} else {
return ce - > parent_name ;
}
2019-05-08 18:11:12 +08:00
} else if ( zend_string_equals_literal_ci ( name , " self " ) ) {
2019-05-09 16:41:06 +08:00
return ce - > name ;
2019-05-08 18:11:12 +08:00
} else {
return name ;
2016-06-04 22:44:49 +08:00
}
}
2019-05-09 16:41:06 +08:00
static zend_bool class_visible ( zend_class_entry * ce ) {
if ( ce - > type = = ZEND_INTERNAL_CLASS ) {
return ! ( CG ( compiler_options ) & ZEND_COMPILE_IGNORE_INTERNAL_CLASSES ) ;
} else {
ZEND_ASSERT ( ce - > type = = ZEND_USER_CLASS ) ;
return ! ( CG ( compiler_options ) & ZEND_COMPILE_IGNORE_OTHER_FILES )
| | ce - > info . user . filename = = CG ( compiled_filename ) ;
}
}
static zend_class_entry * lookup_class ( const zend_function * fe , zend_string * name ) {
zend_class_entry * ce ;
if ( ! CG ( in_compilation ) ) {
2019-05-27 17:39:56 +08:00
uint32_t flags = ZEND_FETCH_CLASS_ALLOW_UNLINKED | ZEND_FETCH_CLASS_NO_AUTOLOAD ;
ce = zend_lookup_class_ex ( name , NULL , flags ) ;
2019-05-08 18:30:16 +08:00
if ( ce ) {
return ce ;
}
2019-05-27 17:39:56 +08:00
/* We'll autoload this class and process delayed variance obligations later. */
if ( ! CG ( delayed_autoloads ) ) {
ALLOC_HASHTABLE ( CG ( delayed_autoloads ) ) ;
zend_hash_init ( CG ( delayed_autoloads ) , 0 , NULL , NULL , 0 ) ;
}
zend_hash_add_empty_element ( CG ( delayed_autoloads ) , name ) ;
2019-05-08 18:30:16 +08:00
} else {
2019-05-24 20:41:38 +08:00
ce = zend_lookup_class_ex ( name , NULL , ZEND_FETCH_CLASS_NO_AUTOLOAD ) ;
2019-05-08 18:30:16 +08:00
if ( ce & & class_visible ( ce ) ) {
return ce ;
}
2019-05-09 16:41:06 +08:00
2019-05-27 17:39:56 +08:00
/* The current class may not be registered yet, so check for it explicitly. */
if ( zend_string_equals_ci ( fe - > common . scope - > name , name ) ) {
return fe - > common . scope ;
}
2019-05-09 16:41:06 +08:00
}
return NULL ;
}
2019-05-27 17:39:56 +08:00
/* Instanceof that's safe to use on unlinked classes. */
2019-05-08 18:30:16 +08:00
static zend_bool unlinked_instanceof ( zend_class_entry * ce1 , zend_class_entry * ce2 ) {
2019-05-27 17:39:56 +08:00
zend_class_entry * ce ;
if ( ce1 = = ce2 ) {
return 1 ;
}
if ( ce1 - > ce_flags & ( ZEND_ACC_LINKED | ZEND_ACC_RESOLVED_INTERFACES ) ) {
2019-05-08 18:30:16 +08:00
return instanceof_function ( ce1 , ce2 ) ;
}
2019-05-27 17:39:56 +08:00
ce = ce1 ;
while ( ce - > parent ) {
if ( ce - > ce_flags & ZEND_ACC_RESOLVED_PARENT ) {
ce = ce - > parent ;
} else {
ce = zend_lookup_class_ex ( ce - > parent_name , NULL ,
ZEND_FETCH_CLASS_ALLOW_UNLINKED | ZEND_FETCH_CLASS_NO_AUTOLOAD ) ;
if ( ! ce ) {
break ;
}
}
if ( ce = = ce2 ) {
return 1 ;
}
}
if ( ce1 - > num_interfaces ) {
uint32_t i ;
ZEND_ASSERT ( ! ( ce - > ce_flags & ZEND_ACC_RESOLVED_INTERFACES ) ) ;
for ( i = 0 ; i < ce1 - > num_interfaces ; i + + ) {
ce = zend_lookup_class_ex (
ce1 - > interface_names [ i ] . name , ce1 - > interface_names [ i ] . lc_name ,
ZEND_FETCH_CLASS_ALLOW_UNLINKED | ZEND_FETCH_CLASS_NO_AUTOLOAD ) ;
if ( ce & & unlinked_instanceof ( ce , ce2 ) ) {
return 1 ;
}
}
}
return 0 ;
2019-05-08 18:30:16 +08:00
}
2019-05-09 16:41:06 +08:00
/* Unresolved means that class declarations that are currently not available are needed to
* determine whether the inheritance is valid or not . At runtime UNRESOLVED should be treated
* as an ERROR . */
typedef enum {
INHERITANCE_UNRESOLVED = - 1 ,
INHERITANCE_ERROR = 0 ,
INHERITANCE_SUCCESS = 1 ,
} inheritance_status ;
static inheritance_status zend_perform_covariant_type_check (
2019-05-08 18:30:16 +08:00
zend_string * * unresolved_class ,
2019-05-08 17:24:08 +08:00
const zend_function * fe , zend_arg_info * fe_arg_info ,
const zend_function * proto , zend_arg_info * proto_arg_info ) /* {{{ */
2015-01-09 04:40:36 +08:00
{
2019-05-08 18:11:12 +08:00
zend_type fe_type = fe_arg_info - > type , proto_type = proto_arg_info - > type ;
ZEND_ASSERT ( ZEND_TYPE_IS_SET ( fe_type ) & & ZEND_TYPE_IS_SET ( proto_type ) ) ;
2015-01-09 04:40:36 +08:00
2019-05-08 18:11:12 +08:00
if ( ZEND_TYPE_ALLOW_NULL ( fe_type ) & & ! ZEND_TYPE_ALLOW_NULL ( proto_type ) ) {
2019-05-09 16:41:06 +08:00
return INHERITANCE_ERROR ;
2019-05-08 17:24:08 +08:00
}
2019-05-08 18:30:16 +08:00
if ( ZEND_TYPE_IS_CLASS ( proto_type ) ) {
zend_string * fe_class_name , * proto_class_name ;
zend_class_entry * fe_ce , * proto_ce ;
if ( ! ZEND_TYPE_IS_CLASS ( fe_type ) ) {
return INHERITANCE_ERROR ;
}
2015-01-09 04:40:36 +08:00
2019-05-08 18:30:16 +08:00
fe_class_name = resolve_class_name ( fe , ZEND_TYPE_NAME ( fe_type ) ) ;
proto_class_name = resolve_class_name ( proto , ZEND_TYPE_NAME ( proto_type ) ) ;
if ( zend_string_equals_ci ( fe_class_name , proto_class_name ) ) {
return INHERITANCE_SUCCESS ;
}
2015-01-09 04:40:36 +08:00
2019-05-27 17:39:56 +08:00
/* Make sure to always load both classes, to avoid only registering one of them as
* a delayed autoload . */
2019-05-08 18:30:16 +08:00
fe_ce = lookup_class ( fe , fe_class_name ) ;
2019-05-27 17:39:56 +08:00
proto_ce = lookup_class ( proto , proto_class_name ) ;
2019-05-08 18:30:16 +08:00
if ( ! fe_ce ) {
* unresolved_class = fe_class_name ;
return INHERITANCE_UNRESOLVED ;
}
if ( ! proto_ce ) {
* unresolved_class = proto_class_name ;
return INHERITANCE_UNRESOLVED ;
2015-01-09 04:40:36 +08:00
}
2019-05-08 18:11:12 +08:00
2019-05-08 18:30:16 +08:00
return unlinked_instanceof ( fe_ce , proto_ce ) ? INHERITANCE_SUCCESS : INHERITANCE_ERROR ;
} else if ( ZEND_TYPE_CODE ( proto_type ) = = IS_ITERABLE ) {
if ( ZEND_TYPE_IS_CLASS ( fe_type ) ) {
zend_string * fe_class_name = resolve_class_name ( fe , ZEND_TYPE_NAME ( fe_type ) ) ;
zend_class_entry * fe_ce = lookup_class ( fe , fe_class_name ) ;
if ( ! fe_ce ) {
* unresolved_class = fe_class_name ;
return INHERITANCE_UNRESOLVED ;
}
return unlinked_instanceof ( fe_ce , zend_ce_traversable )
? INHERITANCE_SUCCESS : INHERITANCE_ERROR ;
}
return ZEND_TYPE_CODE ( fe_type ) = = IS_ITERABLE | | ZEND_TYPE_CODE ( fe_type ) = = IS_ARRAY
? INHERITANCE_SUCCESS : INHERITANCE_ERROR ;
} else if ( ZEND_TYPE_CODE ( proto_type ) = = IS_OBJECT ) {
if ( ZEND_TYPE_IS_CLASS ( fe_type ) ) {
/* Currently, any class name would be allowed here. We still perform a class lookup
* for forward - compatibility reasons , as we may have named types in the future that
* are not classes ( such as enums or typedefs ) . */
zend_string * fe_class_name = resolve_class_name ( fe , ZEND_TYPE_NAME ( fe_type ) ) ;
zend_class_entry * fe_ce = lookup_class ( fe , fe_class_name ) ;
if ( ! fe_ce ) {
* unresolved_class = fe_class_name ;
return INHERITANCE_UNRESOLVED ;
2019-05-08 18:11:12 +08:00
}
2019-05-08 18:30:16 +08:00
return INHERITANCE_SUCCESS ;
2019-05-08 17:24:08 +08:00
}
2019-05-08 18:30:16 +08:00
return ZEND_TYPE_CODE ( fe_type ) = = IS_OBJECT ? INHERITANCE_SUCCESS : INHERITANCE_ERROR ;
} else {
return ZEND_TYPE_CODE ( fe_type ) = = ZEND_TYPE_CODE ( proto_type )
? INHERITANCE_SUCCESS : INHERITANCE_ERROR ;
2016-03-28 18:54:25 +08:00
}
2015-01-09 04:40:36 +08:00
}
/* }}} */
2019-05-08 18:30:16 +08:00
static inheritance_status zend_do_perform_arg_type_hint_check (
zend_string * * unresolved_class ,
const zend_function * fe , zend_arg_info * fe_arg_info ,
const zend_function * proto , zend_arg_info * proto_arg_info ) /* {{{ */
2017-01-01 22:53:24 +08:00
{
if ( ! ZEND_TYPE_IS_SET ( fe_arg_info - > type ) ) {
/* Child with no type is always compatible */
2019-05-09 16:41:06 +08:00
return INHERITANCE_SUCCESS ;
2017-01-01 22:53:24 +08:00
}
if ( ! ZEND_TYPE_IS_SET ( proto_arg_info - > type ) ) {
/* Child defines a type, but parent doesn't, violates LSP */
2019-05-09 16:41:06 +08:00
return INHERITANCE_ERROR ;
2017-01-01 22:53:24 +08:00
}
2019-05-08 17:24:08 +08:00
/* Contravariant type check is performed as a covariant type check with swapped
* argument order . */
2019-05-08 18:30:16 +08:00
return zend_perform_covariant_type_check (
unresolved_class , proto , proto_arg_info , fe , fe_arg_info ) ;
2017-01-01 22:53:24 +08:00
}
/* }}} */
2019-05-08 18:30:16 +08:00
static inheritance_status zend_do_perform_implementation_check (
zend_string * * unresolved_class , const zend_function * fe , const zend_function * proto ) /* {{{ */
2014-09-19 06:01:05 +08:00
{
uint32_t i , num_args ;
2019-05-09 16:41:06 +08:00
inheritance_status status , local_status ;
2014-09-19 06:01:05 +08:00
/* If it's a user function then arg_info == NULL means we don't have any parameters but
* we still need to do the arg number checks . We are only willing to ignore this for internal
* functions because extensions don ' t always define arg_info .
*/
2018-09-05 18:16:10 +08:00
if ( ! proto - > common . arg_info & & proto - > common . type ! = ZEND_USER_FUNCTION ) {
2019-05-09 16:41:06 +08:00
return INHERITANCE_SUCCESS ;
2014-09-19 06:01:05 +08:00
}
/* Checks for constructors only if they are declared in an interface,
* or explicitly marked as abstract
*/
2019-06-25 23:26:56 +08:00
ZEND_ASSERT ( ! ( ( fe - > common . fn_flags & ZEND_ACC_CTOR )
2014-09-19 06:01:05 +08:00
& & ( ( proto - > common . scope - > ce_flags & ZEND_ACC_INTERFACE ) = = 0
2019-06-25 23:26:56 +08:00
& & ( proto - > common . fn_flags & ZEND_ACC_ABSTRACT ) = = 0 ) ) ) ;
2014-09-19 06:01:05 +08:00
2016-07-05 20:31:32 +08:00
/* If the prototype method is private do not enforce a signature */
2019-06-25 23:26:56 +08:00
ZEND_ASSERT ( ! ( proto - > common . fn_flags & ZEND_ACC_PRIVATE ) ) ;
2014-09-19 06:01:05 +08:00
/* check number of arguments */
if ( proto - > common . required_num_args < fe - > common . required_num_args
| | proto - > common . num_args > fe - > common . num_args ) {
2019-05-09 16:41:06 +08:00
return INHERITANCE_ERROR ;
2014-09-19 06:01:05 +08:00
}
/* by-ref constraints on return values are covariant */
if ( ( proto - > common . fn_flags & ZEND_ACC_RETURN_REFERENCE )
& & ! ( fe - > common . fn_flags & ZEND_ACC_RETURN_REFERENCE ) ) {
2019-05-09 16:41:06 +08:00
return INHERITANCE_ERROR ;
2014-09-19 06:01:05 +08:00
}
if ( ( proto - > common . fn_flags & ZEND_ACC_VARIADIC )
& & ! ( fe - > common . fn_flags & ZEND_ACC_VARIADIC ) ) {
2019-05-09 16:41:06 +08:00
return INHERITANCE_ERROR ;
2014-09-19 06:01:05 +08:00
}
/* For variadic functions any additional (optional) arguments that were added must be
* checked against the signature of the variadic argument , so in this case we have to
* go through all the parameters of the function and not just those present in the
* prototype . */
num_args = proto - > common . num_args ;
2014-12-22 21:44:39 +08:00
if ( proto - > common . fn_flags & ZEND_ACC_VARIADIC ) {
num_args + + ;
if ( fe - > common . num_args > = proto - > common . num_args ) {
num_args = fe - > common . num_args ;
if ( fe - > common . fn_flags & ZEND_ACC_VARIADIC ) {
num_args + + ;
}
}
2014-09-19 06:01:05 +08:00
}
2019-05-09 16:41:06 +08:00
status = INHERITANCE_SUCCESS ;
2014-09-19 06:01:05 +08:00
for ( i = 0 ; i < num_args ; i + + ) {
zend_arg_info * fe_arg_info = & fe - > common . arg_info [ i ] ;
zend_arg_info * proto_arg_info ;
if ( i < proto - > common . num_args ) {
proto_arg_info = & proto - > common . arg_info [ i ] ;
} else {
2014-12-22 21:44:39 +08:00
proto_arg_info = & proto - > common . arg_info [ proto - > common . num_args ] ;
2014-09-19 06:01:05 +08:00
}
2017-01-01 22:53:24 +08:00
2019-05-08 18:30:16 +08:00
local_status = zend_do_perform_arg_type_hint_check (
unresolved_class , fe , fe_arg_info , proto , proto_arg_info ) ;
2019-06-26 06:00:31 +08:00
if ( UNEXPECTED ( local_status ! = INHERITANCE_SUCCESS ) ) {
if ( UNEXPECTED ( local_status = = INHERITANCE_ERROR ) ) {
return INHERITANCE_ERROR ;
}
ZEND_ASSERT ( local_status = = INHERITANCE_UNRESOLVED ) ;
2019-05-09 16:41:06 +08:00
status = INHERITANCE_UNRESOLVED ;
2016-04-06 22:17:10 +08:00
}
2015-01-09 04:40:36 +08:00
/* by-ref constraints on arguments are invariant */
if ( fe_arg_info - > pass_by_reference ! = proto_arg_info - > pass_by_reference ) {
2019-05-09 16:41:06 +08:00
return INHERITANCE_ERROR ;
2015-01-09 04:40:36 +08:00
}
}
2014-09-19 06:01:05 +08:00
2015-03-23 01:50:36 +08:00
/* Check return type compatibility, but only if the prototype already specifies
* a return type . Adding a new return type is always valid . */
if ( proto - > common . fn_flags & ZEND_ACC_HAS_RETURN_TYPE ) {
/* Removing a return type is not valid. */
if ( ! ( fe - > common . fn_flags & ZEND_ACC_HAS_RETURN_TYPE ) ) {
2019-05-09 16:41:06 +08:00
return INHERITANCE_ERROR ;
2015-01-09 04:40:36 +08:00
}
2017-01-01 22:53:24 +08:00
2019-05-08 18:30:16 +08:00
local_status = zend_perform_covariant_type_check (
unresolved_class , fe , fe - > common . arg_info - 1 , proto , proto - > common . arg_info - 1 ) ;
2019-06-26 06:00:31 +08:00
if ( UNEXPECTED ( local_status ! = INHERITANCE_SUCCESS ) ) {
if ( UNEXPECTED ( local_status = = INHERITANCE_ERROR ) ) {
return INHERITANCE_ERROR ;
}
ZEND_ASSERT ( local_status = = INHERITANCE_UNRESOLVED ) ;
2019-05-09 16:41:06 +08:00
status = INHERITANCE_UNRESOLVED ;
2016-04-06 23:24:34 +08:00
}
2015-01-09 04:40:36 +08:00
}
2019-05-09 16:41:06 +08:00
return status ;
2015-01-09 04:40:36 +08:00
}
/* }}} */
2014-09-19 06:01:05 +08:00
2015-08-19 19:40:56 +08:00
static ZEND_COLD void zend_append_type_hint ( smart_str * str , const zend_function * fptr , zend_arg_info * arg_info , int return_hint ) /* { { { */
2015-01-09 04:40:36 +08:00
{
2016-04-29 05:26:57 +08:00
2017-01-13 16:37:46 +08:00
if ( ZEND_TYPE_IS_SET ( arg_info - > type ) & & ZEND_TYPE_ALLOW_NULL ( arg_info - > type ) ) {
2016-04-29 05:26:57 +08:00
smart_str_appendc ( str , ' ? ' ) ;
}
2017-01-13 16:37:46 +08:00
if ( ZEND_TYPE_IS_CLASS ( arg_info - > type ) ) {
2015-01-09 04:40:36 +08:00
const char * class_name ;
size_t class_name_len ;
2014-09-19 06:01:05 +08:00
2017-01-13 16:37:46 +08:00
class_name = ZSTR_VAL ( ZEND_TYPE_NAME ( arg_info - > type ) ) ;
class_name_len = ZSTR_LEN ( ZEND_TYPE_NAME ( arg_info - > type ) ) ;
2015-01-09 04:40:36 +08:00
if ( ! strcasecmp ( class_name , " self " ) & & fptr - > common . scope ) {
2015-06-30 18:59:27 +08:00
class_name = ZSTR_VAL ( fptr - > common . scope - > name ) ;
class_name_len = ZSTR_LEN ( fptr - > common . scope - > name ) ;
2015-01-30 10:30:17 +08:00
} else if ( ! strcasecmp ( class_name , " parent " ) & & fptr - > common . scope & & fptr - > common . scope - > parent ) {
2015-06-30 18:59:27 +08:00
class_name = ZSTR_VAL ( fptr - > common . scope - > parent - > name ) ;
class_name_len = ZSTR_LEN ( fptr - > common . scope - > parent - > name ) ;
2014-09-19 06:01:05 +08:00
}
2015-01-09 04:40:36 +08:00
smart_str_appendl ( str , class_name , class_name_len ) ;
if ( ! return_hint ) {
smart_str_appendc ( str , ' ' ) ;
}
2017-01-13 16:37:46 +08:00
} else if ( ZEND_TYPE_IS_CODE ( arg_info - > type ) ) {
2018-02-05 06:20:14 +08:00
const char * type_name = zend_get_type_by_const ( ZEND_TYPE_CODE ( arg_info - > type ) ) ;
smart_str_appends ( str , type_name ) ;
2015-01-09 04:40:36 +08:00
if ( ! return_hint ) {
smart_str_appendc ( str , ' ' ) ;
2014-09-19 06:01:05 +08:00
}
}
}
/* }}} */
2015-08-19 19:40:56 +08:00
static ZEND_COLD zend_string * zend_get_function_declaration ( const zend_function * fptr ) /* { { { */
2014-09-19 06:01:05 +08:00
{
2014-09-21 05:27:10 +08:00
smart_str str = { 0 } ;
2014-09-19 06:01:05 +08:00
if ( fptr - > op_array . fn_flags & ZEND_ACC_RETURN_REFERENCE ) {
2014-09-21 05:27:10 +08:00
smart_str_appends ( & str , " & " ) ;
2014-09-19 06:01:05 +08:00
}
if ( fptr - > common . scope ) {
2015-06-29 06:28:52 +08:00
/* cut off on NULL byte ... class@anonymous */
2015-06-30 18:59:27 +08:00
smart_str_appendl ( & str , ZSTR_VAL ( fptr - > common . scope - > name ) , strlen ( ZSTR_VAL ( fptr - > common . scope - > name ) ) ) ;
2014-09-21 05:27:10 +08:00
smart_str_appends ( & str , " :: " ) ;
2014-09-19 06:01:05 +08:00
}
2014-09-22 02:47:07 +08:00
smart_str_append ( & str , fptr - > common . function_name ) ;
2014-09-21 05:27:10 +08:00
smart_str_appendc ( & str , ' ( ' ) ;
2014-09-19 06:01:05 +08:00
if ( fptr - > common . arg_info ) {
2014-12-22 21:44:39 +08:00
uint32_t i , num_args , required ;
2014-09-19 06:01:05 +08:00
zend_arg_info * arg_info = fptr - > common . arg_info ;
required = fptr - > common . required_num_args ;
2014-12-22 21:44:39 +08:00
num_args = fptr - > common . num_args ;
if ( fptr - > common . fn_flags & ZEND_ACC_VARIADIC ) {
num_args + + ;
}
for ( i = 0 ; i < num_args ; ) {
2015-01-09 04:40:36 +08:00
zend_append_type_hint ( & str , fptr , arg_info , 0 ) ;
2014-09-19 06:01:05 +08:00
if ( arg_info - > pass_by_reference ) {
2014-09-21 05:27:10 +08:00
smart_str_appendc ( & str , ' & ' ) ;
2014-09-19 06:01:05 +08:00
}
if ( arg_info - > is_variadic ) {
2014-09-21 05:27:10 +08:00
smart_str_appends ( & str , " ... " ) ;
2014-09-19 06:01:05 +08:00
}
2014-09-21 05:27:10 +08:00
smart_str_appendc ( & str , ' $ ' ) ;
2014-09-19 06:01:05 +08:00
if ( arg_info - > name ) {
2014-12-03 21:56:09 +08:00
if ( fptr - > type = = ZEND_INTERNAL_FUNCTION ) {
smart_str_appends ( & str , ( ( zend_internal_arg_info * ) arg_info ) - > name ) ;
} else {
2015-06-30 18:59:27 +08:00
smart_str_appendl ( & str , ZSTR_VAL ( arg_info - > name ) , ZSTR_LEN ( arg_info - > name ) ) ;
2014-12-03 21:56:09 +08:00
}
2014-09-19 06:01:05 +08:00
} else {
2014-09-21 05:27:10 +08:00
smart_str_appends ( & str , " param " ) ;
smart_str_append_unsigned ( & str , i ) ;
2014-09-19 06:01:05 +08:00
}
2014-09-21 05:27:10 +08:00
2014-09-19 06:01:05 +08:00
if ( i > = required & & ! arg_info - > is_variadic ) {
2014-09-21 05:27:10 +08:00
smart_str_appends ( & str , " = " ) ;
2014-09-19 06:01:05 +08:00
if ( fptr - > type = = ZEND_USER_FUNCTION ) {
zend_op * precv = NULL ;
{
uint32_t idx = i ;
2014-09-21 05:27:10 +08:00
zend_op * op = fptr - > op_array . opcodes ;
zend_op * end = op + fptr - > op_array . last ;
2014-09-19 06:01:05 +08:00
+ + idx ;
while ( op < end ) {
if ( ( op - > opcode = = ZEND_RECV | | op - > opcode = = ZEND_RECV_INIT )
& & op - > op1 . num = = ( zend_ulong ) idx )
{
precv = op ;
}
+ + op ;
}
}
if ( precv & & precv - > opcode = = ZEND_RECV_INIT & & precv - > op2_type ! = IS_UNUSED ) {
2017-10-04 21:53:01 +08:00
zval * zv = RT_CONSTANT ( precv , precv - > op2 ) ;
2014-09-19 06:01:05 +08:00
2017-10-10 15:11:05 +08:00
if ( Z_TYPE_P ( zv ) = = IS_FALSE ) {
2014-09-21 05:27:10 +08:00
smart_str_appends ( & str , " false " ) ;
2014-09-19 06:01:05 +08:00
} else if ( Z_TYPE_P ( zv ) = = IS_TRUE ) {
2014-09-21 05:27:10 +08:00
smart_str_appends ( & str , " true " ) ;
2014-09-19 06:01:05 +08:00
} else if ( Z_TYPE_P ( zv ) = = IS_NULL ) {
2014-09-21 05:27:10 +08:00
smart_str_appends ( & str , " NULL " ) ;
2014-09-19 06:01:05 +08:00
} else if ( Z_TYPE_P ( zv ) = = IS_STRING ) {
2014-09-21 05:27:10 +08:00
smart_str_appendc ( & str , ' \' ' ) ;
smart_str_appendl ( & str , Z_STRVAL_P ( zv ) , MIN ( Z_STRLEN_P ( zv ) , 10 ) ) ;
2014-09-19 06:01:05 +08:00
if ( Z_STRLEN_P ( zv ) > 10 ) {
2014-09-21 05:27:10 +08:00
smart_str_appends ( & str , " ... " ) ;
2014-09-19 06:01:05 +08:00
}
2014-09-21 05:27:10 +08:00
smart_str_appendc ( & str , ' \' ' ) ;
2014-09-19 06:01:05 +08:00
} else if ( Z_TYPE_P ( zv ) = = IS_ARRAY ) {
2014-09-21 05:27:10 +08:00
smart_str_appends ( & str , " Array " ) ;
2014-09-19 06:01:05 +08:00
} else if ( Z_TYPE_P ( zv ) = = IS_CONSTANT_AST ) {
2017-10-10 15:11:05 +08:00
zend_ast * ast = Z_ASTVAL_P ( zv ) ;
if ( ast - > kind = = ZEND_AST_CONSTANT ) {
smart_str_append ( & str , zend_ast_get_constant_name ( ast ) ) ;
} else {
smart_str_appends ( & str , " <expression> " ) ;
}
2014-09-19 06:01:05 +08:00
} else {
2017-11-16 22:09:32 +08:00
zend_string * tmp_zv_str ;
zend_string * zv_str = zval_get_tmp_string ( zv , & tmp_zv_str ) ;
2014-09-22 02:47:07 +08:00
smart_str_append ( & str , zv_str ) ;
2017-11-16 22:09:32 +08:00
zend_tmp_string_release ( tmp_zv_str ) ;
2014-09-19 06:01:05 +08:00
}
}
} else {
2014-09-21 05:27:10 +08:00
smart_str_appends ( & str , " NULL " ) ;
2014-09-19 06:01:05 +08:00
}
}
2014-12-22 21:44:39 +08:00
if ( + + i < num_args ) {
2014-09-21 05:27:10 +08:00
smart_str_appends ( & str , " , " ) ;
2014-09-19 06:01:05 +08:00
}
arg_info + + ;
}
}
2014-09-21 05:27:10 +08:00
smart_str_appendc ( & str , ' ) ' ) ;
2015-01-09 04:40:36 +08:00
if ( fptr - > common . fn_flags & ZEND_ACC_HAS_RETURN_TYPE ) {
smart_str_appends ( & str , " : " ) ;
zend_append_type_hint ( & str , fptr , fptr - > common . arg_info - 1 , 1 ) ;
}
2014-09-21 05:27:10 +08:00
smart_str_0 ( & str ) ;
return str . s ;
2014-09-19 06:01:05 +08:00
}
/* }}} */
2019-05-27 17:39:56 +08:00
static zend_always_inline uint32_t func_lineno ( const zend_function * fn ) {
2019-03-27 20:02:28 +08:00
return fn - > common . type = = ZEND_USER_FUNCTION ? fn - > op_array . line_start : 0 ;
}
2019-05-08 18:30:16 +08:00
static void ZEND_COLD emit_incompatible_method_error (
2019-05-27 17:39:56 +08:00
int error_level , const char * error_verb ,
const zend_function * child , const zend_function * parent ,
2019-05-08 18:30:16 +08:00
inheritance_status status , zend_string * unresolved_class ) {
zend_string * parent_prototype = zend_get_function_declaration ( parent ) ;
zend_string * child_prototype = zend_get_function_declaration ( child ) ;
if ( status = = INHERITANCE_UNRESOLVED ) {
zend_error_at ( error_level , NULL , func_lineno ( child ) ,
" Could not check compatibility between %s and %s, because class %s is not available " ,
ZSTR_VAL ( child_prototype ) , ZSTR_VAL ( parent_prototype ) , ZSTR_VAL ( unresolved_class ) ) ;
} else {
zend_error_at ( error_level , NULL , func_lineno ( child ) ,
" Declaration of %s %s be compatible with %s " ,
ZSTR_VAL ( child_prototype ) , error_verb , ZSTR_VAL ( parent_prototype ) ) ;
}
zend_string_efree ( child_prototype ) ;
zend_string_efree ( parent_prototype ) ;
}
2019-05-27 17:39:56 +08:00
static void ZEND_COLD emit_incompatible_method_error_or_warning (
const zend_function * child , const zend_function * parent ,
inheritance_status status , zend_string * unresolved_class , zend_bool always_error ) {
int error_level ;
const char * error_verb ;
if ( always_error | |
( child - > common . prototype & &
( child - > common . prototype - > common . fn_flags & ZEND_ACC_ABSTRACT ) ) | |
( ( parent - > common . fn_flags & ZEND_ACC_HAS_RETURN_TYPE ) & &
( ! ( child - > common . fn_flags & ZEND_ACC_HAS_RETURN_TYPE ) | |
zend_perform_covariant_type_check ( & unresolved_class , child , child - > common . arg_info - 1 , parent , parent - > common . arg_info - 1 ) ! = INHERITANCE_SUCCESS ) )
) {
error_level = E_COMPILE_ERROR ;
error_verb = " must " ;
} else {
error_level = E_WARNING ;
error_verb = " should " ;
}
emit_incompatible_method_error (
error_level , error_verb , child , parent , status , unresolved_class ) ;
}
2019-06-25 21:37:42 +08:00
static void perform_delayable_implementation_check (
zend_class_entry * ce , const zend_function * fe ,
const zend_function * proto , zend_bool always_error )
{
zend_string * unresolved_class ;
inheritance_status status = zend_do_perform_implementation_check (
& unresolved_class , fe , proto ) ;
if ( UNEXPECTED ( status ! = INHERITANCE_SUCCESS ) ) {
if ( EXPECTED ( status = = INHERITANCE_UNRESOLVED ) ) {
add_compatibility_obligation ( ce , fe , proto , always_error ) ;
2019-06-26 06:00:31 +08:00
} else {
ZEND_ASSERT ( status = = INHERITANCE_ERROR ) ;
2019-06-25 21:37:42 +08:00
if ( always_error ) {
emit_incompatible_method_error (
E_COMPILE_ERROR , " must " , fe , proto , status , unresolved_class ) ;
} else {
emit_incompatible_method_error_or_warning (
fe , proto , status , unresolved_class , always_error ) ;
}
}
}
}
2018-10-03 23:32:25 +08:00
static void do_inheritance_check_on_method ( zend_function * child , zend_function * parent , zend_class_entry * ce , zval * child_zv ) /* { { { */
2014-09-19 06:01:05 +08:00
{
uint32_t child_flags ;
uint32_t parent_flags = parent - > common . fn_flags ;
2019-06-26 05:32:22 +08:00
zend_function * proto ;
2014-09-19 06:01:05 +08:00
2015-03-05 07:10:38 +08:00
if ( UNEXPECTED ( parent_flags & ZEND_ACC_FINAL ) ) {
2019-03-27 20:02:28 +08:00
zend_error_at_noreturn ( E_COMPILE_ERROR , NULL , func_lineno ( child ) ,
" Cannot override final method %s::%s() " ,
ZEND_FN_SCOPE_NAME ( parent ) , ZSTR_VAL ( child - > common . function_name ) ) ;
2014-09-19 06:01:05 +08:00
}
child_flags = child - > common . fn_flags ;
/* You cannot change from static to non static and vice versa.
*/
2015-03-05 07:10:38 +08:00
if ( UNEXPECTED ( ( child_flags & ZEND_ACC_STATIC ) ! = ( parent_flags & ZEND_ACC_STATIC ) ) ) {
2018-07-09 21:28:13 +08:00
if ( child_flags & ZEND_ACC_STATIC ) {
2019-03-27 20:02:28 +08:00
zend_error_at_noreturn ( E_COMPILE_ERROR , NULL , func_lineno ( child ) ,
" Cannot make non static method %s::%s() static in class %s " ,
ZEND_FN_SCOPE_NAME ( parent ) , ZSTR_VAL ( child - > common . function_name ) , ZEND_FN_SCOPE_NAME ( child ) ) ;
2014-09-19 06:01:05 +08:00
} else {
2019-03-27 20:02:28 +08:00
zend_error_at_noreturn ( E_COMPILE_ERROR , NULL , func_lineno ( child ) ,
" Cannot make static method %s::%s() non static in class %s " ,
ZEND_FN_SCOPE_NAME ( parent ) , ZSTR_VAL ( child - > common . function_name ) , ZEND_FN_SCOPE_NAME ( child ) ) ;
2014-09-19 06:01:05 +08:00
}
}
/* Disallow making an inherited method abstract. */
2015-03-05 07:10:38 +08:00
if ( UNEXPECTED ( ( child_flags & ZEND_ACC_ABSTRACT ) > ( parent_flags & ZEND_ACC_ABSTRACT ) ) ) {
2019-03-27 20:02:28 +08:00
zend_error_at_noreturn ( E_COMPILE_ERROR , NULL , func_lineno ( child ) ,
" Cannot make non abstract method %s::%s() abstract in class %s " ,
ZEND_FN_SCOPE_NAME ( parent ) , ZSTR_VAL ( child - > common . function_name ) , ZEND_FN_SCOPE_NAME ( child ) ) ;
2014-09-19 06:01:05 +08:00
}
2018-09-12 16:43:15 +08:00
if ( parent_flags & ( ZEND_ACC_PRIVATE | ZEND_ACC_CHANGED ) ) {
2014-09-19 06:01:05 +08:00
child - > common . fn_flags | = ZEND_ACC_CHANGED ;
}
2019-06-26 05:32:22 +08:00
if ( parent_flags & ZEND_ACC_PRIVATE ) {
return ;
}
2018-10-03 23:32:25 +08:00
2019-06-26 05:32:22 +08:00
proto = parent - > common . prototype ?
parent - > common . prototype : parent ;
if ( parent_flags & ZEND_ACC_CTOR ) {
/* ctors only have a prototype if is abstract (or comes from an interface) */
/* and if that is the case, we want to check inheritance against it */
if ( ! ( proto - > common . fn_flags & ZEND_ACC_ABSTRACT ) ) {
return ;
}
parent = proto ;
}
if ( child_zv & & child - > common . prototype ! = proto ) {
do {
if ( child - > common . scope ! = ce
& & child - > type = = ZEND_USER_FUNCTION
& & ! child - > op_array . static_variables ) {
if ( ce - > ce_flags & ZEND_ACC_INTERFACE ) {
/* Few parent interfaces contain the same method */
2018-09-05 18:16:10 +08:00
break ;
2019-06-26 05:32:22 +08:00
} else {
/* op_array wasn't duplicated yet */
zend_function * new_function = zend_arena_alloc ( & CG ( arena ) , sizeof ( zend_op_array ) ) ;
memcpy ( new_function , child , sizeof ( zend_op_array ) ) ;
Z_PTR_P ( child_zv ) = child = new_function ;
2018-09-05 18:16:10 +08:00
}
}
2019-06-26 05:32:22 +08:00
child - > common . prototype = proto ;
} while ( 0 ) ;
}
2018-09-05 18:16:10 +08:00
2019-06-26 05:32:22 +08:00
/* Prevent derived classes from restricting access that was available in parent classes (except deriving from non-abstract ctors) */
if ( ( child_flags & ZEND_ACC_PPP_MASK ) > ( parent_flags & ZEND_ACC_PPP_MASK ) ) {
zend_error_at_noreturn ( E_COMPILE_ERROR , NULL , func_lineno ( child ) ,
" Access level to %s::%s() must be %s (as in class %s)%s " ,
ZEND_FN_SCOPE_NAME ( child ) , ZSTR_VAL ( child - > common . function_name ) , zend_visibility_string ( parent_flags ) , ZEND_FN_SCOPE_NAME ( parent ) , ( parent_flags & ZEND_ACC_PUBLIC ) ? " " : " or weaker " ) ;
}
perform_delayable_implementation_check (
ce , child , parent , /*always_error*/ 0 ) ;
2014-09-19 06:01:05 +08:00
}
/* }}} */
2015-03-05 07:10:38 +08:00
static zend_function * do_inherit_method ( zend_string * key , zend_function * parent , zend_class_entry * ce ) /* { { { */
2014-09-19 06:01:05 +08:00
{
2017-11-24 19:01:19 +08:00
zval * child = zend_hash_find_ex ( & ce - > function_table , key , 1 ) ;
2014-09-19 06:01:05 +08:00
2015-03-05 07:10:38 +08:00
if ( child ) {
2016-01-13 16:41:57 +08:00
zend_function * func = ( zend_function * ) Z_PTR_P ( child ) ;
2018-10-03 17:32:33 +08:00
if ( UNEXPECTED ( func = = parent ) ) {
2018-10-03 19:35:36 +08:00
/* The same method in interface may be inherited few times */
2018-10-03 17:32:33 +08:00
return NULL ;
}
2018-10-03 23:32:25 +08:00
do_inheritance_check_on_method ( func , parent , ce , child ) ;
2015-03-05 07:10:38 +08:00
return NULL ;
2014-09-19 06:01:05 +08:00
}
2015-03-05 07:10:38 +08:00
if ( parent - > common . fn_flags & ( ZEND_ACC_ABSTRACT ) ) {
ce - > ce_flags | = ZEND_ACC_IMPLICIT_ABSTRACT_CLASS ;
}
2014-09-19 06:01:05 +08:00
2015-03-05 07:10:38 +08:00
return zend_duplicate_function ( parent , ce ) ;
2014-09-19 06:01:05 +08:00
}
/* }}} */
2019-01-07 19:28:51 +08:00
zend_string * zend_resolve_property_type ( zend_string * type , zend_class_entry * scope ) /* { { { */
{
if ( zend_string_equals_literal_ci ( type , " parent " ) ) {
if ( scope & & scope - > parent ) {
return scope - > parent - > name ;
}
}
if ( zend_string_equals_literal_ci ( type , " self " ) ) {
if ( scope ) {
return scope - > name ;
}
}
return type ;
} /* }}} */
zend_bool property_types_compatible ( zend_property_info * parent_info , zend_property_info * child_info ) {
zend_string * parent_name , * child_name ;
zend_class_entry * parent_type_ce , * child_type_ce ;
if ( parent_info - > type = = child_info - > type ) {
return 1 ;
}
if ( ! ZEND_TYPE_IS_CLASS ( parent_info - > type ) | | ! ZEND_TYPE_IS_CLASS ( child_info - > type ) | |
ZEND_TYPE_ALLOW_NULL ( parent_info - > type ) ! = ZEND_TYPE_ALLOW_NULL ( child_info - > type ) ) {
return 0 ;
}
parent_name = ZEND_TYPE_IS_CE ( parent_info - > type )
? ZEND_TYPE_CE ( parent_info - > type ) - > name
: zend_resolve_property_type ( ZEND_TYPE_NAME ( parent_info - > type ) , parent_info - > ce ) ;
child_name = ZEND_TYPE_IS_CE ( child_info - > type )
? ZEND_TYPE_CE ( child_info - > type ) - > name
: zend_resolve_property_type ( ZEND_TYPE_NAME ( child_info - > type ) , child_info - > ce ) ;
if ( zend_string_equals_ci ( parent_name , child_name ) ) {
return 1 ;
}
/* Check for class aliases */
parent_type_ce = ZEND_TYPE_IS_CE ( parent_info - > type )
? ZEND_TYPE_CE ( parent_info - > type )
: zend_lookup_class ( parent_name ) ;
child_type_ce = ZEND_TYPE_IS_CE ( child_info - > type )
? ZEND_TYPE_CE ( child_info - > type )
: zend_lookup_class ( child_name ) ;
return parent_type_ce & & child_type_ce & & parent_type_ce = = child_type_ce ;
}
2015-03-04 22:41:01 +08:00
static void do_inherit_property ( zend_property_info * parent_info , zend_string * key , zend_class_entry * ce ) /* { { { */
2014-09-19 06:01:05 +08:00
{
2017-11-24 19:01:19 +08:00
zval * child = zend_hash_find_ex ( & ce - > properties_info , key , 1 ) ;
2015-03-05 04:06:07 +08:00
zend_property_info * child_info ;
2014-09-19 06:01:05 +08:00
2015-03-05 04:06:07 +08:00
if ( UNEXPECTED ( child ) ) {
child_info = Z_PTR_P ( child ) ;
2018-09-12 16:43:15 +08:00
if ( parent_info - > flags & ( ZEND_ACC_PRIVATE | ZEND_ACC_CHANGED ) ) {
2014-09-19 06:01:05 +08:00
child_info - > flags | = ZEND_ACC_CHANGED ;
2018-09-12 16:43:15 +08:00
}
if ( ! ( parent_info - > flags & ZEND_ACC_PRIVATE ) ) {
2015-03-05 07:10:38 +08:00
if ( UNEXPECTED ( ( parent_info - > flags & ZEND_ACC_STATIC ) ! = ( child_info - > flags & ZEND_ACC_STATIC ) ) ) {
2015-03-04 22:41:01 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " Cannot redeclare %s%s::$%s as %s%s::$%s " ,
2015-06-30 18:59:27 +08:00
( parent_info - > flags & ZEND_ACC_STATIC ) ? " static " : " non static " , ZSTR_VAL ( ce - > parent - > name ) , ZSTR_VAL ( key ) ,
( child_info - > flags & ZEND_ACC_STATIC ) ? " static " : " non static " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( key ) ) ;
2015-03-04 22:41:01 +08:00
}
2015-03-05 07:10:38 +08:00
if ( UNEXPECTED ( ( child_info - > flags & ZEND_ACC_PPP_MASK ) > ( parent_info - > flags & ZEND_ACC_PPP_MASK ) ) ) {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " Access level to %s::$%s must be %s (as in class %s)%s " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( key ) , zend_visibility_string ( parent_info - > flags ) , ZSTR_VAL ( ce - > parent - > name ) , ( parent_info - > flags & ZEND_ACC_PUBLIC ) ? " " : " or weaker " ) ;
2015-03-04 22:41:01 +08:00
} else if ( ( child_info - > flags & ZEND_ACC_STATIC ) = = 0 ) {
int parent_num = OBJ_PROP_TO_NUM ( parent_info - > offset ) ;
int child_num = OBJ_PROP_TO_NUM ( child_info - > offset ) ;
2016-05-06 14:48:58 +08:00
/* Don't keep default properties in GC (they may be freed by opcache) */
2016-04-19 06:37:24 +08:00
zval_ptr_dtor_nogc ( & ( ce - > default_properties_table [ parent_num ] ) ) ;
2015-03-04 22:41:01 +08:00
ce - > default_properties_table [ parent_num ] = ce - > default_properties_table [ child_num ] ;
ZVAL_UNDEF ( & ce - > default_properties_table [ child_num ] ) ;
child_info - > offset = parent_info - > offset ;
}
2019-01-07 19:28:51 +08:00
if ( UNEXPECTED ( ZEND_TYPE_IS_SET ( parent_info - > type ) ) ) {
if ( ! property_types_compatible ( parent_info , child_info ) ) {
zend_error_noreturn ( E_COMPILE_ERROR ,
" Type of %s::$%s must be %s%s (as in class %s) " ,
ZSTR_VAL ( ce - > name ) ,
ZSTR_VAL ( key ) ,
ZEND_TYPE_ALLOW_NULL ( parent_info - > type ) ? " ? " : " " ,
ZEND_TYPE_IS_CLASS ( parent_info - > type )
? ZSTR_VAL ( ZEND_TYPE_IS_CE ( parent_info - > type ) ? ZEND_TYPE_CE ( parent_info - > type ) - > name : zend_resolve_property_type ( ZEND_TYPE_NAME ( parent_info - > type ) , parent_info - > ce ) )
: zend_get_type_by_const ( ZEND_TYPE_CODE ( parent_info - > type ) ) ,
ZSTR_VAL ( ce - > parent - > name ) ) ;
}
} else if ( UNEXPECTED ( ZEND_TYPE_IS_SET ( child_info - > type ) & & ! ZEND_TYPE_IS_SET ( parent_info - > type ) ) ) {
zend_error_noreturn ( E_COMPILE_ERROR ,
" Type of %s::$%s must not be defined (as in class %s) " ,
ZSTR_VAL ( ce - > name ) ,
ZSTR_VAL ( key ) ,
ZSTR_VAL ( ce - > parent - > name ) ) ;
}
2015-03-04 22:41:01 +08:00
}
} else {
2018-09-11 16:56:45 +08:00
if ( UNEXPECTED ( ce - > type & ZEND_INTERNAL_CLASS ) ) {
child_info = zend_duplicate_property_info_internal ( parent_info ) ;
2015-03-04 22:41:01 +08:00
} else {
2018-09-11 16:56:45 +08:00
child_info = parent_info ;
2014-09-19 06:01:05 +08:00
}
2015-03-04 22:41:01 +08:00
_zend_hash_append_ptr ( & ce - > properties_info , key , child_info ) ;
2014-09-19 06:01:05 +08:00
}
}
/* }}} */
2014-12-14 06:06:14 +08:00
static inline void do_implement_interface ( zend_class_entry * ce , zend_class_entry * iface ) /* { { { */
2014-09-19 06:01:05 +08:00
{
2014-12-14 06:06:14 +08:00
if ( ! ( ce - > ce_flags & ZEND_ACC_INTERFACE ) & & iface - > interface_gets_implemented & & iface - > interface_gets_implemented ( iface , ce ) = = FAILURE ) {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_CORE_ERROR , " Class %s could not implement interface %s " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( iface - > name ) ) ;
2014-09-19 06:01:05 +08:00
}
2015-03-05 07:10:38 +08:00
if ( UNEXPECTED ( ce = = iface ) ) {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_ERROR , " Interface %s cannot implement itself " , ZSTR_VAL ( ce - > name ) ) ;
2014-09-19 06:01:05 +08:00
}
}
/* }}} */
2018-08-23 22:16:28 +08:00
static void zend_do_inherit_interfaces ( zend_class_entry * ce , const zend_class_entry * iface ) /* { { { */
2014-09-19 06:01:05 +08:00
{
/* expects interface to be contained in ce's interface list already */
uint32_t i , ce_num , if_num = iface - > num_interfaces ;
zend_class_entry * entry ;
ce_num = ce - > num_interfaces ;
if ( ce - > type = = ZEND_INTERNAL_CLASS ) {
ce - > interfaces = ( zend_class_entry * * ) realloc ( ce - > interfaces , sizeof ( zend_class_entry * ) * ( ce_num + if_num ) ) ;
} else {
ce - > interfaces = ( zend_class_entry * * ) erealloc ( ce - > interfaces , sizeof ( zend_class_entry * ) * ( ce_num + if_num ) ) ;
}
/* Inherit the interfaces, only if they're not already inherited by the class */
while ( if_num - - ) {
entry = iface - > interfaces [ if_num ] ;
for ( i = 0 ; i < ce_num ; i + + ) {
if ( ce - > interfaces [ i ] = = entry ) {
break ;
}
}
if ( i = = ce_num ) {
ce - > interfaces [ ce - > num_interfaces + + ] = entry ;
}
}
2019-05-27 17:39:56 +08:00
ce - > ce_flags | = ZEND_ACC_RESOLVED_INTERFACES ;
2014-09-19 06:01:05 +08:00
/* and now call the implementing handlers */
while ( ce_num < ce - > num_interfaces ) {
2014-12-14 06:06:14 +08:00
do_implement_interface ( ce , ce - > interfaces [ ce_num + + ] ) ;
2014-09-19 06:01:05 +08:00
}
}
/* }}} */
2015-12-08 17:40:42 +08:00
static void do_inherit_class_constant ( zend_string * name , zend_class_constant * parent_const , zend_class_entry * ce ) /* { { { */
2014-09-19 06:01:05 +08:00
{
2017-11-24 19:01:19 +08:00
zval * zv = zend_hash_find_ex ( & ce - > constants_table , name , 1 ) ;
zend_class_constant * c ;
2015-12-08 17:40:42 +08:00
2017-11-24 19:01:19 +08:00
if ( zv ! = NULL ) {
c = ( zend_class_constant * ) Z_PTR_P ( zv ) ;
2015-12-08 17:40:42 +08:00
if ( UNEXPECTED ( ( Z_ACCESS_FLAGS ( c - > value ) & ZEND_ACC_PPP_MASK ) > ( Z_ACCESS_FLAGS ( parent_const - > value ) & ZEND_ACC_PPP_MASK ) ) ) {
zend_error_noreturn ( E_COMPILE_ERROR , " Access level to %s::%s must be %s (as in class %s)%s " ,
ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( name ) , zend_visibility_string ( Z_ACCESS_FLAGS ( parent_const - > value ) ) , ZSTR_VAL ( ce - > parent - > name ) , ( Z_ACCESS_FLAGS ( parent_const - > value ) & ZEND_ACC_PUBLIC ) ? " " : " or weaker " ) ;
2015-03-05 04:06:07 +08:00
}
2015-12-08 17:40:42 +08:00
} else if ( ! ( Z_ACCESS_FLAGS ( parent_const - > value ) & ZEND_ACC_PRIVATE ) ) {
2017-10-10 15:11:05 +08:00
if ( Z_TYPE ( parent_const - > value ) = = IS_CONSTANT_AST ) {
2015-03-05 04:06:07 +08:00
ce - > ce_flags & = ~ ZEND_ACC_CONSTANTS_UPDATED ;
2014-09-19 06:01:05 +08:00
}
2017-10-31 06:20:38 +08:00
if ( ce - > type & ZEND_INTERNAL_CLASS ) {
c = pemalloc ( sizeof ( zend_class_constant ) , 1 ) ;
memcpy ( c , parent_const , sizeof ( zend_class_constant ) ) ;
parent_const = c ;
}
2017-10-31 04:13:10 +08:00
_zend_hash_append_ptr ( & ce - > constants_table , name , parent_const ) ;
2014-09-19 06:01:05 +08:00
}
}
/* }}} */
2019-01-07 19:28:51 +08:00
void zend_build_properties_info_table ( zend_class_entry * ce )
{
zend_property_info * * table , * prop ;
2019-02-15 20:42:37 +08:00
size_t size ;
2019-01-07 19:28:51 +08:00
if ( ce - > default_properties_count = = 0 ) {
return ;
}
ZEND_ASSERT ( ce - > properties_info_table = = NULL ) ;
2019-02-15 20:42:37 +08:00
size = sizeof ( zend_property_info * ) * ce - > default_properties_count ;
2019-01-07 19:28:51 +08:00
if ( ce - > type = = ZEND_USER_CLASS ) {
2019-02-15 20:42:37 +08:00
ce - > properties_info_table = table = zend_arena_alloc ( & CG ( arena ) , size ) ;
2019-01-07 19:28:51 +08:00
} else {
2019-02-15 20:42:37 +08:00
ce - > properties_info_table = table = pemalloc ( size , 1 ) ;
2019-01-07 19:28:51 +08:00
}
2019-02-15 20:42:37 +08:00
/* Dead slots may be left behind during inheritance. Make sure these are NULLed out. */
memset ( table , 0 , size ) ;
2019-01-07 19:28:51 +08:00
if ( ce - > parent & & ce - > parent - > default_properties_count ! = 0 ) {
zend_property_info * * parent_table = ce - > parent - > properties_info_table ;
memcpy (
table , parent_table ,
sizeof ( zend_property_info * ) * ce - > parent - > default_properties_count
) ;
/* Child did not add any new properties, we are done */
if ( ce - > default_properties_count = = ce - > parent - > default_properties_count ) {
return ;
}
}
ZEND_HASH_FOREACH_PTR ( & ce - > properties_info , prop ) {
if ( prop - > ce = = ce & & ( prop - > flags & ZEND_ACC_STATIC ) = = 0 ) {
table [ OBJ_PROP_TO_NUM ( prop - > offset ) ] = prop ;
}
} ZEND_HASH_FOREACH_END ( ) ;
}
2014-12-14 06:06:14 +08:00
ZEND_API void zend_do_inheritance ( zend_class_entry * ce , zend_class_entry * parent_ce ) /* { { { */
2014-09-19 06:01:05 +08:00
{
zend_property_info * property_info ;
zend_function * func ;
zend_string * key ;
2015-03-05 07:10:38 +08:00
if ( UNEXPECTED ( ce - > ce_flags & ZEND_ACC_INTERFACE ) ) {
2014-12-06 12:42:52 +08:00
/* Interface can only inherit other interfaces */
2015-03-05 07:10:38 +08:00
if ( UNEXPECTED ( ! ( parent_ce - > ce_flags & ZEND_ACC_INTERFACE ) ) ) {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " Interface %s may not inherit from class (%s) " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( parent_ce - > name ) ) ;
2014-12-06 12:42:52 +08:00
}
2015-03-05 04:06:07 +08:00
} else if ( UNEXPECTED ( parent_ce - > ce_flags & ( ZEND_ACC_INTERFACE | ZEND_ACC_TRAIT | ZEND_ACC_FINAL ) ) ) {
2014-12-06 12:42:52 +08:00
/* Class declaration must not extend traits or interfaces */
if ( parent_ce - > ce_flags & ZEND_ACC_INTERFACE ) {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " Class %s cannot extend from interface %s " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( parent_ce - > name ) ) ;
2014-12-06 12:42:52 +08:00
} else if ( parent_ce - > ce_flags & ZEND_ACC_TRAIT ) {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " Class %s cannot extend from trait %s " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( parent_ce - > name ) ) ;
2014-12-06 12:42:52 +08:00
}
/* Class must not extend a final class */
if ( parent_ce - > ce_flags & ZEND_ACC_FINAL ) {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " Class %s may not inherit from final class (%s) " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( parent_ce - > name ) ) ;
2014-12-06 12:42:52 +08:00
}
2014-09-19 06:01:05 +08:00
}
2018-09-18 16:41:40 +08:00
if ( ce - > parent_name ) {
2018-08-24 05:20:57 +08:00
zend_string_release_ex ( ce - > parent_name , 0 ) ;
}
2014-09-19 06:01:05 +08:00
ce - > parent = parent_ce ;
2019-05-27 17:39:56 +08:00
ce - > ce_flags | = ZEND_ACC_RESOLVED_PARENT ;
2014-12-06 12:42:52 +08:00
2014-09-19 06:01:05 +08:00
/* Inherit interfaces */
2018-08-23 22:16:28 +08:00
if ( parent_ce - > num_interfaces ) {
if ( ! ( ce - > ce_flags & ZEND_ACC_IMPLEMENT_INTERFACES ) ) {
zend_do_inherit_interfaces ( ce , parent_ce ) ;
} else {
uint32_t i ;
for ( i = 0 ; i < parent_ce - > num_interfaces ; i + + ) {
do_implement_interface ( ce , parent_ce - > interfaces [ i ] ) ;
}
}
}
2014-09-19 06:01:05 +08:00
/* Inherit properties */
if ( parent_ce - > default_properties_count ) {
2015-04-22 17:53:54 +08:00
zval * src , * dst , * end ;
2014-09-19 06:01:05 +08:00
if ( ce - > default_properties_count ) {
2015-04-22 17:53:54 +08:00
zval * table = pemalloc ( sizeof ( zval ) * ( ce - > default_properties_count + parent_ce - > default_properties_count ) , ce - > type = = ZEND_INTERNAL_CLASS ) ;
src = ce - > default_properties_table + ce - > default_properties_count ;
end = table + parent_ce - > default_properties_count ;
dst = end + ce - > default_properties_count ;
ce - > default_properties_table = table ;
do {
dst - - ;
src - - ;
ZVAL_COPY_VALUE ( dst , src ) ;
} while ( dst ! = end ) ;
pefree ( src , ce - > type = = ZEND_INTERNAL_CLASS ) ;
end = ce - > default_properties_table ;
} else {
end = pemalloc ( sizeof ( zval ) * parent_ce - > default_properties_count , ce - > type = = ZEND_INTERNAL_CLASS ) ;
dst = end + parent_ce - > default_properties_count ;
ce - > default_properties_table = end ;
}
src = parent_ce - > default_properties_table + parent_ce - > default_properties_count ;
2017-10-31 04:13:10 +08:00
if ( UNEXPECTED ( parent_ce - > type ! = ce - > type ) ) {
/* User class extends internal */
do {
dst - - ;
src - - ;
ZVAL_COPY_OR_DUP ( dst , src ) ;
2017-10-10 15:11:05 +08:00
if ( Z_OPT_TYPE_P ( dst ) = = IS_CONSTANT_AST ) {
2014-09-19 06:01:05 +08:00
ce - > ce_flags & = ~ ZEND_ACC_CONSTANTS_UPDATED ;
}
continue ;
2017-10-31 04:13:10 +08:00
} while ( dst ! = end ) ;
} else {
do {
dst - - ;
src - - ;
ZVAL_COPY ( dst , src ) ;
if ( Z_OPT_TYPE_P ( dst ) = = IS_CONSTANT_AST ) {
ce - > ce_flags & = ~ ZEND_ACC_CONSTANTS_UPDATED ;
}
continue ;
} while ( dst ! = end ) ;
}
2014-09-19 06:01:05 +08:00
ce - > default_properties_count + = parent_ce - > default_properties_count ;
}
2015-04-22 17:53:54 +08:00
if ( parent_ce - > default_static_members_count ) {
zval * src , * dst , * end ;
if ( ce - > default_static_members_count ) {
zval * table = pemalloc ( sizeof ( zval ) * ( ce - > default_static_members_count + parent_ce - > default_static_members_count ) , ce - > type = = ZEND_INTERNAL_CLASS ) ;
src = ce - > default_static_members_table + ce - > default_static_members_count ;
end = table + parent_ce - > default_static_members_count ;
dst = end + ce - > default_static_members_count ;
ce - > default_static_members_table = table ;
do {
dst - - ;
src - - ;
ZVAL_COPY_VALUE ( dst , src ) ;
} while ( dst ! = end ) ;
pefree ( src , ce - > type = = ZEND_INTERNAL_CLASS ) ;
end = ce - > default_static_members_table ;
} else {
end = pemalloc ( sizeof ( zval ) * parent_ce - > default_static_members_count , ce - > type = = ZEND_INTERNAL_CLASS ) ;
dst = end + parent_ce - > default_static_members_count ;
ce - > default_static_members_table = end ;
}
2017-10-31 04:13:10 +08:00
if ( UNEXPECTED ( parent_ce - > type ! = ce - > type ) ) {
/* User class extends internal */
2018-10-19 18:21:31 +08:00
if ( CE_STATIC_MEMBERS ( parent_ce ) = = NULL ) {
zend_class_init_statics ( parent_ce ) ;
}
2017-10-31 04:13:10 +08:00
if ( UNEXPECTED ( zend_update_class_constants ( parent_ce ) ! = SUCCESS ) ) {
ZEND_ASSERT ( 0 ) ;
}
src = CE_STATIC_MEMBERS ( parent_ce ) + parent_ce - > default_static_members_count ;
do {
dst - - ;
src - - ;
2018-06-22 18:58:48 +08:00
if ( Z_TYPE_P ( src ) = = IS_INDIRECT ) {
ZVAL_INDIRECT ( dst , Z_INDIRECT_P ( src ) ) ;
2017-12-26 18:30:25 +08:00
} else {
2018-06-22 18:58:48 +08:00
ZVAL_INDIRECT ( dst , src ) ;
2017-12-26 18:30:25 +08:00
}
2017-10-31 04:13:10 +08:00
} while ( dst ! = end ) ;
} else if ( ce - > type = = ZEND_USER_CLASS ) {
2018-10-19 18:21:31 +08:00
if ( CE_STATIC_MEMBERS ( parent_ce ) = = NULL ) {
2019-06-25 01:32:27 +08:00
ZEND_ASSERT ( parent_ce - > ce_flags & ( ZEND_ACC_IMMUTABLE | ZEND_ACC_PRELOADED ) ) ;
2018-10-19 18:21:31 +08:00
zend_class_init_statics ( parent_ce ) ;
}
2018-10-17 20:52:50 +08:00
src = CE_STATIC_MEMBERS ( parent_ce ) + parent_ce - > default_static_members_count ;
2017-10-31 04:13:10 +08:00
do {
dst - - ;
src - - ;
2018-06-22 18:58:48 +08:00
if ( Z_TYPE_P ( src ) = = IS_INDIRECT ) {
ZVAL_INDIRECT ( dst , Z_INDIRECT_P ( src ) ) ;
2017-12-26 18:30:25 +08:00
} else {
2018-06-22 18:58:48 +08:00
ZVAL_INDIRECT ( dst , src ) ;
2017-12-26 18:30:25 +08:00
}
2018-06-22 18:58:48 +08:00
if ( Z_TYPE_P ( Z_INDIRECT_P ( dst ) ) = = IS_CONSTANT_AST ) {
2017-10-31 04:13:10 +08:00
ce - > ce_flags & = ~ ZEND_ACC_CONSTANTS_UPDATED ;
}
} while ( dst ! = end ) ;
} else {
src = parent_ce - > default_static_members_table + parent_ce - > default_static_members_count ;
do {
dst - - ;
src - - ;
2018-06-22 18:58:48 +08:00
if ( Z_TYPE_P ( src ) = = IS_INDIRECT ) {
ZVAL_INDIRECT ( dst , Z_INDIRECT_P ( src ) ) ;
} else {
ZVAL_INDIRECT ( dst , src ) ;
2015-07-10 15:27:06 +08:00
}
2017-10-31 04:13:10 +08:00
} while ( dst ! = end ) ;
}
2015-04-22 17:53:54 +08:00
ce - > default_static_members_count + = parent_ce - > default_static_members_count ;
2018-10-17 20:52:50 +08:00
if ( ! ZEND_MAP_PTR ( ce - > static_members_table ) ) {
ZEND_ASSERT ( ce - > type = = ZEND_INTERNAL_CLASS ) ;
if ( ! EG ( current_execute_data ) ) {
ZEND_MAP_PTR_NEW ( ce - > static_members_table ) ;
} else {
/* internal class loaded by dl() */
ZEND_MAP_PTR_INIT ( ce - > static_members_table , & ce - > default_static_members_table ) ;
2018-10-02 00:05:31 +08:00
}
2014-09-19 06:01:05 +08:00
}
}
ZEND_HASH_FOREACH_PTR ( & ce - > properties_info , property_info ) {
if ( property_info - > ce = = ce ) {
if ( property_info - > flags & ZEND_ACC_STATIC ) {
property_info - > offset + = parent_ce - > default_static_members_count ;
} else {
2014-11-06 19:50:03 +08:00
property_info - > offset + = parent_ce - > default_properties_count * sizeof ( zval ) ;
2014-09-19 06:01:05 +08:00
}
}
} ZEND_HASH_FOREACH_END ( ) ;
2015-03-05 04:06:07 +08:00
if ( zend_hash_num_elements ( & parent_ce - > properties_info ) ) {
zend_hash_extend ( & ce - > properties_info ,
zend_hash_num_elements ( & ce - > properties_info ) +
zend_hash_num_elements ( & parent_ce - > properties_info ) , 0 ) ;
2015-03-04 22:41:01 +08:00
2015-03-05 04:06:07 +08:00
ZEND_HASH_FOREACH_STR_KEY_PTR ( & parent_ce - > properties_info , key , property_info ) {
do_inherit_property ( property_info , key , ce ) ;
} ZEND_HASH_FOREACH_END ( ) ;
}
2014-09-19 06:01:05 +08:00
2015-03-05 04:06:07 +08:00
if ( zend_hash_num_elements ( & parent_ce - > constants_table ) ) {
2015-12-08 17:40:42 +08:00
zend_class_constant * c ;
2015-03-05 04:06:07 +08:00
zend_hash_extend ( & ce - > constants_table ,
zend_hash_num_elements ( & ce - > constants_table ) +
zend_hash_num_elements ( & parent_ce - > constants_table ) , 0 ) ;
2014-09-19 06:01:05 +08:00
2015-12-08 17:40:42 +08:00
ZEND_HASH_FOREACH_STR_KEY_PTR ( & parent_ce - > constants_table , key , c ) {
do_inherit_class_constant ( key , c , ce ) ;
2015-03-05 04:06:07 +08:00
} ZEND_HASH_FOREACH_END ( ) ;
}
if ( zend_hash_num_elements ( & parent_ce - > function_table ) ) {
zend_hash_extend ( & ce - > function_table ,
zend_hash_num_elements ( & ce - > function_table ) +
zend_hash_num_elements ( & parent_ce - > function_table ) , 0 ) ;
ZEND_HASH_FOREACH_STR_KEY_PTR ( & parent_ce - > function_table , key , func ) {
2015-03-05 07:10:38 +08:00
zend_function * new_func = do_inherit_method ( key , func , ce ) ;
if ( new_func ) {
2015-03-05 04:06:07 +08:00
_zend_hash_append_ptr ( & ce - > function_table , key , new_func ) ;
}
} ZEND_HASH_FOREACH_END ( ) ;
}
2014-09-19 06:01:05 +08:00
2014-12-14 06:06:14 +08:00
do_inherit_parent_constructor ( ce ) ;
2014-09-19 06:01:05 +08:00
2018-08-27 21:40:25 +08:00
if ( ce - > type = = ZEND_INTERNAL_CLASS ) {
if ( ce - > ce_flags & ZEND_ACC_IMPLICIT_ABSTRACT_CLASS ) {
ce - > ce_flags | = ZEND_ACC_EXPLICIT_ABSTRACT_CLASS ;
}
2014-09-19 06:01:05 +08:00
}
2019-01-07 19:28:51 +08:00
ce - > ce_flags | = parent_ce - > ce_flags & ( ZEND_HAS_STATIC_IN_METHODS | ZEND_ACC_HAS_TYPE_HINTS | ZEND_ACC_USE_GUARDS ) ;
2014-09-19 06:01:05 +08:00
}
/* }}} */
2015-12-08 17:40:42 +08:00
static zend_bool do_inherit_constant_check ( HashTable * child_constants_table , zend_class_constant * parent_constant , zend_string * name , const zend_class_entry * iface ) /* { { { */
2014-09-19 06:01:05 +08:00
{
2017-11-24 19:01:19 +08:00
zval * zv = zend_hash_find_ex ( child_constants_table , name , 1 ) ;
2015-12-08 17:40:42 +08:00
zend_class_constant * old_constant ;
2014-09-19 06:01:05 +08:00
2017-11-24 19:01:19 +08:00
if ( zv ! = NULL ) {
old_constant = ( zend_class_constant * ) Z_PTR_P ( zv ) ;
2015-12-08 17:40:42 +08:00
if ( old_constant - > ce ! = parent_constant - > ce ) {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " Cannot inherit previously-inherited or override constant %s from interface %s " , ZSTR_VAL ( name ) , ZSTR_VAL ( iface - > name ) ) ;
2014-09-19 06:01:05 +08:00
}
return 0 ;
}
return 1 ;
}
/* }}} */
2015-12-08 17:40:42 +08:00
static void do_inherit_iface_constant ( zend_string * name , zend_class_constant * c , zend_class_entry * ce , zend_class_entry * iface ) /* { { { */
2014-09-19 06:01:05 +08:00
{
2015-12-08 17:40:42 +08:00
if ( do_inherit_constant_check ( & ce - > constants_table , c , name , iface ) ) {
2016-01-21 13:30:41 +08:00
zend_class_constant * ct ;
2017-10-10 15:11:05 +08:00
if ( Z_TYPE ( c - > value ) = = IS_CONSTANT_AST ) {
2014-09-19 06:01:05 +08:00
ce - > ce_flags & = ~ ZEND_ACC_CONSTANTS_UPDATED ;
}
2017-10-31 06:20:38 +08:00
if ( ce - > type & ZEND_INTERNAL_CLASS ) {
ct = pemalloc ( sizeof ( zend_class_constant ) , 1 ) ;
memcpy ( ct , c , sizeof ( zend_class_constant ) ) ;
c = ct ;
}
2017-10-31 04:13:10 +08:00
zend_hash_update_ptr ( & ce - > constants_table , name , c ) ;
2014-09-19 06:01:05 +08:00
}
}
/* }}} */
2014-12-14 06:06:14 +08:00
ZEND_API void zend_do_implement_interface ( zend_class_entry * ce , zend_class_entry * iface ) /* { { { */
2014-09-19 06:01:05 +08:00
{
uint32_t i , ignore = 0 ;
uint32_t current_iface_num = ce - > num_interfaces ;
uint32_t parent_iface_num = ce - > parent ? ce - > parent - > num_interfaces : 0 ;
zend_function * func ;
zend_string * key ;
2015-12-08 17:40:42 +08:00
zend_class_constant * c ;
2014-09-19 06:01:05 +08:00
2018-09-18 16:41:40 +08:00
ZEND_ASSERT ( ce - > ce_flags & ZEND_ACC_LINKED ) ;
2018-08-23 22:16:28 +08:00
2014-09-19 06:01:05 +08:00
for ( i = 0 ; i < ce - > num_interfaces ; i + + ) {
if ( ce - > interfaces [ i ] = = NULL ) {
memmove ( ce - > interfaces + i , ce - > interfaces + i + 1 , sizeof ( zend_class_entry * ) * ( - - ce - > num_interfaces - i ) ) ;
i - - ;
} else if ( ce - > interfaces [ i ] = = iface ) {
2015-03-05 07:10:38 +08:00
if ( EXPECTED ( i < parent_iface_num ) ) {
2014-09-19 06:01:05 +08:00
ignore = 1 ;
} else {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " Class %s cannot implement previously implemented interface %s " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( iface - > name ) ) ;
2014-09-19 06:01:05 +08:00
}
}
}
if ( ignore ) {
/* Check for attempt to redeclare interface constants */
2015-12-08 17:40:42 +08:00
ZEND_HASH_FOREACH_STR_KEY_PTR ( & ce - > constants_table , key , c ) {
do_inherit_constant_check ( & iface - > constants_table , c , key , iface ) ;
2014-09-19 06:01:05 +08:00
} ZEND_HASH_FOREACH_END ( ) ;
} else {
if ( ce - > num_interfaces > = current_iface_num ) {
if ( ce - > type = = ZEND_INTERNAL_CLASS ) {
ce - > interfaces = ( zend_class_entry * * ) realloc ( ce - > interfaces , sizeof ( zend_class_entry * ) * ( + + current_iface_num ) ) ;
} else {
ce - > interfaces = ( zend_class_entry * * ) erealloc ( ce - > interfaces , sizeof ( zend_class_entry * ) * ( + + current_iface_num ) ) ;
}
}
ce - > interfaces [ ce - > num_interfaces + + ] = iface ;
2015-12-08 17:40:42 +08:00
ZEND_HASH_FOREACH_STR_KEY_PTR ( & iface - > constants_table , key , c ) {
do_inherit_iface_constant ( key , c , ce , iface ) ;
2014-09-19 06:01:05 +08:00
} ZEND_HASH_FOREACH_END ( ) ;
ZEND_HASH_FOREACH_STR_KEY_PTR ( & iface - > function_table , key , func ) {
2015-03-05 07:10:38 +08:00
zend_function * new_func = do_inherit_method ( key , func , ce ) ;
if ( new_func ) {
2014-09-19 06:01:05 +08:00
zend_hash_add_new_ptr ( & ce - > function_table , key , new_func ) ;
}
} ZEND_HASH_FOREACH_END ( ) ;
2014-12-14 06:06:14 +08:00
do_implement_interface ( ce , iface ) ;
2018-08-23 22:16:28 +08:00
if ( iface - > num_interfaces ) {
zend_do_inherit_interfaces ( ce , iface ) ;
}
}
}
/* }}} */
2018-08-27 21:40:25 +08:00
static void zend_do_implement_interfaces ( zend_class_entry * ce ) /* { { { */
2018-08-23 22:16:28 +08:00
{
zend_class_entry * * interfaces , * iface ;
uint32_t num_interfaces = 0 ;
zend_function * func ;
zend_string * key ;
zend_class_constant * c ;
uint32_t i , j ;
if ( ce - > parent & & ce - > parent - > num_interfaces ) {
interfaces = emalloc ( sizeof ( zend_class_entry * ) * ( ce - > parent - > num_interfaces + ce - > num_interfaces ) ) ;
memcpy ( interfaces , ce - > parent - > interfaces , sizeof ( zend_class_entry * ) * ce - > parent - > num_interfaces ) ;
num_interfaces = ce - > parent - > num_interfaces ;
} else {
interfaces = emalloc ( sizeof ( zend_class_entry * ) * ce - > num_interfaces ) ;
}
for ( i = 0 ; i < ce - > num_interfaces ; i + + ) {
2019-05-27 17:39:56 +08:00
iface = zend_fetch_class_by_name (
ce - > interface_names [ i ] . name , ce - > interface_names [ i ] . lc_name ,
ZEND_FETCH_CLASS_INTERFACE | ZEND_FETCH_CLASS_ALLOW_UNLINKED ) ;
if ( ! ( iface - > ce_flags & ZEND_ACC_LINKED ) ) {
add_dependency_obligation ( ce , iface ) ;
2018-08-23 22:16:28 +08:00
}
if ( UNEXPECTED ( ! ( iface - > ce_flags & ZEND_ACC_INTERFACE ) ) ) {
efree ( interfaces ) ;
zend_error_noreturn ( E_ERROR , " %s cannot implement %s - it is not an interface " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( iface - > name ) ) ;
return ;
}
for ( j = 0 ; j < num_interfaces ; j + + ) {
if ( interfaces [ j ] = = iface ) {
if ( ! ce - > parent | | j > = ce - > parent - > num_interfaces ) {
efree ( interfaces ) ;
zend_error_noreturn ( E_COMPILE_ERROR , " Class %s cannot implement previously implemented interface %s " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( iface - > name ) ) ;
return ;
}
/* skip duplications */
ZEND_HASH_FOREACH_STR_KEY_PTR ( & ce - > constants_table , key , c ) {
do_inherit_constant_check ( & iface - > constants_table , c , key , iface ) ;
} ZEND_HASH_FOREACH_END ( ) ;
iface = NULL ;
break ;
}
}
if ( iface ) {
interfaces [ num_interfaces ] = iface ;
num_interfaces + + ;
}
}
for ( i = 0 ; i < ce - > num_interfaces ; i + + ) {
zend_string_release_ex ( ce - > interface_names [ i ] . name , 0 ) ;
zend_string_release_ex ( ce - > interface_names [ i ] . lc_name , 0 ) ;
}
efree ( ce - > interface_names ) ;
ce - > num_interfaces = num_interfaces ;
ce - > interfaces = interfaces ;
2019-05-27 17:39:56 +08:00
ce - > ce_flags | = ZEND_ACC_RESOLVED_INTERFACES ;
2018-08-23 22:16:28 +08:00
i = ce - > parent ? ce - > parent - > num_interfaces : 0 ;
for ( ; i < ce - > num_interfaces ; i + + ) {
iface = ce - > interfaces [ i ] ;
ZEND_HASH_FOREACH_STR_KEY_PTR ( & iface - > constants_table , key , c ) {
do_inherit_iface_constant ( key , c , ce , iface ) ;
} ZEND_HASH_FOREACH_END ( ) ;
ZEND_HASH_FOREACH_STR_KEY_PTR ( & iface - > function_table , key , func ) {
zend_function * new_func = do_inherit_method ( key , func , ce ) ;
if ( new_func ) {
zend_hash_add_new_ptr ( & ce - > function_table , key , new_func ) ;
}
} ZEND_HASH_FOREACH_END ( ) ;
do_implement_interface ( ce , iface ) ;
if ( iface - > num_interfaces ) {
zend_do_inherit_interfaces ( ce , iface ) ;
}
}
2014-09-19 06:01:05 +08:00
}
/* }}} */
2014-12-14 06:06:14 +08:00
static void zend_add_magic_methods ( zend_class_entry * ce , zend_string * mname , zend_function * fe ) /* { { { */
2014-09-19 06:01:05 +08:00
{
2019-02-15 18:20:28 +08:00
if ( zend_string_equals_literal ( mname , " serialize " ) ) {
ce - > serialize_func = fe ;
} else if ( zend_string_equals_literal ( mname , " unserialize " ) ) {
ce - > unserialize_func = fe ;
} else if ( ZSTR_LEN ( ce - > name ) ! = ZSTR_LEN ( mname ) & & ( ZSTR_VAL ( mname ) [ 0 ] ! = ' _ ' | | ZSTR_VAL ( mname ) [ 1 ] ! = ' _ ' ) ) {
2018-07-02 22:03:02 +08:00
/* pass */
} else if ( zend_string_equals_literal ( mname , ZEND_CLONE_FUNC_NAME ) ) {
2017-04-22 21:44:24 +08:00
ce - > clone = fe ;
2016-01-05 23:27:18 +08:00
} else if ( zend_string_equals_literal ( mname , ZEND_CONSTRUCTOR_FUNC_NAME ) ) {
2014-12-12 23:14:24 +08:00
if ( ce - > constructor & & ( ! ce - > parent | | ce - > constructor ! = ce - > parent - > constructor ) ) {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " %s has colliding constructor definitions coming from traits " , ZSTR_VAL ( ce - > name ) ) ;
2014-09-19 06:01:05 +08:00
}
2018-09-05 18:16:10 +08:00
ce - > constructor = fe ;
2016-01-05 23:27:18 +08:00
} else if ( zend_string_equals_literal ( mname , ZEND_DESTRUCTOR_FUNC_NAME ) ) {
2018-09-05 18:16:10 +08:00
ce - > destructor = fe ;
2016-01-05 23:27:18 +08:00
} else if ( zend_string_equals_literal ( mname , ZEND_GET_FUNC_NAME ) ) {
2014-09-19 06:01:05 +08:00
ce - > __get = fe ;
2015-02-04 20:24:13 +08:00
ce - > ce_flags | = ZEND_ACC_USE_GUARDS ;
2016-01-05 23:27:18 +08:00
} else if ( zend_string_equals_literal ( mname , ZEND_SET_FUNC_NAME ) ) {
2014-09-19 06:01:05 +08:00
ce - > __set = fe ;
2015-02-04 20:24:13 +08:00
ce - > ce_flags | = ZEND_ACC_USE_GUARDS ;
2016-01-05 23:27:18 +08:00
} else if ( zend_string_equals_literal ( mname , ZEND_CALL_FUNC_NAME ) ) {
2014-09-19 06:01:05 +08:00
ce - > __call = fe ;
2016-01-05 23:27:18 +08:00
} else if ( zend_string_equals_literal ( mname , ZEND_UNSET_FUNC_NAME ) ) {
2014-09-19 06:01:05 +08:00
ce - > __unset = fe ;
2015-02-04 20:24:13 +08:00
ce - > ce_flags | = ZEND_ACC_USE_GUARDS ;
2016-01-05 23:27:18 +08:00
} else if ( zend_string_equals_literal ( mname , ZEND_ISSET_FUNC_NAME ) ) {
2014-09-19 06:01:05 +08:00
ce - > __isset = fe ;
2015-02-04 20:24:13 +08:00
ce - > ce_flags | = ZEND_ACC_USE_GUARDS ;
2016-01-05 23:27:18 +08:00
} else if ( zend_string_equals_literal ( mname , ZEND_CALLSTATIC_FUNC_NAME ) ) {
2014-09-19 06:01:05 +08:00
ce - > __callstatic = fe ;
2016-01-05 23:27:18 +08:00
} else if ( zend_string_equals_literal ( mname , ZEND_TOSTRING_FUNC_NAME ) ) {
2014-09-19 06:01:05 +08:00
ce - > __tostring = fe ;
2016-01-05 23:27:18 +08:00
} else if ( zend_string_equals_literal ( mname , ZEND_DEBUGINFO_FUNC_NAME ) ) {
2014-09-19 06:01:05 +08:00
ce - > __debugInfo = fe ;
2018-12-16 20:30:11 +08:00
} else if ( ZSTR_LEN ( ce - > name ) = = ZSTR_LEN ( mname ) ) {
zend_string * lowercase_name = zend_string_tolower ( ce - > name ) ;
lowercase_name = zend_new_interned_string ( lowercase_name ) ;
if ( ! memcmp ( ZSTR_VAL ( mname ) , ZSTR_VAL ( lowercase_name ) , ZSTR_LEN ( mname ) ) ) {
2019-02-14 18:12:50 +08:00
if ( ce - > constructor & & ( ! ce - > parent | | ce - > constructor ! = ce - > parent - > constructor ) ) {
2018-12-16 20:30:11 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " %s has colliding constructor definitions coming from traits " , ZSTR_VAL ( ce - > name ) ) ;
}
ce - > constructor = fe ;
2019-02-14 18:12:50 +08:00
fe - > common . fn_flags | = ZEND_ACC_CTOR ;
2018-12-16 20:30:11 +08:00
}
zend_string_release_ex ( lowercase_name , 0 ) ;
2014-09-19 06:01:05 +08:00
}
}
/* }}} */
2018-08-10 10:19:55 +08:00
static void zend_add_trait_method ( zend_class_entry * ce , const char * name , zend_string * key , zend_function * fn , HashTable * * overridden ) /* { { { */
2014-09-19 06:01:05 +08:00
{
zend_function * existing_fn = NULL ;
zend_function * new_fn ;
if ( ( existing_fn = zend_hash_find_ptr ( & ce - > function_table , key ) ) ! = NULL ) {
2018-08-22 00:40:06 +08:00
/* if it is the same function with the same visibility and has not been assigned a class scope yet, regardless
* of where it is coming from there is no conflict and we do not need to add it again */
2018-08-04 00:30:03 +08:00
if ( existing_fn - > op_array . opcodes = = fn - > op_array . opcodes & &
2018-08-22 00:40:06 +08:00
( existing_fn - > common . fn_flags & ZEND_ACC_PPP_MASK ) = = ( fn - > common . fn_flags & ZEND_ACC_PPP_MASK ) & &
( existing_fn - > common . scope - > ce_flags & ZEND_ACC_TRAIT ) = = ZEND_ACC_TRAIT ) {
2017-10-01 04:24:38 +08:00
return ;
}
2014-09-19 06:01:05 +08:00
if ( existing_fn - > common . scope = = ce ) {
/* members from the current class override trait methods */
2018-08-10 10:19:55 +08:00
/* use temporary *overridden HashTable to detect hidden conflict */
if ( * overridden ) {
if ( ( existing_fn = zend_hash_find_ptr ( * overridden , key ) ) ! = NULL ) {
2014-09-19 06:01:05 +08:00
if ( existing_fn - > common . fn_flags & ZEND_ACC_ABSTRACT ) {
/* Make sure the trait method is compatible with previosly declared abstract method */
2019-06-25 21:37:42 +08:00
perform_delayable_implementation_check (
ce , fn , existing_fn , /*always_error*/ 1 ) ;
2017-05-21 20:41:55 +08:00
}
if ( fn - > common . fn_flags & ZEND_ACC_ABSTRACT ) {
2014-09-19 06:01:05 +08:00
/* Make sure the abstract declaration is compatible with previous declaration */
2019-06-25 21:37:42 +08:00
perform_delayable_implementation_check (
ce , existing_fn , fn , /*always_error*/ 1 ) ;
2014-09-19 06:01:05 +08:00
return ;
}
}
} else {
2018-08-10 10:19:55 +08:00
ALLOC_HASHTABLE ( * overridden ) ;
zend_hash_init_ex ( * overridden , 8 , NULL , overridden_ptr_dtor , 0 , 0 ) ;
2014-09-19 06:01:05 +08:00
}
2018-08-10 10:19:55 +08:00
zend_hash_update_mem ( * overridden , key , fn , sizeof ( zend_function ) ) ;
2014-09-19 06:01:05 +08:00
return ;
2015-04-21 22:39:46 +08:00
} else if ( existing_fn - > common . fn_flags & ZEND_ACC_ABSTRACT & &
( existing_fn - > common . scope - > ce_flags & ZEND_ACC_INTERFACE ) = = 0 ) {
2014-09-19 06:01:05 +08:00
/* Make sure the trait method is compatible with previosly declared abstract method */
2019-06-25 21:37:42 +08:00
perform_delayable_implementation_check (
ce , fn , existing_fn , /*always_error*/ 1 ) ;
2014-09-19 06:01:05 +08:00
} else if ( fn - > common . fn_flags & ZEND_ACC_ABSTRACT ) {
/* Make sure the abstract declaration is compatible with previous declaration */
2019-06-25 21:37:42 +08:00
perform_delayable_implementation_check (
ce , existing_fn , fn , /*always_error*/ 1 ) ;
2014-09-19 06:01:05 +08:00
return ;
2015-03-05 07:10:38 +08:00
} else if ( UNEXPECTED ( existing_fn - > common . scope - > ce_flags & ZEND_ACC_TRAIT ) ) {
2014-09-19 06:01:05 +08:00
/* two traits can't define the same non-abstract method */
# if 1
zend_error_noreturn ( E_COMPILE_ERROR , " Trait method %s has not been applied, because there are collisions with other trait methods on %s " ,
2015-06-30 18:59:27 +08:00
name , ZSTR_VAL ( ce - > name ) ) ;
2014-09-19 06:01:05 +08:00
# else /* TODO: better error message */
zend_error_noreturn ( E_COMPILE_ERROR , " Trait method %s::%s has not been applied as %s::%s, because of collision with %s::%s " ,
2015-06-30 18:59:27 +08:00
ZSTR_VAL ( fn - > common . scope - > name ) , ZSTR_VAL ( fn - > common . function_name ) ,
ZSTR_VAL ( ce - > name ) , name ,
ZSTR_VAL ( existing_fn - > common . scope - > name ) , ZSTR_VAL ( existing_fn - > common . function_name ) ) ;
2014-09-19 06:01:05 +08:00
# endif
} else {
/* inherited members are overridden by members inserted by traits */
/* check whether the trait method fulfills the inheritance requirements */
2018-10-03 23:32:25 +08:00
do_inheritance_check_on_method ( fn , existing_fn , ce , NULL ) ;
2015-04-10 22:50:15 +08:00
fn - > common . prototype = NULL ;
2014-09-19 06:01:05 +08:00
}
}
2018-08-30 04:40:17 +08:00
if ( UNEXPECTED ( fn - > type = = ZEND_INTERNAL_FUNCTION ) ) {
new_fn = zend_arena_alloc ( & CG ( arena ) , sizeof ( zend_internal_function ) ) ;
memcpy ( new_fn , fn , sizeof ( zend_internal_function ) ) ;
new_fn - > common . fn_flags | = ZEND_ACC_ARENA_ALLOCATED ;
} else {
new_fn = zend_arena_alloc ( & CG ( arena ) , sizeof ( zend_op_array ) ) ;
memcpy ( new_fn , fn , sizeof ( zend_op_array ) ) ;
2018-11-14 21:32:07 +08:00
new_fn - > op_array . fn_flags | = ZEND_ACC_TRAIT_CLONE ;
2018-10-17 20:52:50 +08:00
new_fn - > op_array . fn_flags & = ~ ZEND_ACC_IMMUTABLE ;
2018-08-30 04:40:17 +08:00
}
2018-10-30 20:08:45 +08:00
function_add_ref ( new_fn ) ;
2014-09-19 06:01:05 +08:00
fn = zend_hash_update_ptr ( & ce - > function_table , key , new_fn ) ;
2014-12-14 06:06:14 +08:00
zend_add_magic_methods ( ce , key , fn ) ;
2014-09-19 06:01:05 +08:00
}
/* }}} */
static void zend_fixup_trait_method ( zend_function * fn , zend_class_entry * ce ) /* { { { */
{
if ( ( fn - > common . scope - > ce_flags & ZEND_ACC_TRAIT ) = = ZEND_ACC_TRAIT ) {
fn - > common . scope = ce ;
if ( fn - > common . fn_flags & ZEND_ACC_ABSTRACT ) {
ce - > ce_flags | = ZEND_ACC_IMPLICIT_ABSTRACT_CLASS ;
}
2015-05-04 10:35:55 +08:00
if ( fn - > type = = ZEND_USER_FUNCTION & & fn - > op_array . static_variables ) {
2014-09-19 06:01:05 +08:00
ce - > ce_flags | = ZEND_HAS_STATIC_IN_METHODS ;
}
}
}
/* }}} */
2018-12-19 07:49:56 +08:00
static void zend_traits_copy_functions ( zend_string * fnname , zend_function * fn , zend_class_entry * ce , HashTable * * overridden , HashTable * exclude_table , zend_class_entry * * aliases ) /* { { { */
2014-09-19 06:01:05 +08:00
{
zend_trait_alias * alias , * * alias_ptr ;
zend_string * lcname ;
zend_function fn_copy ;
2018-07-11 23:56:10 +08:00
int i ;
2014-09-19 06:01:05 +08:00
/* apply aliases which are qualified with a class name, there should not be any ambiguity */
if ( ce - > trait_aliases ) {
alias_ptr = ce - > trait_aliases ;
alias = * alias_ptr ;
2018-07-11 23:56:10 +08:00
i = 0 ;
2014-09-19 06:01:05 +08:00
while ( alias ) {
/* Scope unset or equal to the function we compare to, and the alias applies to fn */
if ( alias - > alias ! = NULL
2018-07-11 23:56:10 +08:00
& & ( ! aliases [ i ] | | fn - > common . scope = = aliases [ i ] )
& & ZSTR_LEN ( alias - > trait_method . method_name ) = = ZSTR_LEN ( fnname )
& & ( zend_binary_strcasecmp ( ZSTR_VAL ( alias - > trait_method . method_name ) , ZSTR_LEN ( alias - > trait_method . method_name ) , ZSTR_VAL ( fnname ) , ZSTR_LEN ( fnname ) ) = = 0 ) ) {
2014-09-19 06:01:05 +08:00
fn_copy = * fn ;
/* if it is 0, no modifieres has been changed */
if ( alias - > modifiers ) {
fn_copy . common . fn_flags = alias - > modifiers | ( fn - > common . fn_flags ^ ( fn - > common . fn_flags & ZEND_ACC_PPP_MASK ) ) ;
}
2014-12-24 20:04:51 +08:00
lcname = zend_string_tolower ( alias - > alias ) ;
2018-08-10 10:19:55 +08:00
zend_add_trait_method ( ce , ZSTR_VAL ( alias - > alias ) , lcname , & fn_copy , overridden ) ;
2018-05-28 21:27:12 +08:00
zend_string_release_ex ( lcname , 0 ) ;
2014-09-19 06:01:05 +08:00
/* Record the trait from which this alias was resolved. */
2018-07-11 23:56:10 +08:00
if ( ! aliases [ i ] ) {
aliases [ i ] = fn - > common . scope ;
}
if ( ! alias - > trait_method . class_name ) {
/* TODO: try to avoid this assignment (it's necessary only for reflection) */
alias - > trait_method . class_name = zend_string_copy ( fn - > common . scope - > name ) ;
2014-09-19 06:01:05 +08:00
}
}
alias_ptr + + ;
alias = * alias_ptr ;
2018-07-11 23:56:10 +08:00
i + + ;
2014-09-19 06:01:05 +08:00
}
}
if ( exclude_table = = NULL | | zend_hash_find ( exclude_table , fnname ) = = NULL ) {
/* is not in hashtable, thus, function is not to be excluded */
2015-07-10 22:26:53 +08:00
/* And how about ZEND_OVERLOADED_FUNCTION? */
memcpy ( & fn_copy , fn , fn - > type = = ZEND_USER_FUNCTION ? sizeof ( zend_op_array ) : sizeof ( zend_internal_function ) ) ;
2014-09-19 06:01:05 +08:00
/* apply aliases which have not alias name, just setting visibility */
if ( ce - > trait_aliases ) {
alias_ptr = ce - > trait_aliases ;
alias = * alias_ptr ;
2018-07-11 23:56:10 +08:00
i = 0 ;
2014-09-19 06:01:05 +08:00
while ( alias ) {
/* Scope unset or equal to the function we compare to, and the alias applies to fn */
if ( alias - > alias = = NULL & & alias - > modifiers ! = 0
2018-07-11 23:56:10 +08:00
& & ( ! aliases [ i ] | | fn - > common . scope = = aliases [ i ] )
& & ( ZSTR_LEN ( alias - > trait_method . method_name ) = = ZSTR_LEN ( fnname ) )
& & ( zend_binary_strcasecmp ( ZSTR_VAL ( alias - > trait_method . method_name ) , ZSTR_LEN ( alias - > trait_method . method_name ) , ZSTR_VAL ( fnname ) , ZSTR_LEN ( fnname ) ) = = 0 ) ) {
2014-09-19 06:01:05 +08:00
fn_copy . common . fn_flags = alias - > modifiers | ( fn - > common . fn_flags ^ ( fn - > common . fn_flags & ZEND_ACC_PPP_MASK ) ) ;
/** Record the trait from which this alias was resolved. */
2018-07-11 23:56:10 +08:00
if ( ! aliases [ i ] ) {
aliases [ i ] = fn - > common . scope ;
}
if ( ! alias - > trait_method . class_name ) {
/* TODO: try to avoid this assignment (it's necessary only for reflection) */
alias - > trait_method . class_name = zend_string_copy ( fn - > common . scope - > name ) ;
2014-09-19 06:01:05 +08:00
}
}
alias_ptr + + ;
alias = * alias_ptr ;
2018-07-11 23:56:10 +08:00
i + + ;
2014-09-19 06:01:05 +08:00
}
}
2018-08-10 10:19:55 +08:00
zend_add_trait_method ( ce , ZSTR_VAL ( fn - > common . function_name ) , fnname , & fn_copy , overridden ) ;
2014-09-19 06:01:05 +08:00
}
}
/* }}} */
2018-08-23 07:02:26 +08:00
static uint32_t zend_check_trait_usage ( zend_class_entry * ce , zend_class_entry * trait , zend_class_entry * * traits ) /* { { { */
2014-09-19 06:01:05 +08:00
{
uint32_t i ;
2015-03-05 07:10:38 +08:00
if ( UNEXPECTED ( ( trait - > ce_flags & ZEND_ACC_TRAIT ) ! = ZEND_ACC_TRAIT ) ) {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " Class %s is not a trait, Only traits may be used in 'as' and 'insteadof' statements " , ZSTR_VAL ( trait - > name ) ) ;
2018-07-11 23:56:10 +08:00
return 0 ;
2014-09-19 06:01:05 +08:00
}
for ( i = 0 ; i < ce - > num_traits ; i + + ) {
2018-08-23 07:02:26 +08:00
if ( traits [ i ] = = trait ) {
2018-07-11 23:56:10 +08:00
return i ;
2014-09-19 06:01:05 +08:00
}
}
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " Required Trait %s wasn't added to %s " , ZSTR_VAL ( trait - > name ) , ZSTR_VAL ( ce - > name ) ) ;
2018-07-11 23:56:10 +08:00
return 0 ;
2014-09-19 06:01:05 +08:00
}
/* }}} */
2018-08-23 07:02:26 +08:00
static void zend_traits_init_trait_structures ( zend_class_entry * ce , zend_class_entry * * traits , HashTable * * * exclude_tables_ptr , zend_class_entry * * * aliases_ptr ) /* { { { */
2014-09-19 06:01:05 +08:00
{
size_t i , j = 0 ;
2015-03-05 21:06:59 +08:00
zend_trait_precedence * * precedences ;
2014-09-19 06:01:05 +08:00
zend_trait_precedence * cur_precedence ;
zend_trait_method_reference * cur_method_ref ;
zend_string * lcname ;
2018-07-11 23:56:10 +08:00
HashTable * * exclude_tables = NULL ;
zend_class_entry * * aliases = NULL ;
zend_class_entry * trait ;
2014-09-19 06:01:05 +08:00
/* resolve class references */
if ( ce - > trait_precedences ) {
2018-07-11 23:56:10 +08:00
exclude_tables = ecalloc ( ce - > num_traits , sizeof ( HashTable * ) ) ;
2014-09-19 06:01:05 +08:00
i = 0 ;
2015-03-05 21:06:59 +08:00
precedences = ce - > trait_precedences ;
ce - > trait_precedences = NULL ;
while ( ( cur_precedence = precedences [ i ] ) ) {
2014-09-19 06:01:05 +08:00
/** Resolve classes for all precedence operations. */
2018-07-11 23:56:10 +08:00
cur_method_ref = & cur_precedence - > trait_method ;
trait = zend_fetch_class ( cur_method_ref - > class_name ,
ZEND_FETCH_CLASS_TRAIT | ZEND_FETCH_CLASS_NO_AUTOLOAD ) ;
if ( ! trait ) {
zend_error_noreturn ( E_COMPILE_ERROR , " Could not find trait %s " , ZSTR_VAL ( cur_method_ref - > class_name ) ) ;
}
2018-08-23 07:02:26 +08:00
zend_check_trait_usage ( ce , trait , traits ) ;
2018-07-11 23:56:10 +08:00
/** Ensure that the preferred method is actually available. */
lcname = zend_string_tolower ( cur_method_ref - > method_name ) ;
2018-09-19 18:54:37 +08:00
if ( ! zend_hash_exists ( & trait - > function_table , lcname ) ) {
2018-07-11 23:56:10 +08:00
zend_error_noreturn ( E_COMPILE_ERROR ,
" A precedence rule was defined for %s::%s but this method does not exist " ,
ZSTR_VAL ( trait - > name ) ,
ZSTR_VAL ( cur_method_ref - > method_name ) ) ;
}
2014-09-19 06:01:05 +08:00
2018-07-11 23:56:10 +08:00
/** With the other traits, we are more permissive.
We do not give errors for those . This allows to be more
defensive in such definitions .
However , we want to make sure that the insteadof declaration
is consistent in itself .
*/
2014-09-19 06:01:05 +08:00
2018-07-11 23:56:10 +08:00
for ( j = 0 ; j < cur_precedence - > num_excludes ; j + + ) {
zend_string * class_name = cur_precedence - > exclude_class_names [ j ] ;
zend_class_entry * exclude_ce = zend_fetch_class ( class_name , ZEND_FETCH_CLASS_TRAIT | ZEND_FETCH_CLASS_NO_AUTOLOAD ) ;
uint32_t trait_num ;
2014-09-19 06:01:05 +08:00
2018-07-11 23:56:10 +08:00
if ( ! exclude_ce ) {
zend_error_noreturn ( E_COMPILE_ERROR , " Could not find trait %s " , ZSTR_VAL ( class_name ) ) ;
}
2018-08-23 07:02:26 +08:00
trait_num = zend_check_trait_usage ( ce , exclude_ce , traits ) ;
2018-07-11 23:56:10 +08:00
if ( ! exclude_tables [ trait_num ] ) {
ALLOC_HASHTABLE ( exclude_tables [ trait_num ] ) ;
zend_hash_init ( exclude_tables [ trait_num ] , 0 , NULL , NULL , 0 ) ;
}
if ( zend_hash_add_empty_element ( exclude_tables [ trait_num ] , lcname ) = = NULL ) {
zend_error_noreturn ( E_COMPILE_ERROR , " Failed to evaluate a trait precedence (%s). Method of trait %s was defined to be excluded multiple times " , ZSTR_VAL ( precedences [ i ] - > trait_method . method_name ) , ZSTR_VAL ( exclude_ce - > name ) ) ;
}
2014-09-19 06:01:05 +08:00
2018-07-11 23:56:10 +08:00
/* make sure that the trait method is not from a class mentioned in
exclude_from_classes , for consistency */
if ( trait = = exclude_ce ) {
zend_error_noreturn ( E_COMPILE_ERROR ,
" Inconsistent insteadof definition. "
" The method %s is to be used from %s, but %s is also on the exclude list " ,
ZSTR_VAL ( cur_method_ref - > method_name ) ,
ZSTR_VAL ( trait - > name ) ,
ZSTR_VAL ( trait - > name ) ) ;
2014-09-19 06:01:05 +08:00
}
}
2018-07-11 23:56:10 +08:00
zend_string_release_ex ( lcname , 0 ) ;
2014-09-19 06:01:05 +08:00
i + + ;
}
2015-03-05 21:06:59 +08:00
ce - > trait_precedences = precedences ;
2014-09-19 06:01:05 +08:00
}
if ( ce - > trait_aliases ) {
2018-07-11 23:56:10 +08:00
i = 0 ;
while ( ce - > trait_aliases [ i ] ) {
i + + ;
}
aliases = ecalloc ( i , sizeof ( zend_class_entry * ) ) ;
2014-09-19 06:01:05 +08:00
i = 0 ;
while ( ce - > trait_aliases [ i ] ) {
/** For all aliases with an explicit class name, resolve the class now. */
2018-07-11 23:56:10 +08:00
if ( ce - > trait_aliases [ i ] - > trait_method . class_name ) {
cur_method_ref = & ce - > trait_aliases [ i ] - > trait_method ;
trait = zend_fetch_class ( cur_method_ref - > class_name , ZEND_FETCH_CLASS_TRAIT | ZEND_FETCH_CLASS_NO_AUTOLOAD ) ;
if ( ! trait ) {
2015-06-30 18:59:27 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " Could not find trait %s " , ZSTR_VAL ( cur_method_ref - > class_name ) ) ;
2014-09-19 06:01:05 +08:00
}
2018-08-23 07:02:26 +08:00
zend_check_trait_usage ( ce , trait , traits ) ;
2018-07-11 23:56:10 +08:00
aliases [ i ] = trait ;
2014-09-19 06:01:05 +08:00
/** And, ensure that the referenced method is resolvable, too. */
2014-12-24 20:04:51 +08:00
lcname = zend_string_tolower ( cur_method_ref - > method_name ) ;
2018-09-19 18:54:37 +08:00
if ( ! zend_hash_exists ( & trait - > function_table , lcname ) ) {
2018-07-11 23:56:10 +08:00
zend_error_noreturn ( E_COMPILE_ERROR , " An alias was defined for %s::%s but this method does not exist " , ZSTR_VAL ( trait - > name ) , ZSTR_VAL ( cur_method_ref - > method_name ) ) ;
2014-09-19 06:01:05 +08:00
}
2018-09-19 18:54:37 +08:00
zend_string_release_ex ( lcname , 0 ) ;
2014-09-19 06:01:05 +08:00
}
i + + ;
}
}
2018-07-11 23:56:10 +08:00
* exclude_tables_ptr = exclude_tables ;
* aliases_ptr = aliases ;
2014-09-19 06:01:05 +08:00
}
/* }}} */
2018-08-23 07:02:26 +08:00
static void zend_do_traits_method_binding ( zend_class_entry * ce , zend_class_entry * * traits , HashTable * * exclude_tables , zend_class_entry * * aliases ) /* { { { */
2014-09-19 06:01:05 +08:00
{
uint32_t i ;
2018-08-10 10:19:55 +08:00
HashTable * overridden = NULL ;
2014-09-19 06:01:05 +08:00
zend_string * key ;
zend_function * fn ;
2018-07-11 23:56:10 +08:00
if ( exclude_tables ) {
for ( i = 0 ; i < ce - > num_traits ; i + + ) {
2018-08-23 07:02:26 +08:00
if ( traits [ i ] ) {
/* copies functions, applies defined aliasing, and excludes unused trait methods */
ZEND_HASH_FOREACH_STR_KEY_PTR ( & traits [ i ] - > function_table , key , fn ) {
zend_traits_copy_functions ( key , fn , ce , & overridden , exclude_tables [ i ] , aliases ) ;
} ZEND_HASH_FOREACH_END ( ) ;
if ( exclude_tables [ i ] ) {
zend_hash_destroy ( exclude_tables [ i ] ) ;
FREE_HASHTABLE ( exclude_tables [ i ] ) ;
exclude_tables [ i ] = NULL ;
}
2018-07-11 23:56:10 +08:00
}
}
} else {
for ( i = 0 ; i < ce - > num_traits ; i + + ) {
2018-08-23 07:02:26 +08:00
if ( traits [ i ] ) {
ZEND_HASH_FOREACH_STR_KEY_PTR ( & traits [ i ] - > function_table , key , fn ) {
zend_traits_copy_functions ( key , fn , ce , & overridden , NULL , aliases ) ;
} ZEND_HASH_FOREACH_END ( ) ;
}
2014-09-19 06:01:05 +08:00
}
}
ZEND_HASH_FOREACH_PTR ( & ce - > function_table , fn ) {
zend_fixup_trait_method ( fn , ce ) ;
} ZEND_HASH_FOREACH_END ( ) ;
2018-08-10 10:19:55 +08:00
if ( overridden ) {
zend_hash_destroy ( overridden ) ;
FREE_HASHTABLE ( overridden ) ;
2014-09-19 06:01:05 +08:00
}
}
/* }}} */
2018-08-23 07:02:26 +08:00
static zend_class_entry * find_first_definition ( zend_class_entry * ce , zend_class_entry * * traits , size_t current_trait , zend_string * prop_name , zend_class_entry * coliding_ce ) /* { { { */
2014-09-19 06:01:05 +08:00
{
size_t i ;
if ( coliding_ce = = ce ) {
for ( i = 0 ; i < current_trait ; i + + ) {
2018-08-23 07:02:26 +08:00
if ( traits [ i ]
& & zend_hash_exists ( & traits [ i ] - > properties_info , prop_name ) ) {
return traits [ i ] ;
2014-09-19 06:01:05 +08:00
}
}
}
return coliding_ce ;
}
/* }}} */
2018-08-23 07:02:26 +08:00
static void zend_do_traits_property_binding ( zend_class_entry * ce , zend_class_entry * * traits ) /* { { { */
2014-09-19 06:01:05 +08:00
{
size_t i ;
zend_property_info * property_info ;
zend_property_info * coliding_prop ;
zend_string * prop_name ;
const char * class_name_unused ;
zend_bool not_compatible ;
zval * prop_value ;
uint32_t flags ;
zend_string * doc_comment ;
/* In the following steps the properties are inserted into the property table
* for that , a very strict approach is applied :
* - check for compatibility , if not compatible with any property in class - > fatal
* - if compatible , then strict notice
*/
for ( i = 0 ; i < ce - > num_traits ; i + + ) {
2018-08-23 07:02:26 +08:00
if ( ! traits [ i ] ) {
continue ;
}
ZEND_HASH_FOREACH_PTR ( & traits [ i ] - > properties_info , property_info ) {
2014-09-19 06:01:05 +08:00
/* first get the unmangeld name if necessary,
* then check whether the property is already there
*/
flags = property_info - > flags ;
2015-06-03 18:43:05 +08:00
if ( flags & ZEND_ACC_PUBLIC ) {
2014-09-19 06:01:05 +08:00
prop_name = zend_string_copy ( property_info - > name ) ;
} else {
const char * pname ;
size_t pname_len ;
/* for private and protected we need to unmangle the names */
zend_unmangle_property_name_ex ( property_info - > name ,
& class_name_unused , & pname , & pname_len ) ;
prop_name = zend_string_init ( pname , pname_len , 0 ) ;
}
/* next: check for conflicts with current class */
if ( ( coliding_prop = zend_hash_find_ptr ( & ce - > properties_info , prop_name ) ) ! = NULL ) {
2018-09-11 16:56:45 +08:00
if ( ( coliding_prop - > flags & ZEND_ACC_PRIVATE ) & & coliding_prop - > ce ! = ce ) {
2014-09-19 06:01:05 +08:00
zend_hash_del ( & ce - > properties_info , prop_name ) ;
flags | = ZEND_ACC_CHANGED ;
} else {
2017-09-27 08:31:03 +08:00
not_compatible = 1 ;
2017-12-31 12:35:25 +08:00
2014-09-19 06:01:05 +08:00
if ( ( coliding_prop - > flags & ( ZEND_ACC_PPP_MASK | ZEND_ACC_STATIC ) )
2019-01-07 19:28:51 +08:00
= = ( flags & ( ZEND_ACC_PPP_MASK | ZEND_ACC_STATIC ) ) & &
property_types_compatible ( property_info , coliding_prop )
) {
2017-09-27 08:31:03 +08:00
/* the flags are identical, thus, the properties may be compatible */
2017-12-02 00:08:11 +08:00
zval * op1 , * op2 ;
2017-12-17 00:10:09 +08:00
zval op1_tmp , op2_tmp ;
2017-09-27 08:31:03 +08:00
2014-09-19 06:01:05 +08:00
if ( flags & ZEND_ACC_STATIC ) {
2017-12-02 00:08:11 +08:00
op1 = & ce - > default_static_members_table [ coliding_prop - > offset ] ;
2018-08-23 07:02:26 +08:00
op2 = & traits [ i ] - > default_static_members_table [ property_info - > offset ] ;
2018-06-22 18:58:48 +08:00
ZVAL_DEINDIRECT ( op1 ) ;
ZVAL_DEINDIRECT ( op2 ) ;
2014-09-19 06:01:05 +08:00
} else {
2017-12-02 00:08:11 +08:00
op1 = & ce - > default_properties_table [ OBJ_PROP_TO_NUM ( coliding_prop - > offset ) ] ;
2018-08-23 07:02:26 +08:00
op2 = & traits [ i ] - > default_properties_table [ OBJ_PROP_TO_NUM ( property_info - > offset ) ] ;
2017-09-27 08:31:03 +08:00
}
/* if any of the values is a constant, we try to resolve it */
2017-12-17 00:10:09 +08:00
if ( UNEXPECTED ( Z_TYPE_P ( op1 ) = = IS_CONSTANT_AST ) ) {
ZVAL_COPY_OR_DUP ( & op1_tmp , op1 ) ;
zval_update_constant_ex ( & op1_tmp , ce ) ;
op1 = & op1_tmp ;
2014-09-19 06:01:05 +08:00
}
2017-12-17 00:10:09 +08:00
if ( UNEXPECTED ( Z_TYPE_P ( op2 ) = = IS_CONSTANT_AST ) ) {
ZVAL_COPY_OR_DUP ( & op2_tmp , op2 ) ;
zval_update_constant_ex ( & op2_tmp , ce ) ;
op2 = & op2_tmp ;
2017-09-27 08:31:03 +08:00
}
2017-12-02 00:08:11 +08:00
not_compatible = fast_is_not_identical_function ( op1 , op2 ) ;
2017-12-17 00:10:09 +08:00
if ( op1 = = & op1_tmp ) {
zval_ptr_dtor_nogc ( & op1_tmp ) ;
}
if ( op2 = = & op2_tmp ) {
zval_ptr_dtor_nogc ( & op2_tmp ) ;
}
2014-09-19 06:01:05 +08:00
}
if ( not_compatible ) {
zend_error_noreturn ( E_COMPILE_ERROR ,
" %s and %s define the same property ($%s) in the composition of %s. However, the definition differs and is considered incompatible. Class was composed " ,
2018-08-23 07:02:26 +08:00
ZSTR_VAL ( find_first_definition ( ce , traits , i , prop_name , coliding_prop - > ce ) - > name ) ,
2015-06-30 18:59:27 +08:00
ZSTR_VAL ( property_info - > ce - > name ) ,
ZSTR_VAL ( prop_name ) ,
ZSTR_VAL ( ce - > name ) ) ;
2014-09-19 06:01:05 +08:00
}
2015-03-15 16:47:25 +08:00
2018-05-28 21:27:12 +08:00
zend_string_release_ex ( prop_name , 0 ) ;
2015-03-15 16:47:25 +08:00
continue ;
2014-09-19 06:01:05 +08:00
}
}
/* property not found, so lets add it */
if ( flags & ZEND_ACC_STATIC ) {
2018-08-23 07:02:26 +08:00
prop_value = & traits [ i ] - > default_static_members_table [ property_info - > offset ] ;
2018-06-22 18:58:48 +08:00
ZEND_ASSERT ( Z_TYPE_P ( prop_value ) ! = IS_INDIRECT ) ;
2014-09-19 06:01:05 +08:00
} else {
2018-08-23 07:02:26 +08:00
prop_value = & traits [ i ] - > default_properties_table [ OBJ_PROP_TO_NUM ( property_info - > offset ) ] ;
2014-09-19 06:01:05 +08:00
}
2017-11-01 10:25:10 +08:00
Z_TRY_ADDREF_P ( prop_value ) ;
2014-09-19 06:01:05 +08:00
doc_comment = property_info - > doc_comment ? zend_string_copy ( property_info - > doc_comment ) : NULL ;
2019-02-08 19:20:31 +08:00
if ( ZEND_TYPE_IS_NAME ( property_info - > type ) ) {
zend_string_addref ( ZEND_TYPE_NAME ( property_info - > type ) ) ;
}
2019-01-07 19:28:51 +08:00
zend_declare_typed_property ( ce , prop_name , prop_value , flags , doc_comment , property_info - > type ) ;
2018-05-28 21:27:12 +08:00
zend_string_release_ex ( prop_name , 0 ) ;
2014-09-19 06:01:05 +08:00
} ZEND_HASH_FOREACH_END ( ) ;
}
}
/* }}} */
2018-07-11 23:56:10 +08:00
static void zend_do_check_for_inconsistent_traits_aliasing ( zend_class_entry * ce , zend_class_entry * * aliases ) /* { { { */
2014-09-19 06:01:05 +08:00
{
int i = 0 ;
zend_trait_alias * cur_alias ;
zend_string * lc_method_name ;
if ( ce - > trait_aliases ) {
while ( ce - > trait_aliases [ i ] ) {
cur_alias = ce - > trait_aliases [ i ] ;
/** The trait for this alias has not been resolved, this means, this
alias was not applied . Abort with an error . */
2018-07-11 23:56:10 +08:00
if ( ! aliases [ i ] ) {
2014-09-19 06:01:05 +08:00
if ( cur_alias - > alias ) {
/** Plain old inconsistency/typo/bug */
zend_error_noreturn ( E_COMPILE_ERROR ,
" An alias (%s) was defined for method %s(), but this method does not exist " ,
2015-06-30 18:59:27 +08:00
ZSTR_VAL ( cur_alias - > alias ) ,
2018-07-11 23:56:10 +08:00
ZSTR_VAL ( cur_alias - > trait_method . method_name ) ) ;
2014-09-19 06:01:05 +08:00
} else {
/** Here are two possible cases:
2019-02-19 00:35:35 +08:00
1 ) this is an attempt to modify the visibility
2014-09-19 06:01:05 +08:00
of a method introduce as part of another alias .
Since that seems to violate the DRY principle ,
we check against it and abort .
2 ) it is just a plain old inconsitency / typo / bug
as in the case where alias is set . */
2014-12-24 20:04:51 +08:00
lc_method_name = zend_string_tolower (
2018-07-11 23:56:10 +08:00
cur_alias - > trait_method . method_name ) ;
2014-09-19 06:01:05 +08:00
if ( zend_hash_exists ( & ce - > function_table ,
lc_method_name ) ) {
2018-05-28 21:27:12 +08:00
zend_string_release_ex ( lc_method_name , 0 ) ;
2014-09-19 06:01:05 +08:00
zend_error_noreturn ( E_COMPILE_ERROR ,
2014-11-20 03:59:31 +08:00
" The modifiers for the trait alias %s() need to be changed in the same statement in which the alias is defined. Error " ,
2018-07-11 23:56:10 +08:00
ZSTR_VAL ( cur_alias - > trait_method . method_name ) ) ;
2014-09-19 06:01:05 +08:00
} else {
2018-05-28 21:27:12 +08:00
zend_string_release_ex ( lc_method_name , 0 ) ;
2014-09-19 06:01:05 +08:00
zend_error_noreturn ( E_COMPILE_ERROR ,
" The modifiers of the trait method %s() are changed, but this method does not exist. Error " ,
2018-07-11 23:56:10 +08:00
ZSTR_VAL ( cur_alias - > trait_method . method_name ) ) ;
2014-09-19 06:01:05 +08:00
}
}
}
i + + ;
}
}
}
/* }}} */
2018-08-27 21:40:25 +08:00
static void zend_do_bind_traits ( zend_class_entry * ce ) /* { { { */
2014-09-19 06:01:05 +08:00
{
2018-07-11 23:56:10 +08:00
HashTable * * exclude_tables ;
zend_class_entry * * aliases ;
2018-08-23 07:02:26 +08:00
zend_class_entry * * traits , * trait ;
uint32_t i , j ;
2014-09-19 06:01:05 +08:00
2018-08-23 22:16:28 +08:00
ZEND_ASSERT ( ce - > num_traits > 0 ) ;
2014-09-19 06:01:05 +08:00
2018-08-23 07:02:26 +08:00
traits = emalloc ( sizeof ( zend_class_entry * ) * ce - > num_traits ) ;
for ( i = 0 ; i < ce - > num_traits ; i + + ) {
trait = zend_fetch_class_by_name ( ce - > trait_names [ i ] . name ,
ce - > trait_names [ i ] . lc_name , ZEND_FETCH_CLASS_TRAIT ) ;
if ( UNEXPECTED ( trait = = NULL ) ) {
return ;
}
if ( UNEXPECTED ( ! ( trait - > ce_flags & ZEND_ACC_TRAIT ) ) ) {
zend_error_noreturn ( E_ERROR , " %s cannot use %s - it is not a trait " , ZSTR_VAL ( ce - > name ) , ZSTR_VAL ( trait - > name ) ) ;
return ;
}
for ( j = 0 ; j < i ; j + + ) {
if ( traits [ j ] = = trait ) {
/* skip duplications */
trait = NULL ;
break ;
}
}
traits [ i ] = trait ;
}
2014-09-19 06:01:05 +08:00
/* complete initialization of trait strutures in ce */
2018-08-23 07:02:26 +08:00
zend_traits_init_trait_structures ( ce , traits , & exclude_tables , & aliases ) ;
2014-09-19 06:01:05 +08:00
/* first care about all methods to be flattened into the class */
2018-08-23 07:02:26 +08:00
zend_do_traits_method_binding ( ce , traits , exclude_tables , aliases ) ;
2014-09-19 06:01:05 +08:00
/* Aliases which have not been applied indicate typos/bugs. */
2018-07-11 23:56:10 +08:00
zend_do_check_for_inconsistent_traits_aliasing ( ce , aliases ) ;
if ( aliases ) {
efree ( aliases ) ;
}
if ( exclude_tables ) {
efree ( exclude_tables ) ;
}
2014-09-19 06:01:05 +08:00
/* then flatten the properties into it, to, mostly to notfiy developer about problems */
2018-08-23 07:02:26 +08:00
zend_do_traits_property_binding ( ce , traits ) ;
efree ( traits ) ;
2014-09-19 06:01:05 +08:00
2015-03-31 22:10:22 +08:00
/* Emit E_DEPRECATED for PHP 4 constructors */
zend_check_deprecated_constructor ( ce ) ;
2014-09-19 06:01:05 +08:00
}
/* }}} */
2015-03-31 22:10:22 +08:00
static zend_bool zend_has_deprecated_constructor ( const zend_class_entry * ce ) /* { { { */
{
const zend_string * constructor_name ;
if ( ! ce - > constructor ) {
return 0 ;
}
constructor_name = ce - > constructor - > common . function_name ;
return ! zend_binary_strcasecmp (
2015-06-30 18:59:27 +08:00
ZSTR_VAL ( ce - > name ) , ZSTR_LEN ( ce - > name ) ,
ZSTR_VAL ( constructor_name ) , ZSTR_LEN ( constructor_name )
2015-03-31 22:10:22 +08:00
) ;
}
/* }}} */
void zend_check_deprecated_constructor ( const zend_class_entry * ce ) /* { { { */
{
if ( zend_has_deprecated_constructor ( ce ) ) {
2015-06-30 18:59:27 +08:00
zend_error ( E_DEPRECATED , " Methods with the same name as their class will not be constructors in a future version of PHP; %s has a deprecated constructor " , ZSTR_VAL ( ce - > name ) ) ;
2015-03-31 22:10:22 +08:00
}
}
/* }}} */
2018-08-27 17:56:17 +08:00
# 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 ] ? ZSTR_VAL ( ai . afn [ idx ] - > common . function_name ) : " " , \
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 ;
static void zend_verify_abstract_class_function ( zend_function * fn , zend_abstract_info * ai ) /* { { { */
{
if ( fn - > common . fn_flags & ZEND_ACC_ABSTRACT ) {
if ( ai - > cnt < MAX_ABSTRACT_INFO_CNT ) {
ai - > afn [ ai - > cnt ] = fn ;
}
2019-02-14 18:12:50 +08:00
if ( fn - > common . fn_flags & ZEND_ACC_CTOR ) {
2018-08-27 17:56:17 +08:00
if ( ! ai - > ctor ) {
ai - > cnt + + ;
ai - > ctor = 1 ;
} else {
ai - > afn [ ai - > cnt ] = NULL ;
}
} else {
ai - > cnt + + ;
}
}
}
/* }}} */
void zend_verify_abstract_class ( zend_class_entry * ce ) /* { { { */
{
zend_function * func ;
zend_abstract_info ai ;
2018-08-27 21:40:25 +08:00
ZEND_ASSERT ( ( ce - > ce_flags & ( ZEND_ACC_IMPLICIT_ABSTRACT_CLASS | ZEND_ACC_INTERFACE | ZEND_ACC_TRAIT | ZEND_ACC_EXPLICIT_ABSTRACT_CLASS ) ) = = ZEND_ACC_IMPLICIT_ABSTRACT_CLASS ) ;
memset ( & ai , 0 , sizeof ( ai ) ) ;
2018-08-27 17:56:17 +08:00
2018-08-27 21:40:25 +08:00
ZEND_HASH_FOREACH_PTR ( & ce - > function_table , func ) {
zend_verify_abstract_class_function ( func , & ai ) ;
} ZEND_HASH_FOREACH_END ( ) ;
2018-08-27 17:56:17 +08:00
2018-08-27 21:40:25 +08:00
if ( ai . cnt ) {
zend_error_noreturn ( 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 " ) " ,
ZSTR_VAL ( ce - > name ) , ai . cnt ,
ai . cnt > 1 ? " s " : " " ,
DISPLAY_ABSTRACT_FN ( 0 ) ,
DISPLAY_ABSTRACT_FN ( 1 ) ,
DISPLAY_ABSTRACT_FN ( 2 )
) ;
} else {
/* now everything should be fine and an added ZEND_ACC_IMPLICIT_ABSTRACT_CLASS should be removed */
ce - > ce_flags & = ~ ZEND_ACC_IMPLICIT_ABSTRACT_CLASS ;
}
}
/* }}} */
2019-05-27 17:39:56 +08:00
typedef struct {
enum { OBLIGATION_DEPENDENCY , OBLIGATION_COMPATIBILITY } type ;
union {
zend_class_entry * dependency_ce ;
struct {
const zend_function * parent_fn ;
const zend_function * child_fn ;
zend_bool always_error ;
} ;
} ;
} variance_obligation ;
static void variance_obligation_dtor ( zval * zv ) {
efree ( Z_PTR_P ( zv ) ) ;
}
static void variance_obligation_ht_dtor ( zval * zv ) {
zend_hash_destroy ( Z_PTR_P ( zv ) ) ;
FREE_HASHTABLE ( Z_PTR_P ( zv ) ) ;
}
static HashTable * get_or_init_obligations_for_class ( zend_class_entry * ce ) {
HashTable * ht ;
zend_ulong key ;
if ( ! CG ( delayed_variance_obligations ) ) {
ALLOC_HASHTABLE ( CG ( delayed_variance_obligations ) ) ;
zend_hash_init ( CG ( delayed_variance_obligations ) , 0 , NULL , variance_obligation_ht_dtor , 0 ) ;
}
key = ( zend_ulong ) ( uintptr_t ) ce ;
ht = zend_hash_index_find_ptr ( CG ( delayed_variance_obligations ) , key ) ;
if ( ht ) {
return ht ;
}
ALLOC_HASHTABLE ( ht ) ;
zend_hash_init ( ht , 0 , NULL , variance_obligation_dtor , 0 ) ;
zend_hash_index_add_new_ptr ( CG ( delayed_variance_obligations ) , key , ht ) ;
ce - > ce_flags | = ZEND_ACC_UNRESOLVED_VARIANCE ;
return ht ;
}
static void add_dependency_obligation ( zend_class_entry * ce , zend_class_entry * dependency_ce ) {
HashTable * obligations = get_or_init_obligations_for_class ( ce ) ;
variance_obligation * obligation = emalloc ( sizeof ( variance_obligation ) ) ;
obligation - > type = OBLIGATION_DEPENDENCY ;
obligation - > dependency_ce = dependency_ce ;
zend_hash_next_index_insert_ptr ( obligations , obligation ) ;
}
static void add_compatibility_obligation (
zend_class_entry * ce , const zend_function * child_fn , const zend_function * parent_fn ,
zend_bool always_error ) {
HashTable * obligations = get_or_init_obligations_for_class ( ce ) ;
variance_obligation * obligation = emalloc ( sizeof ( variance_obligation ) ) ;
obligation - > type = OBLIGATION_COMPATIBILITY ;
obligation - > child_fn = child_fn ;
obligation - > parent_fn = parent_fn ;
obligation - > always_error = always_error ;
zend_hash_next_index_insert_ptr ( obligations , obligation ) ;
}
static void resolve_delayed_variance_obligations ( zend_class_entry * ce ) ;
static int check_variance_obligation ( zval * zv ) {
variance_obligation * obligation = Z_PTR_P ( zv ) ;
if ( obligation - > type = = OBLIGATION_DEPENDENCY ) {
zend_class_entry * dependency_ce = obligation - > dependency_ce ;
if ( dependency_ce - > ce_flags & ZEND_ACC_UNRESOLVED_VARIANCE ) {
resolve_delayed_variance_obligations ( dependency_ce ) ;
}
if ( ! ( dependency_ce - > ce_flags & ZEND_ACC_LINKED ) ) {
return ZEND_HASH_APPLY_KEEP ;
}
} else {
zend_string * unresolved_class ;
inheritance_status status = zend_do_perform_implementation_check (
& unresolved_class , obligation - > child_fn , obligation - > parent_fn ) ;
2019-06-26 06:00:31 +08:00
if ( UNEXPECTED ( status ! = INHERITANCE_SUCCESS ) ) {
if ( EXPECTED ( status = = INHERITANCE_UNRESOLVED ) ) {
return ZEND_HASH_APPLY_KEEP ;
}
ZEND_ASSERT ( status = = INHERITANCE_ERROR ) ;
2019-05-27 17:39:56 +08:00
emit_incompatible_method_error_or_warning (
obligation - > child_fn , obligation - > parent_fn , status , unresolved_class ,
obligation - > always_error ) ;
}
/* Either the compatibility check was successful or only threw a warning. */
}
return ZEND_HASH_APPLY_REMOVE ;
}
static void load_delayed_classes ( ) {
HashTable * delayed_autoloads = CG ( delayed_autoloads ) ;
zend_string * name ;
if ( ! delayed_autoloads ) {
return ;
}
/* Take ownership of this HT, to avoid concurrent modification during autoloading. */
CG ( delayed_autoloads ) = NULL ;
ZEND_HASH_FOREACH_STR_KEY ( delayed_autoloads , name ) {
zend_lookup_class ( name ) ;
} ZEND_HASH_FOREACH_END ( ) ;
zend_hash_destroy ( delayed_autoloads ) ;
FREE_HASHTABLE ( delayed_autoloads ) ;
}
static void resolve_delayed_variance_obligations ( zend_class_entry * ce ) {
HashTable * all_obligations = CG ( delayed_variance_obligations ) , * obligations ;
zend_ulong num_key = ( zend_ulong ) ( uintptr_t ) ce ;
ZEND_ASSERT ( all_obligations ! = NULL ) ;
obligations = zend_hash_index_find_ptr ( all_obligations , num_key ) ;
ZEND_ASSERT ( obligations ! = NULL ) ;
zend_hash_apply ( obligations , check_variance_obligation ) ;
if ( zend_hash_num_elements ( obligations ) = = 0 ) {
ce - > ce_flags & = ~ ZEND_ACC_UNRESOLVED_VARIANCE ;
ce - > ce_flags | = ZEND_ACC_LINKED ;
zend_hash_index_del ( all_obligations , num_key ) ;
}
}
static void report_variance_errors ( zend_class_entry * ce ) {
HashTable * all_obligations = CG ( delayed_variance_obligations ) , * obligations ;
variance_obligation * obligation ;
zend_ulong num_key = ( zend_ulong ) ( uintptr_t ) ce ;
ZEND_ASSERT ( all_obligations ! = NULL ) ;
obligations = zend_hash_index_find_ptr ( all_obligations , num_key ) ;
ZEND_ASSERT ( obligations ! = NULL ) ;
ZEND_HASH_FOREACH_PTR ( obligations , obligation ) {
inheritance_status status ;
zend_string * unresolved_class ;
/* There should not be any unresolved parents at this point. */
ZEND_ASSERT ( obligation - > type = = OBLIGATION_COMPATIBILITY ) ;
/* Just used to fetch the unresolved_class in this case. */
status = zend_do_perform_implementation_check (
& unresolved_class , obligation - > child_fn , obligation - > parent_fn ) ;
ZEND_ASSERT ( status = = INHERITANCE_UNRESOLVED ) ;
emit_incompatible_method_error_or_warning (
obligation - > child_fn , obligation - > parent_fn ,
status , unresolved_class , obligation - > always_error ) ;
} ZEND_HASH_FOREACH_END ( ) ;
/* Only warnings were thrown above -- that means that there are incompatibilities, but only
* ones that we permit . Mark all classes with open obligations as fully linked . */
ce - > ce_flags & = ~ ZEND_ACC_UNRESOLVED_VARIANCE ;
ce - > ce_flags | = ZEND_ACC_LINKED ;
zend_hash_index_del ( all_obligations , num_key ) ;
}
2019-06-25 16:26:29 +08:00
ZEND_API void zend_do_link_class ( zend_class_entry * ce , zend_string * lc_parent_name ) /* { { { */
2018-08-27 21:40:25 +08:00
{
2019-05-24 20:28:44 +08:00
if ( ce - > parent_name ) {
2019-05-27 17:39:56 +08:00
zend_class_entry * parent = zend_fetch_class_by_name (
2019-06-25 16:26:29 +08:00
ce - > parent_name , lc_parent_name , ZEND_FETCH_CLASS_ALLOW_UNLINKED ) ;
2019-05-27 17:39:56 +08:00
if ( ! ( parent - > ce_flags & ZEND_ACC_LINKED ) ) {
add_dependency_obligation ( ce , parent ) ;
}
2018-08-27 21:40:25 +08:00
zend_do_inheritance ( ce , parent ) ;
}
if ( ce - > ce_flags & ZEND_ACC_IMPLEMENT_TRAITS ) {
zend_do_bind_traits ( ce ) ;
}
if ( ce - > ce_flags & ZEND_ACC_IMPLEMENT_INTERFACES ) {
zend_do_implement_interfaces ( ce ) ;
}
if ( ( ce - > ce_flags & ( ZEND_ACC_IMPLICIT_ABSTRACT_CLASS | ZEND_ACC_INTERFACE | ZEND_ACC_TRAIT | ZEND_ACC_EXPLICIT_ABSTRACT_CLASS ) ) = = ZEND_ACC_IMPLICIT_ABSTRACT_CLASS ) {
zend_verify_abstract_class ( ce ) ;
2018-08-27 17:56:17 +08:00
}
2019-01-07 19:28:51 +08:00
zend_build_properties_info_table ( ce ) ;
2019-05-27 17:39:56 +08:00
if ( ! ( ce - > ce_flags & ZEND_ACC_UNRESOLVED_VARIANCE ) ) {
ce - > ce_flags | = ZEND_ACC_LINKED ;
return ;
}
load_delayed_classes ( ) ;
if ( ce - > ce_flags & ZEND_ACC_UNRESOLVED_VARIANCE ) {
resolve_delayed_variance_obligations ( ce ) ;
if ( ! ( ce - > ce_flags & ZEND_ACC_LINKED ) ) {
report_variance_errors ( ce ) ;
}
}
2018-08-27 17:56:17 +08:00
}
2019-05-09 16:41:06 +08:00
/* Check whether early binding is prevented due to unresolved types in inheritance checks. */
zend_bool zend_can_early_bind ( zend_class_entry * ce , zend_class_entry * parent_ce ) {
zend_string * key ;
zend_function * parent_func ;
ZEND_HASH_FOREACH_STR_KEY_PTR ( & parent_ce - > function_table , key , parent_func ) {
uint32_t parent_flags = parent_func - > common . fn_flags ;
2019-06-25 17:41:06 +08:00
zval * zv ;
2019-05-08 18:30:16 +08:00
zend_string * unresolved_class ;
2019-06-25 17:41:06 +08:00
2019-06-25 22:43:46 +08:00
if ( parent_flags & ZEND_ACC_PRIVATE ) {
2019-05-09 16:41:06 +08:00
continue ;
2019-06-25 22:43:46 +08:00
} else if ( parent_flags & ZEND_ACC_CTOR ) {
zend_function * proto = parent_func - > common . prototype ?
parent_func - > common . prototype : parent_func ;
/* ctors only have a prototype if is abstract (or comes from an interface) */
/* and if that is the case, we want to check inheritance against it */
2019-06-26 05:32:22 +08:00
if ( ! ( proto - > common . fn_flags & ZEND_ACC_ABSTRACT ) ) {
2019-06-25 22:43:46 +08:00
continue ;
}
2019-06-26 05:32:22 +08:00
parent_func = proto ;
2019-05-09 16:41:06 +08:00
}
2019-06-25 17:41:06 +08:00
zv = zend_hash_find_ex ( & ce - > function_table , key , 1 ) ;
2019-06-26 06:00:31 +08:00
if ( zv ) {
zend_function * child_func = Z_FUNC_P ( zv ) ;
inheritance_status status ;
status = zend_do_perform_implementation_check (
& unresolved_class , child_func , parent_func ) ;
if ( UNEXPECTED ( status = = INHERITANCE_UNRESOLVED ) ) {
return 0 ;
}
2019-05-09 16:41:06 +08:00
}
} ZEND_HASH_FOREACH_END ( ) ;
return 1 ;
}
2018-08-27 17:56:17 +08:00
/* }}} */