xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RFC] xen/sysfs: Use XENVER_guest_handle to query UUID
@ 2012-08-16 18:25 Daniel De Graaf
  2012-08-16 20:22 ` Matt Wilson
  0 siblings, 1 reply; 7+ messages in thread
From: Daniel De Graaf @ 2012-08-16 18:25 UTC (permalink / raw)
  To: ian.campbell; +Cc: Daniel De Graaf, xen-devel, jbeulich, konrad.wilk

The /sys/hypervisor/uuid path relies on Xenstore to query the domain's
UUID (handle) even when the hypervisor exposes an interface to more
directly and efficiently query this. The xenstore path /vm/UUID which is
used for the current query is being discussed for possible removal as
most of the information under this path is only useful for the
toolstack, not the VM.

The UUID fetched from xenstore may also not be properly formatted as a
UUID for the domain if the UUID has been reused (this is most often seen
in domain 0, which if xenstored does not clean up /vm properly, can end
up with a UUID field like "00000000-0000-0000-0000-000000000000-5").

----8<-----------------------------------------------------

This hypercall has been present since Xen 3.1, and is the preferred
method for a domain to obtain its UUID.

Signed-off-by: Daniel De Graaf <dgdegra@tycho.nsa.gov>
---
 drivers/xen/sys-hypervisor.c    | 20 +++++---------------
 include/xen/interface/version.h |  3 +++
 2 files changed, 8 insertions(+), 15 deletions(-)

diff --git a/drivers/xen/sys-hypervisor.c b/drivers/xen/sys-hypervisor.c
index 4c7db7d..416fa01 100644
--- a/drivers/xen/sys-hypervisor.c
+++ b/drivers/xen/sys-hypervisor.c
@@ -116,22 +116,12 @@ static void xen_sysfs_version_destroy(void)
 
 static ssize_t uuid_show(struct hyp_sysfs_attr *attr, char *buffer)
 {
-	char *vm, *val;
+	xen_domain_handle_t uuid;
 	int ret;
-	extern int xenstored_ready;
-
-	if (!xenstored_ready)
-		return -EBUSY;
-
-	vm = xenbus_read(XBT_NIL, "vm", "", NULL);
-	if (IS_ERR(vm))
-		return PTR_ERR(vm);
-	val = xenbus_read(XBT_NIL, vm, "uuid", NULL);
-	kfree(vm);
-	if (IS_ERR(val))
-		return PTR_ERR(val);
-	ret = sprintf(buffer, "%s\n", val);
-	kfree(val);
+	ret = HYPERVISOR_xen_version(XENVER_guest_handle, uuid);
+	if (ret)
+		return ret;
+	ret = sprintf(buffer, "%pU\n", uuid);
 	return ret;
 }
 
diff --git a/include/xen/interface/version.h b/include/xen/interface/version.h
index e8b6519..dd58cf5 100644
--- a/include/xen/interface/version.h
+++ b/include/xen/interface/version.h
@@ -60,4 +60,7 @@ struct xen_feature_info {
 /* arg == NULL; returns host memory page size. */
 #define XENVER_pagesize 7
 
+/* arg == xen_domain_handle_t. */
+#define XENVER_guest_handle 8
+
 #endif /* __XEN_PUBLIC_VERSION_H__ */
-- 
1.7.11.2

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-08-22 16:57 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-16 18:25 [PATCH RFC] xen/sysfs: Use XENVER_guest_handle to query UUID Daniel De Graaf
2012-08-16 20:22 ` Matt Wilson
2012-08-16 20:40   ` [PATCH v2] " Daniel De Graaf
2012-08-17  7:51     ` Ian Campbell
2012-08-17  9:36       ` Pasi Kärkkäinen
2012-08-17  9:39         ` Pasi Kärkkäinen
2012-08-22 16:57     ` Konrad Rzeszutek Wilk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).