* [PATCH v4 1/4] generate-cve-exclusions: Add --output-json option
2026-01-15 19:03 [PATCH v4 0/4] generate-cve-exclusions: Add a new bbclass ValentinBoudevin
@ 2026-01-15 19:03 ` ValentinBoudevin
2026-01-15 19:03 ` [PATCH v4 2/4] generate-cve-exclusions: Add a .bbclass ValentinBoudevin
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: ValentinBoudevin @ 2026-01-15 19:03 UTC (permalink / raw)
To: openembedded-core; +Cc: ValentinBoudevin
This option "--output-json" can be used to return a json file instead of
the standard .inc file provided.
The JSON file can easily be manipulated contrary to the .inc file.
Example output structure of the JSON file:
```json
{
"cve_status": {
"CVE-2019-25160": {
"active": false,
"message": "fixed-version: Fixed from version 5.0"
},
"CVE-2019-25162": {
"active": false,
"message": "fixed-version: Fixed from version 6.0"
},
...
```
Also, this commit doesn't affect or modify any existing behaviour of the
script.
Signed-off-by: Valentin Boudevin <valentin.boudevin@gmail.com>
---
.../linux/generate-cve-exclusions.py | 64 +++++++++++++++----
1 file changed, 50 insertions(+), 14 deletions(-)
diff --git a/meta/recipes-kernel/linux/generate-cve-exclusions.py b/meta/recipes-kernel/linux/generate-cve-exclusions.py
index dfc16663a5..5a0a947e06 100755
--- a/meta/recipes-kernel/linux/generate-cve-exclusions.py
+++ b/meta/recipes-kernel/linux/generate-cve-exclusions.py
@@ -91,6 +91,7 @@ def main(argp=None):
parser = argparse.ArgumentParser()
parser.add_argument("datadir", type=pathlib.Path, help="Path to a clone of https://github.com/CVEProject/cvelistV5 or https://git.kernel.org/pub/scm/linux/security/vulns.git")
parser.add_argument("version", type=Version, help="Kernel version number to generate data for, such as 6.1.38")
+ parser.add_argument("--output-json", action="store_true", help="Return CVE_STATUS mapping as JSON")
args = parser.parse_args(argp)
datadir = args.datadir.resolve()
@@ -99,7 +100,10 @@ def main(argp=None):
data_version = subprocess.check_output(("git", "describe", "--tags", "HEAD"), cwd=datadir, text=True)
- print(f"""
+ cve_status = {}
+
+ if not args.output_json:
+ print(f"""
# Auto-generated CVE metadata, DO NOT EDIT BY HAND.
# Generated at {datetime.datetime.now(datetime.timezone.utc)} for kernel version {version}
# From {datadir.name} {data_version}
@@ -131,26 +135,58 @@ do_cve_check[prefuncs] += "check_kernel_cve_status_version"
continue
first_affected, fixed, backport_ver = get_fixed_versions(cve_info, base_version)
if not fixed:
- print(f"# {cve} has no known resolution")
+ cve_status[cve] = {
+ "active": True,
+ "message": "no known resolution"
+ }
+ if not args.output_json:
+ print(f"# {cve} has no known resolution")
elif first_affected and version < first_affected:
- print(f'CVE_STATUS[{cve}] = "fixed-version: only affects {first_affected} onwards"')
+ cve_status[cve] = {
+ "active": False,
+ "message": f"fixed-version: only affects {first_affected} onwards"
+ }
+ if not args.output_json:
+ print(f'CVE_STATUS[{cve}] = "fixed-version: only affects {first_affected} onwards"')
elif fixed <= version:
- print(
- f'CVE_STATUS[{cve}] = "fixed-version: Fixed from version {fixed}"'
- )
+ cve_status[cve] = {
+ "active": False,
+ "message": f"fixed-version: Fixed from version {fixed}"
+ }
+ if not args.output_json:
+ print(f'CVE_STATUS[{cve}] = "fixed-version: Fixed from version {fixed}"')
else:
if backport_ver:
if backport_ver <= version:
- print(
- f'CVE_STATUS[{cve}] = "cpe-stable-backport: Backported in {backport_ver}"'
- )
+ cve_status[cve] = {
+ "active": False,
+ "message": f"cpe-stable-backport: Backported in {backport_ver}"
+ }
+ if not args.output_json:
+ print(f'CVE_STATUS[{cve}] = "cpe-stable-backport: Backported in {backport_ver}"')
else:
- print(f"# {cve} may need backporting (fixed from {backport_ver})")
+ cve_status[cve] = {
+ "active": True,
+ "message": f"May need backporting (fixed from {backport_ver})"
+ }
+ if not args.output_json:
+ print(f"# {cve} may need backporting (fixed from {backport_ver})")
else:
- print(f"# {cve} needs backporting (fixed from {fixed})")
-
- print()
-
+ cve_status[cve] = {
+ "active": True,
+ "message": f"#Needs backporting (fixed from {fixed})"
+ }
+ if not args.output_json:
+ print(f"# {cve} needs backporting (fixed from {fixed})")
+
+ if not args.output_json:
+ print()
+
+ # Emit structured output if --ret-struct was requested
+ if args.output_json:
+ print(json.dumps({
+ "cve_status": cve_status,
+ }, indent=2))
if __name__ == "__main__":
main()
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH v4 2/4] generate-cve-exclusions: Add a .bbclass
2026-01-15 19:03 [PATCH v4 0/4] generate-cve-exclusions: Add a new bbclass ValentinBoudevin
2026-01-15 19:03 ` [PATCH v4 1/4] generate-cve-exclusions: Add --output-json option ValentinBoudevin
@ 2026-01-15 19:03 ` ValentinBoudevin
2026-01-16 15:35 ` [OE-core] " Antonin Godard
2026-01-15 19:03 ` [PATCH v4 3/4] generate-cve-exclusions: Move python script ValentinBoudevin
` (2 subsequent siblings)
4 siblings, 1 reply; 7+ messages in thread
From: ValentinBoudevin @ 2026-01-15 19:03 UTC (permalink / raw)
To: openembedded-core; +Cc: ValentinBoudevin
Add a .bbclass to generate-cve-exclusions to use this script at every
run.
Two steps for testing:
1) Inherit this class in the kernel recipe with "inherit
generate-cve-exclusions.bbclass"
2) Use the following command to generate a cvelistV5 entry with a JSON
file in in ${WORKDIR}/cvelistV5/ :
"bitbake linux-yocto -c generate-cve-exclusions"
The JSON file can then be parsed in the following run by cve-check.
This class contains several methods:
*do_clone_cvelistV5: Clone the cvelistV5 repo in
${WORKDIR}/cvelistV5/git
(e.g. bitbake-builds/poky-master/build/tmp/work/qemux86_64-poky-linux/
linux-yocto/6.18.1+git/cvelistV5/git)
*do_generate_cve_exclusions: Use the script generate-cve-exclusions.py.
It uses the new "--output-json" argument to generate a JSON file as an
output stored in ${WORKDIR}/cvelistV5//cve-exclusion_${LINUX_VERSION}.json
*do_cve_check:prepend: Parse the previously generated JSON file to set
the variable CVE_STATUS corretly
The class also provides some variables:
*GENERATE_CVE_EXCLUSIONS_SRC_URI and GENERATE_CVE_EXCLUSIONS_SRCREV can
be used to change the source repository or fix a commit with SRCREV
(usefull for deterministic testing)
*GENERATE_CVE_EXCLUSIONS_NETWORK can be set to 0 to provide an offline
mode based on DL_DIR directory.
*GENERATE_CVE_EXCLUSIONS_WORKDIR path used as a working directory for
this class
Signed-off-by: Valentin Boudevin <valentin.boudevin@gmail.com>
---
meta/classes/generate-cve-exclusions.bbclass | 97 ++++++++++++++++++++
1 file changed, 97 insertions(+)
create mode 100644 meta/classes/generate-cve-exclusions.bbclass
diff --git a/meta/classes/generate-cve-exclusions.bbclass b/meta/classes/generate-cve-exclusions.bbclass
new file mode 100644
index 0000000000..163f23ecee
--- /dev/null
+++ b/meta/classes/generate-cve-exclusions.bbclass
@@ -0,0 +1,97 @@
+GENERATE_CVE_EXCLUSIONS_SRC_URI ?= "git://github.com/CVEProject/cvelistV5.git;branch=main;protocol=https;destsuffix=git"
+GENERATE_CVE_EXCLUSIONS_SRCREV ?= "${@bb.fetch2.get_autorev(d)}"
+GENERATE_CVE_EXCLUSIONS_NETWORK ?= "1"
+GENERATE_CVE_EXCLUSIONS_WORKDIR ?= "${WORKDIR}/cvelistV5"
+
+SRC_URI:append = " ${GENERATE_CVE_EXCLUSIONS_SRC_URI};name=generate-cve-exclusions"
+SRCREV_generate-cve-exclusions = "${GENERATE_CVE_EXCLUSIONS_SRCREV}"
+
+python do_clone_cvelistV5() {
+ import subprocess
+ import shutil, os
+ network_allowed = d.getVar("GENERATE_CVE_EXCLUSIONS_NETWORK") == "1"
+ rootdir = d.getVar("GENERATE_CVE_EXCLUSIONS_WORKDIR")
+ # Remove existing unpacked directory if any
+ if os.path.exists(rootdir):
+ shutil.rmtree(rootdir)
+ # Prepare fetcher
+ src_uri_list = (d.getVar('SRC_URI') or "").split()
+ fetcher = bb.fetch2.Fetch(src_uri_list, d)
+ # Clone only if network is allowed
+ if network_allowed:
+ fetcher.download()
+ else:
+ # Offline mode without network access
+ bb.note("GENERATE_CVE_EXCLUSIONS_NETWORK=0: Skipping online fetch. Checking local downloads in DL_DIR...")
+ have_sources = False
+ dl_dir = d.getVar("DL_DIR")
+ srcrev = d.getVar("SRCREV")
+ # Check SRCREV is NOT set to AUTOREV
+ if srcrev.strip() in ("${AUTOREV}", "AUTOINC"):
+ bb.warn("Offline mode but SRCREV is set to AUTOREV/AUTOINC. Cannot proceed without network access.")
+ return
+ # Loop through the fetcher's expanded URL data
+ for ud in fetcher.expanded_urldata():
+ ud.setup_localpath(d)
+ # Check mirror tarballs first
+ for mirror_fname in ud.mirrortarballs:
+ mirror_path = os.path.join(dl_dir, mirror_fname)
+ if os.path.exists(mirror_path):
+ bb.note(f"Found mirror tarball: {mirror_path}")
+ have_sources = True
+ break
+ # If no mirror, check original download path
+ if not have_sources and ud.localpath and os.path.exists(ud.localpath):
+ bb.note(f"Found local download: {ud.localpath}")
+ have_sources = True
+ if not have_sources:
+ bb.warn("Offline mode but required source is missing.\n"f"SRC_URI = {ud.url}")
+ return
+ # Unpack into the standard work directory
+ fetcher.unpack(rootdir)
+ # Remove the folder ${PN} set by unpack
+ subdirs = [d for d in os.listdir(rootdir) if os.path.isdir(os.path.join(rootdir, d))]
+ if len(subdirs) == 1:
+ srcdir = os.path.join(rootdir, subdirs[0])
+ for f in os.listdir(srcdir):
+ shutil.move(os.path.join(srcdir, f), rootdir)
+ shutil.rmtree(srcdir)
+ bb.note("Vulnerabilities repo unpacked into: %s" % rootdir)
+}
+do_clone_cvelistV5[network] = "${GENERATE_CVE_EXCLUSIONS_NETWORK}"
+do_clone_cvelistV5[nostamp] = "1"
+do_clone_cvelistV5[doc] = "Clone CVE information from the CVE Project: https://github.com/CVEProject/cvelistV5.git"
+addtask clone_cvelistV5 before do_generate_cve_exclusions
+
+do_generate_cve_exclusions() {
+ generate_cve_exclusions_script=$(find ${COREBASE} -name "generate-cve-exclusions.py")
+ if [ -z "${generate_cve_exclusions_script}" ]; then
+ bbfatal "generate-cve-exclusions.py not found in ${COREBASE}."
+ fi
+ python3 "${generate_cve_exclusions_script}" \
+ "${GENERATE_CVE_EXCLUSIONS_WORKDIR}/git" \
+ ${LINUX_VERSION} \
+ --output-json > ${GENERATE_CVE_EXCLUSIONS_WORKDIR}/cve-exclusion_${LINUX_VERSION}.json
+}
+do_generate_cve_exclusions[nostamp] = "1"
+do_generate_cve_exclusions[doc] = "Generate CVE exclusions for the kernel build. (e.g., cve-exclusion_6.12.inc)"
+addtask generate_cve_exclusions after do_clone_cvelistV5 before do_cve_check
+
+python do_cve_check:prepend() {
+ import os
+ import json
+ workdir = d.getVar("GENERATE_CVE_EXCLUSIONS_WORKDIR")
+ kernel_version = d.getVar("LINUX_VERSION")
+ json_input_file = os.path.join(workdir, "cve-exclusion_%s.json" % kernel_version)
+ if os.path.exists(json_input_file):
+ with open(json_input_file, 'r', encoding='utf-8') as f:
+ cve_data = json.load(f)
+ cve_status_dict = cve_data.get("cve_status", {})
+ count = 0
+ for cve_id, info in cve_status_dict.items():
+ if info.get("active", True):
+ continue
+ d.setVarFlag("CVE_STATUS", cve_id, info.get("message", ""))
+ count += 1
+ bb.note("Loaded %d CVE_STATUS entries from JSON output for kernel %s" % (count, kernel_version))
+}
\ No newline at end of file
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [OE-core] [PATCH v4 2/4] generate-cve-exclusions: Add a .bbclass
2026-01-15 19:03 ` [PATCH v4 2/4] generate-cve-exclusions: Add a .bbclass ValentinBoudevin
@ 2026-01-16 15:35 ` Antonin Godard
0 siblings, 0 replies; 7+ messages in thread
From: Antonin Godard @ 2026-01-16 15:35 UTC (permalink / raw)
To: valentin.boudevin, openembedded-core
Hi,
On Thu Jan 15, 2026 at 8:03 PM CET, vboudevin via lists.openembedded.org wrote:
> Add a .bbclass to generate-cve-exclusions to use this script at every
> run.
>
> Two steps for testing:
> 1) Inherit this class in the kernel recipe with "inherit
> generate-cve-exclusions.bbclass"
If this class is only meant to be used in a kernel recipe, maybe
"kernel-generate-cve-exclusions" would be more appropriate name for it?
Not having "kernel" in it would make the class name sound like it could be used
elsewhere.
Antonin
--
Antonin Godard, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v4 3/4] generate-cve-exclusions: Move python script
2026-01-15 19:03 [PATCH v4 0/4] generate-cve-exclusions: Add a new bbclass ValentinBoudevin
2026-01-15 19:03 ` [PATCH v4 1/4] generate-cve-exclusions: Add --output-json option ValentinBoudevin
2026-01-15 19:03 ` [PATCH v4 2/4] generate-cve-exclusions: Add a .bbclass ValentinBoudevin
@ 2026-01-15 19:03 ` ValentinBoudevin
2026-01-15 19:03 ` [PATCH v4 4/4] linux: Add inherit on generate-cve-exclusions ValentinBoudevin
2026-01-15 19:49 ` [OE-core] [PATCH v4 0/4] generate-cve-exclusions: Add a new bbclass Ankur Tyagi
4 siblings, 0 replies; 7+ messages in thread
From: ValentinBoudevin @ 2026-01-15 19:03 UTC (permalink / raw)
To: openembedded-core; +Cc: ValentinBoudevin
The script should be located with other scripts in scripts/contrib
instead of staying in meta/classes/.
Update the new .bbclass to match this modification
Signed-off-by: Valentin Boudevin <valentin.boudevin@gmail.com>
---
meta/classes/generate-cve-exclusions.bbclass | 2 +-
.../linux => scripts/contrib}/generate-cve-exclusions.py | 0
2 files changed, 1 insertion(+), 1 deletion(-)
rename {meta/recipes-kernel/linux => scripts/contrib}/generate-cve-exclusions.py (100%)
diff --git a/meta/classes/generate-cve-exclusions.bbclass b/meta/classes/generate-cve-exclusions.bbclass
index 163f23ecee..1b0fa4baa5 100644
--- a/meta/classes/generate-cve-exclusions.bbclass
+++ b/meta/classes/generate-cve-exclusions.bbclass
@@ -64,7 +64,7 @@ do_clone_cvelistV5[doc] = "Clone CVE information from the CVE Project: https://g
addtask clone_cvelistV5 before do_generate_cve_exclusions
do_generate_cve_exclusions() {
- generate_cve_exclusions_script=$(find ${COREBASE} -name "generate-cve-exclusions.py")
+ generate_cve_exclusions_script=${COREBASE}/scripts/contrib/generate-cve-exclusions.py
if [ -z "${generate_cve_exclusions_script}" ]; then
bbfatal "generate-cve-exclusions.py not found in ${COREBASE}."
fi
diff --git a/meta/recipes-kernel/linux/generate-cve-exclusions.py b/scripts/contrib/generate-cve-exclusions.py
similarity index 100%
rename from meta/recipes-kernel/linux/generate-cve-exclusions.py
rename to scripts/contrib/generate-cve-exclusions.py
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH v4 4/4] linux: Add inherit on generate-cve-exclusions
2026-01-15 19:03 [PATCH v4 0/4] generate-cve-exclusions: Add a new bbclass ValentinBoudevin
` (2 preceding siblings ...)
2026-01-15 19:03 ` [PATCH v4 3/4] generate-cve-exclusions: Move python script ValentinBoudevin
@ 2026-01-15 19:03 ` ValentinBoudevin
2026-01-15 19:49 ` [OE-core] [PATCH v4 0/4] generate-cve-exclusions: Add a new bbclass Ankur Tyagi
4 siblings, 0 replies; 7+ messages in thread
From: ValentinBoudevin @ 2026-01-15 19:03 UTC (permalink / raw)
To: openembedded-core; +Cc: ValentinBoudevin
Update linux-yocto.inc to inherit the new generate-cve-exclusions class.
Signed-off-by: Valentin Boudevin <valentin.boudevin@gmail.com>
---
meta/recipes-kernel/linux/linux-yocto.inc | 3 +++
1 file changed, 3 insertions(+)
diff --git a/meta/recipes-kernel/linux/linux-yocto.inc b/meta/recipes-kernel/linux/linux-yocto.inc
index 4d0a726bb6..f6a1161940 100644
--- a/meta/recipes-kernel/linux/linux-yocto.inc
+++ b/meta/recipes-kernel/linux/linux-yocto.inc
@@ -5,6 +5,9 @@ HOMEPAGE = "https://www.yoctoproject.org/"
LIC_FILES_CHKSUM ?= "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
+# Generate Dynamic CVE Exclusions
+inherit generate-cve-exclusions
+
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+(\.\d+)*)"
RECIPE_NO_UPDATE_REASON = "Recipe is updated through a separate process"
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [OE-core] [PATCH v4 0/4] generate-cve-exclusions: Add a new bbclass
2026-01-15 19:03 [PATCH v4 0/4] generate-cve-exclusions: Add a new bbclass ValentinBoudevin
` (3 preceding siblings ...)
2026-01-15 19:03 ` [PATCH v4 4/4] linux: Add inherit on generate-cve-exclusions ValentinBoudevin
@ 2026-01-15 19:49 ` Ankur Tyagi
4 siblings, 0 replies; 7+ messages in thread
From: Ankur Tyagi @ 2026-01-15 19:49 UTC (permalink / raw)
To: valentin.boudevin; +Cc: openembedded-core
On Fri, Jan 16, 2026 at 8:03 AM vboudevin via lists.openembedded.org
<valentin.boudevin=gmail.com@lists.openembedded.org> wrote:
>
> Changes since v3:
> - Patch 2/4:
> * Add variables to control offline mode, source URI and
> SRCREV for deterministic testing (GENERATE_CVE_EXCLUSIONS_SRC_URI,
> GENERATE_CVE_EXCLUSIONS_SRCREV, GENERATE_CVE_EXCLUSIONS_NETWORK).
> * Updated generate_cve_exclusions task scheduling to be executed before
> do_cve_check.
>
> Changes since v2:
> - Patch 4/4: Inherit the new bbclass in linux-yocto.inc instead of
> individual recipes.
>
> Changes since v1:
> - Patch 2/4: Removed the mandatory execution of the
> generate-cve-exclusions class on every build. It now needs to be
> manually run using:
> bitbake -c generate-cve-exclusions <kernel-recipe>
I think it will be good to update documentation as well mentioning new
variables and the step
https://docs.yoctoproject.org/dev/ref-manual/variables.html
https://docs.yoctoproject.org/dev/dev-manual/vulnerabilities.html
> ValentinBoudevin (4):
> generate-cve-exclusions: Add --output-json option
> generate-cve-exclusions: Add a .bbclass
> generate-cve-exclusions: Move python script
> linux: Add inherit on generate-cve-exclusions
>
> meta/classes/generate-cve-exclusions.bbclass | 97 +++++++++++++++++++
> meta/recipes-kernel/linux/linux-yocto.inc | 3 +
> .../contrib}/generate-cve-exclusions.py | 64 +++++++++---
> 3 files changed, 150 insertions(+), 14 deletions(-)
> create mode 100644 meta/classes/generate-cve-exclusions.bbclass
> rename {meta/recipes-kernel/linux => scripts/contrib}/generate-cve-exclusions.py (71%)
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#229427): https://lists.openembedded.org/g/openembedded-core/message/229427
> Mute This Topic: https://lists.openembedded.org/mt/117285139/3619737
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [ankur.tyagi85@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
^ permalink raw reply [flat|nested] 7+ messages in thread