Commit 3466daa7 authored by Patrick Thier's avatar Patrick Thier Committed by Commit Bot

[regexp] Throw when length of text nodes in alternatives is too large.

Offsets in regular expressions are limited to 16 bits.
It was possible to exceed this limit when emitting greedy loops where
the length of text nodes exceeded 16 bits, resulting in overflowing
offsets.
With this CL we throw a SyntaxError "Regular expression too large" to
prevent this overflow.

Bug: chromium:1166138
Change-Id: Ica624a243bf9827083ff883d9a976f13c8da02e5
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2629286
Commit-Queue: Patrick Thier <pthier@chromium.org>
Commit-Queue: Jakob Gruber <jgruber@chromium.org>
Reviewed-by: 's avatarJakob Gruber <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/master@{#72095}
parent a358c2eb
......@@ -2537,7 +2537,16 @@ int ChoiceNode::GreedyLoopTextLengthForAlternative(
SeqRegExpNode* seq_node = static_cast<SeqRegExpNode*>(node);
node = seq_node->on_success();
}
return read_backward() ? -length : length;
if (read_backward()) {
length = -length;
}
// Check that we can jump by the whole text length. If not, return sentinel
// to indicate the we can't construct a greedy loop.
if (length < RegExpMacroAssembler::kMinCPOffset ||
length > RegExpMacroAssembler::kMaxCPOffset) {
return kNodeIsTooComplexForGreedyLoops;
}
return length;
}
void LoopChoiceNode::AddLoopAlternative(GuardedAlternative alt) {
......
......@@ -73,9 +73,6 @@
# https://crbug.com/1129854
'tools/log': ['arch == arm or arch == arm64', SKIP],
# https://crbug.com/1166138
'regress/regress-1166138': SKIP,
##############################################################################
# Tests where variants make no sense.
'd8/enable-tracing': [PASS, NO_VARIANTS],
......
......@@ -4,4 +4,4 @@
let badregexp = "(?:" + " ".repeat(32768*2)+ ")*";
reg = RegExp(badregexp);
reg.test()
assertThrows(() => reg.test(), SyntaxError);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment