From patchwork Thu Apr 26 21:10:06 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 155329 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 3218AB6FA2 for ; Fri, 27 Apr 2012 07:10:23 +1000 (EST) Received: from localhost ([::1]:58932 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SNVxE-0007vN-9k for incoming@patchwork.ozlabs.org; Thu, 26 Apr 2012 17:10:20 -0400 Received: from eggs.gnu.org ([208.118.235.92]:53588) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SNVwy-0007kv-5c for qemu-devel@nongnu.org; Thu, 26 Apr 2012 17:10:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SNVww-0003EM-72 for qemu-devel@nongnu.org; Thu, 26 Apr 2012 17:10:03 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36663) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SNVwv-00039a-UY for qemu-devel@nongnu.org; Thu, 26 Apr 2012 17:10:02 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q3QLA04I004537 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 26 Apr 2012 17:10:00 -0400 Received: from localhost (ovpn-113-104.phx2.redhat.com [10.3.113.104]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q3QL9x45027260; Thu, 26 Apr 2012 17:09:59 -0400 From: Luiz Capitulino To: qemu-devel@nongnu.org Date: Thu, 26 Apr 2012 18:10:06 -0300 Message-Id: <1335474606-22889-3-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1335474606-22889-1-git-send-email-lcapitulino@redhat.com> References: <1335474606-22889-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 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, qzhang@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 6178f48..2ea1536 100644 --- a/monitor.c +++ b/monitor.c @@ -3624,6 +3624,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));