⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.94
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
src
/
mongodb-1.11.1
/
src
/
BSON
/
View File Name :
DBPointer.c
/* * Copyright 2014-present MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <php.h> #include <Zend/zend_interfaces.h> #include <ext/standard/php_var.h> #include <zend_smart_str.h> #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "phongo_compat.h" #include "php_phongo.h" #include "php_bson.h" zend_class_entry* php_phongo_dbpointer_ce; /* Initialize the object and return whether it was successful. An exception will * be thrown on error. */ static bool php_phongo_dbpointer_init(php_phongo_dbpointer_t* intern, const char* ref, size_t ref_len, const char* id, size_t id_len) /* {{{ */ { if (strlen(ref) != (size_t) ref_len) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "Ref cannot contain null bytes"); return false; } if (!bson_oid_is_valid(id, id_len)) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "Error parsing ObjectId string: %s", id); return false; } intern->ref = estrndup(ref, ref_len); intern->ref_len = ref_len; memset(intern->id, 0, sizeof(intern->id)); strncpy(intern->id, id, sizeof(intern->id) - 1); return true; } /* }}} */ /* Initialize the object from a HashTable and return whether it was successful. * An exception will be thrown on error. */ static bool php_phongo_dbpointer_init_from_hash(php_phongo_dbpointer_t* intern, HashTable* props) /* {{{ */ { zval *ref, *id; if ((ref = zend_hash_str_find(props, "ref", sizeof("ref") - 1)) && Z_TYPE_P(ref) == IS_STRING && (id = zend_hash_str_find(props, "id", sizeof("id") - 1)) && Z_TYPE_P(id) == IS_STRING) { return php_phongo_dbpointer_init(intern, Z_STRVAL_P(ref), Z_STRLEN_P(ref), Z_STRVAL_P(id), Z_STRLEN_P(id)); } phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires \"ref\" and \"id\" string fields", ZSTR_VAL(php_phongo_dbpointer_ce->name)); return false; } /* }}} */ HashTable* php_phongo_dbpointer_get_properties_hash(phongo_compat_object_handler_type* object, bool is_temp) /* {{{ */ { php_phongo_dbpointer_t* intern; HashTable* props; intern = Z_OBJ_DBPOINTER(PHONGO_COMPAT_GET_OBJ(object)); PHONGO_GET_PROPERTY_HASH_INIT_PROPS(is_temp, intern, props, 2); if (!intern->ref) { return props; } { zval ref, id; ZVAL_STRING(&ref, intern->ref); ZVAL_STRING(&id, intern->id); zend_hash_str_update(props, "ref", sizeof("ref") - 1, &ref); zend_hash_str_update(props, "id", sizeof("id") - 1, &id); } return props; } /* }}} */ /* {{{ proto string MongoDB\BSON\DBPointer::__toString() Return the DBPointer's namespace string and ObjectId. */ static PHP_METHOD(DBPointer, __toString) { zend_error_handling error_handling; php_phongo_dbpointer_t* intern; char* retval; int retval_len; zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters_none() == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); intern = Z_DBPOINTER_OBJ_P(getThis()); retval_len = spprintf(&retval, 0, "[%s/%s]", intern->ref, intern->id); RETVAL_STRINGL(retval, retval_len); efree(retval); } /* }}} */ /* {{{ proto array MongoDB\BSON\Symbol::jsonSerialize() */ static PHP_METHOD(DBPointer, jsonSerialize) { zend_error_handling error_handling; php_phongo_dbpointer_t* intern; zval zdb_pointer; zval zoid; zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters_none() == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); intern = Z_DBPOINTER_OBJ_P(getThis()); array_init_size(&zdb_pointer, 2); array_init_size(&zoid, 1); ADD_ASSOC_STRINGL(&zdb_pointer, "$ref", intern->ref, intern->ref_len); ADD_ASSOC_STRING(&zoid, "$oid", intern->id); ADD_ASSOC_ZVAL(&zdb_pointer, "$id", &zoid); array_init_size(return_value, 1); ADD_ASSOC_ZVAL(return_value, "$dbPointer", &zdb_pointer); } /* }}} */ /* {{{ proto string MongoDB\BSON\DBPointer::serialize() */ static PHP_METHOD(DBPointer, serialize) { zend_error_handling error_handling; php_phongo_dbpointer_t* intern; zval retval; php_serialize_data_t var_hash; smart_str buf = { 0 }; intern = Z_DBPOINTER_OBJ_P(getThis()); zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters_none() == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); array_init_size(&retval, 2); ADD_ASSOC_STRINGL(&retval, "ref", intern->ref, intern->ref_len); ADD_ASSOC_STRING(&retval, "id", intern->id); PHP_VAR_SERIALIZE_INIT(var_hash); php_var_serialize(&buf, &retval, &var_hash); smart_str_0(&buf); PHP_VAR_SERIALIZE_DESTROY(var_hash); PHONGO_RETVAL_SMART_STR(buf); smart_str_free(&buf); zval_ptr_dtor(&retval); } /* }}} */ /* {{{ proto void MongoDB\BSON\DBPointer::unserialize(string $serialized) */ static PHP_METHOD(DBPointer, unserialize) { zend_error_handling error_handling; php_phongo_dbpointer_t* intern; char* serialized; size_t serialized_len; zval props; php_unserialize_data_t var_hash; intern = Z_DBPOINTER_OBJ_P(getThis()); zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &serialized, &serialized_len) == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); PHP_VAR_UNSERIALIZE_INIT(var_hash); if (!php_var_unserialize(&props, (const unsigned char**) &serialized, (unsigned char*) serialized + serialized_len, &var_hash)) { zval_ptr_dtor(&props); phongo_throw_exception(PHONGO_ERROR_UNEXPECTED_VALUE, "%s unserialization failed", ZSTR_VAL(php_phongo_dbpointer_ce->name)); PHP_VAR_UNSERIALIZE_DESTROY(var_hash); return; } PHP_VAR_UNSERIALIZE_DESTROY(var_hash); php_phongo_dbpointer_init_from_hash(intern, HASH_OF(&props)); zval_ptr_dtor(&props); } /* }}} */ /* {{{ proto array MongoDB\Driver\DBPointer::__serialize() */ static PHP_METHOD(DBPointer, __serialize) { PHONGO_PARSE_PARAMETERS_NONE(); RETURN_ARR(php_phongo_dbpointer_get_properties_hash(PHONGO_COMPAT_OBJ_P(getThis()), true)); } /* }}} */ /* {{{ proto void MongoDB\Driver\DBPointer::__unserialize(array $data) */ static PHP_METHOD(DBPointer, __unserialize) { zval* data; PHONGO_PARSE_PARAMETERS_START(1, 1) Z_PARAM_ARRAY(data) PHONGO_PARSE_PARAMETERS_END(); php_phongo_dbpointer_init_from_hash(Z_DBPOINTER_OBJ_P(getThis()), Z_ARRVAL_P(data)); } /* }}} */ /* {{{ MongoDB\BSON\DBPointer function entries */ /* clang-format off */ ZEND_BEGIN_ARG_INFO_EX(ai_DBPointer___unserialize, 0, 0, 1) ZEND_ARG_ARRAY_INFO(0, data, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_INFO_EX(ai_DBPointer_jsonSerialize, 0, 0, IS_ARRAY, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(ai_DBPointer_unserialize, 0, 0, 1) ZEND_ARG_INFO(0, serialized) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(ai_DBPointer_void, 0, 0, 0) ZEND_END_ARG_INFO() static zend_function_entry php_phongo_dbpointer_me[] = { /* __set_state intentionally missing */ PHP_ME(DBPointer, __serialize, ai_DBPointer_void, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(DBPointer, __toString, ai_DBPointer_void, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(DBPointer, __unserialize, ai_DBPointer___unserialize, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(DBPointer, jsonSerialize, ai_DBPointer_jsonSerialize, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(DBPointer, serialize, ai_DBPointer_void, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(DBPointer, unserialize, ai_DBPointer_unserialize, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) ZEND_NAMED_ME(__construct, PHP_FN(MongoDB_disabled___construct), ai_DBPointer_void, ZEND_ACC_PRIVATE | ZEND_ACC_FINAL) PHP_FE_END }; /* clang-format on */ /* }}} */ /* {{{ MongoDB\BSON\DBPointer object handlers */ static zend_object_handlers php_phongo_handler_dbpointer; static void php_phongo_dbpointer_free_object(zend_object* object) /* {{{ */ { php_phongo_dbpointer_t* intern = Z_OBJ_DBPOINTER(object); zend_object_std_dtor(&intern->std); if (intern->ref) { efree(intern->ref); } if (intern->properties) { zend_hash_destroy(intern->properties); FREE_HASHTABLE(intern->properties); } } /* }}} */ zend_object* php_phongo_dbpointer_create_object(zend_class_entry* class_type) /* {{{ */ { php_phongo_dbpointer_t* intern = NULL; intern = PHONGO_ALLOC_OBJECT_T(php_phongo_dbpointer_t, class_type); zend_object_std_init(&intern->std, class_type); object_properties_init(&intern->std, class_type); intern->std.handlers = &php_phongo_handler_dbpointer; return &intern->std; } /* }}} */ static zend_object* php_phongo_dbpointer_clone_object(phongo_compat_object_handler_type* object) /* {{{ */ { php_phongo_dbpointer_t* intern; php_phongo_dbpointer_t* new_intern; zend_object* new_object; intern = Z_OBJ_DBPOINTER(PHONGO_COMPAT_GET_OBJ(object)); new_object = php_phongo_dbpointer_create_object(PHONGO_COMPAT_GET_OBJ(object)->ce); new_intern = Z_OBJ_DBPOINTER(new_object); zend_objects_clone_members(&new_intern->std, &intern->std); php_phongo_dbpointer_init(new_intern, intern->ref, intern->ref_len, intern->id, 24); return new_object; } /* }}} */ static int php_phongo_dbpointer_compare_objects(zval* o1, zval* o2) /* {{{ */ { php_phongo_dbpointer_t *intern1, *intern2; int retval; ZEND_COMPARE_OBJECTS_FALLBACK(o1, o2); intern1 = Z_DBPOINTER_OBJ_P(o1); intern2 = Z_DBPOINTER_OBJ_P(o2); retval = strcmp(intern1->ref, intern2->ref); if (retval != 0) { return retval; } return strcmp(intern1->id, intern2->id); } /* }}} */ static HashTable* php_phongo_dbpointer_get_debug_info(phongo_compat_object_handler_type* object, int* is_temp) /* {{{ */ { *is_temp = 1; return php_phongo_dbpointer_get_properties_hash(object, true); } /* }}} */ static HashTable* php_phongo_dbpointer_get_properties(phongo_compat_object_handler_type* object) /* {{{ */ { return php_phongo_dbpointer_get_properties_hash(object, false); } /* }}} */ /* }}} */ void php_phongo_dbpointer_init_ce(INIT_FUNC_ARGS) /* {{{ */ { zend_class_entry ce; INIT_NS_CLASS_ENTRY(ce, "MongoDB\\BSON", "DBPointer", php_phongo_dbpointer_me); php_phongo_dbpointer_ce = zend_register_internal_class(&ce); php_phongo_dbpointer_ce->create_object = php_phongo_dbpointer_create_object; PHONGO_CE_FINAL(php_phongo_dbpointer_ce); zend_class_implements(php_phongo_dbpointer_ce, 1, php_phongo_json_serializable_ce); zend_class_implements(php_phongo_dbpointer_ce, 1, php_phongo_type_ce); zend_class_implements(php_phongo_dbpointer_ce, 1, zend_ce_serializable); memcpy(&php_phongo_handler_dbpointer, phongo_get_std_object_handlers(), sizeof(zend_object_handlers)); PHONGO_COMPAT_SET_COMPARE_OBJECTS_HANDLER(dbpointer); php_phongo_handler_dbpointer.clone_obj = php_phongo_dbpointer_clone_object; php_phongo_handler_dbpointer.get_debug_info = php_phongo_dbpointer_get_debug_info; php_phongo_handler_dbpointer.get_properties = php_phongo_dbpointer_get_properties; php_phongo_handler_dbpointer.free_obj = php_phongo_dbpointer_free_object; php_phongo_handler_dbpointer.offset = XtOffsetOf(php_phongo_dbpointer_t, std); } /* }}} */ /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * End: * vim600: noet sw=4 ts=4 fdm=marker * vim<600: noet sw=4 ts=4 */