qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [PULL 03/11] block/iscsi: fix double-free on BUSY or similar statuses
Date: Wed,  8 Feb 2023 18:19:14 +0100	[thread overview]
Message-ID: <20230208171922.95048-4-pbonzini@redhat.com> (raw)
In-Reply-To: <20230208171922.95048-1-pbonzini@redhat.com>

Commit 8c460269aa77 ("iscsi: base all handling of check condition on
scsi_sense_to_errno", 2019-07-15) removed a "goto out" so that the
same coroutine is re-entered twice; once from iscsi_co_generic_cb,
once from the timer callback iscsi_retry_timer_expired.  This can
cause a crash.

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1378
Reported-by: Grzegorz Zdanowski <https://gitlab.com/kiler129>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 block/iscsi.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/block/iscsi.c b/block/iscsi.c
index b3e10f40b649..3aacd0709f93 100644
--- a/block/iscsi.c
+++ b/block/iscsi.c
@@ -269,6 +269,7 @@ iscsi_co_generic_cb(struct iscsi_context *iscsi, int status,
                 timer_mod(&iTask->retry_timer,
                           qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + retry_time);
                 iTask->do_retry = 1;
+                return;
             } else if (status == SCSI_STATUS_CHECK_CONDITION) {
                 int error = iscsi_translate_sense(&task->sense);
                 if (error == EAGAIN) {
-- 
2.39.1



  parent reply	other threads:[~2023-02-08 17:22 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-08 17:19 [PULL 00/11] Misc patches for 2022-02-08 Paolo Bonzini
2023-02-08 17:19 ` [PULL 01/11] build: make meson-buildoptions.sh stable Paolo Bonzini
2023-02-08 17:19 ` [PULL 02/11] remove unnecessary extern "C" blocks Paolo Bonzini
2023-02-08 17:19 ` Paolo Bonzini [this message]
2023-02-21 12:15   ` [PULL 03/11] block/iscsi: fix double-free on BUSY or similar statuses Fiona Ebner
2023-02-08 17:19 ` [PULL 04/11] vl: catch [accel] entry without accelerator Paolo Bonzini
2023-02-08 17:19 ` [PULL 05/11] libqtest: split qtest_spawn_qemu function Paolo Bonzini
2023-02-08 17:19 ` [PULL 06/11] libqtest: ensure waitpid() is only called once Paolo Bonzini
2023-02-08 17:19 ` [PULL 07/11] readconfig-test: add test for accelerator configuration Paolo Bonzini
2023-02-09  5:21   ` Thomas Huth
2023-02-09  9:01     ` Paolo Bonzini
2023-02-08 17:19 ` [PULL 08/11] tests/tcg/i386: Introduce and use reg_t consistently Paolo Bonzini
2023-02-08 17:19 ` [PULL 09/11] target/i386: Fix BEXTR instruction Paolo Bonzini
2023-02-10 10:23   ` Michael Tokarev
2023-02-08 17:19 ` [PULL 10/11] target/i386: Fix C flag for BLSI, BLSMSK, BLSR Paolo Bonzini
2023-02-08 17:19 ` [PULL 11/11] target/i386: fix ADOX followed by ADCX Paolo Bonzini
2023-02-09  5:19 ` [PULL 00/11] Misc patches for 2022-02-08 Thomas Huth
2023-02-09  7:09   ` Philippe Mathieu-Daudé
2023-02-09  9:02     ` Paolo Bonzini

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=20230208171922.95048-4-pbonzini@redhat.com \
    --to=pbonzini@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).