From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-devel@nongnu.org, Michael Roth <mdroth@linux.vnet.ibm.com>
Subject: Re: [PATCH v2 14/14] qga: Fix qmp_guest_suspend_{disk, ram}() error handling
Date: Wed, 22 Apr 2020 18:07:04 +0200 [thread overview]
Message-ID: <0cabb08f-b53a-ac6b-bd14-1aed2b88e848@redhat.com> (raw)
In-Reply-To: <87zhb3v9c4.fsf@dusky.pond.sub.org>
On 4/22/20 5:17 PM, Markus Armbruster wrote:
> Philippe Mathieu-Daudé <philmd@redhat.com> writes:
>
>> On 4/22/20 3:07 PM, Markus Armbruster wrote:
>>> The Error ** argument must be NULL, &error_abort, &error_fatal, or a
>>> pointer to a variable containing NULL. Passing an argument of the
>>> latter kind twice without clearing it in between is wrong: if the
>>> first call sets an error, it no longer points to NULL for the second
>>>
>>> qmp_guest_suspend_disk() and qmp_guest_suspend_ram() pass @local_err
>>> first to check_suspend_mode(), then to acquire_privilege(), then to
>>> execute_async(). Continuing after errors here can only end in tears.
>>> For instance, we risk tripping error_setv()'s assertion.
>>>
>>> Fixes: aa59637ea1c6a4c83430933f9c44c43e6c3f1b69
>>> Fixes: f54603b6aa765514b2519e74114a2f417759d727
>>> Cc: Michael Roth <mdroth@linux.vnet.ibm.com>
>>> Signed-off-by: Markus Armbruster <armbru@redhat.com>
>>> ---
>>> qga/commands-win32.c | 14 ++++++++++++++
>>> 1 file changed, 14 insertions(+)
>>>
>>> diff --git a/qga/commands-win32.c b/qga/commands-win32.c
>>> index 9717a8d52d..5ba56327dd 100644
>>> --- a/qga/commands-win32.c
>>> +++ b/qga/commands-win32.c
>>> @@ -1322,9 +1322,16 @@ void qmp_guest_suspend_disk(Error **errp)
>>> *mode = GUEST_SUSPEND_MODE_DISK;
>>> check_suspend_mode(*mode, &local_err);
>>> + if (local_err) {
>>> + goto out;
>>> + }
>>> acquire_privilege(SE_SHUTDOWN_NAME, &local_err);
>>> + if (local_err) {
>>> + goto out;
>>> + }
>>> execute_async(do_suspend, mode, &local_err);
>>> +out:
>>> if (local_err) {
>>
>> https://www.mail-archive.com/qemu-devel@nongnu.org/msg695647.html is
>> slightly different by removing the if() check.
>
> It frees @mode unconditionally (marked --> below) I believe that's
> wrong. execute_async() runs do_suspend() in a new thread, and passes it
> @mode. do_suspend() frees it.
Oops I missed that, good catch!
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>
>>> error_propagate(errp, local_err);
>>> g_free(mode);
>>> @@ -1338,9 +1345,16 @@ void qmp_guest_suspend_ram(Error **errp)
>>> *mode = GUEST_SUSPEND_MODE_RAM;
>>> check_suspend_mode(*mode, &local_err);
>>> + if (local_err) {
>>> + goto out;
>>> + }
>>> acquire_privilege(SE_SHUTDOWN_NAME, &local_err);
>>> + if (local_err) {
>>> + goto out;
>>> + }
>>> execute_async(do_suspend, mode, &local_err);
>>> +out:
>>> if (local_err) {
>>> error_propagate(errp, local_err);
>>> g_free(mode);
>>>
>
> diff --git a/qga/commands-win32.c b/qga/commands-win32.c
> index b49920e201..8b66098056 100644
> --- a/qga/commands-win32.c
> +++ b/qga/commands-win32.c
> @@ -1341,13 +1341,18 @@ void qmp_guest_suspend_disk(Error **errp)
>
> *mode = GUEST_SUSPEND_MODE_DISK;
> check_suspend_mode(*mode, &local_err);
> + if (local_err) {
> + goto out;
> + }
> acquire_privilege(SE_SHUTDOWN_NAME, &local_err);
> + if (local_err) {
> + goto out;
> + }
> execute_async(do_suspend, mode, &local_err);
>
> - if (local_err) {
> - error_propagate(errp, local_err);
> - g_free(mode);
> - }
> +out:
> + error_propagate(errp, local_err);
> -->+ g_free(mode);
> }
>
> void qmp_guest_suspend_ram(Error **errp)
>
next prev parent reply other threads:[~2020-04-22 16:08 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-22 13:07 [PATCH v2 00/14] Miscellaneous error handling fixes Markus Armbruster
2020-04-22 13:07 ` [PATCH v2 01/14] cryptodev: Fix cryptodev_builtin_cleanup() error API violation Markus Armbruster
2020-04-22 13:07 ` [PATCH v2 02/14] block/file-posix: Fix check_cache_dropped() error handling Markus Armbruster
2020-04-22 13:07 ` [PATCH v2 03/14] cpus: Fix configure_icount() error API violation Markus Armbruster
2020-04-22 13:07 ` [PATCH v2 04/14] cpus: Proper range-checking for -icount shift=N Markus Armbruster
2020-04-22 13:07 ` [PATCH v2 05/14] arm/virt: Fix virt_machine_device_plug_cb() error API violation Markus Armbruster
2020-04-22 13:07 ` [PATCH v2 06/14] fdc: Fix fallback=auto error handling Markus Armbruster
2020-04-22 13:07 ` [PATCH v2 07/14] bochs-display: Fix vgamem=SIZE " Markus Armbruster
2020-04-23 11:30 ` Gerd Hoffmann
2020-04-22 13:07 ` [PATCH v2 08/14] virtio-net: Fix duplex=... and speed=... " Markus Armbruster
2020-04-22 14:24 ` Michael S. Tsirkin
2020-04-22 13:07 ` [PATCH v2 09/14] xen/pt: Fix flawed conversion to realize() Markus Armbruster
2020-04-22 13:07 ` [PATCH v2 10/14] io: Fix qio_channel_socket_close() error handling Markus Armbruster
2020-04-22 13:07 ` [PATCH v2 11/14] migration/colo: Fix qmp_xen_colo_do_checkpoint() " Markus Armbruster
2020-04-22 13:07 ` [PATCH v2 12/14] tests/test-logging: Fix test for -dfilter 0..0xffffffffffffffff Markus Armbruster
2020-04-22 13:35 ` Philippe Mathieu-Daudé
2020-04-22 14:49 ` Eric Blake
2020-04-22 16:28 ` Philippe Mathieu-Daudé
2020-04-22 15:19 ` Markus Armbruster
2020-04-22 16:30 ` Philippe Mathieu-Daudé
2020-04-22 13:07 ` [PATCH v2 13/14] qga: Fix qmp_guest_get_memory_blocks() error handling Markus Armbruster
2020-04-22 13:14 ` Eric Blake
2020-04-22 13:07 ` [PATCH v2 14/14] qga: Fix qmp_guest_suspend_{disk, ram}() " Markus Armbruster
2020-04-22 13:19 ` Eric Blake
2020-04-22 13:41 ` Philippe Mathieu-Daudé
2020-04-22 15:17 ` Markus Armbruster
2020-04-22 16:07 ` Philippe Mathieu-Daudé [this message]
2020-04-23 8:35 ` Markus Armbruster
2020-04-22 20:21 ` [PATCH v2 00/14] Miscellaneous error handling fixes no-reply
2020-04-29 7:14 ` 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=0cabb08f-b53a-ac6b-bd14-1aed2b88e848@redhat.com \
--to=philmd@redhat.com \
--cc=armbru@redhat.com \
--cc=mdroth@linux.vnet.ibm.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).