WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

Re: [Xen-devel] [PATCH 2/2]xl: Check invalid domid in find_domain()

To: Yang Hongyang <yanghy@xxxxxxxxxxxxxx>
Subject: Re: [Xen-devel] [PATCH 2/2]xl: Check invalid domid in find_domain()
From: Jeremy Fitzhardinge <jeremy@xxxxxxxx>
Date: Mon, 17 May 2010 16:27:45 -0700
Cc: xen-devel@xxxxxxxxxxxxxxxxxxx
Delivery-date: Mon, 17 May 2010 16:28:46 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
In-reply-to: <4BEBC822.6080009@xxxxxxxxxxxxxx>
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
References: <4BEBC822.6080009@xxxxxxxxxxxxxx>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.9) Gecko/20100430 Fedora/3.0.4-2.fc12 Lightning/1.0b2pre Thunderbird/3.0.4
On 05/13/2010 02:36 AM, Yang Hongyang wrote:
> If domain id is invalid, find_domain should return error because
> the specified domain does not exist.
>   

I think this patch is causing some regressions.  For example, I can no
longer rename dom0:

sh-4.0# xl list 0
Name                                        ID   Mem VCPUs      State   Time(s)
(null)                                       0  3321     4        r--    741.7
sh-4.0# xl rename 0 dom0
0 is an invalid domain identifier.

I haven't specifically worked out what's failing here...

    J

> Signed-off-by: Yang Hongyang <yanghy@xxxxxxxxxxxxxx>
>
> diff -r a49dfaa986b0 tools/libxl/xl_cmdimpl.c
> --- a/tools/libxl/xl_cmdimpl.c        Fri May 14 01:27:26 2010 +0800
> +++ b/tools/libxl/xl_cmdimpl.c        Fri May 14 01:29:36 2010 +0800
> @@ -137,7 +137,11 @@
>          fprintf(stderr, "%s is an invalid domain identifier (rc=%d)\n", p, 
> rc);
>          exit(2);
>      }
> -    common_domname = was_name ? p : 0;
> +    common_domname = was_name ? p : libxl_domid_to_name(&ctx, domid);
> +    if (!common_domname) {
> +        fprintf(stderr, "%s is an invalid domain identifier.\n", p);
> +        exit(2);
> +    }
>  }
>  
>  #define LOG(_f, _a...)   dolog(__FILE__, __LINE__, __func__, _f "\n", ##_a)
>
>   


_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>