qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] virtio-rng: Add human-readable error message for negative max-bytes parameter
@ 2014-07-14 23:14 John Snow
  2014-07-15  4:51 ` Amit Shah
  0 siblings, 1 reply; 4+ messages in thread
From: John Snow @ 2014-07-14 23:14 UTC (permalink / raw)
  To: qemu-devel; +Cc: amit.shah, jsnow, stefanha

If a negative integer is used for the max_bytes parameter, QEMU currently
calls abort() and leaves behind a core dump. This patch adds a simple
error message to make the reason for the termination clearer.

Signed-off-by: John Snow <jsnow@redhat.com>
---
 hw/virtio/virtio-rng.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/hw/virtio/virtio-rng.c b/hw/virtio/virtio-rng.c
index 1356aca..e4d2e68 100644
--- a/hw/virtio/virtio-rng.c
+++ b/hw/virtio/virtio-rng.c
@@ -181,7 +181,11 @@ static void virtio_rng_device_realize(DeviceState *dev, Error **errp)
 
     vrng->vq = virtio_add_queue(vdev, 8, handle_input);
 
-    assert(vrng->conf.max_bytes <= INT64_MAX);
+    if (vrng->conf.max_bytes > INT64_MAX) {
+        error_set(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "virtio-rng",
+                  "max_bytes", vrng->conf.max_bytes, 0L, INT64_MAX);
+        return;
+    }
     vrng->quota_remaining = vrng->conf.max_bytes;
 
     vrng->rate_limit_timer = timer_new_ms(QEMU_CLOCK_VIRTUAL,
-- 
1.9.3

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

* Re: [Qemu-devel] [PATCH] virtio-rng: Add human-readable error message for negative max-bytes parameter
  2014-07-14 23:14 [Qemu-devel] [PATCH] virtio-rng: Add human-readable error message for negative max-bytes parameter John Snow
@ 2014-07-15  4:51 ` Amit Shah
  2014-07-15  9:18   ` Stefan Hajnoczi
  0 siblings, 1 reply; 4+ messages in thread
From: Amit Shah @ 2014-07-15  4:51 UTC (permalink / raw)
  To: John Snow; +Cc: qemu-devel, stefanha

On (Mon) 14 Jul 2014 [19:14:43], John Snow wrote:
> If a negative integer is used for the max_bytes parameter, QEMU currently
> calls abort() and leaves behind a core dump. This patch adds a simple
> error message to make the reason for the termination clearer.
> 
> Signed-off-by: John Snow <jsnow@redhat.com>

Reviewed-by: Amit Shah <amit.shah@redhat.com>

Thanks,

		Amit

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

* Re: [Qemu-devel] [PATCH] virtio-rng: Add human-readable error message for negative max-bytes parameter
  2014-07-15  4:51 ` Amit Shah
@ 2014-07-15  9:18   ` Stefan Hajnoczi
  2014-07-15  9:21     ` Amit Shah
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Hajnoczi @ 2014-07-15  9:18 UTC (permalink / raw)
  To: Amit Shah; +Cc: John Snow, qemu-devel

[-- Attachment #1: Type: text/plain, Size: 538 bytes --]

On Tue, Jul 15, 2014 at 10:21:47AM +0530, Amit Shah wrote:
> On (Mon) 14 Jul 2014 [19:14:43], John Snow wrote:
> > If a negative integer is used for the max_bytes parameter, QEMU currently
> > calls abort() and leaves behind a core dump. This patch adds a simple
> > error message to make the reason for the termination clearer.
> > 
> > Signed-off-by: John Snow <jsnow@redhat.com>
> 
> Reviewed-by: Amit Shah <amit.shah@redhat.com>

Amit, are you sending a pull request?  I'm not sure whose tree this goes
through.

Stefan

[-- Attachment #2: Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [Qemu-devel] [PATCH] virtio-rng: Add human-readable error message for negative max-bytes parameter
  2014-07-15  9:18   ` Stefan Hajnoczi
@ 2014-07-15  9:21     ` Amit Shah
  0 siblings, 0 replies; 4+ messages in thread
From: Amit Shah @ 2014-07-15  9:21 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: John Snow, qemu-devel

On (Tue) 15 Jul 2014 [11:18:31], Stefan Hajnoczi wrote:
> On Tue, Jul 15, 2014 at 10:21:47AM +0530, Amit Shah wrote:
> > On (Mon) 14 Jul 2014 [19:14:43], John Snow wrote:
> > > If a negative integer is used for the max_bytes parameter, QEMU currently
> > > calls abort() and leaves behind a core dump. This patch adds a simple
> > > error message to make the reason for the termination clearer.
> > > 
> > > Signed-off-by: John Snow <jsnow@redhat.com>
> > 
> > Reviewed-by: Amit Shah <amit.shah@redhat.com>
> 
> Amit, are you sending a pull request?  I'm not sure whose tree this goes
> through.

Yes, I'll do that.


		Amit

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

end of thread, other threads:[~2014-07-15  9:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-14 23:14 [Qemu-devel] [PATCH] virtio-rng: Add human-readable error message for negative max-bytes parameter John Snow
2014-07-15  4:51 ` Amit Shah
2014-07-15  9:18   ` Stefan Hajnoczi
2014-07-15  9:21     ` Amit Shah

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