From patchwork Thu Apr 26 23:37:41 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 155343 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id CE81CB6FBE for ; Fri, 27 Apr 2012 09:37:52 +1000 (EST) Received: from localhost ([::1]:42410 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SNYFy-0001SX-N7 for incoming@patchwork.ozlabs.org; Thu, 26 Apr 2012 19:37:50 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52716) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SNYFn-0001Kq-E7 for qemu-devel@nongnu.org; Thu, 26 Apr 2012 19:37:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SNYFl-0002R9-SG for qemu-devel@nongnu.org; Thu, 26 Apr 2012 19:37:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:21288) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SNYFl-0002Qx-Js for qemu-devel@nongnu.org; Thu, 26 Apr 2012 19:37:37 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q3QNbYXD020357 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 26 Apr 2012 19:37:35 -0400 Received: from localhost (ovpn-113-104.phx2.redhat.com [10.3.113.104]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q3QNbXWY031669; Thu, 26 Apr 2012 19:37:34 -0400 From: Luiz Capitulino To: qemu-devel@nongnu.org Date: Thu, 26 Apr 2012 20:37:41 -0300 Message-Id: <1335483461-31838-3-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1335483461-31838-1-git-send-email-lcapitulino@redhat.com> References: <1335483461-31838-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: amit.shah@redhat.com, peter.maydell@linaro.org, qzhang@redhat.com, eblake@redhat.com, armbru@redhat.com Subject: [Qemu-devel] [PATCH 2/2] hmp: fix bad value conversion for M type X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The M type converts from megabytes to bytes. However, the value can be negative before the conversion, which will lead to a flawed conversion. For example, this: (qemu) balloon -1000000000000011 (qemu) Just "works", but the value passed by the balloon command will be something else. This patch fixes this problem by requering a positive value before converting. There's really no reason to accept a negative value for the M type. Signed-off-by: Luiz Capitulino Reviewed-by: Eric Blake --- monitor.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/monitor.c b/monitor.c index 56ee971..58b692b 100644 --- a/monitor.c +++ b/monitor.c @@ -3625,6 +3625,10 @@ static const mon_cmd_t *monitor_parse_command(Monitor *mon, monitor_printf(mon, "integer is for 32-bit values\n"); goto fail; } else if (c == 'M') { + if (val < 0) { + monitor_printf(mon, "enter a positive value\n"); + goto fail; + } val <<= 20; } qdict_put(qdict, key, qint_from_int(val));