From: Peter Krempa <pkrempa@redhat.com>
To: "Миронов Сергей Владимирович" <mironov@fintech.ru>
Cc: "libvirt-security@redhat.com" <libvirt-security@redhat.com>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
"libvir-list@redhat.com" <libvir-list@redhat.com>,
"sdl.qemu@linuxtesting.org" <sdl.qemu@linuxtesting.org>
Subject: Re: [sdl-qemu] [PATCH 0/1] There are no checks, virDomainChrSourceDefNew can return 0
Date: Thu, 14 Sep 2023 12:17:19 +0200 [thread overview]
Message-ID: <ZQLdr02TannQD5gi@angien.pipo.sk> (raw)
In-Reply-To: <ace59b33a24b45dbb4075800c0922641@fintech.ru>
CC-ing qemu-devel with a patch solely for libvirt doesn't make sense.
Also 'libvirt-security' list is private and is is intended as a first
contact list for stuff to be embargoed. It makes little sense to include
it when posting to the public 'libvir-list'.
On Thu, Sep 14, 2023 at 09:44:13 +0000, Миронов Сергей Владимирович wrote:
> There are no checks, virDomainChrSourceDefNew can return 0.
s/0/NULL
While very technically true, realistically that can't happen any more.
'virObjectNew' always returns a valid pointer or abort()s, and
VIR_CLASS_NEW can return 0 on programming errors.
Thus this is not a security issue.
> Return value of a function 'virDomainChrSourceDefNew'
>
> is dereferenced at qemu_hotplug.c without checking for NULL,
>
> but it is usually checked for this function.
Remove the extra empty lines please.
>
>
> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>
>
> Fixes: 1f85f0967b ("ci: jobs.sh: Add back '--no-suite syntax-check --print-errorlogs'")
^^ This makes no sense. The commit you are referencing is changing a
shell script.
>
> Signed-off-by: Sergey Mironov <mironov@fintech.ru>
>
> ---
> src/qemu/qemu_hotplug.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/src/qemu/qemu_hotplug.c b/src/qemu/qemu_hotplug.c
> index 177ca87d11..09e16c2c7e 100644
> --- a/src/qemu/qemu_hotplug.c
> +++ b/src/qemu/qemu_hotplug.c
> @@ -3207,6 +3207,8 @@ qemuDomainAttachFSDevice(virQEMUDriver *driver,
> qemuAssignDeviceFSAlias(vm->def, fs);
>
> chardev = virDomainChrSourceDefNew(priv->driver->xmlopt);
> + if (chardev == NULL)
> + goto cleanup;
> chardev->type = VIR_DOMAIN_CHR_TYPE_UNIX;
> chardev->data.nix.path = qemuDomainGetVHostUserFSSocketPath(priv, fs);
> --
> 2.31.1
prev parent reply other threads:[~2023-09-14 10:19 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-14 9:44 [sdl-qemu] [PATCH 0/1] There are no checks, virDomainChrSourceDefNew can return 0 Миронов Сергей Владимирович
2023-09-14 10:17 ` Peter Krempa [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZQLdr02TannQD5gi@angien.pipo.sk \
--to=pkrempa@redhat.com \
--cc=libvir-list@redhat.com \
--cc=libvirt-security@redhat.com \
--cc=mironov@fintech.ru \
--cc=qemu-devel@nongnu.org \
--cc=sdl.qemu@linuxtesting.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).