fuzz: Account for quadratic runtime in xmlXPathTranslateFunction

Avoid fuzzer timeouts caused by this known issue.
This commit is contained in:
Nick Wellnhofer 2024-04-09 18:00:13 +02:00
parent fd8a35114f
commit 20b0bd9800

15
xpath.c
View File

@ -8316,6 +8316,21 @@ xmlXPathTranslateFunction(xmlXPathParserContextPtr ctxt, int nargs) {
if (ctxt->error != 0)
goto error;
/*
* Account for quadratic runtime
*/
if (ctxt->context->opLimit != 0) {
unsigned long f1 = xmlStrlen(from->stringval) / 100;
unsigned long f2 = xmlStrlen(str->stringval);
if ((f1 > 0) && (f2 > 0)) {
unsigned long p = f1 > ULONG_MAX / f2 ? ULONG_MAX : f1 * f2;
if (xmlXPathCheckOpLimit(ctxt, p) < 0)
goto error;
}
}
target = xmlBufCreateSize(64);
if (target == NULL) {
xmlXPathPErrMemory(ctxt);