Page MenuHomePhabricator

D21568.id51339.diff
No OneTemporary

D21568.id51339.diff

diff --git a/src/infrastructure/markup/markuprule/PhutilRemarkupHyperlinkRule.php b/src/infrastructure/markup/markuprule/PhutilRemarkupHyperlinkRule.php
--- a/src/infrastructure/markup/markuprule/PhutilRemarkupHyperlinkRule.php
+++ b/src/infrastructure/markup/markuprule/PhutilRemarkupHyperlinkRule.php
@@ -14,10 +14,13 @@
static $bare_pattern;
if ($angle_pattern === null) {
- // See T13608. Limit protocol matches to 32 characters to improve the
- // performance of the "<protocol>://" pattern, which can take a very long
- // time to match against long inputs if the maximum length of a protocol
- // sequence is unrestricted.
+ // See T13608. A previous version of this code matched bare URIs
+ // starting with "\w{3,}", which can take a very long time to match
+ // against long inputs.
+ //
+ // Use a protocol length limit in all patterns for general sanity,
+ // and a negative lookbehind in the bare pattern to avoid explosive
+ // complexity during expression evaluation.
$protocol_fragment = '\w{3,32}';
$uri_fragment = '[^\s'.PhutilRemarkupBlockStorage::MAGIC_BYTE.']+';
@@ -33,7 +36,7 @@
$uri_fragment);
$bare_pattern = sprintf(
- '(%s://%s)',
+ '((?<!\w)%s://%s)',
$protocol_fragment,
$uri_fragment);
}

File Metadata

Mime Type
text/plain
Expires
Sun, Mar 23, 10:05 AM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7718315
Default Alt Text
D21568.id51339.diff (1 KB)

Event Timeline