summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: de52e03)
raw | patch | inline | side by side (parent: de52e03)
author | Denis Silakov <dsilakov@gmail.com> | |
Wed, 23 Nov 2016 15:58:52 +0000 (18:58 +0300) | ||
committer | Denis Silakov <dsilakov@gmail.com> | |
Wed, 23 Nov 2016 15:58:52 +0000 (18:58 +0300) |
src/virt.c | patch | blob | history |
diff --git a/src/virt.c b/src/virt.c
index 6f9178014cf9570e0e15f021d643289fd1b91484..e494a839e13fc68fd212acfa9fe77fb1208186f7 100644 (file)
--- a/src/virt.c
+++ b/src/virt.c
return 0;
}
+/*
+ virConnectListAllDomains() appeared in 0.10.2
+ Note that LIBVIR_CHECK_VERSION appeared a year later, so
+ in some systems which actually have virConnectListAllDomains()
+ we can't detect this.
+ */
+#ifdef LIBVIR_CHECK_VERSION
+# if LIBVIR_CHECK_VERSION(0,10,2)
+# define HAVE_LIST_ALL_DOMAINS 1
+# endif
+#endif
+
static int
refresh_lists (void)
{
}
if (n > 0) {
+#ifdef HAVE_LIST_ALL_DOMAINS
virDomainPtr *domains;
-
n = virConnectListAllDomains (conn, &domains, VIR_CONNECT_LIST_DOMAINS_ACTIVE);
+#else
+ int *domids;
+
+ /* Get list of domains. */
+ domids = malloc (sizeof (*domids) * n);
+ if (domids == NULL) {
+ ERROR (PLUGIN_NAME " plugin: malloc failed.");
+ return -1;
+ }
+
+ n = virConnectListDomains (conn, domids, n);
+#endif
+
if (n < 0) {
VIRT_ERROR (conn, "reading list of domains");
+#ifndef HAVE_LIST_ALL_DOMAINS
+ sfree (domids);
+#endif
return -1;
}
/* Fetch each domain and add it to the list, unless ignore. */
for (int i = 0; i < n; ++i) {
- virDomainPtr dom = domains[i];
const char *name;
char *xml = NULL;
xmlDocPtr xml_doc = NULL;
xmlXPathContextPtr xpath_ctx = NULL;
xmlXPathObjectPtr xpath_obj = NULL;
+#ifdef HAVE_LIST_ALL_DOMAINS
+ virDomainPtr dom = domains[i];
+#else
+ virDomainPtr dom = NULL;
+
+ dom = virDomainLookupByID (conn, domids[i]);
+ if (dom == NULL) {
+ VIRT_ERROR (conn, "virDomainLookupByID");
+ /* Could be that the domain went away -- ignore it anyway. */
+ continue;
+ }
+#endif
+
name = virDomainGetName (dom);
if (name == NULL) {
VIRT_ERROR (conn, "virDomainGetName");
sfree (xml);
}
+#ifdef HAVE_LIST_ALL_DOMAINS
sfree (domains);
+#else
+ sfree (domids);
+#endif
}
return 0;