From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yang Hongyang Subject: [PATCH]xl: do not allow shutdown and reboot dom0 Date: Thu, 03 Jun 2010 16:37:54 +0800 Message-ID: <4C0769E2.4010606@cn.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: "xen-devel@lists.xensource.com" List-Id: xen-devel@lists.xenproject.org do not allow shutdown and reboot dom0 Signed-off-by: Yang Hongyang diff -r 5aabc6f94df5 tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Wed Jun 02 13:13:11 2010 +0100 +++ b/tools/libxl/xl_cmdimpl.c Fri Jun 04 00:39:59 2010 +0800 @@ -1632,6 +1632,10 @@ { int rc; find_domain(p); + if (domid == 0) { + fprintf(stderr, "Domain 0 cannot be shutdown.\n"); + exit(-1); + } rc=libxl_domain_shutdown(&ctx, domid, 0); if (rc) { fprintf(stderr,"shutdown failed (rc=%d)\n.",rc);exit(-1); } } @@ -1640,6 +1644,10 @@ { int rc; find_domain(p); + if (domid == 0) { + fprintf(stderr, "Domain 0 cannot be rebooted.\n"); + exit(-1); + } rc=libxl_domain_shutdown(&ctx, domid, 1); if (rc) { fprintf(stderr,"reboot failed (rc=%d)\n.",rc);exit(-1); } } -- Regards Yang Hongyang