From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Cc: marcandre.lureau@redhat.com, kraxel@redhat.com, mst@redhat.com
Subject: [PATCH 1/2] backends/dbus-vmstate: Fix short read error handling
Date: Tue, 26 Jan 2021 13:42:39 +0100 [thread overview]
Message-ID: <20210126124240.2081959-2-armbru@redhat.com> (raw)
In-Reply-To: <20210126124240.2081959-1-armbru@redhat.com>
When dbus_vmstate_post_load() fails, it complains to stderr. Except
on short read, where it checks with g_return_val_if_fail(). This
fails silently if G_DISABLE_CHECKS is undefined (it should be), or
else pads the short read with uninitialized bytes.
Replace g_return_val_if_fail() by a proper error check.
Fixes: 5010cec2bc87dafab39b3913c8ca91f88df9c540
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
backends/dbus-vmstate.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/backends/dbus-vmstate.c b/backends/dbus-vmstate.c
index bd050e8e9c..2a0d2e4a31 100644
--- a/backends/dbus-vmstate.c
+++ b/backends/dbus-vmstate.c
@@ -229,7 +229,10 @@ static int dbus_vmstate_post_load(void *opaque, int version_id)
&bytes_read, NULL, &err)) {
goto error;
}
- g_return_val_if_fail(bytes_read == len, -1);
+ if (bytes_read != len) {
+ error_report("%s: Short read", __func__);
+ return -1;
+ }
id[len] = 0;
trace_dbus_vmstate_loading(id);
--
2.26.2
next prev parent reply other threads:[~2021-01-26 12:45 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-26 12:42 [PATCH 0/2] g_return_if_fail(), g_return_val_if_fail() misuse Markus Armbruster
2021-01-26 12:42 ` Markus Armbruster [this message]
2021-01-26 13:09 ` [PATCH 1/2] backends/dbus-vmstate: Fix short read error handling Marc-André Lureau
2021-03-09 20:41 ` Laurent Vivier
2021-01-26 12:42 ` [PATCH 2/2] vhost_user_gpu: Drop dead check for g_malloc() failure Markus Armbruster
2021-01-26 13:09 ` Marc-André Lureau
2021-01-26 14:10 ` Michael S. Tsirkin
2021-03-09 20:42 ` Laurent Vivier
2021-02-19 9:16 ` [PATCH 0/2] g_return_if_fail(), g_return_val_if_fail() misuse Markus Armbruster
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=20210126124240.2081959-2-armbru@redhat.com \
--to=armbru@redhat.com \
--cc=kraxel@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.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).