|
|
3a13dd |
From: Prasad J Pandit <pjp@fedoraproject.org>
|
|
|
3a13dd |
Date: Wed, 14 Sep 2016 15:09:12 +0530
|
|
|
3a13dd |
Subject: [PATCH] scsi: pvscsi: limit process IO loop to ring size
|
|
|
3a13dd |
|
|
|
3a13dd |
Vmware Paravirtual SCSI emulator while processing IO requests
|
|
|
3a13dd |
could run into an infinite loop if 'pvscsi_ring_pop_req_descr'
|
|
|
3a13dd |
always returned positive value. Limit IO loop to the ring size.
|
|
|
3a13dd |
|
|
|
3a13dd |
Cc: qemu-stable@nongnu.org
|
|
|
3a13dd |
Reported-by: Li Qiang <liqiang6-s@360.cn>
|
|
|
3a13dd |
Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org>
|
|
|
3a13dd |
Message-Id: <1473845952-30785-1-git-send-email-ppandit@redhat.com>
|
|
|
3a13dd |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
3a13dd |
(cherry picked from commit d251157ac1928191af851d199a9ff255d330bec9)
|
|
|
3a13dd |
---
|
|
|
3a13dd |
hw/scsi/vmw_pvscsi.c | 5 ++++-
|
|
|
3a13dd |
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
3a13dd |
|
|
|
3a13dd |
diff --git a/hw/scsi/vmw_pvscsi.c b/hw/scsi/vmw_pvscsi.c
|
|
|
3a13dd |
index babac5a..a5ce7de 100644
|
|
|
3a13dd |
--- a/hw/scsi/vmw_pvscsi.c
|
|
|
3a13dd |
+++ b/hw/scsi/vmw_pvscsi.c
|
|
|
3a13dd |
@@ -247,8 +247,11 @@ static hwaddr
|
|
|
3a13dd |
pvscsi_ring_pop_req_descr(PVSCSIRingInfo *mgr)
|
|
|
3a13dd |
{
|
|
|
3a13dd |
uint32_t ready_ptr = RS_GET_FIELD(mgr, reqProdIdx);
|
|
|
3a13dd |
+ uint32_t ring_size = PVSCSI_MAX_NUM_PAGES_REQ_RING
|
|
|
3a13dd |
+ * PVSCSI_MAX_NUM_REQ_ENTRIES_PER_PAGE;
|
|
|
3a13dd |
|
|
|
3a13dd |
- if (ready_ptr != mgr->consumed_ptr) {
|
|
|
3a13dd |
+ if (ready_ptr != mgr->consumed_ptr
|
|
|
3a13dd |
+ && ready_ptr - mgr->consumed_ptr < ring_size) {
|
|
|
3a13dd |
uint32_t next_ready_ptr =
|
|
|
3a13dd |
mgr->consumed_ptr++ & mgr->txr_len_mask;
|
|
|
3a13dd |
uint32_t next_ready_page =
|