qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] aio-win32: avoid out-of-bounds access to the events array
@ 2014-09-15 12:52 Paolo Bonzini
  2014-09-16  2:21 ` TeLeMan
  2014-09-16 10:27 ` Stefan Hajnoczi
  0 siblings, 2 replies; 3+ messages in thread
From: Paolo Bonzini @ 2014-09-15 12:52 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf, geleman, famz, stefanha

If ret is WAIT_TIMEOUT and there was an event returned by select(),
we can write to a location after the end of the array.  But in
that case we can retry the WaitForMultipleObjects call with the
same set of events, so just move the event[ret - WAIT_OBJECT_0]
assignment inside the existin conditional.

Reported-by: TeLeMan <geleman@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 aio-win32.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/aio-win32.c b/aio-win32.c
index 61e3d2d..89f9e1f 100644
--- a/aio-win32.c
+++ b/aio-win32.c
@@ -335,6 +335,7 @@ bool aio_poll(AioContext *ctx, bool blocking)
         event = NULL;
         if ((DWORD) (ret - WAIT_OBJECT_0) < count) {
             event = events[ret - WAIT_OBJECT_0];
+            events[ret - WAIT_OBJECT_0] = events[--count];
         } else if (!have_select_revents) {
             break;
         }
@@ -343,9 +344,6 @@ bool aio_poll(AioContext *ctx, bool blocking)
         blocking = false;
 
         progress |= aio_dispatch_handlers(ctx, event);
-
-        /* Try again, but only call each handler once.  */
-        events[ret - WAIT_OBJECT_0] = events[--count];
     }
 
     progress |= timerlistgroup_run_timers(&ctx->tlg);
-- 
2.1.0

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

* Re: [Qemu-devel] [PATCH] aio-win32: avoid out-of-bounds access to the events array
  2014-09-15 12:52 [Qemu-devel] [PATCH] aio-win32: avoid out-of-bounds access to the events array Paolo Bonzini
@ 2014-09-16  2:21 ` TeLeMan
  2014-09-16 10:27 ` Stefan Hajnoczi
  1 sibling, 0 replies; 3+ messages in thread
From: TeLeMan @ 2014-09-16  2:21 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Kevin Wolf, famz, qemu-devel, Stefan Hajnoczi

On Mon, Sep 15, 2014 at 8:52 PM, Paolo Bonzini <pbonzini@redhat.com> wrote:
> If ret is WAIT_TIMEOUT and there was an event returned by select(),
> we can write to a location after the end of the array.  But in
> that case we can retry the WaitForMultipleObjects call with the
> same set of events, so just move the event[ret - WAIT_OBJECT_0]
> assignment inside the existin conditional.
>
> Reported-by: TeLeMan <geleman@gmail.com>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  aio-win32.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/aio-win32.c b/aio-win32.c
> index 61e3d2d..89f9e1f 100644
> --- a/aio-win32.c
> +++ b/aio-win32.c
> @@ -335,6 +335,7 @@ bool aio_poll(AioContext *ctx, bool blocking)
>          event = NULL;
>          if ((DWORD) (ret - WAIT_OBJECT_0) < count) {
>              event = events[ret - WAIT_OBJECT_0];
> +            events[ret - WAIT_OBJECT_0] = events[--count];
>          } else if (!have_select_revents) {
>              break;
>          }
> @@ -343,9 +344,6 @@ bool aio_poll(AioContext *ctx, bool blocking)
>          blocking = false;
>
>          progress |= aio_dispatch_handlers(ctx, event);
> -
> -        /* Try again, but only call each handler once.  */
> -        events[ret - WAIT_OBJECT_0] = events[--count];
>      }
>
>      progress |= timerlistgroup_run_timers(&ctx->tlg);
> --
> 2.1.0
>

Reviewed-by: TeLeMan <geleman@gmail.com>

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

* Re: [Qemu-devel] [PATCH] aio-win32: avoid out-of-bounds access to the events array
  2014-09-15 12:52 [Qemu-devel] [PATCH] aio-win32: avoid out-of-bounds access to the events array Paolo Bonzini
  2014-09-16  2:21 ` TeLeMan
@ 2014-09-16 10:27 ` Stefan Hajnoczi
  1 sibling, 0 replies; 3+ messages in thread
From: Stefan Hajnoczi @ 2014-09-16 10:27 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: kwolf, geleman, famz, qemu-devel, stefanha

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

On Mon, Sep 15, 2014 at 02:52:58PM +0200, Paolo Bonzini wrote:
> If ret is WAIT_TIMEOUT and there was an event returned by select(),
> we can write to a location after the end of the array.  But in
> that case we can retry the WaitForMultipleObjects call with the
> same set of events, so just move the event[ret - WAIT_OBJECT_0]
> assignment inside the existin conditional.
> 
> Reported-by: TeLeMan <geleman@gmail.com>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  aio-win32.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)

Thanks, applied to my block tree:
https://github.com/stefanha/qemu/commits/block

Stefan

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

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

end of thread, other threads:[~2014-09-16 10:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-15 12:52 [Qemu-devel] [PATCH] aio-win32: avoid out-of-bounds access to the events array Paolo Bonzini
2014-09-16  2:21 ` TeLeMan
2014-09-16 10:27 ` Stefan Hajnoczi

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