mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-08-19 09:40:21 +00:00
* Merge commit from fork * [core] Fix XML escape encoder overrun and unsigned-char UTF-8 gate `switch_xml_ampencode()` had two independent defects in its UTF-8 numeric-escape path. Buffer overrun: the encoder grows its destination once per source byte, but the realloc margin reserved only the 10 data characters of the widest escape `"&#x%X;"` (a 21-bit code point rendered as 6 hex digits), not the terminating NUL that `sprintf` also writes. At the margin boundary that NUL landed one byte past the allocation. Reserve 11 bytes in the guard (10 data chars plus the NUL) and emit the escape with `snprintf` bounded to the remaining space, so the write stays in bounds even if the margin is ever miscounted. The other escape sinks are all within the widened margin and are unchanged. Char signedness: the lead-byte test `(*s >> 8) & 0x01` reads bit 8 of a plain `char`, which exists only after sign extension. Where `char` is signed the high bit sign-extends and the test passes; where `char` is unsigned it is always zero, so the numeric-escape path never ran and multi-byte UTF-8 was emitted raw, making serialized XML differ by architecture. Test bit 7 directly with `(*s & 0x80)`, correct regardless of `char` signedness. This also makes the overrun fix effective on unsigned-`char` builds, where the escape path now runs. Add unit test `test_utf_8_wide_codepoint`, which serializes U+10FFFF and long runs of it across buffer reallocations, sweeping an ASCII prefix so an escape is emitted at the minimum-headroom offset, and asserts the full serialized length.
373 lines
13 KiB
C
373 lines
13 KiB
C
/*
|
|
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
* Copyright (C) 2005-2019, Anthony Minessale II <anthm@freeswitch.org>
|
|
*
|
|
* Version: MPL 1.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (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.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Anthony Minessale II <anthm@freeswitch.org>
|
|
* Portions created by the Initial Developer are Copyright (C)
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Chris Rienzo <chris@signalwire.com>
|
|
* Seven Du <dujinfang@gmail.com>
|
|
*
|
|
*
|
|
* switch_xml.c -- tests core xml functions
|
|
*
|
|
*/
|
|
#include <switch.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <test/switch_test.h>
|
|
|
|
FST_MINCORE_BEGIN("./conf")
|
|
{
|
|
FST_SUITE_BEGIN(switch_xml)
|
|
{
|
|
FST_SETUP_BEGIN()
|
|
{
|
|
}
|
|
FST_SETUP_END()
|
|
|
|
FST_TEARDOWN_BEGIN()
|
|
{
|
|
}
|
|
FST_TEARDOWN_END()
|
|
|
|
FST_TEST_BEGIN(test_cdata)
|
|
{
|
|
const char *text = "<xml><![CDATA[Tom & Jerry]]></xml>";
|
|
switch_xml_t xml = switch_xml_parse_str_dynamic((char *)text, SWITCH_TRUE);
|
|
|
|
fst_requires(xml);
|
|
fst_check(xml->flags & SWITCH_XML_CDATA);
|
|
switch_xml_free(xml);
|
|
|
|
text = "<xml><tag><![CDATA[Tom & Jerry]]></tag></xml>";
|
|
|
|
xml = switch_xml_parse_str_dynamic((char *)text, SWITCH_TRUE);
|
|
fst_requires(xml);
|
|
fst_check((xml->flags & SWITCH_XML_CDATA) == 0);
|
|
fst_check_string_equals(xml->child->name, "tag");
|
|
fst_check(xml->child->flags & SWITCH_XML_CDATA);
|
|
switch_xml_free(xml);
|
|
}
|
|
FST_TEST_END()
|
|
|
|
FST_TEST_BEGIN(test_utf_8)
|
|
{
|
|
const char *text = "<xml>Voulez-Vous Parler Français</xml>";
|
|
switch_xml_t xml = switch_xml_parse_str_dynamic((char *)text, SWITCH_TRUE);
|
|
char *xml_string = NULL;
|
|
|
|
fst_requires(xml);
|
|
xml_string = switch_xml_toxml(xml, SWITCH_FALSE);
|
|
fst_requires(xml_string);
|
|
fst_check_string_equals(xml_string, "<xml>Voulez-Vous Parler Français</xml>\n");
|
|
free(xml_string);
|
|
|
|
xml_string = switch_xml_toxml_ex(xml, SWITCH_FALSE, SWITCH_FALSE);
|
|
fst_requires(xml_string);
|
|
fst_check_string_equals(xml_string, "<xml>Voulez-Vous Parler Français</xml>\n");
|
|
switch_xml_free(xml);
|
|
free(xml_string);
|
|
|
|
text = "<xml>你好,中文</xml>";
|
|
xml = switch_xml_parse_str_dynamic((char *)text, SWITCH_TRUE);
|
|
|
|
fst_requires(xml);
|
|
xml_string = switch_xml_toxml(xml, SWITCH_FALSE);
|
|
fst_requires(xml_string);
|
|
fst_check_string_equals(xml_string, "<xml>你好,中文</xml>\n");
|
|
free(xml_string);
|
|
|
|
xml_string = switch_xml_toxml_ex(xml, SWITCH_FALSE, SWITCH_FALSE);
|
|
fst_requires(xml_string);
|
|
fst_check_string_equals(xml_string, "<xml>你好,中文</xml>\n");
|
|
switch_xml_free(xml);
|
|
free(xml_string);
|
|
|
|
text = "<xml><tag><![CDATA[Voulez-Vous Parler Français]]></tag></xml>";
|
|
|
|
xml = switch_xml_parse_str_dynamic((char *)text, SWITCH_TRUE);
|
|
fst_requires(xml);
|
|
xml_string = switch_xml_toxml(xml, SWITCH_FALSE);
|
|
fst_requires(xml_string);
|
|
fst_check_string_equals(xml_string, "<xml>\n <tag>Voulez-Vous Parler Français</tag>\n</xml>\n");
|
|
free(xml_string);
|
|
|
|
xml_string = switch_xml_toxml_ex(xml, SWITCH_FALSE, SWITCH_FALSE);
|
|
fst_requires(xml_string);
|
|
fst_check_string_equals(xml_string, "<xml>\n <tag>Voulez-Vous Parler Français</tag>\n</xml>\n");
|
|
switch_xml_free(xml);
|
|
free(xml_string);
|
|
}
|
|
FST_TEST_END()
|
|
|
|
FST_TEST_BEGIN(test_dtd)
|
|
{
|
|
const char *text = "<xml><!DOCTYPE Response [<!ENTITY lol \"haha\"><!ENTITY lol1 \"&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;\">]><Response><Say>&lol1;</Say></Response></xml>";
|
|
switch_xml_t xml = switch_xml_parse_str_dynamic((char *)text, SWITCH_TRUE);
|
|
char *xml_string = NULL;
|
|
|
|
fst_requires(xml);
|
|
xml_string = switch_xml_toxml_ex(xml, SWITCH_FALSE, SWITCH_FALSE);
|
|
fst_requires(xml_string);
|
|
fst_check_string_equals(xml_string, "<xml>\n <Response>\n <Say>hahahahahahahahahahahahahahahahahahahaha</Say>\n </Response>\n</xml>\n");
|
|
free(xml_string);
|
|
switch_xml_free(xml);
|
|
}
|
|
FST_TEST_END()
|
|
|
|
FST_TEST_BEGIN(test_dtd_disable)
|
|
{
|
|
const char *text = "<xml><!DOCTYPE Response [<!ENTITY lol \"haha\"><!ENTITY lol1 \"&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;\">]><Response><Say>&lol1;</Say></Response></xml>";
|
|
switch_xml_t xml = NULL;
|
|
char *xml_string = NULL;
|
|
|
|
switch_core_set_variable("xml_disable_dtd", "true");
|
|
xml = switch_xml_parse_str_dynamic((char *)text, SWITCH_TRUE);
|
|
fst_requires(xml);
|
|
xml_string = switch_xml_toxml_ex(xml, SWITCH_FALSE, SWITCH_FALSE);
|
|
fst_requires(xml_string);
|
|
fst_check_string_equals(xml_string, "<xml>\n <Response>\n <Say>&lol1;</Say>\n </Response>\n</xml>\n");
|
|
free(xml_string);
|
|
switch_xml_free(xml);
|
|
switch_core_set_variable("xml_disable_dtd", "false");
|
|
}
|
|
FST_TEST_END()
|
|
|
|
FST_TEST_BEGIN(test_dtd_with_comments)
|
|
{
|
|
const char *text = "<xml><!DOCTYPE Response [<!--COMMENT1--><!ENTITY lol \"haha\"><!ENTITY lol1 \"&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;\"><!--COMMENT2-->]><Response><Say>&lol1;</Say></Response></xml>";
|
|
switch_xml_t xml = NULL;
|
|
char *xml_string = NULL;
|
|
|
|
xml = switch_xml_parse_str_dynamic((char *)text, SWITCH_TRUE);
|
|
fst_requires(xml);
|
|
xml_string = switch_xml_toxml_ex(xml, SWITCH_FALSE, SWITCH_FALSE);
|
|
fst_requires(xml_string);
|
|
fst_check_string_equals(xml_string, "<xml>\n <Response>\n <Say>hahahahahahahahahahahahahahahahahahahaha</Say>\n </Response>\n</xml>\n");
|
|
free(xml_string);
|
|
switch_xml_free(xml);
|
|
}
|
|
FST_TEST_END()
|
|
|
|
FST_TEST_BEGIN(test_dtd_disable_with_comments)
|
|
{
|
|
const char *text = "<xml><!DOCTYPE Response [<!--COMMENT1--><!ENTITY lol \"haha\"><!ENTITY lol1 \"&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;\"><!--COMMENT2-->]><Response><Say>&lol1;</Say></Response></xml>";
|
|
switch_xml_t xml = NULL;
|
|
char *xml_string = NULL;
|
|
|
|
switch_core_set_variable("xml_disable_dtd", "true");
|
|
xml = switch_xml_parse_str_dynamic((char *)text, SWITCH_TRUE);
|
|
fst_requires(xml);
|
|
xml_string = switch_xml_toxml_ex(xml, SWITCH_FALSE, SWITCH_FALSE);
|
|
fst_requires(xml_string);
|
|
fst_check_string_equals(xml_string, "<xml>\n <Response>\n <Say>&lol1;</Say>\n </Response>\n</xml>\n");
|
|
free(xml_string);
|
|
switch_xml_free(xml);
|
|
switch_core_set_variable("xml_disable_dtd", "false");
|
|
}
|
|
FST_TEST_END()
|
|
|
|
FST_TEST_BEGIN(test_exponential_entity_expansion)
|
|
{
|
|
/* Test handling of exponentially nested entity definitions
|
|
* Each entity references the previous one 10 times, creating
|
|
* 10^10 total references which would consume excessive memory
|
|
* if fully expanded. Parser should enforce expansion limits.
|
|
*/
|
|
const char *nested_entities =
|
|
"<?xml version=\"1.0\"?>\n"
|
|
"<!DOCTYPE lolz [\n"
|
|
"<!ENTITY lol \"lol\">\n"
|
|
"<!ELEMENT lolz (#PCDATA)>\n"
|
|
"<!ENTITY lol1 \"&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;\">\n"
|
|
"<!ENTITY lol2 \"&lol1;&lol1;&lol1;&lol1;&lol1;&lol1;&lol1;&lol1;&lol1;&lol1;\">\n"
|
|
"<!ENTITY lol3 \"&lol2;&lol2;&lol2;&lol2;&lol2;&lol2;&lol2;&lol2;&lol2;&lol2;\">\n"
|
|
"<!ENTITY lol4 \"&lol3;&lol3;&lol3;&lol3;&lol3;&lol3;&lol3;&lol3;&lol3;&lol3;\">\n"
|
|
"<!ENTITY lol5 \"&lol4;&lol4;&lol4;&lol4;&lol4;&lol4;&lol4;&lol4;&lol4;&lol4;\">\n"
|
|
"<!ENTITY lol6 \"&lol5;&lol5;&lol5;&lol5;&lol5;&lol5;&lol5;&lol5;&lol5;&lol5;\">\n"
|
|
"<!ENTITY lol7 \"&lol6;&lol6;&lol6;&lol6;&lol6;&lol6;&lol6;&lol6;&lol6;&lol6;\">\n"
|
|
"<!ENTITY lol8 \"&lol7;&lol7;&lol7;&lol7;&lol7;&lol7;&lol7;&lol7;&lol7;&lol7;\">\n"
|
|
"<!ENTITY lol9 \"&lol8;&lol8;&lol8;&lol8;&lol8;&lol8;&lol8;&lol8;&lol8;&lol8;\">\n"
|
|
"<!ENTITY lol10 \"&lol9;&lol9;&lol9;&lol9;&lol9;&lol9;&lol9;&lol9;&lol9;&lol9;\">\n"
|
|
"]>\n"
|
|
"<lolz>&lol10;</lolz>";
|
|
|
|
switch_xml_t xml = switch_xml_parse_str_dynamic((char *)nested_entities, SWITCH_TRUE);
|
|
|
|
if (xml) {
|
|
const char *error = switch_xml_error(xml);
|
|
if (error && *error) {
|
|
/* Parser enforced expansion limits */
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO,
|
|
"Parser correctly enforced entity expansion limits: %s\n", error);
|
|
switch_xml_free(xml);
|
|
} else {
|
|
/* Parser did not enforce limits */
|
|
switch_xml_free(xml);
|
|
fst_fail("Parser did not enforce entity expansion limits");
|
|
}
|
|
} else {
|
|
/* Parser returned NULL */
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO,
|
|
"Parser rejected excessive entity expansion\n");
|
|
}
|
|
}
|
|
FST_TEST_END()
|
|
|
|
FST_TEST_BEGIN(test_entity_expansion_limit)
|
|
{
|
|
/* Test that reasonable entity usage still works */
|
|
const char *safe_entities =
|
|
"<?xml version=\"1.0\"?>\n"
|
|
"<!DOCTYPE test [\n"
|
|
"<!ENTITY company \"FreeSWITCH\">\n"
|
|
"<!ENTITY product \"&company; Media Server\">\n"
|
|
"]>\n"
|
|
"<test>&product;</test>";
|
|
|
|
switch_xml_t xml = switch_xml_parse_str_dynamic((char *)safe_entities, SWITCH_TRUE);
|
|
|
|
fst_requires(xml);
|
|
fst_check_string_equals(xml->txt, "FreeSWITCH Media Server");
|
|
switch_xml_free(xml);
|
|
}
|
|
FST_TEST_END()
|
|
|
|
FST_TEST_BEGIN(test_empty_entity_decode)
|
|
{
|
|
const char *text =
|
|
"<xml><!DOCTYPE Response ["
|
|
"<!ENTITY empty \"\">"
|
|
"<!ENTITY name \"World\">"
|
|
"]><Response><Say>Hello∅, &name;∅!</Say></Response></xml>";
|
|
switch_xml_t xml = NULL;
|
|
char *xml_string = NULL;
|
|
|
|
xml = switch_xml_parse_str_dynamic((char *)text, SWITCH_TRUE);
|
|
if (!xml) {
|
|
fst_fail("failed to parse XML with empty entity");
|
|
goto test_empty_entity_decode_done;
|
|
}
|
|
|
|
xml_string = switch_xml_toxml_ex(xml, SWITCH_FALSE, SWITCH_FALSE);
|
|
if (!xml_string) {
|
|
fst_fail("failed to serialize parsed XML");
|
|
goto test_empty_entity_decode_done;
|
|
}
|
|
|
|
fst_check_string_equals(xml_string,
|
|
"<xml>\n <Response>\n <Say>Hello, World!</Say>\n </Response>\n</xml>\n");
|
|
|
|
test_empty_entity_decode_done:
|
|
free(xml_string);
|
|
if (xml) switch_xml_free(xml);
|
|
}
|
|
FST_TEST_END()
|
|
|
|
FST_TEST_BEGIN(test_utf_8_wide_codepoint)
|
|
{
|
|
/* U+10FFFF is the largest Unicode code point; its UTF-8 form
|
|
F4 8F BF BF serializes to "", the widest &#x...;
|
|
escape (10 chars) the encoder emits. It must serialize intact
|
|
and must not overrun the destination buffer. */
|
|
const char *single = "<xml>\xF4\x8F\xBF\xBF" "</xml>";
|
|
switch_xml_t xml = NULL;
|
|
char *xml_string = NULL;
|
|
int prefix;
|
|
|
|
xml = switch_xml_parse_str_dynamic((char *)single, SWITCH_TRUE);
|
|
if (!xml) {
|
|
fst_fail("failed to parse maximum code point document");
|
|
goto test_utf_8_wide_done;
|
|
}
|
|
|
|
xml_string = switch_xml_toxml(xml, SWITCH_FALSE);
|
|
if (!xml_string) {
|
|
fst_fail("failed to serialize maximum code point");
|
|
goto test_utf_8_wide_done;
|
|
}
|
|
|
|
fst_check_string_equals(xml_string, "<xml></xml>\n");
|
|
free(xml_string);
|
|
xml_string = NULL;
|
|
switch_xml_free(xml);
|
|
xml = NULL;
|
|
|
|
/* Serialize long runs of the widest escape so the destination
|
|
buffer reallocates many times. Sweeping the ASCII prefix length
|
|
shifts the write offset so that, across iterations, an escape is
|
|
emitted at every alignment relative to the reserved headroom,
|
|
including the tightest one. Each run must serialize intact: the
|
|
full escaped length, with no truncation or dropped escape. */
|
|
for (prefix = 0; prefix < 10; prefix++) {
|
|
switch_size_t runs = 1100;
|
|
switch_size_t cap = 5 + prefix + runs * 4 + 6 + 1;
|
|
char *doc = switch_must_malloc(cap);
|
|
char *w = doc;
|
|
switch_size_t i;
|
|
switch_size_t expected_len = 5 + (switch_size_t) prefix + runs * 10 + 7;
|
|
|
|
memcpy(w, "<xml>", 5);
|
|
w += 5;
|
|
for (i = 0; i < (switch_size_t) prefix; i++) {
|
|
*w++ = 'a';
|
|
}
|
|
for (i = 0; i < runs; i++) {
|
|
*w++ = (char) 0xF4;
|
|
*w++ = (char) 0x8F;
|
|
*w++ = (char) 0xBF;
|
|
*w++ = (char) 0xBF;
|
|
}
|
|
memcpy(w, "</xml>", 6);
|
|
w += 6;
|
|
*w = '\0';
|
|
|
|
xml = switch_xml_parse_str_dynamic(doc, SWITCH_TRUE);
|
|
free(doc);
|
|
if (!xml) {
|
|
fst_fail("failed to parse long wide-escape run");
|
|
goto test_utf_8_wide_done;
|
|
}
|
|
|
|
xml_string = switch_xml_toxml(xml, SWITCH_FALSE);
|
|
if (!xml_string) {
|
|
fst_fail("failed to serialize long wide-escape run");
|
|
goto test_utf_8_wide_done;
|
|
}
|
|
|
|
fst_check_string_has(xml_string, "");
|
|
fst_xcheck(strlen(xml_string) == expected_len, "serialized wide-escape run has wrong length");
|
|
free(xml_string);
|
|
xml_string = NULL;
|
|
switch_xml_free(xml);
|
|
xml = NULL;
|
|
}
|
|
|
|
test_utf_8_wide_done:
|
|
free(xml_string);
|
|
switch_xml_free(xml);
|
|
}
|
|
FST_TEST_END()
|
|
}
|
|
FST_SUITE_END()
|
|
}
|
|
FST_MINCORE_END()
|