mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-01-12 21:44:21 -06:00
* Add safe regex matching with timeouts and validation * Remove redundant length check * Remove timeouterror workaround
51 lines
1.4 KiB
Python
51 lines
1.4 KiB
Python
from __future__ import annotations
|
|
|
|
import logging
|
|
import textwrap
|
|
|
|
import regex
|
|
from django.conf import settings
|
|
|
|
logger = logging.getLogger("paperless.regex")
|
|
|
|
REGEX_TIMEOUT_SECONDS: float = getattr(settings, "MATCH_REGEX_TIMEOUT_SECONDS", 0.1)
|
|
|
|
|
|
def validate_regex_pattern(pattern: str) -> None:
|
|
"""
|
|
Validate user provided regex for basic compile errors.
|
|
Raises ValueError on validation failure.
|
|
"""
|
|
|
|
try:
|
|
regex.compile(pattern)
|
|
except regex.error as exc:
|
|
raise ValueError(exc.msg) from exc
|
|
|
|
|
|
def safe_regex_search(pattern: str, text: str, *, flags: int = 0):
|
|
"""
|
|
Run a regex search with a timeout. Returns a match object or None.
|
|
Validation errors and timeouts are logged and treated as no match.
|
|
"""
|
|
|
|
try:
|
|
validate_regex_pattern(pattern)
|
|
compiled = regex.compile(pattern, flags=flags)
|
|
except (regex.error, ValueError) as exc:
|
|
logger.error(
|
|
"Error while processing regular expression %s: %s",
|
|
textwrap.shorten(pattern, width=80, placeholder="…"),
|
|
exc,
|
|
)
|
|
return None
|
|
|
|
try:
|
|
return compiled.search(text, timeout=REGEX_TIMEOUT_SECONDS)
|
|
except TimeoutError:
|
|
logger.warning(
|
|
"Regular expression matching timed out for pattern %s",
|
|
textwrap.shorten(pattern, width=80, placeholder="…"),
|
|
)
|
|
return None
|