blob: f0c9909c3f859afc3323dfec3a6443b2164478ac [file] [log] [blame]
Andrew Geissler1fe918a2020-05-15 14:16:47 -05001From 28a35d63a0cc6b7beb51c77d93bb30778e6960cd Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Mat=C4=9Bj=20T=C3=BD=C4=8D?= <matyc@redhat.com>
3Date: Mon, 9 Dec 2019 13:41:47 +0100
4Subject: [PATCH] Fixed the broken fix, when greedy regex ate the whole file.
5
6We want to match attributes in an XML element, not in the whole file.
7
8Upstream-Status: Backport
9[https://github.com/ComplianceAsCode/content/commit/28a35d63a0cc6b7beb51c77d93bb30778e6960cd]
10
11Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
12---
13 ssg/build_remediations.py | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16diff --git a/ssg/build_remediations.py b/ssg/build_remediations.py
17index 13e90f732..edf31c0cf 100644
18--- a/ssg/build_remediations.py
19+++ b/ssg/build_remediations.py
20@@ -57,10 +57,10 @@ def get_available_functions(build_dir):
21 with codecs.open(xmlfilepath, "r", encoding="utf-8") as xmlfile:
22 filestring = xmlfile.read()
23 # This regex looks implementation dependent but we can rely on the element attributes
24- # being present on one line.
25+ # being present. Beware, DOTALL means we go through the whole file at once.
26 # We can't rely on ElementTree sorting XML attrs in any way since Python 3.7.
27 remediation_functions = re.findall(
28- r'<Value.*id=\"function_(\S+)\"',
29+ r'<Value[^>]+id=\"function_(\S+)\"',
30 filestring, re.DOTALL
31 )
32
33--
342.17.1
35