From 316ed4cb5e3fbdc70bb5aabb3305e7dde318dc83 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Wed, 14 Dec 2005 15:29:16 +0000 Subject: [PATCH] * src/xml.c: add dump of os/boot informations Daniel --- ChangeLog | 4 ++ src/xml.c | 117 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 118 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index a11a11a5f5..7cf824fc2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Dec 14 16:28:24 CET 2005 Daniel Veillard + + * src/xml.c: add dump of os/boot informations + Wed Dec 14 13:35:39 CET 2005 Daniel Veillard * src/xml.c: added dump of physical vbd and read-only status diff --git a/src/xml.c b/src/xml.c index 15f69a7b66..3ec4e4e08f 100644 --- a/src/xml.c +++ b/src/xml.c @@ -167,6 +167,39 @@ done: return(ret); } +/** + * virDomainGetVMInfo: + * @domain: a domain object + * @vm: the xenstore vm path + * @name: the value's path + * + * Extract one information the device used by the domain from xensttore + * + * Returns the new string or NULL in case of error + */ +static char * +virDomainGetVMInfo(virDomainPtr domain, const char *vm, + const char *name) { + struct xs_transaction_handle* t; + char s[256]; + char *ret = NULL; + unsigned int len = 0; + + snprintf(s, 255, "%s/%s", vm, name); + s[255] = 0; + + t = xs_transaction_start(domain->conn->xshandle); + if (t == NULL) + goto done; + + ret = xs_read(domain->conn->xshandle, t, &s[0], &len); + +done: + if (t != NULL) + xs_transaction_end(domain->conn->xshandle, t, 0); + return(ret); +} + /** * virDomainGetXMLDevice: * @domain: a domain object @@ -300,9 +333,18 @@ virDomainGetXMLInterface(virDomainPtr domain, virBufferPtr buf, long dev) { type = virDomainGetXMLDeviceInfo(domain, "vif", dev, "bridge"); if (type == NULL) { - TODO - fprintf(stderr, "Don't know how to handle non bridge interfaces\n"); - return(-1); + virBufferVSprintf(buf, " \n"); + val = virDomainGetXMLDeviceInfo(domain, "vif", dev, "mac"); + if (val != NULL) { + virBufferVSprintf(buf, " \n", val); + free(val); + } + val = virDomainGetXMLDeviceInfo(domain, "vif", dev, "script"); + if (val != NULL) { + virBufferVSprintf(buf, "