Skip to content

Commit f4f3b30

Browse files
committed
ext/libxml: Fixed custom external entity loader returning an invalid resource leading to a confusing TypeError message
1 parent bd7d3c3 commit f4f3b30

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

NEWS

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ PHP NEWS
2929
. Fixed bug GH-18081 (Memory leaks in error paths of fuzzer SAPI).
3030
(Lung-Alexandra)
3131

32+
- libxml:
33+
. Fixed custom external entity loader returning an invalid resource leading
34+
to a confusing TypeError message. (Girgias)
35+
3236
- Mbstring:
3337
. Fixed bug GH-17989 (mb_output_handler crash with unset
3438
http_output_conv_mimetypes). (nielsdos)

ext/libxml/libxml.c

+11-5
Original file line numberDiff line numberDiff line change
@@ -793,13 +793,19 @@ static xmlParserInputPtr _php_libxml_external_entity_loader(const char *URL,
793793
is_string:
794794
resource = Z_STRVAL(retval);
795795
} else if (Z_TYPE(retval) == IS_RESOURCE) {
796-
php_stream *stream;
797-
php_stream_from_zval_no_verify(stream, &retval);
798-
if (stream == NULL) {
796+
php_stream *stream = (php_stream*)zend_fetch_resource2_ex(&retval, NULL, php_file_le_stream(), php_file_le_pstream());
797+
if (UNEXPECTED(stream == NULL)) {
798+
zval callable;
799+
zend_get_callable_zval_from_fcc(&LIBXML(entity_loader_callback), &callable);
800+
801+
zend_string *callable_name = zend_get_callable_name(&callable);
802+
799803
php_libxml_ctx_error(context,
800-
"The user entity loader callback '%s' has returned a "
804+
"The user entity loader callback \"%s\" has returned a "
801805
"resource, but it is not a stream",
802-
ZSTR_VAL(LIBXML(entity_loader_callback).function_handler->common.function_name));
806+
ZSTR_VAL(callable_name));
807+
zend_string_release(callable_name);
808+
zval_ptr_dtor(&callable);
803809
} else {
804810
/* TODO: allow storing the encoding in the stream context? */
805811
xmlCharEncoding enc = XML_CHAR_ENCODING_NONE;

ext/libxml/tests/libxml_get_external_entity_loader_error_callback_name.phpt

+5-2
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,8 @@ try {
3939
$file = __DIR__ . '/db.dba';
4040
unlink($file);
4141
?>
42-
--EXPECT--
43-
string(73) "DOMDocument::validate(): supplied resource is not a valid stream resource"
42+
--EXPECTF--
43+
Warning: DOMDocument::validate(): The user entity loader callback "Handler::handle" has returned a resource, but it is not a streamFailed to load external entity "-//FOO/BAR" in %s on line %d
44+
45+
Warning: DOMDocument::validate(): Could not load the external subset "http://example.com/foobar" in %s on line %d
46+
bool(false)

0 commit comments

Comments
 (0)