summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/svg/qsvghandler.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/svg/qsvghandler.cpp b/src/svg/qsvghandler.cpp
index e65c063..6f3216b 100644
--- a/src/svg/qsvghandler.cpp
+++ b/src/svg/qsvghandler.cpp
@@ -3599,6 +3599,10 @@ void QSvgHandler::init()
parse();
}
+// Having too many unfinished elements will cause a stack overflow
+// in the dtor of QSvgTinyDocument, see oss-fuzz issue 24000.
+static const int unfinishedElementsLimit = 2048;
+
void QSvgHandler::parse()
{
xml->setNamespaceProcessing(false);
@@ -3607,6 +3611,7 @@ void QSvgHandler::parse()
m_inStyle = false;
#endif
bool done = false;
+ int remainingUnfinishedElements = unfinishedElementsLimit;
while (!xml->atEnd() && !done) {
switch (xml->readNext()) {
case QXmlStreamReader::StartElement:
@@ -3618,7 +3623,10 @@ void QSvgHandler::parse()
// namespaceUri is empty. The only possible strategy at
// this point is to do what everyone else seems to do and
// ignore the reported namespaceUri completely.
- if (!startElement(xml->name().toString(), xml->attributes())) {
+ if (remainingUnfinishedElements
+ && startElement(xml->name().toString(), xml->attributes())) {
+ --remainingUnfinishedElements;
+ } else {
delete m_doc;
m_doc = 0;
return;
@@ -3626,6 +3634,7 @@ void QSvgHandler::parse()
break;
case QXmlStreamReader::EndElement:
endElement(xml->name());
+ ++remainingUnfinishedElements;
// if we are using somebody else's qxmlstreamreader
// we should not read until the end of the stream
done = !m_ownsReader && (xml->name() == QLatin1String("svg"));