From patchwork Tue Apr 8 16:47:42 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Marko, Peter" X-Patchwork-Id: 60997 X-Patchwork-Delegate: steve@sakoman.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 95C75C369A2 for ; Tue, 8 Apr 2025 16:48:35 +0000 (UTC) Received: from mta-64-227.siemens.flowmailer.net (mta-64-227.siemens.flowmailer.net [185.136.64.227]) by mx.groups.io with SMTP id smtpd.web11.523.1744130912293814391 for ; Tue, 08 Apr 2025 09:48:32 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=peter.marko@siemens.com header.s=fm2 header.b=a5FMnxpQ; spf=pass (domain: rts-flowmailer.siemens.com, ip: 185.136.64.227, mailfrom: fm-256628-202504081648297fa094bf821ea6a285-zcvrkg@rts-flowmailer.siemens.com) Received: by mta-64-227.siemens.flowmailer.net with ESMTPSA id 202504081648297fa094bf821ea6a285 for ; Tue, 08 Apr 2025 18:48:29 +0200 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; s=fm2; d=siemens.com; i=peter.marko@siemens.com; h=Date:From:Subject:To:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:Cc:References:In-Reply-To; bh=IcqbXsn1Eb8gLH97aNTHrk6cq09zQDnlFAkyv2tuvRQ=; b=a5FMnxpQXL7f+l9rqql4T2+VsY/LdP1gRI7edSGXTegmW+4ZQDV8pwrQCdAkjbe0N3Tk/a h9ruOBQTtCCQ2vuP08whUZ+pdJsEyuyAEapljiHDxeylFxCi1SUpiXsmPR+sV4wgQzTlSMNX PJfnUGUpZI9kX9BzYYJj02K8SivPhuw7gAK0u5MS3L7lZNBxzkb7qWcHg+Zk4A1FqMQuB9Z8 9bgkYdDYpYEpJMA2vE6mKXfJb3pcbG/ycqNhA3oEHn4l566S7xc7dWW6YxioiYJAwSY9drkl rI0ZG6gsvIOnw2UrWtc4ZOPAycUGJtzVUM00cINa27RuHg9pDpCUbxIg==; From: Peter Marko To: openembedded-core@lists.openembedded.org Cc: Peter Marko , Madhu Marri , Steve Sakoman Subject: [OE-core][kirkstone][PATCH v2] qemu: ignore CVE-2023-1386 Date: Tue, 8 Apr 2025 18:47:42 +0200 Message-Id: <20250408164742.57205-1-peter.marko@siemens.com> In-Reply-To: <20250408164030.56024-1-peter.marko@siemens.com> References: <20250408164030.56024-1-peter.marko@siemens.com> MIME-Version: 1.0 X-Flowmailer-Platform: Siemens Feedback-ID: 519:519-256628:519-21489:flowmailer List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Tue, 08 Apr 2025 16:48:35 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/214549 From: Peter Marko Upstream Repository: https://gitlab.com/qemu-project/qemu.git Bug Details: https://nvd.nist.gov/vuln/detail/CVE-2023-1386 Type: Security Advisory CVE: CVE-2023-1386 Score: 3.3 Analysis: - According to redhat[1] this CVE has closed as not a bug. Reference: [1] https://bugzilla.redhat.com/show_bug.cgi?id=2223985 (From OE-Core rev: 6a5d9e3821246c39ec57fa483802e1bb74fca724) Signed-off-by: Madhu Marri Signed-off-by: Steve Sakoman (Converted to old CVE_CHECK_IGNORE syntax) Signed-off-by: Peter Marko --- v2: removed scarthgap qemu version from commit message meta/recipes-devtools/qemu/qemu.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index bee30cd56f..cae33459e6 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc @@ -161,6 +161,9 @@ CVE_CHECK_IGNORE += "CVE-2023-2680" # due to the rocker device not falling within the virtualization use case. CVE_CHECK_IGNORE += "CVE-2022-36648" +# disputed: not an issue as per https://bugzilla.redhat.com/show_bug.cgi?id=2223985 +CVE_CHECK_IGNORE += "CVE-2023-1386" + COMPATIBLE_HOST:mipsarchn32 = "null" COMPATIBLE_HOST:mipsarchn64 = "null" COMPATIBLE_HOST:riscv32 = "null"