* [PATCH] Fix block-detach of non-existent device
@ 2005-10-04 22:07 Dan Smith
2005-10-04 23:13 ` Ewan Mellor
0 siblings, 1 reply; 2+ messages in thread
From: Dan Smith @ 2005-10-04 22:07 UTC (permalink / raw)
To: Xen Developers
[-- Attachment #1: Type: text/plain, Size: 316 bytes --]
The attached patch prevents Xend from blowing up when a user tries to
detach a non-existent block device.
I also added a check in xm to make sure that a numeric id is supplied,
instead of a device name.
This will cause xm-test 04_block-destroy_nonattached_neg to pass.
Signed-off-by: Dan Smith <danms@us.ibm.com>
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: block_detach.patch --]
[-- Type: text/x-patch, Size: 1437 bytes --]
diff -r ec84b119e4ed tools/python/xen/xend/server/DevController.py
--- a/tools/python/xen/xend/server/DevController.py Tue Oct 4 14:02:51 2005
+++ b/tools/python/xen/xend/server/DevController.py Tue Oct 4 13:12:38 2005
@@ -78,8 +78,12 @@
backpath = xstransact.Read(frontpath, "backend")
xstransact.Remove(frontpath)
- xstransact.Remove(backpath)
-
+
+ if backpath:
+ xstransact.Remove(backpath)
+ else:
+ raise VmError("Device not connected")
+
def configurations(self):
return map(lambda x: self.configuration(int(x)),
diff -r ec84b119e4ed tools/python/xen/xm/main.py
--- a/tools/python/xen/xm/main.py Tue Oct 4 14:02:51 2005
+++ b/tools/python/xen/xm/main.py Tue Oct 4 13:12:38 2005
@@ -165,6 +165,9 @@
error = str(ex)
if error == "Not found" and dom != None:
err("Domain '%s' not found when running 'xm %s'" % (dom, cmd))
+ sys.exit(1)
+ elif error == "Exception: Device not connected":
+ err("Device not connected")
sys.exit(1)
else:
raise ex
@@ -532,7 +535,12 @@
arg_check(args,2,"block-detach")
dom = args[0]
- dev = args[1]
+
+ try:
+ dev = int(args[1])
+ except ValueError, e:
+ err("Invalid device id: %s" % args[1])
+ sys.exit(1)
from xen.xend.XendClient import server
server.xend_domain_device_destroy(dom, 'vbd', dev)
[-- Attachment #3: Type: text/plain, Size: 88 bytes --]
--
Dan Smith
IBM Linux Technology Center
Open Hypervisor Team
email: danms@us.ibm.com
[-- Attachment #4: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] Fix block-detach of non-existent device
2005-10-04 22:07 [PATCH] Fix block-detach of non-existent device Dan Smith
@ 2005-10-04 23:13 ` Ewan Mellor
0 siblings, 0 replies; 2+ messages in thread
From: Ewan Mellor @ 2005-10-04 23:13 UTC (permalink / raw)
To: xen-devel
On Tue, Oct 04, 2005 at 03:07:54PM -0700, Dan Smith wrote:
> The attached patch prevents Xend from blowing up when a user tries to
> detach a non-existent block device.
>
> I also added a check in xm to make sure that a numeric id is supplied,
> instead of a device name.
>
> This will cause xm-test 04_block-destroy_nonattached_neg to pass.
>
> Signed-off-by: Dan Smith <danms@us.ibm.com>
Thanks Dan. I've applied that.
Ewan.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-10-04 23:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-04 22:07 [PATCH] Fix block-detach of non-existent device Dan Smith
2005-10-04 23:13 ` Ewan Mellor
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.