Browse Source

Merge pull request #7476 from ewolinetz/patch_regex_fix

Automatic merge from submit-queue.

Correctly escape the variable value for regex searching when building patch

Was not correctly escaping the value of `line` before when building the regex expression.

Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1552744 and https://github.com/openshift/openshift-ansible/pull/7423
OpenShift Merge Robot 7 years ago
parent
commit
f5db331ec1
1 changed files with 4 additions and 3 deletions
  1. 4 3
      roles/openshift_logging/library/logging_patch.py

+ 4 - 3
roles/openshift_logging/library/logging_patch.py

@@ -76,11 +76,12 @@ def account_for_whitelist(current_file_contents, new_file_contents, white_list=N
     """
 
     for line in white_list:
-        new_file_line = re.match(r".*%s:.*\n" % line, new_file_contents)
+        regex_line = r".*" + re.escape(line) + r":.*\n"
+        new_file_line = re.match(regex_line, new_file_contents)
         if new_file_line:
-            current_file_contents = re.sub(r".*%s:.*\n" % line, new_file_line.group(0), current_file_contents)
+            current_file_contents = re.sub(regex_line, new_file_line.group(0), current_file_contents)
         else:
-            current_file_contents = re.sub(r".*%s:.*\n" % line, "", current_file_contents)
+            current_file_contents = re.sub(regex_line % line, "", current_file_contents)
 
     return current_file_contents