All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libxl: fix unsafe subtraction in libxl_set_memory_target
@ 2011-02-01 16:40 Stefano Stabellini
  2011-02-01 19:25 ` Ian Jackson
  0 siblings, 1 reply; 2+ messages in thread
From: Stefano Stabellini @ 2011-02-01 16:40 UTC (permalink / raw)
  To: xen-devel

The current libxl_set_memory_target function subtracts a negative amount
from an uint32_t variable without checking if the operation wraps
around.

This patch fixes this bug (that I previously believed to be an
hypervisor issue):
http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=1729


Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>

diff -r a69965e61ae9 tools/libxl/libxl.c
--- a/tools/libxl/libxl.c	Mon Jan 31 17:47:24 2011 +0000
+++ b/tools/libxl/libxl.c	Tue Feb 01 16:34:43 2011 +0000
@@ -2059,9 +2059,12 @@ retry_transaction:
         goto out;
     }
 
-    if (relative)
-        new_target_memkb = current_target_memkb + target_memkb;
-    else
+    if (relative) {
+        if (target_memkb < 0 && abs(target_memkb) > current_target_memkb)
+            new_target_memkb = 0;
+        else
+            new_target_memkb = current_target_memkb + target_memkb;
+    } else
         new_target_memkb = target_memkb;
     if (new_target_memkb > memorykb) {
         LIBXL__LOG(ctx, LIBXL__LOG_ERROR,

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

* Re: [PATCH] libxl: fix unsafe subtraction in libxl_set_memory_target
  2011-02-01 16:40 [PATCH] libxl: fix unsafe subtraction in libxl_set_memory_target Stefano Stabellini
@ 2011-02-01 19:25 ` Ian Jackson
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Jackson @ 2011-02-01 19:25 UTC (permalink / raw)
  To: Stefano Stabellini; +Cc: xen-devel

Stefano Stabellini writes ("[Xen-devel] [PATCH] libxl: fix unsafe subtraction in libxl_set_memory_target"):
> The current libxl_set_memory_target function subtracts a negative amount
> from an uint32_t variable without checking if the operation wraps
> around.
> 
> This patch fixes this bug (that I previously believed to be an
> hypervisor issue):
> http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=1729

Applied, thanks.

Ian.

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

end of thread, other threads:[~2011-02-01 19:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-01 16:40 [PATCH] libxl: fix unsafe subtraction in libxl_set_memory_target Stefano Stabellini
2011-02-01 19:25 ` Ian Jackson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.