[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] Re: [PATCH 23/29] monitor: fail when 'i' type is greater th
From: |
Luiz Capitulino |
Subject: |
[Qemu-devel] Re: [PATCH 23/29] monitor: fail when 'i' type is greater than 32-bit |
Date: |
Thu, 13 Aug 2009 11:18:21 -0300 |
On Thu, 13 Aug 2009 16:59:46 +0300
Avi Kivity <address@hidden> wrote:
> On 08/13/2009 04:50 PM, Luiz Capitulino wrote:
> > The 'i' argument type is for 32-bit only and most handlers
> > will use an 'int' to store its value.
> >
> > It's better to fail gracefully when the user enters a value
> > greater than 32-bit than to get subtle casting bugs.
> >
> > Signed-off-by: Luiz Capitulino<address@hidden>
> > ---
> > monitor.c | 6 ++++++
> > 1 files changed, 6 insertions(+), 0 deletions(-)
> >
> > diff --git a/monitor.c b/monitor.c
> > index e736de4..2052c00 100644
> > --- a/monitor.c
> > +++ b/monitor.c
> > @@ -2820,6 +2820,12 @@ static const mon_cmd_t
> > *monitor_parse_command(Monitor *mon,
> > }
> > if (get_expr(mon,&val,&p))
> > goto fail;
> > + /* Check if 'i' is greater than 32-bit */
> > + if ((c == 'i')&& ((val>> 32)& 0xffffffff)) {
> > + monitor_printf(mon, "\'%s\' has failed: ", cmdname);
> > + monitor_printf(mon, "integer is for 32-bit values\n");
> > + goto fail;
> > + }
> > qdict_add_qint(qdict, key, qint_from_int64(val));
> > }
> >
>
> What about the commands that do allow 64-bit values, like memory inspection?
They work with the long type ('l'), so the check will be false
as it checks for 'i'.
- [Qemu-devel] [PATCH 16/29] monitor: Port handler_7 to use QDict, (continued)
- [Qemu-devel] [PATCH 16/29] monitor: Port handler_7 to use QDict, Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 15/29] monitor: Port handler_6 to use QDict, Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 17/29] monitor: Drop handler_8 and handler_9, Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 18/29] monitor: Port handler_10 to use QDict, Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 19/29] monitor: Split monitor_handle_command(), Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 20/29] monitor: Drop unused macros, Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 21/29] monitor: Drop str_allocated[], Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 22/29] monitor: Drop args[] handling code, Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 23/29] monitor: fail when 'i' type is greater than 32-bit, Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 24/29] monitor: Update supported types documentation, Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 25/29] Add check support, Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 26/29] Introduce QInt unit-tests, Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 27/29] Introduce QString unit-tests, Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 28/29] Introduce QDict test data file, Luiz Capitulino, 2009/08/13
- [Qemu-devel] [PATCH 29/29] Introduce QDict unit-tests, Luiz Capitulino, 2009/08/13