From 006ffc075cd7292aa0cba10af99c2e9d6858fca7 Mon Sep 17 00:00:00 2001 From: Zane Bitter Date: Wed, 8 Nov 2017 16:45:24 -0500 Subject: [PATCH] Detect group matches in replacements more robustly The Python re module uses '\n' for group backreference substitution, whereas mod_alias uses '$n', and thus we must translate between them when processing RedirectMatch directives. Previously this was done by substituting backslashes for any dollar signs in the replacement string. However, group substitution only occurs when the $ is not escaped with a backslash and is followed by a decimal digit. Follow the same rules here. Change-Id: Ib33534b40e0b126c769ec17f76e1ecc83d790ebc --- .../notes/group-subst-16dce373ccd24118.yaml | 3 +++ whereto/rules.py | 7 ++++++- whereto/tests/test_rules.py | 20 +++++++++++++++++++ 3 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/group-subst-16dce373ccd24118.yaml diff --git a/releasenotes/notes/group-subst-16dce373ccd24118.yaml b/releasenotes/notes/group-subst-16dce373ccd24118.yaml new file mode 100644 index 0000000..2857dfd --- /dev/null +++ b/releasenotes/notes/group-subst-16dce373ccd24118.yaml @@ -0,0 +1,3 @@ +fixes: + - Literal '$' characters are now handled correctly when they appear in + substitution strings for RedirectMatch directives. diff --git a/whereto/rules.py b/whereto/rules.py index faab4c1..6acdac0 100644 --- a/whereto/rules.py +++ b/whereto/rules.py @@ -70,14 +70,19 @@ class Redirect(Rule): class RedirectMatch(Rule): "A RedirectMatch rule with a regular expression." + _group_subst = re.compile(r'(?