]> code.ossystems Code Review - openembedded-core.git/commit
cve-check: fetch CVE data once at a time instead of in a single call
authorRoss Burton <ross.burton@intel.com>
Mon, 18 Nov 2019 16:46:47 +0000 (16:46 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 21 Nov 2019 23:06:08 +0000 (23:06 +0000)
commit53d0cc1e9b7190fa66d7ff1c59518f91b0128d99
tree87fc74ade7c33581d691f85199abd4a5869e3859
parentf19253cc9e70c974a8e21a142086c13d7cde04ff
cve-check: fetch CVE data once at a time instead of in a single call

This code used to construct a single SQL statement that fetched the NVD data for
every CVE requested.  For recipes such as the kernel where there are over 2000
CVEs to report this can hit the variable count limit and the query fails with
"sqlite3.OperationalError: too many SQL variables".  The default limit is 999
variables, but some distributions such as Debian set the default to 250000.

As the NVD table has an index on the ID column, whilst requesting the data
CVE-by-CVE is five times slower when working with 2000 CVEs the absolute time
different is insignificant: 0.05s verses 0.01s on my machine.

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/cve-check.bbclass