summaryrefslogtreecommitdiffstats
path: root/meta/classes/cve-check.bbclass
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2021-08-05 18:50:46 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-06 06:34:58 +0100
commitae55dea68d2e0bde2a1ed02e78dc55c2f420cf37 (patch)
tree7389e92c0bfe78b386407e1cb3aa13799042b090 /meta/classes/cve-check.bbclass
parent4c28645c04ff3f51141a5fa3032353cac6c266c0 (diff)
downloadpoky-ae55dea68d2e0bde2a1ed02e78dc55c2f420cf37.tar.gz
cve-check: improve comment about CVE patch file names
(From OE-Core rev: 8aa613480663e11ecc62278d8c57ca719eb23899) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/cve-check.bbclass')
-rw-r--r--meta/classes/cve-check.bbclass9
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/classes/cve-check.bbclass b/meta/classes/cve-check.bbclass
index bf7dd15c73..6582f97151 100644
--- a/meta/classes/cve-check.bbclass
+++ b/meta/classes/cve-check.bbclass
@@ -166,9 +166,12 @@ def get_patches_cves(d):
166 pn = d.getVar("PN") 166 pn = d.getVar("PN")
167 cve_match = re.compile("CVE:( CVE\-\d{4}\-\d+)+") 167 cve_match = re.compile("CVE:( CVE\-\d{4}\-\d+)+")
168 168
169 # Matches last CVE-1234-211432 in the file name, also if written 169 # Matches the last "CVE-YYYY-ID" in the file name, also if written
170 # with small letters. Not supporting multiple CVE id's in a single 170 # in lowercase. Possible to have multiple CVE IDs in a single
171 # file name. 171 # file name, but only the last one will be detected from the file name.
172 # However, patch files contents addressing multiple CVE IDs are supported
173 # (cve_match regular expression)
174
172 cve_file_name_match = re.compile(".*([Cc][Vv][Ee]\-\d{4}\-\d+)") 175 cve_file_name_match = re.compile(".*([Cc][Vv][Ee]\-\d{4}\-\d+)")
173 176
174 patched_cves = set() 177 patched_cves = set()