2003-03-23 12:32:24 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2019-01-30 17:23:29 +08:00
|
|
|
| Copyright (c) Zend Technologies Ltd. (http://www.zend.com) |
|
2003-03-23 12:32:24 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
2003-03-23 14:57:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2003-03-23 12:32:24 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
2018-11-01 23:20:07 +08:00
|
|
|
| Authors: Andi Gutmans <andi@php.net> |
|
2003-08-24 03:48:52 +08:00
|
|
|
| Marcus Boerger <helly@php.net> |
|
2004-02-12 18:38:14 +08:00
|
|
|
| Sterling Hughes <sterling@php.net> |
|
2018-11-01 23:20:07 +08:00
|
|
|
| Zeev Suraski <zeev@php.net> |
|
2003-03-23 12:32:24 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_API.h"
|
2003-08-29 04:35:54 +08:00
|
|
|
#include "zend_builtin_functions.h"
|
2003-10-23 04:04:48 +08:00
|
|
|
#include "zend_interfaces.h"
|
2004-07-16 06:21:36 +08:00
|
|
|
#include "zend_exceptions.h"
|
2008-01-22 03:39:55 +08:00
|
|
|
#include "zend_vm.h"
|
2010-04-24 21:32:30 +08:00
|
|
|
#include "zend_dtrace.h"
|
2014-09-21 06:21:41 +08:00
|
|
|
#include "zend_smart_str.h"
|
2019-10-15 20:30:23 +08:00
|
|
|
#include "zend_exceptions_arginfo.h"
|
2020-09-14 20:05:54 +08:00
|
|
|
#include "zend_observer.h"
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2015-06-16 07:07:27 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_throwable;
|
2015-07-03 22:45:03 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_exception;
|
|
|
|
ZEND_API zend_class_entry *zend_ce_error_exception;
|
|
|
|
ZEND_API zend_class_entry *zend_ce_error;
|
2017-09-24 21:24:51 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_compile_error;
|
2015-07-03 22:45:03 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_parse_error;
|
|
|
|
ZEND_API zend_class_entry *zend_ce_type_error;
|
2016-08-31 03:09:26 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_argument_count_error;
|
2019-09-05 04:39:02 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_value_error;
|
2015-07-03 02:47:44 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_arithmetic_error;
|
2015-07-02 07:54:08 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_division_by_zero_error;
|
2020-04-10 04:36:37 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_unhandled_match_error;
|
2015-06-16 07:07:27 +08:00
|
|
|
|
2021-04-27 00:07:06 +08:00
|
|
|
/* Internal pseudo-exception that is not exposed to userland. Throwing this exception *does not* execute finally blocks. */
|
2020-03-06 21:57:55 +08:00
|
|
|
static zend_class_entry zend_ce_unwind_exit;
|
|
|
|
|
2021-04-27 00:07:06 +08:00
|
|
|
/* Internal pseudo-exception that is not exposed to userland. Throwing this exception *does* execute finally blocks. */
|
|
|
|
static zend_class_entry zend_ce_graceful_exit;
|
|
|
|
|
2020-08-06 00:45:07 +08:00
|
|
|
ZEND_API void (*zend_throw_exception_hook)(zend_object *ex);
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2015-07-03 09:57:53 +08:00
|
|
|
static zend_object_handlers default_exception_handlers;
|
|
|
|
|
2015-06-16 07:07:27 +08:00
|
|
|
/* {{{ zend_implement_throwable */
|
|
|
|
static int zend_implement_throwable(zend_class_entry *interface, zend_class_entry *class_type)
|
|
|
|
{
|
2021-03-31 11:49:41 +08:00
|
|
|
/* zend_ce_exception and zend_ce_error may not be initialized yet when this is called (e.g when
|
2021-01-26 18:50:36 +08:00
|
|
|
* implementing Throwable for Exception itself). Perform a manual inheritance check. */
|
|
|
|
zend_class_entry *root = class_type;
|
|
|
|
while (root->parent) {
|
|
|
|
root = root->parent;
|
|
|
|
}
|
|
|
|
if (zend_string_equals_literal(root->name, "Exception")
|
|
|
|
|| zend_string_equals_literal(root->name, "Error")) {
|
2015-06-16 07:07:27 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
2021-01-26 18:50:36 +08:00
|
|
|
|
|
|
|
zend_error_noreturn(E_ERROR,
|
|
|
|
"Class %s cannot implement interface %s, extend Exception or Error instead",
|
2015-06-30 18:59:27 +08:00
|
|
|
ZSTR_VAL(class_type->name),
|
2021-01-26 18:50:36 +08:00
|
|
|
ZSTR_VAL(interface->name));
|
2015-06-16 07:07:27 +08:00
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-08-07 21:15:50 +08:00
|
|
|
static inline zend_class_entry *i_get_exception_base(zend_object *object) /* {{{ */
|
2015-05-18 06:31:06 +08:00
|
|
|
{
|
2020-08-07 21:15:50 +08:00
|
|
|
return instanceof_function(object->ce, zend_ce_exception) ? zend_ce_exception : zend_ce_error;
|
2015-05-18 06:31:06 +08:00
|
|
|
}
|
2015-11-21 23:14:12 +08:00
|
|
|
/* }}} */
|
2015-05-18 06:31:06 +08:00
|
|
|
|
2020-08-07 21:15:50 +08:00
|
|
|
ZEND_API zend_class_entry *zend_get_exception_base(zend_object *object) /* {{{ */
|
2015-06-29 07:41:04 +08:00
|
|
|
{
|
|
|
|
return i_get_exception_base(object);
|
|
|
|
}
|
2015-11-21 23:14:12 +08:00
|
|
|
/* }}} */
|
2015-06-29 07:41:04 +08:00
|
|
|
|
2015-11-21 23:14:12 +08:00
|
|
|
void zend_exception_set_previous(zend_object *exception, zend_object *add_previous) /* {{{ */
|
2008-07-14 05:42:49 +08:00
|
|
|
{
|
2021-06-29 16:04:10 +08:00
|
|
|
zval *previous, *ancestor, *ex;
|
2015-11-21 21:16:11 +08:00
|
|
|
zval pv, zv, rv;
|
2015-05-18 06:31:06 +08:00
|
|
|
zend_class_entry *base_ce;
|
2008-07-14 05:42:49 +08:00
|
|
|
|
2020-06-30 18:22:41 +08:00
|
|
|
if (!exception || !add_previous) {
|
2008-07-14 05:42:49 +08:00
|
|
|
return;
|
|
|
|
}
|
2020-03-06 21:57:55 +08:00
|
|
|
|
2021-04-27 00:07:06 +08:00
|
|
|
if (exception == add_previous || zend_is_unwind_exit(add_previous) || zend_is_graceful_exit(add_previous)) {
|
2020-03-06 21:57:55 +08:00
|
|
|
OBJ_RELEASE(add_previous);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-09-21 17:05:19 +08:00
|
|
|
ZEND_ASSERT(instanceof_function(add_previous->ce, zend_ce_throwable)
|
2021-02-18 06:50:00 +08:00
|
|
|
&& "Previous exception must implement Throwable");
|
2020-09-21 17:05:19 +08:00
|
|
|
|
2015-11-21 21:16:11 +08:00
|
|
|
ZVAL_OBJ(&pv, add_previous);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZVAL_OBJ(&zv, exception);
|
2015-11-21 21:16:11 +08:00
|
|
|
ex = &zv;
|
2014-02-10 14:04:30 +08:00
|
|
|
do {
|
2020-08-07 21:15:50 +08:00
|
|
|
ancestor = zend_read_property_ex(i_get_exception_base(add_previous), add_previous, ZSTR_KNOWN(ZEND_STR_PREVIOUS), 1, &rv);
|
2015-11-21 21:16:11 +08:00
|
|
|
while (Z_TYPE_P(ancestor) == IS_OBJECT) {
|
|
|
|
if (Z_OBJ_P(ancestor) == Z_OBJ_P(ex)) {
|
|
|
|
OBJ_RELEASE(add_previous);
|
|
|
|
return;
|
|
|
|
}
|
2020-08-07 21:15:50 +08:00
|
|
|
ancestor = zend_read_property_ex(i_get_exception_base(Z_OBJ_P(ancestor)), Z_OBJ_P(ancestor), ZSTR_KNOWN(ZEND_STR_PREVIOUS), 1, &rv);
|
2015-11-21 21:16:11 +08:00
|
|
|
}
|
2020-08-07 21:15:50 +08:00
|
|
|
base_ce = i_get_exception_base(Z_OBJ_P(ex));
|
2020-08-07 21:05:24 +08:00
|
|
|
previous = zend_read_property_ex(base_ce, Z_OBJ_P(ex), ZSTR_KNOWN(ZEND_STR_PREVIOUS), 1, &rv);
|
2008-07-14 05:42:49 +08:00
|
|
|
if (Z_TYPE_P(previous) == IS_NULL) {
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(base_ce, Z_OBJ_P(ex), ZSTR_KNOWN(ZEND_STR_PREVIOUS), &pv);
|
2017-10-27 06:28:58 +08:00
|
|
|
GC_DELREF(add_previous);
|
2008-07-14 05:42:49 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-11-21 21:16:11 +08:00
|
|
|
ex = previous;
|
|
|
|
} while (Z_OBJ_P(ex) != add_previous);
|
2008-07-14 05:42:49 +08:00
|
|
|
}
|
2015-11-21 23:14:12 +08:00
|
|
|
/* }}} */
|
2008-07-14 05:42:49 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
void zend_exception_save(void) /* {{{ */
|
2008-08-14 18:24:52 +08:00
|
|
|
{
|
|
|
|
if (EG(prev_exception)) {
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_exception_set_previous(EG(exception), EG(prev_exception));
|
2008-08-14 18:24:52 +08:00
|
|
|
}
|
|
|
|
if (EG(exception)) {
|
|
|
|
EG(prev_exception) = EG(exception);
|
|
|
|
}
|
|
|
|
EG(exception) = NULL;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
void zend_exception_restore(void) /* {{{ */
|
2008-08-14 18:24:52 +08:00
|
|
|
{
|
|
|
|
if (EG(prev_exception)) {
|
|
|
|
if (EG(exception)) {
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_exception_set_previous(EG(exception), EG(prev_exception));
|
2008-08-14 18:24:52 +08:00
|
|
|
} else {
|
|
|
|
EG(exception) = EG(prev_exception);
|
|
|
|
}
|
|
|
|
EG(prev_exception) = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2021-01-15 19:30:54 +08:00
|
|
|
static zend_always_inline bool is_handle_exception_set() {
|
2020-10-13 17:38:30 +08:00
|
|
|
zend_execute_data *execute_data = EG(current_execute_data);
|
|
|
|
return !execute_data->func
|
|
|
|
|| !ZEND_USER_CODE(execute_data->func->common.type)
|
|
|
|
|| execute_data->opline->opcode == ZEND_HANDLE_EXCEPTION;
|
|
|
|
}
|
|
|
|
|
2020-08-06 00:45:07 +08:00
|
|
|
ZEND_API ZEND_COLD void zend_throw_exception_internal(zend_object *exception) /* {{{ */
|
2004-02-12 18:38:14 +08:00
|
|
|
{
|
2010-04-24 21:32:30 +08:00
|
|
|
#ifdef HAVE_DTRACE
|
|
|
|
if (DTRACE_EXCEPTION_THROWN_ENABLED()) {
|
2010-11-18 05:41:30 +08:00
|
|
|
if (exception != NULL) {
|
2020-08-06 00:45:07 +08:00
|
|
|
DTRACE_EXCEPTION_THROWN(ZSTR_VAL(exception->ce->name));
|
2010-11-18 05:41:30 +08:00
|
|
|
} else {
|
|
|
|
DTRACE_EXCEPTION_THROWN(NULL);
|
|
|
|
}
|
2010-04-24 21:32:30 +08:00
|
|
|
}
|
2010-04-26 03:17:16 +08:00
|
|
|
#endif /* HAVE_DTRACE */
|
2010-04-24 21:32:30 +08:00
|
|
|
|
2004-02-12 18:38:14 +08:00
|
|
|
if (exception != NULL) {
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_object *previous = EG(exception);
|
2020-08-06 00:45:07 +08:00
|
|
|
zend_exception_set_previous(exception, EG(exception));
|
|
|
|
EG(exception) = exception;
|
2008-08-14 18:24:52 +08:00
|
|
|
if (previous) {
|
2020-10-13 17:38:30 +08:00
|
|
|
ZEND_ASSERT(is_handle_exception_set() && "HANDLE_EXCEPTION not set?");
|
2008-08-14 18:24:52 +08:00
|
|
|
return;
|
|
|
|
}
|
2004-02-12 18:38:14 +08:00
|
|
|
}
|
|
|
|
if (!EG(current_execute_data)) {
|
2020-08-06 00:45:07 +08:00
|
|
|
if (exception && (exception->ce == zend_ce_parse_error || exception->ce == zend_ce_compile_error)) {
|
2015-03-09 20:57:15 +08:00
|
|
|
return;
|
|
|
|
}
|
2019-10-10 20:14:36 +08:00
|
|
|
if (EG(exception)) {
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_exception_error(EG(exception), E_ERROR);
|
2019-10-10 20:14:36 +08:00
|
|
|
zend_bailout();
|
2011-01-17 05:24:43 +08:00
|
|
|
}
|
2015-04-02 19:19:52 +08:00
|
|
|
zend_error_noreturn(E_CORE_ERROR, "Exception thrown without a stack frame");
|
2004-02-12 18:38:14 +08:00
|
|
|
}
|
|
|
|
|
2004-04-13 23:19:21 +08:00
|
|
|
if (zend_throw_exception_hook) {
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_throw_exception_hook(exception);
|
2004-04-13 23:19:21 +08:00
|
|
|
}
|
|
|
|
|
2020-10-13 17:38:30 +08:00
|
|
|
if (is_handle_exception_set()) {
|
2004-02-12 18:38:14 +08:00
|
|
|
/* no need to rethrow the exception */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
EG(opline_before_exception) = EG(current_execute_data)->opline;
|
2008-01-22 03:39:55 +08:00
|
|
|
EG(current_execute_data)->opline = EG(exception_op);
|
2004-02-12 18:38:14 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-02-12 18:38:14 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
ZEND_API void zend_clear_exception(void) /* {{{ */
|
2004-02-12 18:38:14 +08:00
|
|
|
{
|
2020-04-29 18:58:28 +08:00
|
|
|
zend_object *exception;
|
2008-08-14 18:24:52 +08:00
|
|
|
if (EG(prev_exception)) {
|
2014-02-14 21:48:45 +08:00
|
|
|
OBJ_RELEASE(EG(prev_exception));
|
2008-08-14 18:24:52 +08:00
|
|
|
EG(prev_exception) = NULL;
|
|
|
|
}
|
2004-02-12 18:38:14 +08:00
|
|
|
if (!EG(exception)) {
|
|
|
|
return;
|
|
|
|
}
|
2020-04-29 18:58:28 +08:00
|
|
|
/* exception may have destructor */
|
|
|
|
exception = EG(exception);
|
2004-02-12 18:38:14 +08:00
|
|
|
EG(exception) = NULL;
|
2020-04-29 18:58:28 +08:00
|
|
|
OBJ_RELEASE(exception);
|
2016-12-07 20:10:59 +08:00
|
|
|
if (EG(current_execute_data)) {
|
|
|
|
EG(current_execute_data)->opline = EG(opline_before_exception);
|
|
|
|
}
|
2004-02-12 18:38:14 +08:00
|
|
|
#if ZEND_DEBUG
|
|
|
|
EG(opline_before_exception) = NULL;
|
|
|
|
#endif
|
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-02-12 18:38:14 +08:00
|
|
|
|
2020-08-28 21:41:27 +08:00
|
|
|
static zend_object *zend_default_exception_new_ex(zend_class_entry *class_type, bool skip_top_traces) /* {{{ */
|
2003-08-24 03:41:22 +08:00
|
|
|
{
|
2020-08-07 21:27:57 +08:00
|
|
|
zval tmp;
|
2014-02-10 14:04:30 +08:00
|
|
|
zval trace;
|
2015-05-18 06:31:06 +08:00
|
|
|
zend_class_entry *base_ce;
|
2015-05-18 11:09:09 +08:00
|
|
|
zend_string *filename;
|
2003-08-24 03:41:22 +08:00
|
|
|
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_object *object = zend_objects_new(class_type);
|
|
|
|
object->handlers = &default_exception_handlers;
|
2003-08-24 03:41:22 +08:00
|
|
|
|
2010-05-24 22:11:39 +08:00
|
|
|
object_properties_init(object, class_type);
|
2003-08-24 03:41:22 +08:00
|
|
|
|
2015-03-09 20:57:15 +08:00
|
|
|
if (EG(current_execute_data)) {
|
2019-06-18 02:51:52 +08:00
|
|
|
zend_fetch_debug_backtrace(&trace,
|
|
|
|
skip_top_traces,
|
|
|
|
EG(exception_ignore_args) ? DEBUG_BACKTRACE_IGNORE_ARGS : 0, 0);
|
2015-03-09 20:57:15 +08:00
|
|
|
} else {
|
|
|
|
array_init(&trace);
|
|
|
|
}
|
2014-02-21 20:14:42 +08:00
|
|
|
Z_SET_REFCOUNT(trace, 0);
|
2015-08-05 07:14:24 +08:00
|
|
|
|
2020-08-07 21:15:50 +08:00
|
|
|
base_ce = i_get_exception_base(object);
|
2003-08-29 04:35:54 +08:00
|
|
|
|
2017-09-24 21:24:51 +08:00
|
|
|
if (EXPECTED((class_type != zend_ce_parse_error && class_type != zend_ce_compile_error)
|
|
|
|
|| !(filename = zend_get_compiled_filename()))) {
|
2017-11-02 12:12:40 +08:00
|
|
|
ZVAL_STRING(&tmp, zend_get_executed_filename());
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(base_ce, object, ZSTR_KNOWN(ZEND_STR_FILE), &tmp);
|
2017-11-02 12:12:40 +08:00
|
|
|
zval_ptr_dtor(&tmp);
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, zend_get_executed_lineno());
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(base_ce, object, ZSTR_KNOWN(ZEND_STR_LINE), &tmp);
|
2015-03-09 20:57:15 +08:00
|
|
|
} else {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_STR(&tmp, filename);
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(base_ce, object, ZSTR_KNOWN(ZEND_STR_FILE), &tmp);
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, zend_get_compiled_lineno());
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(base_ce, object, ZSTR_KNOWN(ZEND_STR_LINE), &tmp);
|
2015-03-09 20:57:15 +08:00
|
|
|
}
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(base_ce, object, ZSTR_KNOWN(ZEND_STR_TRACE), &trace);
|
2003-08-24 03:41:22 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
return object;
|
2003-08-24 03:41:22 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-08-24 03:41:22 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static zend_object *zend_default_exception_new(zend_class_entry *class_type) /* {{{ */
|
2004-07-16 06:21:36 +08:00
|
|
|
{
|
2014-12-14 06:06:14 +08:00
|
|
|
return zend_default_exception_new_ex(class_type, 0);
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static zend_object *zend_error_exception_new(zend_class_entry *class_type) /* {{{ */
|
2004-07-16 06:21:36 +08:00
|
|
|
{
|
2021-04-15 20:30:10 +08:00
|
|
|
return zend_default_exception_new_ex(class_type, 0);
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-07-20 17:24:22 +08:00
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Clone the exception object */
|
2020-04-26 05:10:07 +08:00
|
|
|
ZEND_COLD ZEND_METHOD(Exception, __clone)
|
2019-01-14 16:17:28 +08:00
|
|
|
{
|
|
|
|
/* Should never be executable */
|
|
|
|
zend_throw_exception(NULL, "Cannot clone object using __clone()", 0);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Exception constructor */
|
2020-04-26 05:10:07 +08:00
|
|
|
ZEND_METHOD(Exception, __construct)
|
2003-03-23 12:32:24 +08:00
|
|
|
{
|
2014-02-21 20:14:42 +08:00
|
|
|
zend_string *message = NULL;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long code = 0;
|
2016-05-12 18:47:22 +08:00
|
|
|
zval tmp, *object, *previous = NULL;
|
2015-05-18 06:31:06 +08:00
|
|
|
zend_class_entry *base_ce;
|
2003-03-23 14:57:16 +08:00
|
|
|
|
2018-11-16 00:54:19 +08:00
|
|
|
object = ZEND_THIS;
|
2020-08-07 21:15:50 +08:00
|
|
|
base_ce = i_get_exception_base(Z_OBJ_P(object));
|
2015-06-18 08:48:17 +08:00
|
|
|
|
2020-04-26 06:15:52 +08:00
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|SlO!", &message, &code, &previous, zend_ce_throwable) == FAILURE) {
|
2020-01-01 23:42:30 +08:00
|
|
|
RETURN_THROWS();
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
|
|
|
|
2003-08-24 03:41:22 +08:00
|
|
|
if (message) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_STR(&tmp, message);
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(base_ce, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_MESSAGE), &tmp);
|
2003-08-24 03:41:22 +08:00
|
|
|
}
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2003-08-24 03:41:22 +08:00
|
|
|
if (code) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, code);
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(base_ce, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_CODE), &tmp);
|
2003-08-24 03:41:22 +08:00
|
|
|
}
|
2008-07-12 22:57:14 +08:00
|
|
|
|
|
|
|
if (previous) {
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(base_ce, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_PREVIOUS), previous);
|
2008-07-12 22:57:14 +08:00
|
|
|
}
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Exception unserialize checks */
|
2016-05-12 18:47:22 +08:00
|
|
|
#define CHECK_EXC_TYPE(id, type) \
|
2020-08-07 21:15:50 +08:00
|
|
|
pvalue = zend_read_property_ex(i_get_exception_base(Z_OBJ_P(object)), Z_OBJ_P(object), ZSTR_KNOWN(id), 1, &value); \
|
2016-07-12 11:51:20 +08:00
|
|
|
if (Z_TYPE_P(pvalue) != IS_NULL && Z_TYPE_P(pvalue) != type) { \
|
2020-08-07 21:17:59 +08:00
|
|
|
zend_unset_property(i_get_exception_base(Z_OBJ_P(object)), Z_OBJ_P(object), ZSTR_VAL(ZSTR_KNOWN(id)), ZSTR_LEN(ZSTR_KNOWN(id))); \
|
2015-07-27 16:38:27 +08:00
|
|
|
}
|
|
|
|
|
2020-04-26 05:10:07 +08:00
|
|
|
ZEND_METHOD(Exception, __wakeup)
|
2015-07-27 16:38:27 +08:00
|
|
|
{
|
2020-07-17 22:04:55 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
|
|
|
|
2015-08-05 14:41:00 +08:00
|
|
|
zval value, *pvalue;
|
2018-11-16 00:54:19 +08:00
|
|
|
zval *object = ZEND_THIS;
|
2021-04-30 03:23:58 +08:00
|
|
|
CHECK_EXC_TYPE(ZEND_STR_MESSAGE, IS_STRING);
|
|
|
|
CHECK_EXC_TYPE(ZEND_STR_CODE, IS_LONG);
|
|
|
|
/* The type of all other properties is enforced through typed properties. */
|
2015-07-27 16:38:27 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ ErrorException constructor */
|
2020-04-26 05:10:07 +08:00
|
|
|
ZEND_METHOD(ErrorException, __construct)
|
2004-07-16 06:21:36 +08:00
|
|
|
{
|
2018-03-07 02:20:19 +08:00
|
|
|
zend_string *message = NULL, *filename = NULL;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long code = 0, severity = E_ERROR, lineno;
|
2021-01-15 19:30:54 +08:00
|
|
|
bool lineno_is_null = 1;
|
2016-05-12 18:47:22 +08:00
|
|
|
zval tmp, *object, *previous = NULL;
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2020-09-19 20:13:42 +08:00
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|SllS!l!O!", &message, &code, &severity, &filename, &lineno, &lineno_is_null, &previous, zend_ce_throwable) == FAILURE) {
|
2020-01-01 23:42:30 +08:00
|
|
|
RETURN_THROWS();
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
|
|
|
|
2018-11-16 00:54:19 +08:00
|
|
|
object = ZEND_THIS;
|
2004-07-16 06:21:36 +08:00
|
|
|
|
|
|
|
if (message) {
|
2018-03-07 02:20:19 +08:00
|
|
|
ZVAL_STR_COPY(&tmp, message);
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_MESSAGE), &tmp);
|
2016-05-12 18:47:22 +08:00
|
|
|
zval_ptr_dtor(&tmp);
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (code) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, code);
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_CODE), &tmp);
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
|
|
|
|
2008-07-12 22:57:14 +08:00
|
|
|
if (previous) {
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_PREVIOUS), previous);
|
2008-07-12 22:57:14 +08:00
|
|
|
}
|
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, severity);
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_SEVERITY), &tmp);
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2020-09-19 20:13:42 +08:00
|
|
|
if (filename) {
|
2018-03-07 02:20:19 +08:00
|
|
|
ZVAL_STR_COPY(&tmp, filename);
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_FILE), &tmp);
|
2016-05-12 18:47:22 +08:00
|
|
|
zval_ptr_dtor(&tmp);
|
2020-09-19 20:13:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!lineno_is_null) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, lineno);
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_LINE), &tmp);
|
2020-09-19 20:13:42 +08:00
|
|
|
} else if (filename) {
|
|
|
|
ZVAL_LONG(&tmp, 0);
|
|
|
|
zend_update_property_ex(zend_ce_exception, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_LINE), &tmp);
|
2004-07-25 15:05:48 +08:00
|
|
|
}
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
#define GET_PROPERTY(object, id) \
|
2020-08-07 21:15:50 +08:00
|
|
|
zend_read_property_ex(i_get_exception_base(Z_OBJ_P(object)), Z_OBJ_P(object), ZSTR_KNOWN(id), 0, &rv)
|
2016-05-12 18:47:22 +08:00
|
|
|
#define GET_PROPERTY_SILENT(object, id) \
|
2020-08-07 21:15:50 +08:00
|
|
|
zend_read_property_ex(i_get_exception_base(Z_OBJ_P(object)), Z_OBJ_P(object), ZSTR_KNOWN(id), 1, &rv)
|
2004-07-20 17:24:22 +08:00
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Get the file in which the exception occurred */
|
2020-04-26 05:10:07 +08:00
|
|
|
ZEND_METHOD(Exception, getFile)
|
2003-03-23 12:32:24 +08:00
|
|
|
{
|
2019-02-25 20:00:16 +08:00
|
|
|
zval *prop, rv;
|
2015-01-22 16:50:42 +08:00
|
|
|
|
2020-01-03 19:11:45 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2019-02-25 20:02:58 +08:00
|
|
|
prop = GET_PROPERTY(ZEND_THIS, ZEND_STR_FILE);
|
2020-05-28 20:19:47 +08:00
|
|
|
RETURN_STR(zval_get_string(prop));
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Get the line in which the exception occurred */
|
2020-04-26 05:10:07 +08:00
|
|
|
ZEND_METHOD(Exception, getLine)
|
2003-03-23 12:32:24 +08:00
|
|
|
{
|
2019-02-25 20:00:16 +08:00
|
|
|
zval *prop, rv;
|
2015-01-22 16:50:42 +08:00
|
|
|
|
2020-01-03 19:11:45 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2019-02-25 20:02:58 +08:00
|
|
|
prop = GET_PROPERTY(ZEND_THIS, ZEND_STR_LINE);
|
2020-05-28 20:19:47 +08:00
|
|
|
RETURN_LONG(zval_get_long(prop));
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Get the exception message */
|
2020-04-26 05:10:07 +08:00
|
|
|
ZEND_METHOD(Exception, getMessage)
|
2003-03-23 12:32:24 +08:00
|
|
|
{
|
2019-02-25 20:00:16 +08:00
|
|
|
zval *prop, rv;
|
2015-01-22 16:50:42 +08:00
|
|
|
|
2020-01-03 19:11:45 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2019-02-25 20:02:58 +08:00
|
|
|
prop = GET_PROPERTY(ZEND_THIS, ZEND_STR_MESSAGE);
|
2020-05-25 18:10:41 +08:00
|
|
|
RETURN_STR(zval_get_string(prop));
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Get the exception code */
|
2020-04-26 05:10:07 +08:00
|
|
|
ZEND_METHOD(Exception, getCode)
|
2003-03-23 12:32:24 +08:00
|
|
|
{
|
2019-02-25 20:00:16 +08:00
|
|
|
zval *prop, rv;
|
2015-01-22 16:50:42 +08:00
|
|
|
|
2020-01-03 19:11:45 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2019-02-25 20:02:58 +08:00
|
|
|
prop = GET_PROPERTY(ZEND_THIS, ZEND_STR_CODE);
|
2019-02-25 20:00:16 +08:00
|
|
|
ZVAL_DEREF(prop);
|
|
|
|
ZVAL_COPY(return_value, prop);
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Get the stack trace for the location in which the exception occurred */
|
2020-04-26 05:10:07 +08:00
|
|
|
ZEND_METHOD(Exception, getTrace)
|
2003-08-29 07:43:56 +08:00
|
|
|
{
|
2019-02-25 20:00:16 +08:00
|
|
|
zval *prop, rv;
|
2015-01-22 16:50:42 +08:00
|
|
|
|
2020-01-03 19:11:45 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
2003-08-29 07:43:56 +08:00
|
|
|
|
2019-02-25 20:02:58 +08:00
|
|
|
prop = GET_PROPERTY(ZEND_THIS, ZEND_STR_TRACE);
|
2019-02-25 20:00:16 +08:00
|
|
|
ZVAL_DEREF(prop);
|
|
|
|
ZVAL_COPY(return_value, prop);
|
2003-08-29 07:43:56 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
2003-08-29 07:43:56 +08:00
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Get the exception severity */
|
2020-04-26 05:10:07 +08:00
|
|
|
ZEND_METHOD(ErrorException, getSeverity)
|
2004-07-16 06:21:36 +08:00
|
|
|
{
|
2019-02-25 20:00:16 +08:00
|
|
|
zval *prop, rv;
|
2015-01-22 16:50:42 +08:00
|
|
|
|
2020-01-03 19:11:45 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2019-02-25 20:02:58 +08:00
|
|
|
prop = GET_PROPERTY(ZEND_THIS, ZEND_STR_SEVERITY);
|
2019-02-25 20:00:16 +08:00
|
|
|
ZVAL_DEREF(prop);
|
|
|
|
ZVAL_COPY(return_value, prop);
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define TRACE_APPEND_KEY(key) do { \
|
2016-05-12 18:47:22 +08:00
|
|
|
tmp = zend_hash_find(ht, key); \
|
2014-02-19 12:13:43 +08:00
|
|
|
if (tmp) { \
|
|
|
|
if (Z_TYPE_P(tmp) != IS_STRING) { \
|
2020-05-24 02:43:03 +08:00
|
|
|
zend_error(E_WARNING, "Value for %s is not a string", \
|
2016-05-12 18:47:22 +08:00
|
|
|
ZSTR_VAL(key)); \
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "[unknown]"); \
|
2014-02-10 14:04:30 +08:00
|
|
|
} else { \
|
2016-05-12 18:47:22 +08:00
|
|
|
smart_str_appends(str, Z_STRVAL_P(tmp)); \
|
2014-02-10 14:04:30 +08:00
|
|
|
} \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static void _build_trace_args(zval *arg, smart_str *str) /* {{{ */
|
2003-08-31 02:28:24 +08:00
|
|
|
{
|
2014-10-07 02:14:30 +08:00
|
|
|
/* the trivial way would be to do
|
2021-01-14 19:06:07 +08:00
|
|
|
* convert_to_string(arg);
|
2003-08-31 02:28:24 +08:00
|
|
|
* append it and kill the now tmp arg.
|
|
|
|
* but that could cause some E_NOTICE and also damn long lines.
|
|
|
|
*/
|
|
|
|
|
2014-03-27 17:39:09 +08:00
|
|
|
ZVAL_DEREF(arg);
|
2021-07-30 06:19:47 +08:00
|
|
|
|
|
|
|
if (Z_TYPE_P(arg) <= IS_STRING) {
|
|
|
|
smart_str_append_scalar(str, arg, EG(exception_string_param_max_len));
|
|
|
|
smart_str_appends(str, ", ");
|
|
|
|
} else {
|
|
|
|
switch (Z_TYPE_P(arg)) {
|
|
|
|
case IS_RESOURCE:
|
|
|
|
smart_str_appends(str, "Resource id #");
|
|
|
|
smart_str_append_long(str, Z_RES_HANDLE_P(arg));
|
|
|
|
smart_str_appends(str, ", ");
|
|
|
|
break;
|
|
|
|
case IS_ARRAY:
|
|
|
|
smart_str_appends(str, "Array, ");
|
|
|
|
break;
|
|
|
|
case IS_OBJECT: {
|
|
|
|
zend_string *class_name = Z_OBJ_HANDLER_P(arg, get_class_name)(Z_OBJ_P(arg));
|
|
|
|
smart_str_appends(str, "Object(");
|
|
|
|
smart_str_appends(str, ZSTR_VAL(class_name));
|
|
|
|
smart_str_appends(str, "), ");
|
|
|
|
zend_string_release_ex(class_name, 0);
|
|
|
|
break;
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
2016-06-22 22:23:04 +08:00
|
|
|
}
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static void _build_trace_string(smart_str *str, HashTable *ht, uint32_t num) /* {{{ */
|
2003-08-31 02:28:24 +08:00
|
|
|
{
|
2014-02-10 14:04:30 +08:00
|
|
|
zval *file, *tmp;
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appendc(str, '#');
|
|
|
|
smart_str_append_long(str, num);
|
|
|
|
smart_str_appendc(str, ' ');
|
2012-12-14 05:39:35 +08:00
|
|
|
|
2021-07-21 07:07:17 +08:00
|
|
|
file = zend_hash_find_known_hash(ht, ZSTR_KNOWN(ZEND_STR_FILE));
|
2014-02-10 14:04:30 +08:00
|
|
|
if (file) {
|
|
|
|
if (Z_TYPE_P(file) != IS_STRING) {
|
2021-03-17 11:36:05 +08:00
|
|
|
zend_error(E_WARNING, "File name is not a string");
|
|
|
|
smart_str_appends(str, "[unknown file]: ");
|
2012-12-14 05:39:35 +08:00
|
|
|
} else{
|
2021-03-17 11:36:05 +08:00
|
|
|
zend_long line = 0;
|
2021-07-21 07:07:17 +08:00
|
|
|
tmp = zend_hash_find_known_hash(ht, ZSTR_KNOWN(ZEND_STR_LINE));
|
2014-02-10 14:04:30 +08:00
|
|
|
if (tmp) {
|
2014-08-26 01:24:55 +08:00
|
|
|
if (Z_TYPE_P(tmp) == IS_LONG) {
|
|
|
|
line = Z_LVAL_P(tmp);
|
2012-12-14 05:39:35 +08:00
|
|
|
} else {
|
2020-05-24 02:43:03 +08:00
|
|
|
zend_error(E_WARNING, "Line is not an int");
|
2012-12-14 05:39:35 +08:00
|
|
|
}
|
|
|
|
}
|
2014-09-22 02:47:07 +08:00
|
|
|
smart_str_append(str, Z_STR_P(file));
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appendc(str, '(');
|
|
|
|
smart_str_append_long(str, line);
|
|
|
|
smart_str_appends(str, "): ");
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
|
|
|
} else {
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "[internal function]: ");
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
2017-03-04 17:39:13 +08:00
|
|
|
TRACE_APPEND_KEY(ZSTR_KNOWN(ZEND_STR_CLASS));
|
|
|
|
TRACE_APPEND_KEY(ZSTR_KNOWN(ZEND_STR_TYPE));
|
|
|
|
TRACE_APPEND_KEY(ZSTR_KNOWN(ZEND_STR_FUNCTION));
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appendc(str, '(');
|
2021-07-21 07:07:17 +08:00
|
|
|
tmp = zend_hash_find_known_hash(ht, ZSTR_KNOWN(ZEND_STR_ARGS));
|
2014-02-10 14:04:30 +08:00
|
|
|
if (tmp) {
|
|
|
|
if (Z_TYPE_P(tmp) == IS_ARRAY) {
|
2015-06-30 18:59:27 +08:00
|
|
|
size_t last_len = ZSTR_LEN(str->s);
|
2020-04-06 18:46:52 +08:00
|
|
|
zend_string *name;
|
2014-05-28 22:45:01 +08:00
|
|
|
zval *arg;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2020-04-06 18:46:52 +08:00
|
|
|
ZEND_HASH_FOREACH_STR_KEY_VAL(Z_ARRVAL_P(tmp), name, arg) {
|
|
|
|
if (name) {
|
|
|
|
smart_str_append(str, name);
|
|
|
|
smart_str_appends(str, ": ");
|
|
|
|
}
|
2014-12-14 06:06:14 +08:00
|
|
|
_build_trace_args(arg, str);
|
2014-05-28 22:45:01 +08:00
|
|
|
} ZEND_HASH_FOREACH_END();
|
|
|
|
|
2015-06-30 18:59:27 +08:00
|
|
|
if (last_len != ZSTR_LEN(str->s)) {
|
|
|
|
ZSTR_LEN(str->s) -= 2; /* remove last ', ' */
|
2012-12-14 05:39:35 +08:00
|
|
|
}
|
|
|
|
} else {
|
2020-05-24 02:43:03 +08:00
|
|
|
zend_error(E_WARNING, "args element is not an array");
|
2003-09-02 05:40:58 +08:00
|
|
|
}
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, ")\n");
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-07-20 17:24:22 +08:00
|
|
|
|
2021-05-18 17:43:37 +08:00
|
|
|
ZEND_API zend_string *zend_trace_to_string(HashTable *trace, bool include_main) {
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong index;
|
2021-05-18 17:43:37 +08:00
|
|
|
zval *frame;
|
2014-09-21 06:21:41 +08:00
|
|
|
uint32_t num = 0;
|
2021-05-18 17:43:37 +08:00
|
|
|
smart_str str = {0};
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2021-05-18 17:43:37 +08:00
|
|
|
ZEND_HASH_FOREACH_NUM_KEY_VAL(trace, index, frame) {
|
2014-09-21 06:21:41 +08:00
|
|
|
if (Z_TYPE_P(frame) != IS_ARRAY) {
|
2016-06-21 21:00:37 +08:00
|
|
|
zend_error(E_WARNING, "Expected array for frame " ZEND_ULONG_FMT, index);
|
2014-09-21 06:21:41 +08:00
|
|
|
continue;
|
|
|
|
}
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
_build_trace_string(&str, Z_ARRVAL_P(frame), num++);
|
2014-09-21 06:21:41 +08:00
|
|
|
} ZEND_HASH_FOREACH_END();
|
2014-02-19 12:13:43 +08:00
|
|
|
|
2021-05-18 17:43:37 +08:00
|
|
|
if (include_main) {
|
|
|
|
smart_str_appendc(&str, '#');
|
|
|
|
smart_str_append_long(&str, num);
|
|
|
|
smart_str_appends(&str, " {main}");
|
|
|
|
}
|
|
|
|
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_0(&str);
|
2021-05-18 17:43:37 +08:00
|
|
|
return str.s ? str.s : ZSTR_EMPTY_ALLOC();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* {{{ Obtain the backtrace for the exception as a string (instead of an array) */
|
|
|
|
ZEND_METHOD(Exception, getTraceAsString)
|
|
|
|
{
|
|
|
|
|
|
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
2003-09-02 04:54:48 +08:00
|
|
|
|
2021-05-18 17:43:37 +08:00
|
|
|
zval *object = ZEND_THIS;
|
|
|
|
zend_class_entry *base_ce = i_get_exception_base(Z_OBJ_P(object));
|
|
|
|
zval rv;
|
|
|
|
zval *trace = zend_read_property_ex(base_ce, Z_OBJ_P(object), ZSTR_KNOWN(ZEND_STR_TRACE), 1, &rv);
|
|
|
|
if (EG(exception)) {
|
|
|
|
RETURN_THROWS();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Type should be guaranteed by property type. */
|
|
|
|
ZEND_ASSERT(Z_TYPE_P(trace) == IS_ARRAY);
|
|
|
|
RETURN_NEW_STR(zend_trace_to_string(Z_ARRVAL_P(trace), /* include_main */ true));
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Return previous Throwable or NULL. */
|
2020-04-26 05:10:07 +08:00
|
|
|
ZEND_METHOD(Exception, getPrevious)
|
2008-07-12 22:57:14 +08:00
|
|
|
{
|
2015-01-22 16:50:42 +08:00
|
|
|
zval rv;
|
|
|
|
|
2020-01-03 19:11:45 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
2009-05-11 22:14:52 +08:00
|
|
|
|
2018-11-16 00:54:19 +08:00
|
|
|
ZVAL_COPY(return_value, GET_PROPERTY_SILENT(ZEND_THIS, ZEND_STR_PREVIOUS));
|
2014-05-10 00:21:49 +08:00
|
|
|
} /* }}} */
|
2008-07-12 22:57:14 +08:00
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Obtain the string representation of the Exception object */
|
2020-04-26 05:10:07 +08:00
|
|
|
ZEND_METHOD(Exception, __toString)
|
2003-08-31 02:28:24 +08:00
|
|
|
{
|
2014-10-07 02:14:30 +08:00
|
|
|
zval trace, *exception;
|
2015-05-18 06:31:06 +08:00
|
|
|
zend_class_entry *base_ce;
|
2014-10-07 02:14:30 +08:00
|
|
|
zend_string *str;
|
2003-08-31 02:28:24 +08:00
|
|
|
zend_fcall_info fci;
|
2016-05-12 18:47:22 +08:00
|
|
|
zval rv, tmp;
|
2016-04-29 19:44:56 +08:00
|
|
|
zend_string *fname;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2020-01-03 19:11:45 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_NONE();
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2015-06-29 21:44:54 +08:00
|
|
|
str = ZSTR_EMPTY_ALLOC();
|
2004-02-11 00:08:01 +08:00
|
|
|
|
2018-11-16 00:54:19 +08:00
|
|
|
exception = ZEND_THIS;
|
2016-04-29 19:44:56 +08:00
|
|
|
fname = zend_string_init("gettraceasstring", sizeof("gettraceasstring")-1, 0);
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2015-08-05 14:41:00 +08:00
|
|
|
while (exception && Z_TYPE_P(exception) == IS_OBJECT && instanceof_function(Z_OBJCE_P(exception), zend_ce_throwable)) {
|
2014-10-07 02:14:30 +08:00
|
|
|
zend_string *prev_str = str;
|
2016-05-12 18:47:22 +08:00
|
|
|
zend_string *message = zval_get_string(GET_PROPERTY(exception, ZEND_STR_MESSAGE));
|
|
|
|
zend_string *file = zval_get_string(GET_PROPERTY(exception, ZEND_STR_FILE));
|
|
|
|
zend_long line = zval_get_long(GET_PROPERTY(exception, ZEND_STR_LINE));
|
2008-07-12 22:57:14 +08:00
|
|
|
|
|
|
|
fci.size = sizeof(fci);
|
2016-04-29 19:44:56 +08:00
|
|
|
ZVAL_STR(&fci.function_name, fname);
|
2014-03-28 06:11:22 +08:00
|
|
|
fci.object = Z_OBJ_P(exception);
|
2014-02-14 21:48:45 +08:00
|
|
|
fci.retval = &trace;
|
2008-07-12 22:57:14 +08:00
|
|
|
fci.param_count = 0;
|
|
|
|
fci.params = NULL;
|
2020-04-06 18:46:52 +08:00
|
|
|
fci.named_params = NULL;
|
2008-07-12 22:57:14 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_call_function(&fci, NULL);
|
2008-07-12 22:57:14 +08:00
|
|
|
|
2014-02-14 21:48:45 +08:00
|
|
|
if (Z_TYPE(trace) != IS_STRING) {
|
|
|
|
zval_ptr_dtor(&trace);
|
|
|
|
ZVAL_UNDEF(&trace);
|
|
|
|
}
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2016-08-31 03:09:26 +08:00
|
|
|
if ((Z_OBJCE_P(exception) == zend_ce_type_error || Z_OBJCE_P(exception) == zend_ce_argument_count_error) && strstr(ZSTR_VAL(message), ", called in ")) {
|
2015-06-30 18:59:27 +08:00
|
|
|
zend_string *real_message = zend_strpprintf(0, "%s and defined", ZSTR_VAL(message));
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(message, 0);
|
2015-05-18 00:59:34 +08:00
|
|
|
message = real_message;
|
|
|
|
}
|
|
|
|
|
2015-06-30 18:59:27 +08:00
|
|
|
if (ZSTR_LEN(message) > 0) {
|
2015-05-18 00:35:18 +08:00
|
|
|
str = zend_strpprintf(0, "%s: %s in %s:" ZEND_LONG_FMT
|
2014-10-07 02:14:30 +08:00
|
|
|
"\nStack trace:\n%s%s%s",
|
2015-06-30 18:59:27 +08:00
|
|
|
ZSTR_VAL(Z_OBJCE_P(exception)->name), ZSTR_VAL(message), ZSTR_VAL(file), line,
|
2014-08-26 01:24:55 +08:00
|
|
|
(Z_TYPE(trace) == IS_STRING && Z_STRLEN(trace)) ? Z_STRVAL(trace) : "#0 {main}\n",
|
2015-06-30 18:59:27 +08:00
|
|
|
ZSTR_LEN(prev_str) ? "\n\nNext " : "", ZSTR_VAL(prev_str));
|
2008-07-12 22:57:14 +08:00
|
|
|
} else {
|
2015-05-18 00:35:18 +08:00
|
|
|
str = zend_strpprintf(0, "%s in %s:" ZEND_LONG_FMT
|
2014-10-07 02:14:30 +08:00
|
|
|
"\nStack trace:\n%s%s%s",
|
2015-06-30 18:59:27 +08:00
|
|
|
ZSTR_VAL(Z_OBJCE_P(exception)->name), ZSTR_VAL(file), line,
|
2014-08-26 01:24:55 +08:00
|
|
|
(Z_TYPE(trace) == IS_STRING && Z_STRLEN(trace)) ? Z_STRVAL(trace) : "#0 {main}\n",
|
2015-06-30 18:59:27 +08:00
|
|
|
ZSTR_LEN(prev_str) ? "\n\nNext " : "", ZSTR_VAL(prev_str));
|
2008-07-12 22:57:14 +08:00
|
|
|
}
|
2010-08-16 16:11:08 +08:00
|
|
|
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(prev_str, 0);
|
|
|
|
zend_string_release_ex(message, 0);
|
|
|
|
zend_string_release_ex(file, 0);
|
2014-02-14 21:48:45 +08:00
|
|
|
zval_ptr_dtor(&trace);
|
2010-08-16 16:11:08 +08:00
|
|
|
|
2017-10-06 06:34:50 +08:00
|
|
|
Z_PROTECT_RECURSION_P(exception);
|
2016-05-12 18:47:22 +08:00
|
|
|
exception = GET_PROPERTY(exception, ZEND_STR_PREVIOUS);
|
2017-10-06 06:34:50 +08:00
|
|
|
if (exception && Z_TYPE_P(exception) == IS_OBJECT && Z_IS_RECURSIVE_P(exception)) {
|
2016-10-22 14:50:21 +08:00
|
|
|
break;
|
2016-10-13 02:09:24 +08:00
|
|
|
}
|
2004-01-03 03:27:02 +08:00
|
|
|
}
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(fname, 0);
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2018-11-16 00:54:19 +08:00
|
|
|
exception = ZEND_THIS;
|
2016-10-13 02:09:24 +08:00
|
|
|
/* Reset apply counts */
|
2020-08-07 21:15:50 +08:00
|
|
|
while (exception && Z_TYPE_P(exception) == IS_OBJECT && (base_ce = i_get_exception_base(Z_OBJ_P(exception))) && instanceof_function(Z_OBJCE_P(exception), base_ce)) {
|
2017-10-06 06:34:50 +08:00
|
|
|
if (Z_IS_RECURSIVE_P(exception)) {
|
|
|
|
Z_UNPROTECT_RECURSION_P(exception);
|
2016-10-13 02:09:24 +08:00
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
exception = GET_PROPERTY(exception, ZEND_STR_PREVIOUS);
|
|
|
|
}
|
|
|
|
|
2018-11-16 00:54:19 +08:00
|
|
|
exception = ZEND_THIS;
|
2020-08-07 21:15:50 +08:00
|
|
|
base_ce = i_get_exception_base(Z_OBJ_P(exception));
|
2015-05-18 06:31:06 +08:00
|
|
|
|
2003-08-31 02:28:24 +08:00
|
|
|
/* We store the result in the private property string so we can access
|
|
|
|
* the result in uncaught exception handlers without memleaks. */
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_STR(&tmp, str);
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(base_ce, Z_OBJ_P(exception), ZSTR_KNOWN(ZEND_STR_STRING), &tmp);
|
2004-02-11 00:08:01 +08:00
|
|
|
|
2014-05-10 00:21:49 +08:00
|
|
|
RETURN_STR(str);
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
void zend_register_default_exception(void) /* {{{ */
|
2003-03-23 12:32:24 +08:00
|
|
|
{
|
2021-01-26 18:50:36 +08:00
|
|
|
zend_ce_throwable = register_class_Throwable(zend_ce_stringable);
|
|
|
|
zend_ce_throwable->interface_gets_implemented = zend_implement_throwable;
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2018-05-31 16:57:22 +08:00
|
|
|
memcpy(&default_exception_handlers, &std_object_handlers, sizeof(zend_object_handlers));
|
2015-06-15 11:43:11 +08:00
|
|
|
default_exception_handlers.clone_obj = NULL;
|
|
|
|
|
2021-01-26 18:50:36 +08:00
|
|
|
zend_ce_exception = register_class_Exception(zend_ce_throwable);
|
2015-07-03 22:45:03 +08:00
|
|
|
zend_ce_exception->create_object = zend_default_exception_new;
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2021-01-26 18:50:36 +08:00
|
|
|
zend_ce_error_exception = register_class_ErrorException(zend_ce_exception);
|
2015-07-03 22:45:03 +08:00
|
|
|
zend_ce_error_exception->create_object = zend_error_exception_new;
|
2021-04-21 04:13:44 +08:00
|
|
|
|
2021-01-26 18:50:36 +08:00
|
|
|
/* Declared manually because it uses constant E_ERROR. */
|
2021-04-21 04:13:44 +08:00
|
|
|
zval severity_default_value;
|
|
|
|
ZVAL_LONG(&severity_default_value, E_ERROR);
|
|
|
|
zend_declare_typed_property(zend_ce_error_exception, ZSTR_KNOWN(ZEND_STR_SEVERITY), &severity_default_value, ZEND_ACC_PROTECTED, NULL, (zend_type) ZEND_TYPE_INIT_MASK(MAY_BE_LONG));
|
2015-03-09 20:57:15 +08:00
|
|
|
|
2021-01-26 18:50:36 +08:00
|
|
|
zend_ce_error = register_class_Error(zend_ce_throwable);
|
2015-07-03 22:45:03 +08:00
|
|
|
zend_ce_error->create_object = zend_default_exception_new;
|
2015-03-19 00:23:09 +08:00
|
|
|
|
2021-01-26 18:50:36 +08:00
|
|
|
zend_ce_compile_error = register_class_CompileError(zend_ce_error);
|
2017-09-24 21:24:51 +08:00
|
|
|
zend_ce_compile_error->create_object = zend_default_exception_new;
|
|
|
|
|
2021-01-26 18:50:36 +08:00
|
|
|
zend_ce_parse_error = register_class_ParseError(zend_ce_compile_error);
|
2015-07-03 22:45:03 +08:00
|
|
|
zend_ce_parse_error->create_object = zend_default_exception_new;
|
2015-03-09 20:57:15 +08:00
|
|
|
|
2021-01-26 18:50:36 +08:00
|
|
|
zend_ce_type_error = register_class_TypeError(zend_ce_error);
|
2015-07-03 22:45:03 +08:00
|
|
|
zend_ce_type_error->create_object = zend_default_exception_new;
|
2015-07-02 07:54:08 +08:00
|
|
|
|
2021-01-26 18:50:36 +08:00
|
|
|
zend_ce_argument_count_error = register_class_ArgumentCountError(zend_ce_type_error);
|
2016-08-31 03:09:26 +08:00
|
|
|
zend_ce_argument_count_error->create_object = zend_default_exception_new;
|
|
|
|
|
2021-01-26 18:50:36 +08:00
|
|
|
zend_ce_value_error = register_class_ValueError(zend_ce_error);
|
2019-09-05 04:39:02 +08:00
|
|
|
zend_ce_value_error->create_object = zend_default_exception_new;
|
|
|
|
|
2021-01-26 18:50:36 +08:00
|
|
|
zend_ce_arithmetic_error = register_class_ArithmeticError(zend_ce_error);
|
2015-07-03 02:47:44 +08:00
|
|
|
zend_ce_arithmetic_error->create_object = zend_default_exception_new;
|
|
|
|
|
2021-01-26 18:50:36 +08:00
|
|
|
zend_ce_division_by_zero_error = register_class_DivisionByZeroError(zend_ce_arithmetic_error);
|
2015-07-02 07:54:08 +08:00
|
|
|
zend_ce_division_by_zero_error->create_object = zend_default_exception_new;
|
2020-03-06 21:57:55 +08:00
|
|
|
|
2021-01-26 18:50:36 +08:00
|
|
|
zend_ce_unhandled_match_error = register_class_UnhandledMatchError(zend_ce_error);
|
2020-04-10 04:36:37 +08:00
|
|
|
zend_ce_unhandled_match_error->create_object = zend_default_exception_new;
|
2021-01-26 18:50:36 +08:00
|
|
|
|
|
|
|
INIT_CLASS_ENTRY(zend_ce_unwind_exit, "UnwindExit", NULL);
|
2021-04-27 00:07:06 +08:00
|
|
|
|
|
|
|
INIT_CLASS_ENTRY(zend_ce_graceful_exit, "GracefulExit", NULL);
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2015-07-03 22:45:03 +08:00
|
|
|
/* {{{ Deprecated - Use zend_ce_exception directly instead */
|
2015-08-05 07:14:24 +08:00
|
|
|
ZEND_API zend_class_entry *zend_exception_get_default(void)
|
2015-03-09 20:57:15 +08:00
|
|
|
{
|
2015-07-03 22:45:03 +08:00
|
|
|
return zend_ce_exception;
|
2015-03-09 20:57:15 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2015-07-03 22:45:03 +08:00
|
|
|
/* {{{ Deprecated - Use zend_ce_error_exception directly instead */
|
2015-07-03 09:57:53 +08:00
|
|
|
ZEND_API zend_class_entry *zend_get_error_exception(void)
|
2015-03-19 00:23:09 +08:00
|
|
|
{
|
2015-07-03 22:45:03 +08:00
|
|
|
return zend_ce_error_exception;
|
2015-03-19 00:23:09 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-05-29 16:33:22 +08:00
|
|
|
static zend_object *zend_throw_exception_zstr(zend_class_entry *exception_ce, zend_string *message, zend_long code) /* {{{ */
|
2004-07-16 06:21:36 +08:00
|
|
|
{
|
2016-05-12 18:47:22 +08:00
|
|
|
zval ex, tmp;
|
2003-08-29 06:56:41 +08:00
|
|
|
|
2020-09-21 17:05:19 +08:00
|
|
|
if (!exception_ce) {
|
2015-07-03 22:45:03 +08:00
|
|
|
exception_ce = zend_ce_exception;
|
2003-08-29 06:56:41 +08:00
|
|
|
}
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2020-09-21 17:05:19 +08:00
|
|
|
ZEND_ASSERT(instanceof_function(exception_ce, zend_ce_throwable)
|
|
|
|
&& "Exceptions must implement Throwable");
|
|
|
|
|
|
|
|
object_init_ex(&ex, exception_ce);
|
2003-08-29 06:56:41 +08:00
|
|
|
|
|
|
|
if (message) {
|
2020-05-29 16:33:22 +08:00
|
|
|
ZVAL_STR(&tmp, message);
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(exception_ce, Z_OBJ(ex), ZSTR_KNOWN(ZEND_STR_MESSAGE), &tmp);
|
2003-08-29 06:56:41 +08:00
|
|
|
}
|
|
|
|
if (code) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, code);
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(exception_ce, Z_OBJ(ex), ZSTR_KNOWN(ZEND_STR_CODE), &tmp);
|
2003-08-29 06:56:41 +08:00
|
|
|
}
|
|
|
|
|
2020-08-06 00:45:07 +08:00
|
|
|
zend_throw_exception_internal(Z_OBJ(ex));
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
return Z_OBJ(ex);
|
2003-08-29 06:56:41 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-08-29 06:56:41 +08:00
|
|
|
|
2020-05-29 16:33:22 +08:00
|
|
|
ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *message, zend_long code) /* {{{ */
|
|
|
|
{
|
2020-06-06 14:47:39 +08:00
|
|
|
zend_string *msg_str = message ? zend_string_init(message, strlen(message), 0) : NULL;
|
2020-05-29 16:33:22 +08:00
|
|
|
zend_object *ex = zend_throw_exception_zstr(exception_ce, msg_str, code);
|
2020-06-06 14:47:39 +08:00
|
|
|
if (msg_str) {
|
|
|
|
zend_string_release(msg_str);
|
|
|
|
}
|
2020-05-29 16:33:22 +08:00
|
|
|
return ex;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2015-08-19 19:40:56 +08:00
|
|
|
ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long code, const char *format, ...) /* {{{ */
|
2003-08-22 07:32:13 +08:00
|
|
|
{
|
2004-07-16 06:21:36 +08:00
|
|
|
va_list arg;
|
|
|
|
char *message;
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_object *obj;
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2006-05-10 07:53:23 +08:00
|
|
|
va_start(arg, format);
|
2004-07-16 06:21:36 +08:00
|
|
|
zend_vspprintf(&message, 0, format, arg);
|
|
|
|
va_end(arg);
|
2014-12-14 06:06:14 +08:00
|
|
|
obj = zend_throw_exception(exception_ce, message, code);
|
2004-09-28 06:06:10 +08:00
|
|
|
efree(message);
|
2014-02-10 14:04:30 +08:00
|
|
|
return obj;
|
2003-08-22 07:32:13 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-08-22 07:32:13 +08:00
|
|
|
|
2020-05-29 16:33:22 +08:00
|
|
|
ZEND_API ZEND_COLD zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, zend_string *message, zend_long code, int severity) /* {{{ */
|
2004-07-16 06:21:36 +08:00
|
|
|
{
|
2020-08-07 21:27:57 +08:00
|
|
|
zval tmp;
|
2020-05-29 16:33:22 +08:00
|
|
|
zend_object *obj = zend_throw_exception_zstr(exception_ce, message, code);
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, severity);
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(zend_ce_error_exception, obj, ZSTR_KNOWN(ZEND_STR_SEVERITY), &tmp);
|
2014-02-10 14:04:30 +08:00
|
|
|
return obj;
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2021-04-23 16:47:08 +08:00
|
|
|
static void zend_error_va(int type, zend_string *file, uint32_t lineno, const char *format, ...) /* {{{ */
|
2003-08-24 21:10:03 +08:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
2020-05-29 16:33:22 +08:00
|
|
|
zend_string *message = zend_vstrpprintf(0, format, args);
|
2020-09-14 20:05:54 +08:00
|
|
|
zend_observer_error_notify(type, file, lineno, message);
|
2020-05-29 16:33:22 +08:00
|
|
|
zend_error_cb(type, file, lineno, message);
|
|
|
|
zend_string_release(message);
|
2003-08-24 21:10:03 +08:00
|
|
|
va_end(args);
|
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-08-24 21:10:03 +08:00
|
|
|
|
2009-01-02 21:14:49 +08:00
|
|
|
/* This function doesn't return if it uses E_ERROR */
|
2020-08-28 21:41:27 +08:00
|
|
|
ZEND_API ZEND_COLD zend_result zend_exception_error(zend_object *ex, int severity) /* {{{ */
|
2003-08-24 21:10:03 +08:00
|
|
|
{
|
2015-03-09 20:57:15 +08:00
|
|
|
zval exception, rv;
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_class_entry *ce_exception;
|
2020-08-28 21:41:27 +08:00
|
|
|
zend_result result = FAILURE;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
ZVAL_OBJ(&exception, ex);
|
2019-10-27 23:21:31 +08:00
|
|
|
ce_exception = ex->ce;
|
2015-03-09 20:57:15 +08:00
|
|
|
EG(exception) = NULL;
|
2017-09-24 21:24:51 +08:00
|
|
|
if (ce_exception == zend_ce_parse_error || ce_exception == zend_ce_compile_error) {
|
2016-05-12 18:47:22 +08:00
|
|
|
zend_string *message = zval_get_string(GET_PROPERTY(&exception, ZEND_STR_MESSAGE));
|
|
|
|
zend_string *file = zval_get_string(GET_PROPERTY_SILENT(&exception, ZEND_STR_FILE));
|
|
|
|
zend_long line = zval_get_long(GET_PROPERTY_SILENT(&exception, ZEND_STR_LINE));
|
2020-04-27 14:20:56 +08:00
|
|
|
int type = (ce_exception == zend_ce_parse_error ? E_PARSE : E_COMPILE_ERROR) | E_DONT_BAIL;
|
2015-03-09 20:57:15 +08:00
|
|
|
|
2021-04-23 16:47:08 +08:00
|
|
|
zend_observer_error_notify(type, file, line, message);
|
|
|
|
zend_error_cb(type, file, line, message);
|
2015-03-19 04:38:51 +08:00
|
|
|
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(file, 0);
|
|
|
|
zend_string_release_ex(message, 0);
|
2015-06-16 06:35:24 +08:00
|
|
|
} else if (instanceof_function(ce_exception, zend_ce_throwable)) {
|
2019-10-27 23:21:31 +08:00
|
|
|
zval tmp;
|
2014-10-07 02:14:30 +08:00
|
|
|
zend_string *str, *file = NULL;
|
|
|
|
zend_long line = 0;
|
2003-08-31 02:58:40 +08:00
|
|
|
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_call_known_instance_method_with_0_params(ex->ce->__tostring, ex, &tmp);
|
2003-12-07 02:12:26 +08:00
|
|
|
if (!EG(exception)) {
|
2014-02-10 14:04:30 +08:00
|
|
|
if (Z_TYPE(tmp) != IS_STRING) {
|
2015-06-30 18:59:27 +08:00
|
|
|
zend_error(E_WARNING, "%s::__toString() must return a string", ZSTR_VAL(ce_exception->name));
|
2003-12-07 02:12:26 +08:00
|
|
|
} else {
|
2020-08-07 21:27:57 +08:00
|
|
|
zend_update_property_ex(i_get_exception_base(ex), ex, ZSTR_KNOWN(ZEND_STR_STRING), &tmp);
|
2003-12-07 02:12:26 +08:00
|
|
|
}
|
2003-12-05 09:44:45 +08:00
|
|
|
}
|
2014-02-10 14:04:30 +08:00
|
|
|
zval_ptr_dtor(&tmp);
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2003-11-30 01:03:45 +08:00
|
|
|
if (EG(exception)) {
|
2014-02-10 14:04:30 +08:00
|
|
|
zval zv;
|
|
|
|
|
|
|
|
ZVAL_OBJ(&zv, EG(exception));
|
2003-11-30 01:03:45 +08:00
|
|
|
/* do the best we can to inform about the inner exception */
|
2015-07-03 22:45:03 +08:00
|
|
|
if (instanceof_function(ce_exception, zend_ce_exception) || instanceof_function(ce_exception, zend_ce_error)) {
|
2016-05-12 18:47:22 +08:00
|
|
|
file = zval_get_string(GET_PROPERTY_SILENT(&zv, ZEND_STR_FILE));
|
|
|
|
line = zval_get_long(GET_PROPERTY_SILENT(&zv, ZEND_STR_LINE));
|
2014-10-07 02:14:30 +08:00
|
|
|
}
|
2013-05-12 20:00:32 +08:00
|
|
|
|
2021-04-23 16:47:08 +08:00
|
|
|
zend_error_va(E_WARNING, (file && ZSTR_LEN(file) > 0) ? file : NULL, line,
|
2020-05-26 20:10:57 +08:00
|
|
|
"Uncaught %s in exception handling during call to %s::__toString()",
|
2015-06-30 18:59:27 +08:00
|
|
|
ZSTR_VAL(Z_OBJCE(zv)->name), ZSTR_VAL(ce_exception->name));
|
2014-10-07 02:14:30 +08:00
|
|
|
|
|
|
|
if (file) {
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(file, 0);
|
2003-11-30 01:03:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
str = zval_get_string(GET_PROPERTY_SILENT(&exception, ZEND_STR_STRING));
|
|
|
|
file = zval_get_string(GET_PROPERTY_SILENT(&exception, ZEND_STR_FILE));
|
|
|
|
line = zval_get_long(GET_PROPERTY_SILENT(&exception, ZEND_STR_LINE));
|
2003-11-30 01:03:45 +08:00
|
|
|
|
2019-10-10 20:14:36 +08:00
|
|
|
zend_error_va(severity | E_DONT_BAIL,
|
2021-04-23 16:47:08 +08:00
|
|
|
(file && ZSTR_LEN(file) > 0) ? file : NULL, line,
|
2015-08-18 19:59:37 +08:00
|
|
|
"Uncaught %s\n thrown", ZSTR_VAL(str));
|
2013-05-12 20:00:32 +08:00
|
|
|
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(str, 0);
|
|
|
|
zend_string_release_ex(file, 0);
|
2021-04-27 00:07:06 +08:00
|
|
|
} else if (ce_exception == &zend_ce_unwind_exit || ce_exception == &zend_ce_graceful_exit) {
|
2020-08-10 16:28:13 +08:00
|
|
|
/* We successfully unwound, nothing more to do.
|
|
|
|
* We still return FAILURE in this case, as further execution should still be aborted. */
|
2003-08-24 21:10:03 +08:00
|
|
|
} else {
|
2020-05-26 20:10:57 +08:00
|
|
|
zend_error(severity, "Uncaught exception %s", ZSTR_VAL(ce_exception->name));
|
2003-08-24 21:10:03 +08:00
|
|
|
}
|
2015-05-16 04:42:19 +08:00
|
|
|
|
|
|
|
OBJ_RELEASE(ex);
|
2020-03-06 21:57:55 +08:00
|
|
|
return result;
|
2003-08-24 21:10:03 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-08-24 21:10:03 +08:00
|
|
|
|
2021-05-28 16:19:23 +08:00
|
|
|
ZEND_NORETURN void zend_exception_uncaught_error(const char *format, ...) {
|
|
|
|
va_list va;
|
|
|
|
va_start(va, format);
|
|
|
|
zend_string *prefix = zend_vstrpprintf(0, format, va);
|
|
|
|
va_end(va);
|
|
|
|
|
|
|
|
ZEND_ASSERT(EG(exception));
|
|
|
|
zval exception_zv;
|
|
|
|
ZVAL_OBJ_COPY(&exception_zv, EG(exception));
|
|
|
|
zend_clear_exception();
|
|
|
|
|
|
|
|
zend_string *exception_str = zval_get_string(&exception_zv);
|
|
|
|
zend_error_noreturn(E_ERROR,
|
|
|
|
"%s: Uncaught %s", ZSTR_VAL(prefix), ZSTR_VAL(exception_str));
|
|
|
|
}
|
|
|
|
|
2015-08-19 19:40:56 +08:00
|
|
|
ZEND_API ZEND_COLD void zend_throw_exception_object(zval *exception) /* {{{ */
|
2004-02-12 18:24:40 +08:00
|
|
|
{
|
2006-05-10 07:53:23 +08:00
|
|
|
if (exception == NULL || Z_TYPE_P(exception) != IS_OBJECT) {
|
2015-04-02 19:19:52 +08:00
|
|
|
zend_error_noreturn(E_CORE_ERROR, "Need to supply an object when throwing an exception");
|
2004-02-12 18:24:40 +08:00
|
|
|
}
|
|
|
|
|
2020-08-06 00:45:07 +08:00
|
|
|
zend_class_entry *exception_ce = Z_OBJCE_P(exception);
|
2004-02-12 18:24:40 +08:00
|
|
|
|
2015-05-18 06:31:06 +08:00
|
|
|
if (!exception_ce || !instanceof_function(exception_ce, zend_ce_throwable)) {
|
2015-07-08 01:10:22 +08:00
|
|
|
zend_throw_error(NULL, "Cannot throw objects that do not implement Throwable");
|
2016-07-14 05:35:53 +08:00
|
|
|
zval_ptr_dtor(exception);
|
2015-04-02 19:19:52 +08:00
|
|
|
return;
|
2004-02-12 18:24:40 +08:00
|
|
|
}
|
2020-08-06 00:45:07 +08:00
|
|
|
|
|
|
|
zend_throw_exception_internal(Z_OBJ_P(exception));
|
2004-02-12 18:24:40 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2020-03-06 21:57:55 +08:00
|
|
|
|
2021-06-29 04:23:34 +08:00
|
|
|
ZEND_API ZEND_COLD zend_object *zend_create_unwind_exit(void)
|
|
|
|
{
|
|
|
|
return zend_objects_new(&zend_ce_unwind_exit);
|
|
|
|
}
|
|
|
|
|
|
|
|
ZEND_API ZEND_COLD zend_object *zend_create_graceful_exit(void)
|
|
|
|
{
|
|
|
|
return zend_objects_new(&zend_ce_graceful_exit);
|
|
|
|
}
|
|
|
|
|
2020-07-23 00:59:00 +08:00
|
|
|
ZEND_API ZEND_COLD void zend_throw_unwind_exit(void)
|
2020-03-06 21:57:55 +08:00
|
|
|
{
|
|
|
|
ZEND_ASSERT(!EG(exception));
|
2021-06-29 04:23:34 +08:00
|
|
|
EG(exception) = zend_create_unwind_exit();
|
2020-03-06 21:57:55 +08:00
|
|
|
EG(opline_before_exception) = EG(current_execute_data)->opline;
|
|
|
|
EG(current_execute_data)->opline = EG(exception_op);
|
|
|
|
}
|
|
|
|
|
2021-04-27 00:07:06 +08:00
|
|
|
ZEND_API ZEND_COLD void zend_throw_graceful_exit(void)
|
|
|
|
{
|
|
|
|
ZEND_ASSERT(!EG(exception));
|
2021-06-29 04:23:34 +08:00
|
|
|
EG(exception) = zend_create_graceful_exit();
|
2021-04-27 00:07:06 +08:00
|
|
|
EG(opline_before_exception) = EG(current_execute_data)->opline;
|
|
|
|
EG(current_execute_data)->opline = EG(exception_op);
|
|
|
|
}
|
|
|
|
|
|
|
|
ZEND_API bool zend_is_unwind_exit(const zend_object *ex)
|
2020-03-06 21:57:55 +08:00
|
|
|
{
|
|
|
|
return ex->ce == &zend_ce_unwind_exit;
|
|
|
|
}
|
2021-04-27 00:07:06 +08:00
|
|
|
|
|
|
|
ZEND_API bool zend_is_graceful_exit(const zend_object *ex)
|
|
|
|
{
|
|
|
|
return ex->ce == &zend_ce_graceful_exit;
|
|
|
|
}
|