mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
5a0b68bed7
This reverts commit9e6eab3c13
. Reverted alonga01dd9feda
.
392 lines
11 KiB
C
392 lines
11 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| Zend Engine |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) Zend Technologies Ltd. (http://www.zend.com) |
|
|
+----------------------------------------------------------------------+
|
|
| 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. |
|
|
+----------------------------------------------------------------------+
|
|
| Authors: Benjamin Eberlei <kontakt@beberlei.de> |
|
|
| Martin Schröder <m.schroeder2007@gmail.com> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#include "zend.h"
|
|
#include "zend_API.h"
|
|
#include "zend_attributes.h"
|
|
#include "zend_attributes_arginfo.h"
|
|
#include "zend_exceptions.h"
|
|
#include "zend_smart_str.h"
|
|
|
|
ZEND_API zend_class_entry *zend_ce_attribute;
|
|
ZEND_API zend_class_entry *zend_ce_return_type_will_change_attribute;
|
|
ZEND_API zend_class_entry *zend_ce_allow_dynamic_properties;
|
|
ZEND_API zend_class_entry *zend_ce_sensitive_parameter;
|
|
ZEND_API zend_class_entry *zend_ce_sensitive_parameter_value;
|
|
|
|
static zend_object_handlers attributes_object_handlers_sensitive_parameter_value;
|
|
|
|
static HashTable internal_attributes;
|
|
|
|
void validate_attribute(zend_attribute *attr, uint32_t target, zend_class_entry *scope)
|
|
{
|
|
// TODO: More proper signature validation: Too many args, incorrect arg names.
|
|
if (attr->argc > 0) {
|
|
zval flags;
|
|
|
|
/* As this is run in the middle of compilation, fetch the attribute value without
|
|
* specifying a scope. The class is not fully linked yet, and we may seen an
|
|
* inconsistent state. */
|
|
if (FAILURE == zend_get_attribute_value(&flags, attr, 0, NULL)) {
|
|
return;
|
|
}
|
|
|
|
if (Z_TYPE(flags) != IS_LONG) {
|
|
zend_error_noreturn(E_ERROR,
|
|
"Attribute::__construct(): Argument #1 ($flags) must be of type int, %s given",
|
|
zend_zval_type_name(&flags)
|
|
);
|
|
}
|
|
|
|
if (Z_LVAL(flags) & ~ZEND_ATTRIBUTE_FLAGS) {
|
|
zend_error_noreturn(E_ERROR, "Invalid attribute flags specified");
|
|
}
|
|
|
|
zval_ptr_dtor(&flags);
|
|
}
|
|
}
|
|
|
|
static void validate_allow_dynamic_properties(
|
|
zend_attribute *attr, uint32_t target, zend_class_entry *scope)
|
|
{
|
|
if (scope->ce_flags & ZEND_ACC_TRAIT) {
|
|
zend_error_noreturn(E_ERROR, "Cannot apply #[AllowDynamicProperties] to trait");
|
|
}
|
|
if (scope->ce_flags & ZEND_ACC_INTERFACE) {
|
|
zend_error_noreturn(E_ERROR, "Cannot apply #[AllowDynamicProperties] to interface");
|
|
}
|
|
if (scope->ce_flags & ZEND_ACC_READONLY_CLASS) {
|
|
zend_error_noreturn(E_ERROR, "Cannot apply #[AllowDynamicProperties] to readonly class %s",
|
|
ZSTR_VAL(scope->name)
|
|
);
|
|
}
|
|
scope->ce_flags |= ZEND_ACC_ALLOW_DYNAMIC_PROPERTIES;
|
|
}
|
|
|
|
ZEND_METHOD(Attribute, __construct)
|
|
{
|
|
zend_long flags = ZEND_ATTRIBUTE_TARGET_ALL;
|
|
|
|
ZEND_PARSE_PARAMETERS_START(0, 1)
|
|
Z_PARAM_OPTIONAL
|
|
Z_PARAM_LONG(flags)
|
|
ZEND_PARSE_PARAMETERS_END();
|
|
|
|
ZVAL_LONG(OBJ_PROP_NUM(Z_OBJ_P(ZEND_THIS), 0), flags);
|
|
}
|
|
|
|
ZEND_METHOD(ReturnTypeWillChange, __construct)
|
|
{
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
|
}
|
|
|
|
ZEND_METHOD(AllowDynamicProperties, __construct)
|
|
{
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
|
}
|
|
|
|
ZEND_METHOD(SensitiveParameter, __construct)
|
|
{
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
|
}
|
|
|
|
ZEND_METHOD(SensitiveParameterValue, __construct)
|
|
{
|
|
zval *value;
|
|
|
|
ZEND_PARSE_PARAMETERS_START(1, 1)
|
|
Z_PARAM_ZVAL(value)
|
|
ZEND_PARSE_PARAMETERS_END();
|
|
|
|
zend_update_property(zend_ce_sensitive_parameter_value, Z_OBJ_P(ZEND_THIS), "value", strlen("value"), value);
|
|
}
|
|
|
|
ZEND_METHOD(SensitiveParameterValue, getValue)
|
|
{
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
|
|
|
ZVAL_COPY(return_value, OBJ_PROP_NUM(Z_OBJ_P(ZEND_THIS), 0));
|
|
}
|
|
|
|
ZEND_METHOD(SensitiveParameterValue, __debugInfo)
|
|
{
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
|
|
|
RETURN_EMPTY_ARRAY();
|
|
}
|
|
|
|
static zend_object *attributes_sensitive_parameter_value_new(zend_class_entry *ce)
|
|
{
|
|
zend_object *object;
|
|
|
|
object = zend_objects_new(ce);
|
|
object->handlers = &attributes_object_handlers_sensitive_parameter_value;
|
|
|
|
object_properties_init(object, ce);
|
|
|
|
return object;
|
|
}
|
|
|
|
static HashTable *attributes_sensitive_parameter_value_get_properties_for(zend_object *zobj, zend_prop_purpose purpose)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static zend_attribute *get_attribute(HashTable *attributes, zend_string *lcname, uint32_t offset)
|
|
{
|
|
if (attributes) {
|
|
zend_attribute *attr;
|
|
|
|
ZEND_HASH_PACKED_FOREACH_PTR(attributes, attr) {
|
|
if (attr->offset == offset && zend_string_equals(attr->lcname, lcname)) {
|
|
return attr;
|
|
}
|
|
} ZEND_HASH_FOREACH_END();
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static zend_attribute *get_attribute_str(HashTable *attributes, const char *str, size_t len, uint32_t offset)
|
|
{
|
|
if (attributes) {
|
|
zend_attribute *attr;
|
|
|
|
ZEND_HASH_PACKED_FOREACH_PTR(attributes, attr) {
|
|
if (attr->offset == offset && zend_string_equals_cstr(attr->lcname, str, len)) {
|
|
return attr;
|
|
}
|
|
} ZEND_HASH_FOREACH_END();
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
ZEND_API zend_attribute *zend_get_attribute(HashTable *attributes, zend_string *lcname)
|
|
{
|
|
return get_attribute(attributes, lcname, 0);
|
|
}
|
|
|
|
ZEND_API zend_attribute *zend_get_attribute_str(HashTable *attributes, const char *str, size_t len)
|
|
{
|
|
return get_attribute_str(attributes, str, len, 0);
|
|
}
|
|
|
|
ZEND_API zend_attribute *zend_get_parameter_attribute(HashTable *attributes, zend_string *lcname, uint32_t offset)
|
|
{
|
|
return get_attribute(attributes, lcname, offset + 1);
|
|
}
|
|
|
|
ZEND_API zend_attribute *zend_get_parameter_attribute_str(HashTable *attributes, const char *str, size_t len, uint32_t offset)
|
|
{
|
|
return get_attribute_str(attributes, str, len, offset + 1);
|
|
}
|
|
|
|
ZEND_API zend_result zend_get_attribute_value(zval *ret, zend_attribute *attr, uint32_t i, zend_class_entry *scope)
|
|
{
|
|
if (i >= attr->argc) {
|
|
return FAILURE;
|
|
}
|
|
|
|
ZVAL_COPY_OR_DUP(ret, &attr->args[i].value);
|
|
|
|
if (Z_TYPE_P(ret) == IS_CONSTANT_AST) {
|
|
if (SUCCESS != zval_update_constant_ex(ret, scope)) {
|
|
zval_ptr_dtor(ret);
|
|
return FAILURE;
|
|
}
|
|
}
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
static const char *target_names[] = {
|
|
"class",
|
|
"function",
|
|
"method",
|
|
"property",
|
|
"class constant",
|
|
"parameter"
|
|
};
|
|
|
|
ZEND_API zend_string *zend_get_attribute_target_names(uint32_t flags)
|
|
{
|
|
smart_str str = { 0 };
|
|
|
|
for (uint32_t i = 0; i < (sizeof(target_names) / sizeof(char *)); i++) {
|
|
if (flags & (1 << i)) {
|
|
if (smart_str_get_len(&str)) {
|
|
smart_str_appends(&str, ", ");
|
|
}
|
|
|
|
smart_str_appends(&str, target_names[i]);
|
|
}
|
|
}
|
|
|
|
return smart_str_extract(&str);
|
|
}
|
|
|
|
ZEND_API bool zend_is_attribute_repeated(HashTable *attributes, zend_attribute *attr)
|
|
{
|
|
zend_attribute *other;
|
|
|
|
ZEND_HASH_PACKED_FOREACH_PTR(attributes, other) {
|
|
if (other != attr && other->offset == attr->offset) {
|
|
if (zend_string_equals(other->lcname, attr->lcname)) {
|
|
return 1;
|
|
}
|
|
}
|
|
} ZEND_HASH_FOREACH_END();
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void attr_free(zval *v)
|
|
{
|
|
zend_attribute *attr = Z_PTR_P(v);
|
|
bool persistent = attr->flags & ZEND_ATTRIBUTE_PERSISTENT;
|
|
|
|
zend_string_release(attr->name);
|
|
zend_string_release(attr->lcname);
|
|
|
|
for (uint32_t i = 0; i < attr->argc; i++) {
|
|
if (attr->args[i].name) {
|
|
zend_string_release(attr->args[i].name);
|
|
}
|
|
if (persistent) {
|
|
zval_internal_ptr_dtor(&attr->args[i].value);
|
|
} else {
|
|
zval_ptr_dtor(&attr->args[i].value);
|
|
}
|
|
}
|
|
|
|
pefree(attr, persistent);
|
|
}
|
|
|
|
ZEND_API zend_attribute *zend_add_attribute(HashTable **attributes, zend_string *name, uint32_t argc, uint32_t flags, uint32_t offset, uint32_t lineno)
|
|
{
|
|
bool persistent = flags & ZEND_ATTRIBUTE_PERSISTENT;
|
|
if (*attributes == NULL) {
|
|
*attributes = pemalloc(sizeof(HashTable), persistent);
|
|
zend_hash_init(*attributes, 8, NULL, attr_free, persistent);
|
|
}
|
|
|
|
zend_attribute *attr = pemalloc(ZEND_ATTRIBUTE_SIZE(argc), persistent);
|
|
|
|
if (persistent == ((GC_FLAGS(name) & IS_STR_PERSISTENT) != 0)) {
|
|
attr->name = zend_string_copy(name);
|
|
} else {
|
|
attr->name = zend_string_dup(name, persistent);
|
|
}
|
|
|
|
attr->lcname = zend_string_tolower_ex(attr->name, persistent);
|
|
attr->flags = flags;
|
|
attr->lineno = lineno;
|
|
attr->offset = offset;
|
|
attr->argc = argc;
|
|
|
|
/* Initialize arguments to avoid partial initialization in case of fatal errors. */
|
|
for (uint32_t i = 0; i < argc; i++) {
|
|
attr->args[i].name = NULL;
|
|
ZVAL_UNDEF(&attr->args[i].value);
|
|
}
|
|
|
|
zend_hash_next_index_insert_ptr(*attributes, attr);
|
|
|
|
return attr;
|
|
}
|
|
|
|
static void free_internal_attribute(zval *v)
|
|
{
|
|
pefree(Z_PTR_P(v), 1);
|
|
}
|
|
|
|
ZEND_API zend_internal_attribute *zend_mark_internal_attribute(zend_class_entry *ce)
|
|
{
|
|
zend_internal_attribute *internal_attr;
|
|
zend_attribute *attr;
|
|
|
|
if (ce->type != ZEND_INTERNAL_CLASS) {
|
|
zend_error_noreturn(E_ERROR, "Only internal classes can be registered as compiler attribute");
|
|
}
|
|
|
|
ZEND_HASH_FOREACH_PTR(ce->attributes, attr) {
|
|
if (zend_string_equals(attr->name, zend_ce_attribute->name)) {
|
|
internal_attr = pemalloc(sizeof(zend_internal_attribute), 1);
|
|
internal_attr->ce = ce;
|
|
internal_attr->flags = Z_LVAL(attr->args[0].value);
|
|
internal_attr->validator = NULL;
|
|
|
|
zend_string *lcname = zend_string_tolower_ex(ce->name, 1);
|
|
zend_hash_update_ptr(&internal_attributes, lcname, internal_attr);
|
|
zend_string_release(lcname);
|
|
|
|
return internal_attr;
|
|
}
|
|
} ZEND_HASH_FOREACH_END();
|
|
|
|
zend_error_noreturn(E_ERROR, "Classes must be first marked as attribute before being able to be registered as internal attribute class");
|
|
}
|
|
|
|
ZEND_API zend_internal_attribute *zend_internal_attribute_register(zend_class_entry *ce, uint32_t flags)
|
|
{
|
|
zend_attribute *attr = zend_add_class_attribute(ce, zend_ce_attribute->name, 1);
|
|
ZVAL_LONG(&attr->args[0].value, flags);
|
|
|
|
return zend_mark_internal_attribute(ce);
|
|
}
|
|
|
|
ZEND_API zend_internal_attribute *zend_internal_attribute_get(zend_string *lcname)
|
|
{
|
|
return zend_hash_find_ptr(&internal_attributes, lcname);
|
|
}
|
|
|
|
void zend_register_attribute_ce(void)
|
|
{
|
|
zend_internal_attribute *attr;
|
|
|
|
zend_hash_init(&internal_attributes, 8, NULL, free_internal_attribute, 1);
|
|
|
|
zend_ce_attribute = register_class_Attribute();
|
|
attr = zend_mark_internal_attribute(zend_ce_attribute);
|
|
attr->validator = validate_attribute;
|
|
|
|
zend_ce_return_type_will_change_attribute = register_class_ReturnTypeWillChange();
|
|
zend_mark_internal_attribute(zend_ce_return_type_will_change_attribute);
|
|
|
|
zend_ce_allow_dynamic_properties = register_class_AllowDynamicProperties();
|
|
attr = zend_mark_internal_attribute(zend_ce_allow_dynamic_properties);
|
|
attr->validator = validate_allow_dynamic_properties;
|
|
|
|
zend_ce_sensitive_parameter = register_class_SensitiveParameter();
|
|
zend_mark_internal_attribute(zend_ce_sensitive_parameter);
|
|
|
|
memcpy(&attributes_object_handlers_sensitive_parameter_value, &std_object_handlers, sizeof(zend_object_handlers));
|
|
attributes_object_handlers_sensitive_parameter_value.get_properties_for = attributes_sensitive_parameter_value_get_properties_for;
|
|
|
|
/* This is not an actual attribute, thus the zend_mark_internal_attribute() call is missing. */
|
|
zend_ce_sensitive_parameter_value = register_class_SensitiveParameterValue();
|
|
zend_ce_sensitive_parameter_value->create_object = attributes_sensitive_parameter_value_new;
|
|
}
|
|
|
|
void zend_attributes_shutdown(void)
|
|
{
|
|
zend_hash_destroy(&internal_attributes);
|
|
}
|