xmlparse.c: Fix NULL pointer dereference in XML_ExternalEntityParserCreate

.. for context NULL inside function setContext
when macro XML_DTD is not defined at compile time.
This commit is contained in:
Sebastian Pipping 2023-10-23 18:09:06 +02:00
parent a39a2f5c65
commit 4eeaf49262
2 changed files with 23 additions and 0 deletions

View file

@ -6645,6 +6645,10 @@ getContext(XML_Parser parser) {
static XML_Bool
setContext(XML_Parser parser, const XML_Char *context) {
if (context == NULL) {
return XML_FALSE;
}
DTD *const dtd = parser->m_dtd; /* save one level of indirection */
const XML_Char *s = context;

View file

@ -389,6 +389,23 @@ START_TEST(test_misc_tag_mismatch_reset_leak) {
}
END_TEST
START_TEST(test_misc_create_external_entity_parser_with_null_context) {
// With XML_DTD undefined, the only supported case of external entities
// is pattern "<!ENTITY entity123 SYSTEM 'filename123'>". A NULL context
// was causing a segfault through a null pointer dereference in function
// setContext, previously.
XML_Parser parser = XML_ParserCreate(NULL);
XML_Parser ext_parser = XML_ExternalEntityParserCreate(parser, NULL, NULL);
#ifdef XML_DTD
assert_true(ext_parser != NULL);
XML_ParserFree(ext_parser);
#else
assert_true(ext_parser == NULL);
#endif /* XML_DTD */
XML_ParserFree(parser);
}
END_TEST
void
make_miscellaneous_test_case(Suite *s) {
TCase *tc_misc = tcase_create("miscellaneous tests");
@ -409,4 +426,6 @@ make_miscellaneous_test_case(Suite *s) {
tcase_add_test__ifdef_xml_dtd(
tc_misc, test_misc_deny_internal_entity_closing_doctype_issue_317);
tcase_add_test(tc_misc, test_misc_tag_mismatch_reset_leak);
tcase_add_test(tc_misc,
test_misc_create_external_entity_parser_with_null_context);
}