block/iscsi: fix double-free on BUSY or similar statuses
authorPaolo Bonzini <pbonzini@redhat.com>
Tue, 10 Jan 2023 16:36:33 +0000 (17:36 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 10 Feb 2023 13:12:06 +0000 (14:12 +0100)
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

index b3e10f40b649cf31eb1afdba339b664176c044d4..3aacd0709f934fc29919e61d928504d8736cc5fd 100644 (file)
@@ -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) {