qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL for-2.3 0/4] s390x bugfixes for 2.3
@ 2015-03-30  8:02 Cornelia Huck
  2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 1/4] virtio-ccw: fix range check for SET_VQ Cornelia Huck
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Cornelia Huck @ 2015-03-30  8:02 UTC (permalink / raw)
  To: peter.maydell; +Cc: Cornelia Huck, borntraeger, jfrei, qemu-devel, agraf

The following changes since commit 627f91b1f80fecc73d00727181a9ddb6162cc30e:

  Merge remote-tracking branch 'remotes/jnsnow/tags/ide-pull-request' into staging (2015-03-28 10:10:04 +0000)

are available in the git repository at:

  git://github.com/cohuck/qemu tags/s390x-20150330

for you to fetch changes up to fa92e218df1d7fcc01e1e5d8bbd77acdaf53c18b:

  s390x/ipl: avoid sign extension (2015-03-30 09:25:17 +0200)

----------------------------------------------------------------
s390x fixes:
- virtqueue index issues in virtio-ccw
- cleanup and sign extension fix for the ipl device

----------------------------------------------------------------

Cornelia Huck (3):
  virtio-ccw: fix range check for SET_VQ
  virtio-ccw: range check in READ_VQ_CONF
  s390x/ipl: avoid sign extension

Paolo Bonzini (1):
  s390x: do not include ram_addr.h

 hw/s390x/ipl.c        | 3 +--
 hw/s390x/virtio-ccw.c | 6 +++++-
 2 files changed, 6 insertions(+), 3 deletions(-)

-- 
2.3.4

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Qemu-devel] [PULL for-2.3 1/4] virtio-ccw: fix range check for SET_VQ
  2015-03-30  8:02 [Qemu-devel] [PULL for-2.3 0/4] s390x bugfixes for 2.3 Cornelia Huck
@ 2015-03-30  8:02 ` Cornelia Huck
  2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 2/4] virtio-ccw: range check in READ_VQ_CONF Cornelia Huck
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Cornelia Huck @ 2015-03-30  8:02 UTC (permalink / raw)
  To: peter.maydell
  Cc: agraf, qemu-stable, qemu-devel, borntraeger, jfrei, Cornelia Huck

VIRTIO_PCI_QUEUE_MAX is already too big; a malicious guest would be
able to trigger a write beyond the VirtQueue structure.

Cc: qemu-stable@nongnu.org
Reviewed-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
---
 hw/s390x/virtio-ccw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/s390x/virtio-ccw.c b/hw/s390x/virtio-ccw.c
index 130535c..ceb6a45 100644
--- a/hw/s390x/virtio-ccw.c
+++ b/hw/s390x/virtio-ccw.c
@@ -266,7 +266,7 @@ static int virtio_ccw_set_vqs(SubchDev *sch, uint64_t addr, uint32_t align,
 {
     VirtIODevice *vdev = virtio_ccw_get_vdev(sch);
 
-    if (index > VIRTIO_PCI_QUEUE_MAX) {
+    if (index >= VIRTIO_PCI_QUEUE_MAX) {
         return -EINVAL;
     }
 
-- 
2.3.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Qemu-devel] [PULL for-2.3 2/4] virtio-ccw: range check in READ_VQ_CONF
  2015-03-30  8:02 [Qemu-devel] [PULL for-2.3 0/4] s390x bugfixes for 2.3 Cornelia Huck
  2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 1/4] virtio-ccw: fix range check for SET_VQ Cornelia Huck
@ 2015-03-30  8:02 ` Cornelia Huck
  2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 3/4] s390x: do not include ram_addr.h Cornelia Huck
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Cornelia Huck @ 2015-03-30  8:02 UTC (permalink / raw)
  To: peter.maydell
  Cc: agraf, qemu-stable, qemu-devel, borntraeger, jfrei, Cornelia Huck

Processing for READ_VQ_CONF needs to check whether the requested queue
value is actually in the supported range and post a channel program
check if not.

Cc: qemu-stable@nongnu.org
Reviewed-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
---
 hw/s390x/virtio-ccw.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/hw/s390x/virtio-ccw.c b/hw/s390x/virtio-ccw.c
index ceb6a45..d32ecaf 100644
--- a/hw/s390x/virtio-ccw.c
+++ b/hw/s390x/virtio-ccw.c
@@ -549,6 +549,10 @@ static int virtio_ccw_cb(SubchDev *sch, CCW1 ccw)
             ret = -EFAULT;
         } else {
             vq_config.index = lduw_be_phys(&address_space_memory, ccw.cda);
+            if (vq_config.index >= VIRTIO_PCI_QUEUE_MAX) {
+                ret = -EINVAL;
+                break;
+            }
             vq_config.num_max = virtio_queue_get_num(vdev,
                                                      vq_config.index);
             stw_be_phys(&address_space_memory,
-- 
2.3.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Qemu-devel] [PULL for-2.3 3/4] s390x: do not include ram_addr.h
  2015-03-30  8:02 [Qemu-devel] [PULL for-2.3 0/4] s390x bugfixes for 2.3 Cornelia Huck
  2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 1/4] virtio-ccw: fix range check for SET_VQ Cornelia Huck
  2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 2/4] virtio-ccw: range check in READ_VQ_CONF Cornelia Huck
@ 2015-03-30  8:02 ` Cornelia Huck
  2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 4/4] s390x/ipl: avoid sign extension Cornelia Huck
  2015-03-31  8:56 ` [Qemu-devel] [PULL for-2.3 0/4] s390x bugfixes for 2.3 Peter Maydell
  4 siblings, 0 replies; 6+ messages in thread
From: Cornelia Huck @ 2015-03-30  8:02 UTC (permalink / raw)
  To: peter.maydell
  Cc: qemu-devel, agraf, borntraeger, jfrei, Cornelia Huck,
	Paolo Bonzini

From: Paolo Bonzini <pbonzini@redhat.com>

ram_addr.h is an internal interface and it is not needed anyway by
hw/s390x/ipl.c.

Cc: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: Thomas Huth <huth@tuxfamily.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <1427295389-5054-1-git-send-email-pbonzini@redhat.com>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
---
 hw/s390x/ipl.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/hw/s390x/ipl.c b/hw/s390x/ipl.c
index 54d0835..5c86613 100644
--- a/hw/s390x/ipl.c
+++ b/hw/s390x/ipl.c
@@ -14,7 +14,6 @@
 #include "sysemu/sysemu.h"
 #include "cpu.h"
 #include "elf.h"
-#include "exec/ram_addr.h"
 #include "hw/loader.h"
 #include "hw/sysbus.h"
 #include "hw/s390x/virtio-ccw.h"
-- 
2.3.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Qemu-devel] [PULL for-2.3 4/4] s390x/ipl: avoid sign extension
  2015-03-30  8:02 [Qemu-devel] [PULL for-2.3 0/4] s390x bugfixes for 2.3 Cornelia Huck
                   ` (2 preceding siblings ...)
  2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 3/4] s390x: do not include ram_addr.h Cornelia Huck
@ 2015-03-30  8:02 ` Cornelia Huck
  2015-03-31  8:56 ` [Qemu-devel] [PULL for-2.3 0/4] s390x bugfixes for 2.3 Peter Maydell
  4 siblings, 0 replies; 6+ messages in thread
From: Cornelia Huck @ 2015-03-30  8:02 UTC (permalink / raw)
  To: peter.maydell; +Cc: Cornelia Huck, borntraeger, jfrei, qemu-devel, agraf

Make s390_update_iplstate() return uint32_t to avoid sign extensions
for cssids > 127. While this doesn't matter in practice yet (as
nobody supports MCSS-E and thus won't see the real cssid), play safe.

Reported-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Jason J. Herne <jjherne@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
---
 hw/s390x/ipl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/s390x/ipl.c b/hw/s390x/ipl.c
index 5c86613..2e26d2a 100644
--- a/hw/s390x/ipl.c
+++ b/hw/s390x/ipl.c
@@ -218,7 +218,7 @@ static Property s390_ipl_properties[] = {
  * - -1 if no valid boot device was found
  * - ccw id of the boot device otherwise
  */
-static uint64_t s390_update_iplstate(CPUS390XState *env, S390IPLState *ipl)
+static uint32_t s390_update_iplstate(CPUS390XState *env, S390IPLState *ipl)
 {
     DeviceState *dev_st;
 
-- 
2.3.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [PULL for-2.3 0/4] s390x bugfixes for 2.3
  2015-03-30  8:02 [Qemu-devel] [PULL for-2.3 0/4] s390x bugfixes for 2.3 Cornelia Huck
                   ` (3 preceding siblings ...)
  2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 4/4] s390x/ipl: avoid sign extension Cornelia Huck
@ 2015-03-31  8:56 ` Peter Maydell
  4 siblings, 0 replies; 6+ messages in thread
From: Peter Maydell @ 2015-03-31  8:56 UTC (permalink / raw)
  To: Cornelia Huck
  Cc: Christian Borntraeger, Jens Freimann, QEMU Developers,
	Alexander Graf

On 30 March 2015 at 09:02, Cornelia Huck <cornelia.huck@de.ibm.com> wrote:
> The following changes since commit 627f91b1f80fecc73d00727181a9ddb6162cc30e:
>
>   Merge remote-tracking branch 'remotes/jnsnow/tags/ide-pull-request' into staging (2015-03-28 10:10:04 +0000)
>
> are available in the git repository at:
>
>   git://github.com/cohuck/qemu tags/s390x-20150330
>
> for you to fetch changes up to fa92e218df1d7fcc01e1e5d8bbd77acdaf53c18b:
>
>   s390x/ipl: avoid sign extension (2015-03-30 09:25:17 +0200)
>
> ----------------------------------------------------------------
> s390x fixes:
> - virtqueue index issues in virtio-ccw
> - cleanup and sign extension fix for the ipl device
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-03-31  8:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-30  8:02 [Qemu-devel] [PULL for-2.3 0/4] s390x bugfixes for 2.3 Cornelia Huck
2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 1/4] virtio-ccw: fix range check for SET_VQ Cornelia Huck
2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 2/4] virtio-ccw: range check in READ_VQ_CONF Cornelia Huck
2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 3/4] s390x: do not include ram_addr.h Cornelia Huck
2015-03-30  8:02 ` [Qemu-devel] [PULL for-2.3 4/4] s390x/ipl: avoid sign extension Cornelia Huck
2015-03-31  8:56 ` [Qemu-devel] [PULL for-2.3 0/4] s390x bugfixes for 2.3 Peter Maydell

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).