summaryrefslogtreecommitdiffstats
path: root/meta/classes
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-14 12:01:44 +0100
commit2e6a9d0ea3766d7c7e157ac1e834d18762abf403 (patch)
tree5e20a951849d05648911624e66ad95b62be241f7 /meta/classes
parent62cc2a2f865d60d457d74527cf1f390eee8b3fc3 (diff)
downloadpoky-2e6a9d0ea3766d7c7e157ac1e834d18762abf403.tar.gz
cve-check: improve comment about CVE patch file names
(From OE-Core rev: fea9f2edf515cca07e867213294d0e6dafbfbd74) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 8aa613480663e11ecc62278d8c57ca719eb23899) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-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 246393338c..4fa1a64f85 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()