ca6e831ed5ee4ff2bbd1e9fab8c13d7a7d2308e6
[collectd.git] / src / virt.c
1 /**
2  * collectd - src/virt.c
3  * Copyright (C) 2006-2008  Red Hat Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the license is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Richard W.M. Jones <rjones@redhat.com>
20  *   Przemyslaw Szczerbik <przemyslawx.szczerbik@intel.com>
21  **/
22
23 #include "collectd.h"
24
25 #include "common.h"
26 #include "plugin.h"
27 #include "utils_complain.h"
28 #include "utils_ignorelist.h"
29
30 #include <libgen.h> /* for basename(3) */
31 #include <libvirt/libvirt.h>
32 #include <libvirt/virterror.h>
33 #include <libxml/parser.h>
34 #include <libxml/tree.h>
35 #include <libxml/xpath.h>
36 #include <libxml/xpathInternals.h>
37
38 /* Plugin name */
39 #define PLUGIN_NAME "virt"
40
41 #ifdef LIBVIR_CHECK_VERSION
42
43 #if LIBVIR_CHECK_VERSION(0, 9, 2)
44 #define HAVE_DOM_REASON 1
45 #endif
46
47 #if LIBVIR_CHECK_VERSION(0, 9, 5)
48 #define HAVE_BLOCK_STATS_FLAGS 1
49 #define HAVE_DOM_REASON_PAUSED_SHUTTING_DOWN 1
50 #endif
51
52 #if LIBVIR_CHECK_VERSION(0, 9, 10)
53 #define HAVE_DISK_ERR 1
54 #endif
55
56 #if LIBVIR_CHECK_VERSION(0, 9, 11)
57 #define HAVE_CPU_STATS 1
58 #define HAVE_DOM_STATE_PMSUSPENDED 1
59 #define HAVE_DOM_REASON_RUNNING_WAKEUP 1
60 #endif
61
62 #if LIBVIR_CHECK_VERSION(1, 0, 1)
63 #define HAVE_DOM_REASON_PAUSED_SNAPSHOT 1
64 #endif
65
66 #if LIBVIR_CHECK_VERSION(1, 1, 1)
67 #define HAVE_DOM_REASON_PAUSED_CRASHED 1
68 #endif
69
70 #if LIBVIR_CHECK_VERSION(1, 2, 9)
71 #define HAVE_JOB_STATS 1
72 #endif
73
74 #if LIBVIR_CHECK_VERSION(1, 2, 10)
75 #define HAVE_DOM_REASON_CRASHED 1
76 #endif
77
78 #if LIBVIR_CHECK_VERSION(1, 2, 11)
79 #define HAVE_FS_INFO 1
80 #endif
81
82 #if LIBVIR_CHECK_VERSION(1, 2, 15)
83 #define HAVE_DOM_REASON_PAUSED_STARTING_UP 1
84 #endif
85
86 #if LIBVIR_CHECK_VERSION(1, 3, 3)
87 #define HAVE_PERF_STATS 1
88 #define HAVE_DOM_REASON_POSTCOPY 1
89 #endif
90
91 #endif /* LIBVIR_CHECK_VERSION */
92
93 static const char *config_keys[] = {"Connection",
94
95                                     "RefreshInterval",
96
97                                     "Domain",
98                                     "BlockDevice",
99                                     "BlockDeviceFormat",
100                                     "BlockDeviceFormatBasename",
101                                     "InterfaceDevice",
102                                     "IgnoreSelected",
103
104                                     "HostnameFormat",
105                                     "InterfaceFormat",
106
107                                     "PluginInstanceFormat",
108
109                                     "Instances",
110                                     "ExtraStats",
111                                     NULL};
112
113 const char *domain_states[] = {
114         [VIR_DOMAIN_NOSTATE] = "no state",
115         [VIR_DOMAIN_RUNNING] = "the domain is running",
116         [VIR_DOMAIN_BLOCKED] = "the domain is blocked on resource",
117         [VIR_DOMAIN_PAUSED] = "the domain is paused by user",
118         [VIR_DOMAIN_SHUTDOWN] = "the domain is being shut down",
119         [VIR_DOMAIN_SHUTOFF] = "the domain is shut off",
120         [VIR_DOMAIN_CRASHED] = "the domain is crashed",
121 #ifdef HAVE_DOM_STATE_PMSUSPENDED
122         [VIR_DOMAIN_PMSUSPENDED] =
123             "the domain is suspended by guest power management",
124 #endif
125 };
126
127 #ifdef HAVE_DOM_REASON
128 #define DOMAIN_STATE_REASON_MAX_SIZE 20
129 const char *domain_reasons[][DOMAIN_STATE_REASON_MAX_SIZE] = {
130         [VIR_DOMAIN_NOSTATE][VIR_DOMAIN_NOSTATE_UNKNOWN] =
131             "the reason is unknown",
132
133         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_UNKNOWN] =
134             "the reason is unknown",
135         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_BOOTED] =
136             "normal startup from boot",
137         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_MIGRATED] =
138             "migrated from another host",
139         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_RESTORED] =
140             "restored from a state file",
141         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_FROM_SNAPSHOT] =
142             "restored from snapshot",
143         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_UNPAUSED] =
144             "returned from paused state",
145         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_MIGRATION_CANCELED] =
146             "returned from migration",
147         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_SAVE_CANCELED] =
148             "returned from failed save process",
149 #ifdef HAVE_DOM_REASON_RUNNING_WAKEUP
150         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_WAKEUP] =
151             "returned from pmsuspended due to wakeup event",
152 #endif
153 #ifdef HAVE_DOM_REASON_CRASHED
154         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_CRASHED] =
155             "resumed from crashed",
156 #endif
157 #ifdef HAVE_DOM_REASON_POSTCOPY
158         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_POSTCOPY] =
159             "running in post-copy migration mode",
160 #endif
161
162         [VIR_DOMAIN_BLOCKED][VIR_DOMAIN_BLOCKED_UNKNOWN] =
163             "the reason is unknown",
164
165         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_UNKNOWN] =
166             "the reason is unknown",
167         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_USER] = "paused on user request",
168         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_MIGRATION] =
169             "paused for offline migration",
170         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_SAVE] = "paused for save",
171         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_DUMP] =
172             "paused for offline core dump",
173         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_IOERROR] =
174             "paused due to a disk I/O error",
175         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_WATCHDOG] =
176             "paused due to a watchdog event",
177         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_FROM_SNAPSHOT] =
178             "paused after restoring from snapshot",
179 #ifdef HAVE_DOM_REASON_PAUSED_SHUTTING_DOWN
180         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_SHUTTING_DOWN] =
181             "paused during shutdown process",
182 #endif
183 #ifdef HAVE_DOM_REASON_PAUSED_SNAPSHOT
184         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_SNAPSHOT] =
185             "paused while creating a snapshot",
186 #endif
187 #ifdef HAVE_DOM_REASON_PAUSED_CRASHED
188         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_CRASHED] =
189             "paused due to a guest crash",
190 #endif
191 #ifdef HAVE_DOM_REASON_PAUSED_STARTING_UP
192         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_STARTING_UP] =
193             "the domain is being started",
194 #endif
195 #ifdef HAVE_DOM_REASON_POSTCOPY
196         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_POSTCOPY] =
197             "paused for post-copy migration",
198         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_POSTCOPY_FAILED] =
199             "paused after failed post-copy",
200 #endif
201
202         [VIR_DOMAIN_SHUTDOWN][VIR_DOMAIN_SHUTDOWN_UNKNOWN] =
203             "the reason is unknown",
204         [VIR_DOMAIN_SHUTDOWN][VIR_DOMAIN_SHUTDOWN_USER] =
205             "shutting down on user request",
206
207         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_UNKNOWN] =
208             "the reason is unknown",
209         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_SHUTDOWN] = "normal shutdown",
210         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_DESTROYED] = "forced poweroff",
211         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_CRASHED] = "domain crashed",
212         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_MIGRATED] =
213             "migrated to another host",
214         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_SAVED] = "saved to a file",
215         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_FAILED] =
216             "domain failed to start",
217         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_FROM_SNAPSHOT] =
218             "restored from a snapshot which was taken while domain was shutoff",
219
220         [VIR_DOMAIN_CRASHED][VIR_DOMAIN_CRASHED_UNKNOWN] =
221             "the reason is unknown",
222 #ifdef VIR_DOMAIN_CRASHED_PANICKED
223         [VIR_DOMAIN_CRASHED][VIR_DOMAIN_CRASHED_PANICKED] = "domain panicked",
224 #endif
225
226 #ifdef HAVE_DOM_STATE_PMSUSPENDED
227         [VIR_DOMAIN_PMSUSPENDED][VIR_DOMAIN_PMSUSPENDED_UNKNOWN] =
228             "the reason is unknown",
229 #endif
230 };
231 #endif /* HAVE_DOM_REASON */
232
233 #define NR_CONFIG_KEYS ((sizeof config_keys / sizeof config_keys[0]) - 1)
234 #define NANOSEC_IN_SEC 1e9
235
236 #define GET_STATS(_f, _name, ...)                                              \
237   do {                                                                         \
238     status = _f(__VA_ARGS__);                                                  \
239     if (status != 0)                                                           \
240       ERROR(PLUGIN_NAME ": Failed to get " _name);                             \
241   } while (0)
242
243 /* Connection. */
244 static virConnectPtr conn = 0;
245 static char *conn_string = NULL;
246 static c_complain_t conn_complain = C_COMPLAIN_INIT_STATIC;
247
248 /* Node information required for %CPU */
249 static virNodeInfo nodeinfo;
250
251 /* Seconds between list refreshes, 0 disables completely. */
252 static int interval = 60;
253
254 /* List of domains, if specified. */
255 static ignorelist_t *il_domains = NULL;
256 /* List of block devices, if specified. */
257 static ignorelist_t *il_block_devices = NULL;
258 /* List of network interface devices, if specified. */
259 static ignorelist_t *il_interface_devices = NULL;
260
261 static int ignore_device_match(ignorelist_t *, const char *domname,
262                                const char *devpath);
263
264 /* Actual list of block devices found on last refresh. */
265 struct block_device {
266   virDomainPtr dom; /* domain */
267   char *path;       /* name of block device */
268 };
269
270 /* Actual list of network interfaces found on last refresh. */
271 struct interface_device {
272   virDomainPtr dom; /* domain */
273   char *path;       /* name of interface device */
274   char *address;    /* mac address of interface device */
275   char *number;     /* interface device number */
276 };
277
278 typedef struct domain_s {
279   virDomainPtr ptr;
280   virDomainInfo info;
281 } domain_t;
282
283 struct lv_read_state {
284   /* Actual list of domains found on last refresh. */
285   domain_t *domains;
286   int nr_domains;
287
288   struct block_device *block_devices;
289   int nr_block_devices;
290
291   struct interface_device *interface_devices;
292   int nr_interface_devices;
293 };
294
295 static void free_domains(struct lv_read_state *state);
296 static int add_domain(struct lv_read_state *state, virDomainPtr dom);
297
298 static void free_block_devices(struct lv_read_state *state);
299 static int add_block_device(struct lv_read_state *state, virDomainPtr dom,
300                             const char *path);
301
302 static void free_interface_devices(struct lv_read_state *state);
303 static int add_interface_device(struct lv_read_state *state, virDomainPtr dom,
304                                 const char *path, const char *address,
305                                 unsigned int number);
306
307 #define METADATA_VM_PARTITION_URI "http://ovirt.org/ovirtmap/tag/1.0"
308 #define METADATA_VM_PARTITION_ELEMENT "tag"
309 #define METADATA_VM_PARTITION_PREFIX "ovirtmap"
310
311 #define BUFFER_MAX_LEN 256
312 #define PARTITION_TAG_MAX_LEN 32
313
314 struct lv_read_instance {
315   struct lv_read_state read_state;
316   char tag[PARTITION_TAG_MAX_LEN];
317   size_t id;
318 };
319
320 struct lv_user_data {
321   struct lv_read_instance inst;
322   user_data_t ud;
323 };
324
325 #define NR_INSTANCES_DEFAULT 1
326 #define NR_INSTANCES_MAX 128
327 static int nr_instances = NR_INSTANCES_DEFAULT;
328 static struct lv_user_data lv_read_user_data[NR_INSTANCES_MAX];
329
330 /* HostnameFormat. */
331 #define HF_MAX_FIELDS 3
332
333 enum hf_field { hf_none = 0, hf_hostname, hf_name, hf_uuid };
334
335 static enum hf_field hostname_format[HF_MAX_FIELDS] = {hf_name};
336
337 /* PluginInstanceFormat */
338 #define PLGINST_MAX_FIELDS 2
339
340 enum plginst_field { plginst_none = 0, plginst_name, plginst_uuid };
341
342 static enum plginst_field plugin_instance_format[PLGINST_MAX_FIELDS] = {
343     plginst_none};
344
345 /* BlockDeviceFormat */
346 enum bd_field { target, source };
347
348 /* InterfaceFormat. */
349 enum if_field { if_address, if_name, if_number };
350
351 /* ExtraStats */
352 #define EX_STATS_MAX_FIELDS 15
353 enum ex_stats {
354   ex_stats_none = 0,
355   ex_stats_disk = 1 << 0,
356   ex_stats_pcpu = 1 << 1,
357   ex_stats_cpu_util = 1 << 2,
358   ex_stats_domain_state = 1 << 3,
359 #ifdef HAVE_PERF_STATS
360   ex_stats_perf = 1 << 4,
361 #endif
362   ex_stats_vcpupin = 1 << 5,
363 #ifdef HAVE_DISK_ERR
364   ex_stats_disk_err = 1 << 6,
365 #endif
366 #ifdef HAVE_FS_INFO
367   ex_stats_fs_info = 1 << 7,
368 #endif
369 #ifdef HAVE_JOB_STATS
370   ex_stats_job_stats_completed = 1 << 8,
371   ex_stats_job_stats_background = 1 << 9,
372 #endif
373 };
374
375 static unsigned int extra_stats = ex_stats_none;
376
377 struct ex_stats_item {
378   const char *name;
379   enum ex_stats flag;
380 };
381 static const struct ex_stats_item ex_stats_table[] = {
382     {"disk", ex_stats_disk},
383     {"pcpu", ex_stats_pcpu},
384     {"cpu_util", ex_stats_cpu_util},
385     {"domain_state", ex_stats_domain_state},
386 #ifdef HAVE_PERF_STATS
387     {"perf", ex_stats_perf},
388 #endif
389     {"vcpupin", ex_stats_vcpupin},
390 #ifdef HAVE_DISK_ERR
391     {"disk_err", ex_stats_disk_err},
392 #endif
393 #ifdef HAVE_FS_INFO
394     {"fs_info", ex_stats_fs_info},
395 #endif
396 #ifdef HAVE_JOB_STATS
397     {"job_stats_completed", ex_stats_job_stats_completed},
398     {"job_stats_background", ex_stats_job_stats_background},
399 #endif
400     {NULL, ex_stats_none},
401 };
402
403 /* BlockDeviceFormatBasename */
404 _Bool blockdevice_format_basename = 0;
405 static enum bd_field blockdevice_format = target;
406 static enum if_field interface_format = if_name;
407
408 /* Time that we last refreshed. */
409 static time_t last_refresh = (time_t)0;
410
411 static int refresh_lists(struct lv_read_instance *inst);
412
413 struct lv_info {
414   virDomainInfo di;
415   unsigned long long total_user_cpu_time;
416   unsigned long long total_syst_cpu_time;
417 };
418
419 struct lv_block_info {
420   virDomainBlockStatsStruct bi;
421
422   long long rd_total_times;
423   long long wr_total_times;
424
425   long long fl_req;
426   long long fl_total_times;
427 };
428
429 static void init_block_info(struct lv_block_info *binfo) {
430   if (binfo == NULL)
431     return;
432
433   binfo->bi.rd_req = -1;
434   binfo->bi.wr_req = -1;
435   binfo->bi.rd_bytes = -1;
436   binfo->bi.wr_bytes = -1;
437
438   binfo->rd_total_times = -1;
439   binfo->wr_total_times = -1;
440   binfo->fl_req = -1;
441   binfo->fl_total_times = -1;
442 }
443
444 #ifdef HAVE_BLOCK_STATS_FLAGS
445
446 #define GET_BLOCK_INFO_VALUE(NAME, FIELD)                                      \
447   do {                                                                         \
448     if (!strcmp(param[i].field, NAME)) {                                       \
449       binfo->FIELD = param[i].value.l;                                         \
450       continue;                                                                \
451     }                                                                          \
452   } while (0)
453
454 static int get_block_info(struct lv_block_info *binfo,
455                           virTypedParameterPtr param, int nparams) {
456   if (binfo == NULL || param == NULL)
457     return -1;
458
459   for (int i = 0; i < nparams; ++i) {
460     /* ignore type. Everything must be LLONG anyway. */
461     GET_BLOCK_INFO_VALUE("rd_operations", bi.rd_req);
462     GET_BLOCK_INFO_VALUE("wr_operations", bi.wr_req);
463     GET_BLOCK_INFO_VALUE("rd_bytes", bi.rd_bytes);
464     GET_BLOCK_INFO_VALUE("wr_bytes", bi.wr_bytes);
465     GET_BLOCK_INFO_VALUE("rd_total_times", rd_total_times);
466     GET_BLOCK_INFO_VALUE("wr_total_times", wr_total_times);
467     GET_BLOCK_INFO_VALUE("flush_operations", fl_req);
468     GET_BLOCK_INFO_VALUE("flush_total_times", fl_total_times);
469   }
470
471   return 0;
472 }
473
474 #undef GET_BLOCK_INFO_VALUE
475
476 #endif /* HAVE_BLOCK_STATS_FLAGS */
477
478 /* ERROR(...) macro for virterrors. */
479 #define VIRT_ERROR(conn, s)                                                    \
480   do {                                                                         \
481     virErrorPtr err;                                                           \
482     err = (conn) ? virConnGetLastError((conn)) : virGetLastError();            \
483     if (err)                                                                   \
484       ERROR("%s: %s", (s), err->message);                                      \
485   } while (0)
486
487 static void init_lv_info(struct lv_info *info) {
488   if (info != NULL)
489     memset(info, 0, sizeof(*info));
490 }
491
492 static int lv_domain_info(virDomainPtr dom, struct lv_info *info) {
493 #ifdef HAVE_CPU_STATS
494   virTypedParameterPtr param = NULL;
495   int nparams = 0;
496 #endif /* HAVE_CPU_STATS */
497   int ret = virDomainGetInfo(dom, &(info->di));
498   if (ret != 0) {
499     return ret;
500   }
501
502 #ifdef HAVE_CPU_STATS
503   nparams = virDomainGetCPUStats(dom, NULL, 0, -1, 1, 0);
504   if (nparams < 0) {
505     VIRT_ERROR(conn, "getting the CPU params count");
506     return -1;
507   }
508
509   param = calloc(nparams, sizeof(virTypedParameter));
510   if (param == NULL) {
511     ERROR("virt plugin: alloc(%i) for cpu parameters failed.", nparams);
512     return -1;
513   }
514
515   ret = virDomainGetCPUStats(dom, param, nparams, -1, 1, 0); // total stats.
516   if (ret < 0) {
517     virTypedParamsClear(param, nparams);
518     sfree(param);
519     VIRT_ERROR(conn, "getting the disk params values");
520     return -1;
521   }
522
523   for (int i = 0; i < nparams; ++i) {
524     if (!strcmp(param[i].field, "user_time"))
525       info->total_user_cpu_time = param[i].value.ul;
526     else if (!strcmp(param[i].field, "system_time"))
527       info->total_syst_cpu_time = param[i].value.ul;
528   }
529
530   virTypedParamsClear(param, nparams);
531   sfree(param);
532 #endif /* HAVE_CPU_STATS */
533
534   return 0;
535 }
536
537 static void init_value_list(value_list_t *vl, virDomainPtr dom) {
538   int n;
539   const char *name;
540   char uuid[VIR_UUID_STRING_BUFLEN];
541
542   sstrncpy(vl->plugin, PLUGIN_NAME, sizeof(vl->plugin));
543
544   vl->host[0] = '\0';
545
546   /* Construct the hostname field according to HostnameFormat. */
547   for (int i = 0; i < HF_MAX_FIELDS; ++i) {
548     if (hostname_format[i] == hf_none)
549       continue;
550
551     n = DATA_MAX_NAME_LEN - strlen(vl->host) - 2;
552
553     if (i > 0 && n >= 1) {
554       strncat(vl->host, ":", 1);
555       n--;
556     }
557
558     switch (hostname_format[i]) {
559     case hf_none:
560       break;
561     case hf_hostname:
562       strncat(vl->host, hostname_g, n);
563       break;
564     case hf_name:
565       name = virDomainGetName(dom);
566       if (name)
567         strncat(vl->host, name, n);
568       break;
569     case hf_uuid:
570       if (virDomainGetUUIDString(dom, uuid) == 0)
571         strncat(vl->host, uuid, n);
572       break;
573     }
574   }
575
576   vl->host[sizeof(vl->host) - 1] = '\0';
577
578   /* Construct the plugin instance field according to PluginInstanceFormat. */
579   for (int i = 0; i < PLGINST_MAX_FIELDS; ++i) {
580     if (plugin_instance_format[i] == plginst_none)
581       continue;
582
583     n = sizeof(vl->plugin_instance) - strlen(vl->plugin_instance) - 2;
584
585     if (i > 0 && n >= 1) {
586       strncat(vl->plugin_instance, ":", 1);
587       n--;
588     }
589
590     switch (plugin_instance_format[i]) {
591     case plginst_none:
592       break;
593     case plginst_name:
594       name = virDomainGetName(dom);
595       if (name)
596         strncat(vl->plugin_instance, name, n);
597       break;
598     case plginst_uuid:
599       if (virDomainGetUUIDString(dom, uuid) == 0)
600         strncat(vl->plugin_instance, uuid, n);
601       break;
602     }
603   }
604
605   vl->plugin_instance[sizeof(vl->plugin_instance) - 1] = '\0';
606
607 } /* void init_value_list */
608
609 static int init_notif(notification_t *notif, const virDomainPtr domain,
610                       int severity, const char *msg, const char *type,
611                       const char *type_instance) {
612   value_list_t vl = VALUE_LIST_INIT;
613
614   if (!notif) {
615     ERROR(PLUGIN_NAME ": init_notif: NULL pointer");
616     return -1;
617   }
618
619   init_value_list(&vl, domain);
620   notification_init(notif, severity, msg, vl.host, vl.plugin,
621                     vl.plugin_instance, type, type_instance);
622   notif->time = cdtime();
623   return 0;
624 }
625
626 static void submit_notif(const virDomainPtr domain, int severity,
627                          const char *msg, const char *type,
628                          const char *type_instance) {
629   notification_t notif;
630
631   init_notif(&notif, domain, severity, msg, type, type_instance);
632   plugin_dispatch_notification(&notif);
633   if (notif.meta)
634     plugin_notification_meta_free(notif.meta);
635 }
636
637 static void submit(virDomainPtr dom, char const *type,
638                    char const *type_instance, value_t *values,
639                    size_t values_len) {
640   value_list_t vl = VALUE_LIST_INIT;
641   init_value_list(&vl, dom);
642
643   vl.values = values;
644   vl.values_len = values_len;
645
646   sstrncpy(vl.type, type, sizeof(vl.type));
647   if (type_instance != NULL)
648     sstrncpy(vl.type_instance, type_instance, sizeof(vl.type_instance));
649
650   plugin_dispatch_values(&vl);
651 }
652
653 static void memory_submit(virDomainPtr dom, gauge_t value) {
654   submit(dom, "memory", "total", &(value_t){.gauge = value}, 1);
655 }
656
657 static void memory_stats_submit(gauge_t value, virDomainPtr dom,
658                                 int tag_index) {
659   static const char *tags[] = {"swap_in",        "swap_out", "major_fault",
660                                "minor_fault",    "unused",   "available",
661                                "actual_balloon", "rss",      "usable",
662                                "last_update"};
663
664   if ((tag_index < 0) || (tag_index >= (int)STATIC_ARRAY_SIZE(tags))) {
665     ERROR("virt plugin: Array index out of bounds: tag_index = %d", tag_index);
666     return;
667   }
668
669   submit(dom, "memory", tags[tag_index], &(value_t){.gauge = value}, 1);
670 }
671
672 static void submit_derive2(const char *type, derive_t v0, derive_t v1,
673                            virDomainPtr dom, const char *devname) {
674   value_t values[] = {
675       {.derive = v0}, {.derive = v1},
676   };
677
678   submit(dom, type, devname, values, STATIC_ARRAY_SIZE(values));
679 } /* void submit_derive2 */
680
681 static void pcpu_submit(virDomainPtr dom, struct lv_info *info) {
682 #ifdef HAVE_CPU_STATS
683   if (extra_stats & ex_stats_pcpu)
684     submit_derive2("ps_cputime", info->total_user_cpu_time,
685                    info->total_syst_cpu_time, dom, NULL);
686 #endif /* HAVE_CPU_STATS */
687 }
688
689 static double cpu_ns_to_percent(unsigned int node_cpus,
690                                 unsigned long long cpu_time_old,
691                                 unsigned long long cpu_time_new) {
692   double percent = 0.0;
693   unsigned long long cpu_time_diff = 0;
694   double time_diff_sec = CDTIME_T_TO_DOUBLE(plugin_get_interval());
695
696   if (node_cpus != 0 && time_diff_sec != 0 && cpu_time_old != 0) {
697     cpu_time_diff = cpu_time_new - cpu_time_old;
698     percent = ((double)(100 * cpu_time_diff)) /
699               (time_diff_sec * node_cpus * NANOSEC_IN_SEC);
700   }
701
702   DEBUG(PLUGIN_NAME ": node_cpus=%u cpu_time_old=%llu cpu_time_new=%llu"
703                     "cpu_time_diff=%llu time_diff_sec=%f percent=%f",
704         node_cpus, cpu_time_old, cpu_time_new, cpu_time_diff, time_diff_sec,
705         percent);
706
707   return percent;
708 }
709
710 static void cpu_submit(const domain_t *dom, unsigned long long cpuTime_new) {
711
712   if (!dom)
713     return;
714
715   if (extra_stats & ex_stats_cpu_util) {
716     /* Computing %CPU requires 2 samples of cpuTime */
717     if (dom->info.cpuTime != 0 && cpuTime_new != 0) {
718
719       submit(dom->ptr, "percent", "virt_cpu_total",
720              &(value_t){.gauge = cpu_ns_to_percent(
721                             nodeinfo.cpus, dom->info.cpuTime, cpuTime_new)},
722              1);
723     }
724   }
725
726   submit(dom->ptr, "virt_cpu_total", NULL, &(value_t){.derive = cpuTime_new},
727          1);
728 }
729
730 static void vcpu_submit(derive_t value, virDomainPtr dom, int vcpu_nr,
731                         const char *type) {
732   char type_instance[DATA_MAX_NAME_LEN];
733
734   snprintf(type_instance, sizeof(type_instance), "%d", vcpu_nr);
735   submit(dom, type, type_instance, &(value_t){.derive = value}, 1);
736 }
737
738 static void disk_submit(struct lv_block_info *binfo, virDomainPtr dom,
739                         const char *dev) {
740   char *dev_copy = strdup(dev);
741   const char *type_instance = dev_copy;
742
743   if (!dev_copy)
744     return;
745
746   if (blockdevice_format_basename && blockdevice_format == source)
747     type_instance = basename(dev_copy);
748
749   if (!type_instance) {
750     sfree(dev_copy);
751     return;
752   }
753
754   char flush_type_instance[DATA_MAX_NAME_LEN];
755   snprintf(flush_type_instance, sizeof(flush_type_instance), "flush-%s",
756            type_instance);
757
758   if ((binfo->bi.rd_req != -1) && (binfo->bi.wr_req != -1))
759     submit_derive2("disk_ops", (derive_t)binfo->bi.rd_req,
760                    (derive_t)binfo->bi.wr_req, dom, type_instance);
761
762   if ((binfo->bi.rd_bytes != -1) && (binfo->bi.wr_bytes != -1))
763     submit_derive2("disk_octets", (derive_t)binfo->bi.rd_bytes,
764                    (derive_t)binfo->bi.wr_bytes, dom, type_instance);
765
766   if (extra_stats & ex_stats_disk) {
767     if ((binfo->rd_total_times != -1) && (binfo->wr_total_times != -1))
768       submit_derive2("disk_time", (derive_t)binfo->rd_total_times,
769                      (derive_t)binfo->wr_total_times, dom, type_instance);
770
771     if (binfo->fl_req != -1)
772       submit(dom, "total_requests", flush_type_instance,
773              &(value_t){.derive = (derive_t)binfo->fl_req}, 1);
774     if (binfo->fl_total_times != -1) {
775       derive_t value = binfo->fl_total_times / 1000; // ns -> ms
776       submit(dom, "total_time_in_ms", flush_type_instance,
777              &(value_t){.derive = value}, 1);
778     }
779   }
780
781   sfree(dev_copy);
782 }
783
784 static unsigned int parse_ex_stats_flags(char **exstats, int numexstats) {
785   unsigned int ex_stats_flags = ex_stats_none;
786   for (int i = 0; i < numexstats; i++) {
787     for (int j = 0; ex_stats_table[j].name != NULL; j++) {
788       if (strcasecmp(exstats[i], ex_stats_table[j].name) == 0) {
789         DEBUG(PLUGIN_NAME " plugin: enabling extra stats for '%s'",
790               ex_stats_table[j].name);
791         ex_stats_flags |= ex_stats_table[j].flag;
792         break;
793       }
794
795       if (ex_stats_table[j + 1].name == NULL) {
796         ERROR(PLUGIN_NAME ": Unmatched ExtraStats option: %s", exstats[i]);
797       }
798     }
799   }
800   return ex_stats_flags;
801 }
802
803 static void domain_state_submit(virDomainPtr dom, int state, int reason) {
804
805   if ((state < 0) || (state >= STATIC_ARRAY_SIZE(domain_states))) {
806     ERROR(PLUGIN_NAME ": Array index out of bounds: state=%d", state);
807     return;
808   }
809
810   char msg[DATA_MAX_NAME_LEN];
811   const char *state_str = domain_states[state];
812 #ifdef HAVE_DOM_REASON
813   if ((reason < 0) || (reason >= STATIC_ARRAY_SIZE(domain_reasons[0]))) {
814     ERROR(PLUGIN_NAME ": Array index out of bounds: reason=%d", reason);
815     return;
816   }
817
818   const char *reason_str = domain_reasons[state][reason];
819   /* Array size for domain reasons is fixed, but different domain states can
820    * have different number of reasons. We need to check if reason was
821    * successfully parsed */
822   if (!reason_str) {
823     ERROR(PLUGIN_NAME ": Invalid reason (%d) for domain state: %s", reason,
824           state_str);
825     return;
826   }
827 #else
828   const char *reason_str = "N/A";
829 #endif
830
831   snprintf(msg, sizeof(msg), "Domain state: %s. Reason: %s", state_str,
832            reason_str);
833
834   int severity;
835   switch (state) {
836   case VIR_DOMAIN_NOSTATE:
837   case VIR_DOMAIN_RUNNING:
838   case VIR_DOMAIN_SHUTDOWN:
839   case VIR_DOMAIN_SHUTOFF:
840     severity = NOTIF_OKAY;
841     break;
842   case VIR_DOMAIN_BLOCKED:
843   case VIR_DOMAIN_PAUSED:
844 #ifdef DOM_STATE_PMSUSPENDED
845   case VIR_DOMAIN_PMSUSPENDED:
846 #endif
847     severity = NOTIF_WARNING;
848     break;
849   case VIR_DOMAIN_CRASHED:
850     severity = NOTIF_FAILURE;
851     break;
852   default:
853     ERROR(PLUGIN_NAME ": Unrecognized domain state (%d)", state);
854     return;
855   }
856   submit_notif(dom, severity, msg, "domain_state", NULL);
857 }
858
859 static int lv_config(const char *key, const char *value) {
860   if (virInitialize() != 0)
861     return 1;
862
863   if (il_domains == NULL)
864     il_domains = ignorelist_create(1);
865   if (il_block_devices == NULL)
866     il_block_devices = ignorelist_create(1);
867   if (il_interface_devices == NULL)
868     il_interface_devices = ignorelist_create(1);
869
870   if (strcasecmp(key, "Connection") == 0) {
871     char *tmp = strdup(value);
872     if (tmp == NULL) {
873       ERROR(PLUGIN_NAME " plugin: Connection strdup failed.");
874       return 1;
875     }
876     sfree(conn_string);
877     conn_string = tmp;
878     return 0;
879   }
880
881   if (strcasecmp(key, "RefreshInterval") == 0) {
882     char *eptr = NULL;
883     interval = strtol(value, &eptr, 10);
884     if (eptr == NULL || *eptr != '\0')
885       return 1;
886     return 0;
887   }
888
889   if (strcasecmp(key, "Domain") == 0) {
890     if (ignorelist_add(il_domains, value))
891       return 1;
892     return 0;
893   }
894   if (strcasecmp(key, "BlockDevice") == 0) {
895     if (ignorelist_add(il_block_devices, value))
896       return 1;
897     return 0;
898   }
899
900   if (strcasecmp(key, "BlockDeviceFormat") == 0) {
901     if (strcasecmp(value, "target") == 0)
902       blockdevice_format = target;
903     else if (strcasecmp(value, "source") == 0)
904       blockdevice_format = source;
905     else {
906       ERROR(PLUGIN_NAME " plugin: unknown BlockDeviceFormat: %s", value);
907       return -1;
908     }
909     return 0;
910   }
911   if (strcasecmp(key, "BlockDeviceFormatBasename") == 0) {
912     blockdevice_format_basename = IS_TRUE(value);
913     return 0;
914   }
915   if (strcasecmp(key, "InterfaceDevice") == 0) {
916     if (ignorelist_add(il_interface_devices, value))
917       return 1;
918     return 0;
919   }
920
921   if (strcasecmp(key, "IgnoreSelected") == 0) {
922     if (IS_TRUE(value)) {
923       ignorelist_set_invert(il_domains, 0);
924       ignorelist_set_invert(il_block_devices, 0);
925       ignorelist_set_invert(il_interface_devices, 0);
926     } else {
927       ignorelist_set_invert(il_domains, 1);
928       ignorelist_set_invert(il_block_devices, 1);
929       ignorelist_set_invert(il_interface_devices, 1);
930     }
931     return 0;
932   }
933
934   if (strcasecmp(key, "HostnameFormat") == 0) {
935     char *value_copy;
936     char *fields[HF_MAX_FIELDS];
937     int n;
938
939     value_copy = strdup(value);
940     if (value_copy == NULL) {
941       ERROR(PLUGIN_NAME " plugin: strdup failed.");
942       return -1;
943     }
944
945     n = strsplit(value_copy, fields, HF_MAX_FIELDS);
946     if (n < 1) {
947       sfree(value_copy);
948       ERROR(PLUGIN_NAME " plugin: HostnameFormat: no fields");
949       return -1;
950     }
951
952     for (int i = 0; i < n; ++i) {
953       if (strcasecmp(fields[i], "hostname") == 0)
954         hostname_format[i] = hf_hostname;
955       else if (strcasecmp(fields[i], "name") == 0)
956         hostname_format[i] = hf_name;
957       else if (strcasecmp(fields[i], "uuid") == 0)
958         hostname_format[i] = hf_uuid;
959       else {
960         ERROR(PLUGIN_NAME " plugin: unknown HostnameFormat field: %s",
961               fields[i]);
962         sfree(value_copy);
963         return -1;
964       }
965     }
966     sfree(value_copy);
967
968     for (int i = n; i < HF_MAX_FIELDS; ++i)
969       hostname_format[i] = hf_none;
970
971     return 0;
972   }
973
974   if (strcasecmp(key, "PluginInstanceFormat") == 0) {
975     char *value_copy;
976     char *fields[PLGINST_MAX_FIELDS];
977     int n;
978
979     value_copy = strdup(value);
980     if (value_copy == NULL) {
981       ERROR(PLUGIN_NAME " plugin: strdup failed.");
982       return -1;
983     }
984
985     n = strsplit(value_copy, fields, PLGINST_MAX_FIELDS);
986     if (n < 1) {
987       sfree(value_copy);
988       ERROR(PLUGIN_NAME " plugin: PluginInstanceFormat: no fields");
989       return -1;
990     }
991
992     for (int i = 0; i < n; ++i) {
993       if (strcasecmp(fields[i], "none") == 0) {
994         plugin_instance_format[i] = plginst_none;
995         break;
996       } else if (strcasecmp(fields[i], "name") == 0)
997         plugin_instance_format[i] = plginst_name;
998       else if (strcasecmp(fields[i], "uuid") == 0)
999         plugin_instance_format[i] = plginst_uuid;
1000       else {
1001         ERROR(PLUGIN_NAME " plugin: unknown PluginInstanceFormat field: %s",
1002               fields[i]);
1003         sfree(value_copy);
1004         return -1;
1005       }
1006     }
1007     sfree(value_copy);
1008
1009     for (int i = n; i < PLGINST_MAX_FIELDS; ++i)
1010       plugin_instance_format[i] = plginst_none;
1011
1012     return 0;
1013   }
1014
1015   if (strcasecmp(key, "InterfaceFormat") == 0) {
1016     if (strcasecmp(value, "name") == 0)
1017       interface_format = if_name;
1018     else if (strcasecmp(value, "address") == 0)
1019       interface_format = if_address;
1020     else if (strcasecmp(value, "number") == 0)
1021       interface_format = if_number;
1022     else {
1023       ERROR(PLUGIN_NAME " plugin: unknown InterfaceFormat: %s", value);
1024       return -1;
1025     }
1026     return 0;
1027   }
1028
1029   if (strcasecmp(key, "Instances") == 0) {
1030     char *eptr = NULL;
1031     double val = strtod(value, &eptr);
1032
1033     if (*eptr != '\0') {
1034       ERROR(PLUGIN_NAME " plugin: Invalid value for Instances = '%s'", value);
1035       return 1;
1036     }
1037     if (val <= 0) {
1038       ERROR(PLUGIN_NAME " plugin: Instances <= 0 makes no sense.");
1039       return 1;
1040     }
1041     if (val > NR_INSTANCES_MAX) {
1042       ERROR(PLUGIN_NAME " plugin: Instances=%f > NR_INSTANCES_MAX=%i"
1043                         " use a lower setting or recompile the plugin.",
1044             val, NR_INSTANCES_MAX);
1045       return 1;
1046     }
1047
1048     nr_instances = (int)val;
1049     DEBUG(PLUGIN_NAME " plugin: configured %i instances", nr_instances);
1050     return 0;
1051   }
1052
1053   if (strcasecmp(key, "ExtraStats") == 0) {
1054     char *localvalue = strdup(value);
1055     if (localvalue != NULL) {
1056       char *exstats[EX_STATS_MAX_FIELDS];
1057       int numexstats =
1058           strsplit(localvalue, exstats, STATIC_ARRAY_SIZE(exstats));
1059       extra_stats = parse_ex_stats_flags(exstats, numexstats);
1060       sfree(localvalue);
1061
1062 #ifdef HAVE_JOB_STATS
1063       if ((extra_stats & ex_stats_job_stats_completed) &&
1064           (extra_stats & ex_stats_job_stats_background)) {
1065         ERROR(PLUGIN_NAME " plugin: Invalid job stats configuration. Only one "
1066                           "type of job statistics can be collected at the same "
1067                           "time");
1068         return 1;
1069       }
1070 #endif
1071     }
1072   }
1073
1074   /* Unrecognised option. */
1075   return -1;
1076 }
1077
1078 static int lv_connect(void) {
1079   if (conn == NULL) {
1080 /* `conn_string == NULL' is acceptable */
1081 #ifdef HAVE_FS_INFO
1082     /* virDomainGetFSInfo requires full read-write access connection */
1083     if (extra_stats & ex_stats_fs_info)
1084       conn = virConnectOpen(conn_string);
1085     else
1086 #endif
1087       conn = virConnectOpenReadOnly(conn_string);
1088     if (conn == NULL) {
1089       c_complain(LOG_ERR, &conn_complain,
1090                  PLUGIN_NAME " plugin: Unable to connect: "
1091                              "virConnectOpen failed.");
1092       return -1;
1093     }
1094     int status = virNodeGetInfo(conn, &nodeinfo);
1095     if (status != 0) {
1096       ERROR(PLUGIN_NAME ": virNodeGetInfo failed");
1097       return -1;
1098     }
1099   }
1100   c_release(LOG_NOTICE, &conn_complain,
1101             PLUGIN_NAME " plugin: Connection established.");
1102   return 0;
1103 }
1104
1105 static void lv_disconnect(void) {
1106   if (conn != NULL)
1107     virConnectClose(conn);
1108   conn = NULL;
1109   WARNING(PLUGIN_NAME " plugin: closed connection to libvirt");
1110 }
1111
1112 static int lv_domain_block_info(virDomainPtr dom, const char *path,
1113                                 struct lv_block_info *binfo) {
1114 #ifdef HAVE_BLOCK_STATS_FLAGS
1115   int nparams = 0;
1116   if (virDomainBlockStatsFlags(dom, path, NULL, &nparams, 0) < 0 ||
1117       nparams <= 0) {
1118     VIRT_ERROR(conn, "getting the disk params count");
1119     return -1;
1120   }
1121
1122   virTypedParameterPtr params = calloc((size_t)nparams, sizeof(*params));
1123   if (params == NULL) {
1124     ERROR("virt plugin: alloc(%i) for block=%s parameters failed.", nparams,
1125           path);
1126     return -1;
1127   }
1128
1129   int rc = -1;
1130   if (virDomainBlockStatsFlags(dom, path, params, &nparams, 0) < 0) {
1131     VIRT_ERROR(conn, "getting the disk params values");
1132   } else {
1133     rc = get_block_info(binfo, params, nparams);
1134   }
1135
1136   virTypedParamsClear(params, nparams);
1137   sfree(params);
1138   return rc;
1139 #else
1140   return virDomainBlockStats(dom, path, &(binfo->bi), sizeof(binfo->bi));
1141 #endif /* HAVE_BLOCK_STATS_FLAGS */
1142 }
1143
1144 #ifdef HAVE_PERF_STATS
1145 static void perf_submit(virDomainStatsRecordPtr stats) {
1146   for (int i = 0; i < stats->nparams; ++i) {
1147     /* Replace '.' with '_' in event field to match other metrics' naming
1148      * convention */
1149     char *c = strchr(stats->params[i].field, '.');
1150     if (c)
1151       *c = '_';
1152     submit(stats->dom, "perf", stats->params[i].field,
1153            &(value_t){.derive = stats->params[i].value.ul}, 1);
1154   }
1155 }
1156
1157 static int get_perf_events(virDomainPtr domain) {
1158   virDomainStatsRecordPtr *stats = NULL;
1159   /* virDomainListGetStats requires a NULL terminated list of domains */
1160   virDomainPtr domain_array[] = {domain, NULL};
1161
1162   int status =
1163       virDomainListGetStats(domain_array, VIR_DOMAIN_STATS_PERF, &stats, 0);
1164   if (status == -1) {
1165     ERROR("virt plugin: virDomainListGetStats failed with status %i.", status);
1166     return status;
1167   }
1168
1169   for (int i = 0; i < status; ++i)
1170     perf_submit(stats[i]);
1171
1172   virDomainStatsRecordListFree(stats);
1173   return 0;
1174 }
1175 #endif /* HAVE_PERF_STATS */
1176
1177 static void vcpu_pin_submit(virDomainPtr dom, int max_cpus, int vcpu,
1178                             unsigned char *cpu_maps, int cpu_map_len) {
1179   for (int cpu = 0; cpu < max_cpus; ++cpu) {
1180     char type_instance[DATA_MAX_NAME_LEN];
1181     _Bool is_set = VIR_CPU_USABLE(cpu_maps, cpu_map_len, vcpu, cpu) ? 1 : 0;
1182
1183     snprintf(type_instance, sizeof(type_instance), "vcpu_%d-cpu_%d", vcpu, cpu);
1184     submit(dom, "cpu_affinity", type_instance, &(value_t){.gauge = is_set}, 1);
1185   }
1186 }
1187
1188 static int get_vcpu_stats(virDomainPtr domain, unsigned short nr_virt_cpu) {
1189   int max_cpus = VIR_NODEINFO_MAXCPUS(nodeinfo);
1190   int cpu_map_len = VIR_CPU_MAPLEN(max_cpus);
1191
1192   virVcpuInfoPtr vinfo = calloc(nr_virt_cpu, sizeof(vinfo[0]));
1193   if (vinfo == NULL) {
1194     ERROR(PLUGIN_NAME " plugin: malloc failed.");
1195     return -1;
1196   }
1197
1198   unsigned char *cpumaps = calloc(nr_virt_cpu, cpu_map_len);
1199   if (cpumaps == NULL) {
1200     ERROR(PLUGIN_NAME " plugin: malloc failed.");
1201     sfree(vinfo);
1202     return -1;
1203   }
1204
1205   int status =
1206       virDomainGetVcpus(domain, vinfo, nr_virt_cpu, cpumaps, cpu_map_len);
1207   if (status < 0) {
1208     ERROR(PLUGIN_NAME " plugin: virDomainGetVcpus failed with status %i.",
1209           status);
1210     sfree(cpumaps);
1211     sfree(vinfo);
1212     return status;
1213   }
1214
1215   for (int i = 0; i < nr_virt_cpu; ++i) {
1216     vcpu_submit(vinfo[i].cpuTime, domain, vinfo[i].number, "virt_vcpu");
1217     if (extra_stats & ex_stats_vcpupin)
1218       vcpu_pin_submit(domain, max_cpus, i, cpumaps, cpu_map_len);
1219   }
1220
1221   sfree(cpumaps);
1222   sfree(vinfo);
1223   return 0;
1224 }
1225
1226 #ifdef HAVE_DOM_REASON
1227 static int get_domain_state(virDomainPtr domain) {
1228   int domain_state = 0;
1229   int domain_reason = 0;
1230
1231   int status = virDomainGetState(domain, &domain_state, &domain_reason, 0);
1232   if (status != 0) {
1233     ERROR(PLUGIN_NAME " plugin: virDomainGetState failed with status %i.",
1234           status);
1235     return status;
1236   }
1237
1238   domain_state_submit(domain, domain_state, domain_reason);
1239   return status;
1240 }
1241 #endif /* HAVE_DOM_REASON */
1242
1243 static int get_memory_stats(virDomainPtr domain) {
1244   virDomainMemoryStatPtr minfo =
1245       calloc(VIR_DOMAIN_MEMORY_STAT_NR, sizeof(virDomainMemoryStatStruct));
1246   if (minfo == NULL) {
1247     ERROR("virt plugin: malloc failed.");
1248     return -1;
1249   }
1250
1251   int mem_stats =
1252       virDomainMemoryStats(domain, minfo, VIR_DOMAIN_MEMORY_STAT_NR, 0);
1253   if (mem_stats < 0) {
1254     ERROR("virt plugin: virDomainMemoryStats failed with mem_stats %i.",
1255           mem_stats);
1256     sfree(minfo);
1257     return mem_stats;
1258   }
1259
1260   for (int i = 0; i < mem_stats; i++)
1261     memory_stats_submit((gauge_t)minfo[i].val * 1024, domain, minfo[i].tag);
1262
1263   sfree(minfo);
1264   return 0;
1265 }
1266
1267 #ifdef HAVE_DISK_ERR
1268 static void disk_err_submit(virDomainPtr domain,
1269                             virDomainDiskErrorPtr disk_err) {
1270   submit(domain, "disk_error", disk_err->disk,
1271          &(value_t){.gauge = disk_err->error}, 1);
1272 }
1273
1274 static int get_disk_err(virDomainPtr domain) {
1275   /* Get preferred size of disk errors array */
1276   int disk_err_count = virDomainGetDiskErrors(domain, NULL, 0, 0);
1277   if (disk_err_count == -1) {
1278     ERROR(PLUGIN_NAME
1279           " plugin: failed to get preferred size of disk errors array");
1280     return -1;
1281   }
1282
1283   DEBUG(PLUGIN_NAME
1284         " plugin: preferred size of disk errors array: %d for domain %s",
1285         disk_err_count, virDomainGetName(domain));
1286   virDomainDiskError disk_err[disk_err_count];
1287
1288   disk_err_count = virDomainGetDiskErrors(domain, disk_err, disk_err_count, 0);
1289   if (disk_err_count == -1) {
1290     ERROR(PLUGIN_NAME " plugin: virDomainGetDiskErrors failed with status %d",
1291           disk_err_count);
1292     return -1;
1293   }
1294
1295   DEBUG(PLUGIN_NAME " plugin: detected %d disk errors in domain %s",
1296         disk_err_count, virDomainGetName(domain));
1297
1298   for (int i = 0; i < disk_err_count; ++i) {
1299     disk_err_submit(domain, &disk_err[i]);
1300     sfree(disk_err[i].disk);
1301   }
1302
1303   return 0;
1304 }
1305 #endif /* HAVE_DISK_ERR */
1306
1307 static int get_block_stats(struct block_device *block_dev) {
1308
1309   if (!block_dev) {
1310     ERROR(PLUGIN_NAME " plugin: get_block_stats NULL pointer");
1311     return -1;
1312   }
1313
1314   struct lv_block_info binfo;
1315   init_block_info(&binfo);
1316
1317   if (lv_domain_block_info(block_dev->dom, block_dev->path, &binfo) < 0) {
1318     ERROR(PLUGIN_NAME " plugin: lv_domain_block_info failed");
1319     return -1;
1320   }
1321
1322   disk_submit(&binfo, block_dev->dom, block_dev->path);
1323   return 0;
1324 }
1325
1326 #ifdef HAVE_FS_INFO
1327
1328 #define NM_ADD_ITEM(_fun, _name, _val)                                         \
1329   do {                                                                         \
1330     ret = _fun(&notif, _name, _val);                                           \
1331     if (ret != 0) {                                                            \
1332       ERROR(PLUGIN_NAME " plugin: failed to add notification metadata");       \
1333       goto cleanup;                                                            \
1334     }                                                                          \
1335   } while (0)
1336
1337 #define NM_ADD_STR_ITEMS(_items, _size)                                        \
1338   do {                                                                         \
1339     for (int _i = 0; _i < _size; ++_i) {                                       \
1340       DEBUG(PLUGIN_NAME                                                        \
1341             " plugin: Adding notification metadata name=%s value=%s",          \
1342             _items[_i].name, _items[_i].value);                                \
1343       NM_ADD_ITEM(plugin_notification_meta_add_string, _items[_i].name,        \
1344                   _items[_i].value);                                           \
1345     }                                                                          \
1346   } while (0)
1347
1348 static int fs_info_notify(virDomainPtr domain, virDomainFSInfoPtr fs_info) {
1349   notification_t notif;
1350   int ret = 0;
1351
1352   /* Local struct, just for the purpose of this function. */
1353   typedef struct nm_str_item_s {
1354     const char *name;
1355     const char *value;
1356   } nm_str_item_t;
1357
1358   nm_str_item_t fs_dev_alias[fs_info->ndevAlias];
1359   nm_str_item_t fs_str_items[] = {
1360       {.name = "mountpoint", .value = fs_info->mountpoint},
1361       {.name = "name", .value = fs_info->name},
1362       {.name = "fstype", .value = fs_info->fstype}};
1363
1364   for (int i = 0; i < fs_info->ndevAlias; ++i) {
1365     fs_dev_alias[i].name = "devAlias";
1366     fs_dev_alias[i].value = fs_info->devAlias[i];
1367   }
1368
1369   init_notif(&notif, domain, NOTIF_OKAY, "File system information",
1370              "file_system", NULL);
1371   NM_ADD_STR_ITEMS(fs_str_items, STATIC_ARRAY_SIZE(fs_str_items));
1372   NM_ADD_ITEM(plugin_notification_meta_add_unsigned_int, "ndevAlias",
1373               fs_info->ndevAlias);
1374   NM_ADD_STR_ITEMS(fs_dev_alias, fs_info->ndevAlias);
1375
1376   plugin_dispatch_notification(&notif);
1377
1378 cleanup:
1379   if (notif.meta)
1380     plugin_notification_meta_free(notif.meta);
1381   return ret;
1382 }
1383
1384 #undef RETURN_ON_ERR
1385 #undef NM_ADD_STR_ITEMS
1386
1387 static int get_fs_info(virDomainPtr domain) {
1388   virDomainFSInfoPtr *fs_info = NULL;
1389   int ret = 0;
1390
1391   int mount_points_cnt = virDomainGetFSInfo(domain, &fs_info, 0);
1392   if (mount_points_cnt == -1) {
1393     ERROR(PLUGIN_NAME " plugin: virDomainGetFSInfo failed: %d",
1394           mount_points_cnt);
1395     return mount_points_cnt;
1396   }
1397
1398   for (int i = 0; i < mount_points_cnt; ++i) {
1399     if (fs_info_notify(domain, fs_info[i]) != 0) {
1400       ERROR(PLUGIN_NAME " plugin: failed to send file system notification "
1401                         "for mount point %s",
1402             fs_info[i]->mountpoint);
1403       ret = -1;
1404     }
1405     virDomainFSInfoFree(fs_info[i]);
1406   }
1407
1408   sfree(fs_info);
1409   return ret;
1410 }
1411
1412 #endif /* HAVE_FS_INFO */
1413
1414 #ifdef HAVE_JOB_STATS
1415 static void job_stats_submit(virDomainPtr domain, virTypedParameterPtr param) {
1416   value_t vl = {0};
1417
1418   if (param->type == VIR_TYPED_PARAM_INT)
1419     vl.derive = param->value.i;
1420   else if (param->type == VIR_TYPED_PARAM_UINT)
1421     vl.derive = param->value.ui;
1422   else if (param->type == VIR_TYPED_PARAM_LLONG)
1423     vl.derive = param->value.l;
1424   else if (param->type == VIR_TYPED_PARAM_ULLONG)
1425     vl.derive = param->value.ul;
1426   else if (param->type == VIR_TYPED_PARAM_DOUBLE)
1427     vl.derive = param->value.d;
1428   else if (param->type == VIR_TYPED_PARAM_BOOLEAN)
1429     vl.derive = param->value.b;
1430   else if (param->type == VIR_TYPED_PARAM_STRING) {
1431     submit_notif(domain, NOTIF_OKAY, param->value.s, "job_stats", param->field);
1432     return;
1433   } else {
1434     ERROR(PLUGIN_NAME " plugin: unrecognized virTypedParameterType");
1435     return;
1436   }
1437
1438   submit(domain, "job_stats", param->field, &vl, 1);
1439 }
1440
1441 static int get_job_stats(virDomainPtr domain) {
1442   int ret = 0;
1443   int job_type = 0;
1444   int nparams = 0;
1445   virTypedParameterPtr params = NULL;
1446   int flags = (extra_stats & ex_stats_job_stats_completed)
1447                   ? VIR_DOMAIN_JOB_STATS_COMPLETED
1448                   : 0;
1449
1450   ret = virDomainGetJobStats(domain, &job_type, &params, &nparams, flags);
1451   if (ret != 0) {
1452     ERROR(PLUGIN_NAME " plugin: virDomainGetJobStats failed: %d", ret);
1453     return ret;
1454   }
1455
1456   DEBUG(PLUGIN_NAME " plugin: job_type=%d nparams=%d", job_type, nparams);
1457
1458   for (int i = 0; i < nparams; ++i) {
1459     DEBUG(PLUGIN_NAME " plugin: param[%d] field=%s type=%d", i, params[i].field,
1460           params[i].type);
1461     job_stats_submit(domain, &params[i]);
1462   }
1463
1464   virTypedParamsFree(params, nparams);
1465   return ret;
1466 }
1467 #endif /* HAVE_JOB_STATS */
1468
1469 static int get_domain_metrics(domain_t *domain) {
1470   struct lv_info info;
1471
1472   if (!domain || !domain->ptr) {
1473     ERROR(PLUGIN_NAME ": get_domain_metrics: NULL pointer");
1474     return -1;
1475   }
1476
1477   init_lv_info(&info);
1478   int status = lv_domain_info(domain->ptr, &info);
1479   if (status != 0) {
1480     ERROR(PLUGIN_NAME " plugin: virDomainGetInfo failed with status %i.",
1481           status);
1482     return -1;
1483   }
1484
1485   if (extra_stats & ex_stats_domain_state) {
1486 #ifdef HAVE_DOM_REASON
1487     /* At this point we already know domain's state from virDomainGetInfo call,
1488      * however it doesn't provide a reason for entering particular state.
1489      * We need to get it from virDomainGetState.
1490      */
1491     GET_STATS(get_domain_state, "domain reason", domain->ptr);
1492 #else
1493     /* virDomainGetState is not available. Submit 0, which corresponds to
1494      * unknown reason. */
1495     domain_state_submit(domain->ptr, info.di.state, 0);
1496 #endif
1497   }
1498
1499   /* Gather remaining stats only for running domains */
1500   if (info.di.state != VIR_DOMAIN_RUNNING)
1501     return 0;
1502
1503   pcpu_submit(domain->ptr, &info);
1504   cpu_submit(domain, info.di.cpuTime);
1505
1506   memory_submit(domain->ptr, (gauge_t)info.di.memory * 1024);
1507
1508   GET_STATS(get_vcpu_stats, "vcpu stats", domain->ptr, info.di.nrVirtCpu);
1509   GET_STATS(get_memory_stats, "memory stats", domain->ptr);
1510
1511 #ifdef HAVE_PERF_STATS
1512   if (extra_stats & ex_stats_perf)
1513     GET_STATS(get_perf_events, "performance monitoring events", domain->ptr);
1514 #endif
1515
1516 #ifdef HAVE_FS_INFO
1517   if (extra_stats & ex_stats_fs_info)
1518     GET_STATS(get_fs_info, "file system info", domain->ptr);
1519 #endif
1520
1521 #ifdef HAVE_DISK_ERR
1522   if (extra_stats & ex_stats_disk_err)
1523     GET_STATS(get_disk_err, "disk errors", domain->ptr);
1524 #endif
1525
1526 #ifdef HAVE_JOB_STATS
1527   if (extra_stats &
1528       (ex_stats_job_stats_completed | ex_stats_job_stats_background))
1529     GET_STATS(get_job_stats, "job stats", domain->ptr);
1530 #endif
1531
1532   /* Update cached virDomainInfo. It has to be done after cpu_submit */
1533   memcpy(&domain->info, &info.di, sizeof(domain->info));
1534   return 0;
1535 }
1536
1537 static int get_if_dev_stats(struct interface_device *if_dev) {
1538   virDomainInterfaceStatsStruct stats = {0};
1539   char *display_name = NULL;
1540
1541   if (!if_dev) {
1542     ERROR(PLUGIN_NAME " plugin: get_if_dev_stats: NULL pointer");
1543     return -1;
1544   }
1545
1546   switch (interface_format) {
1547   case if_address:
1548     display_name = if_dev->address;
1549     break;
1550   case if_number:
1551     display_name = if_dev->number;
1552     break;
1553   case if_name:
1554   default:
1555     display_name = if_dev->path;
1556   }
1557
1558   if (virDomainInterfaceStats(if_dev->dom, if_dev->path, &stats,
1559                               sizeof(stats)) != 0) {
1560     ERROR(PLUGIN_NAME " plugin: virDomainInterfaceStats failed");
1561     return -1;
1562   }
1563
1564   if ((stats.rx_bytes != -1) && (stats.tx_bytes != -1))
1565     submit_derive2("if_octets", (derive_t)stats.rx_bytes,
1566                    (derive_t)stats.tx_bytes, if_dev->dom, display_name);
1567
1568   if ((stats.rx_packets != -1) && (stats.tx_packets != -1))
1569     submit_derive2("if_packets", (derive_t)stats.rx_packets,
1570                    (derive_t)stats.tx_packets, if_dev->dom, display_name);
1571
1572   if ((stats.rx_errs != -1) && (stats.tx_errs != -1))
1573     submit_derive2("if_errors", (derive_t)stats.rx_errs,
1574                    (derive_t)stats.tx_errs, if_dev->dom, display_name);
1575
1576   if ((stats.rx_drop != -1) && (stats.tx_drop != -1))
1577     submit_derive2("if_dropped", (derive_t)stats.rx_drop,
1578                    (derive_t)stats.tx_drop, if_dev->dom, display_name);
1579   return 0;
1580 }
1581
1582 static int lv_read(user_data_t *ud) {
1583   time_t t;
1584   struct lv_read_instance *inst = NULL;
1585   struct lv_read_state *state = NULL;
1586
1587   if (ud->data == NULL) {
1588     ERROR(PLUGIN_NAME " plugin: NULL userdata");
1589     return -1;
1590   }
1591
1592   inst = ud->data;
1593   state = &inst->read_state;
1594
1595   if (inst->id == 0) {
1596     if (lv_connect() < 0)
1597       return -1;
1598   }
1599
1600   time(&t);
1601
1602   /* Need to refresh domain or device lists? */
1603   if ((last_refresh == (time_t)0) ||
1604       ((interval > 0) && ((last_refresh + interval) <= t))) {
1605     if (refresh_lists(inst) != 0) {
1606       if (inst->id == 0)
1607         lv_disconnect();
1608       return -1;
1609     }
1610     last_refresh = t;
1611   }
1612
1613 #if 0
1614     for (int i = 0; i < nr_domains; ++i)
1615         fprintf (stderr, "domain %s\n", virDomainGetName (state->domains[i].ptr));
1616     for (int i = 0; i < nr_block_devices; ++i)
1617         fprintf  (stderr, "block device %d %s:%s\n",
1618                   i, virDomainGetName (block_devices[i].dom),
1619                   block_devices[i].path);
1620     for (int i = 0; i < nr_interface_devices; ++i)
1621         fprintf (stderr, "interface device %d %s:%s\n",
1622                  i, virDomainGetName (interface_devices[i].dom),
1623                  interface_devices[i].path);
1624 #endif
1625
1626   /* Get domains' metrics */
1627   for (int i = 0; i < state->nr_domains; ++i) {
1628     int status = get_domain_metrics(&state->domains[i]);
1629     if (status != 0)
1630       ERROR(PLUGIN_NAME " failed to get metrics for domain=%s",
1631             virDomainGetName(state->domains[i].ptr));
1632   }
1633
1634   /* Get block device stats for each domain. */
1635   for (int i = 0; i < state->nr_block_devices; ++i) {
1636     int status = get_block_stats(&state->block_devices[i]);
1637     if (status != 0)
1638       ERROR(PLUGIN_NAME
1639             " failed to get stats for block device (%s) in domain %s",
1640             state->block_devices[i].path,
1641             virDomainGetName(state->domains[i].ptr));
1642   }
1643
1644   /* Get interface stats for each domain. */
1645   for (int i = 0; i < state->nr_interface_devices; ++i) {
1646     int status = get_if_dev_stats(&state->interface_devices[i]);
1647     if (status != 0)
1648       ERROR(PLUGIN_NAME
1649             " failed to get interface stats for device (%s) in domain %s",
1650             state->interface_devices[i].path,
1651             virDomainGetName(state->interface_devices[i].dom));
1652   }
1653
1654   return 0;
1655 }
1656
1657 static int lv_init_instance(size_t i, plugin_read_cb callback) {
1658   struct lv_user_data *lv_ud = &(lv_read_user_data[i]);
1659   struct lv_read_instance *inst = &(lv_ud->inst);
1660
1661   memset(lv_ud, 0, sizeof(*lv_ud));
1662
1663   snprintf(inst->tag, sizeof(inst->tag), "%s-%zu", PLUGIN_NAME, i);
1664   inst->id = i;
1665
1666   user_data_t *ud = &(lv_ud->ud);
1667   ud->data = inst;
1668   ud->free_func = NULL;
1669
1670   INFO(PLUGIN_NAME " plugin: reader %s initialized", inst->tag);
1671   return plugin_register_complex_read(NULL, inst->tag, callback, 0, ud);
1672 }
1673
1674 static void lv_clean_read_state(struct lv_read_state *state) {
1675   free_block_devices(state);
1676   free_interface_devices(state);
1677   free_domains(state);
1678 }
1679
1680 static void lv_fini_instance(size_t i) {
1681   struct lv_read_instance *inst = &(lv_read_user_data[i].inst);
1682   struct lv_read_state *state = &(inst->read_state);
1683
1684   lv_clean_read_state(state);
1685   INFO(PLUGIN_NAME " plugin: reader %s finalized", inst->tag);
1686 }
1687
1688 static int lv_init(void) {
1689   if (virInitialize() != 0)
1690     return -1;
1691
1692   if (lv_connect() != 0)
1693     return -1;
1694
1695   DEBUG(PLUGIN_NAME " plugin: starting %i instances", nr_instances);
1696
1697   for (int i = 0; i < nr_instances; ++i)
1698     lv_init_instance(i, lv_read);
1699
1700   return 0;
1701 }
1702
1703 /*
1704  * returns 0 on success and <0 on error
1705  */
1706 static int lv_domain_get_tag(xmlXPathContextPtr xpath_ctx, const char *dom_name,
1707                              char *dom_tag) {
1708   char xpath_str[BUFFER_MAX_LEN] = {'\0'};
1709   xmlXPathObjectPtr xpath_obj = NULL;
1710   xmlNodePtr xml_node = NULL;
1711   int ret = -1;
1712   int err;
1713
1714   err = xmlXPathRegisterNs(xpath_ctx,
1715                            (const xmlChar *)METADATA_VM_PARTITION_PREFIX,
1716                            (const xmlChar *)METADATA_VM_PARTITION_URI);
1717   if (err) {
1718     ERROR(PLUGIN_NAME " plugin: xmlXpathRegisterNs(%s, %s) failed on domain %s",
1719           METADATA_VM_PARTITION_PREFIX, METADATA_VM_PARTITION_URI, dom_name);
1720     goto done;
1721   }
1722
1723   snprintf(xpath_str, sizeof(xpath_str), "/domain/metadata/%s:%s/text()",
1724            METADATA_VM_PARTITION_PREFIX, METADATA_VM_PARTITION_ELEMENT);
1725   xpath_obj = xmlXPathEvalExpression((xmlChar *)xpath_str, xpath_ctx);
1726   if (xpath_obj == NULL) {
1727     ERROR(PLUGIN_NAME " plugin: xmlXPathEval(%s) failed on domain %s",
1728           xpath_str, dom_name);
1729     goto done;
1730   }
1731
1732   if (xpath_obj->type != XPATH_NODESET) {
1733     ERROR(PLUGIN_NAME " plugin: xmlXPathEval(%s) unexpected return type %d "
1734                       "(wanted %d) on domain %s",
1735           xpath_str, xpath_obj->type, XPATH_NODESET, dom_name);
1736     goto done;
1737   }
1738
1739   /*
1740    * from now on there is no real error, it's ok if a domain
1741    * doesn't have the metadata partition tag.
1742    */
1743   ret = 0;
1744   if (xpath_obj->nodesetval == NULL || xpath_obj->nodesetval->nodeNr != 1) {
1745     DEBUG(PLUGIN_NAME " plugin: xmlXPathEval(%s) return nodeset size=%i "
1746                       "expected=1 on domain %s",
1747           xpath_str,
1748           (xpath_obj->nodesetval == NULL) ? 0 : xpath_obj->nodesetval->nodeNr,
1749           dom_name);
1750   } else {
1751     xml_node = xpath_obj->nodesetval->nodeTab[0];
1752     sstrncpy(dom_tag, (const char *)xml_node->content, PARTITION_TAG_MAX_LEN);
1753   }
1754
1755 done:
1756   /* deregister to clean up */
1757   err = xmlXPathRegisterNs(xpath_ctx,
1758                            (const xmlChar *)METADATA_VM_PARTITION_PREFIX, NULL);
1759   if (err) {
1760     /* we can't really recover here */
1761     ERROR(PLUGIN_NAME
1762           " plugin: deregistration of namespace %s failed for domain %s",
1763           METADATA_VM_PARTITION_PREFIX, dom_name);
1764   }
1765   if (xpath_obj)
1766     xmlXPathFreeObject(xpath_obj);
1767
1768   return ret;
1769 }
1770
1771 static int is_known_tag(const char *dom_tag) {
1772   for (int i = 0; i < nr_instances; ++i)
1773     if (!strcmp(dom_tag, lv_read_user_data[i].inst.tag))
1774       return 1;
1775   return 0;
1776 }
1777
1778 static int lv_instance_include_domain(struct lv_read_instance *inst,
1779                                       const char *dom_name,
1780                                       const char *dom_tag) {
1781   if ((dom_tag[0] != '\0') && (strcmp(dom_tag, inst->tag) == 0))
1782     return 1;
1783
1784   /* instance#0 will always be there, so it is in charge of extra duties */
1785   if (inst->id == 0) {
1786     if (dom_tag[0] == '\0' || !is_known_tag(dom_tag)) {
1787       DEBUG(PLUGIN_NAME " plugin#%s: refreshing domain %s "
1788                         "with unknown tag '%s'",
1789             inst->tag, dom_name, dom_tag);
1790       return 1;
1791     }
1792   }
1793
1794   return 0;
1795 }
1796
1797 /*
1798   virConnectListAllDomains() appeared in 0.10.2
1799   Note that LIBVIR_CHECK_VERSION appeared a year later, so
1800   in some systems which actually have virConnectListAllDomains()
1801   we can't detect this.
1802  */
1803 #ifdef LIBVIR_CHECK_VERSION
1804 #if LIBVIR_CHECK_VERSION(0, 10, 2)
1805 #define HAVE_LIST_ALL_DOMAINS 1
1806 #endif
1807 #endif
1808
1809 static int refresh_lists(struct lv_read_instance *inst) {
1810   struct lv_read_state *state = &inst->read_state;
1811   int n;
1812
1813   n = virConnectNumOfDomains(conn);
1814   if (n < 0) {
1815     VIRT_ERROR(conn, "reading number of domains");
1816     return -1;
1817   }
1818
1819   lv_clean_read_state(state);
1820
1821   if (n > 0) {
1822 #ifdef HAVE_LIST_ALL_DOMAINS
1823     virDomainPtr *domains;
1824     n = virConnectListAllDomains(conn, &domains,
1825                                  VIR_CONNECT_LIST_DOMAINS_ACTIVE);
1826 #else
1827     int *domids;
1828
1829     /* Get list of domains. */
1830     domids = malloc(sizeof(*domids) * n);
1831     if (domids == NULL) {
1832       ERROR(PLUGIN_NAME " plugin: malloc failed.");
1833       return -1;
1834     }
1835
1836     n = virConnectListDomains(conn, domids, n);
1837 #endif
1838
1839     if (n < 0) {
1840       VIRT_ERROR(conn, "reading list of domains");
1841 #ifndef HAVE_LIST_ALL_DOMAINS
1842       sfree(domids);
1843 #endif
1844       return -1;
1845     }
1846
1847     /* Fetch each domain and add it to the list, unless ignore. */
1848     for (int i = 0; i < n; ++i) {
1849       const char *name;
1850       char *xml = NULL;
1851       xmlDocPtr xml_doc = NULL;
1852       xmlXPathContextPtr xpath_ctx = NULL;
1853       xmlXPathObjectPtr xpath_obj = NULL;
1854       char tag[PARTITION_TAG_MAX_LEN] = {'\0'};
1855       virDomainInfo info;
1856       int status;
1857
1858 #ifdef HAVE_LIST_ALL_DOMAINS
1859       virDomainPtr dom = domains[i];
1860 #else
1861       virDomainPtr dom = NULL;
1862       dom = virDomainLookupByID(conn, domids[i]);
1863       if (dom == NULL) {
1864         VIRT_ERROR(conn, "virDomainLookupByID");
1865         /* Could be that the domain went away -- ignore it anyway. */
1866         continue;
1867       }
1868 #endif
1869
1870       name = virDomainGetName(dom);
1871       if (name == NULL) {
1872         VIRT_ERROR(conn, "virDomainGetName");
1873         goto cont;
1874       }
1875
1876       status = virDomainGetInfo(dom, &info);
1877       if (status != 0) {
1878         ERROR(PLUGIN_NAME " plugin: virDomainGetInfo failed with status %i.",
1879               status);
1880         continue;
1881       }
1882
1883       if (info.state != VIR_DOMAIN_RUNNING) {
1884         DEBUG(PLUGIN_NAME " plugin: skipping inactive domain %s", name);
1885         continue;
1886       }
1887
1888       if (il_domains && ignorelist_match(il_domains, name) != 0)
1889         goto cont;
1890
1891       /* Get a list of devices for this domain. */
1892       xml = virDomainGetXMLDesc(dom, 0);
1893       if (!xml) {
1894         VIRT_ERROR(conn, "virDomainGetXMLDesc");
1895         goto cont;
1896       }
1897
1898       /* Yuck, XML.  Parse out the devices. */
1899       xml_doc = xmlReadDoc((xmlChar *)xml, NULL, NULL, XML_PARSE_NONET);
1900       if (xml_doc == NULL) {
1901         VIRT_ERROR(conn, "xmlReadDoc");
1902         goto cont;
1903       }
1904
1905       xpath_ctx = xmlXPathNewContext(xml_doc);
1906
1907       if (lv_domain_get_tag(xpath_ctx, name, tag) < 0) {
1908         ERROR(PLUGIN_NAME " plugin: lv_domain_get_tag failed.");
1909         goto cont;
1910       }
1911
1912       if (!lv_instance_include_domain(inst, name, tag))
1913         goto cont;
1914
1915       if (add_domain(state, dom) < 0) {
1916         ERROR(PLUGIN_NAME " plugin: malloc failed.");
1917         goto cont;
1918       }
1919
1920       /* Block devices. */
1921       const char *bd_xmlpath = "/domain/devices/disk/target[@dev]";
1922       if (blockdevice_format == source)
1923         bd_xmlpath = "/domain/devices/disk/source[@dev]";
1924       xpath_obj = xmlXPathEval((const xmlChar *)bd_xmlpath, xpath_ctx);
1925
1926       if (xpath_obj == NULL || xpath_obj->type != XPATH_NODESET ||
1927           xpath_obj->nodesetval == NULL)
1928         goto cont;
1929
1930       for (int j = 0; j < xpath_obj->nodesetval->nodeNr; ++j) {
1931         xmlNodePtr node;
1932         char *path = NULL;
1933
1934         node = xpath_obj->nodesetval->nodeTab[j];
1935         if (!node)
1936           continue;
1937         path = (char *)xmlGetProp(node, (xmlChar *)"dev");
1938         if (!path)
1939           continue;
1940
1941         if (il_block_devices &&
1942             ignore_device_match(il_block_devices, name, path) != 0)
1943           goto cont2;
1944
1945         add_block_device(state, dom, path);
1946       cont2:
1947         if (path)
1948           xmlFree(path);
1949       }
1950       xmlXPathFreeObject(xpath_obj);
1951
1952       /* Network interfaces. */
1953       xpath_obj = xmlXPathEval(
1954           (xmlChar *)"/domain/devices/interface[target[@dev]]", xpath_ctx);
1955       if (xpath_obj == NULL || xpath_obj->type != XPATH_NODESET ||
1956           xpath_obj->nodesetval == NULL)
1957         goto cont;
1958
1959       xmlNodeSetPtr xml_interfaces = xpath_obj->nodesetval;
1960
1961       for (int j = 0; j < xml_interfaces->nodeNr; ++j) {
1962         char *path = NULL;
1963         char *address = NULL;
1964         xmlNodePtr xml_interface;
1965
1966         xml_interface = xml_interfaces->nodeTab[j];
1967         if (!xml_interface)
1968           continue;
1969
1970         for (xmlNodePtr child = xml_interface->children; child;
1971              child = child->next) {
1972           if (child->type != XML_ELEMENT_NODE)
1973             continue;
1974
1975           if (xmlStrEqual(child->name, (const xmlChar *)"target")) {
1976             path = (char *)xmlGetProp(child, (const xmlChar *)"dev");
1977             if (!path)
1978               continue;
1979           } else if (xmlStrEqual(child->name, (const xmlChar *)"mac")) {
1980             address = (char *)xmlGetProp(child, (const xmlChar *)"address");
1981             if (!address)
1982               continue;
1983           }
1984         }
1985
1986         if (il_interface_devices &&
1987             (ignore_device_match(il_interface_devices, name, path) != 0 ||
1988              ignore_device_match(il_interface_devices, name, address) != 0))
1989           goto cont3;
1990
1991         add_interface_device(state, dom, path, address, j + 1);
1992       cont3:
1993         if (path)
1994           xmlFree(path);
1995         if (address)
1996           xmlFree(address);
1997       }
1998
1999     cont:
2000       if (xpath_obj)
2001         xmlXPathFreeObject(xpath_obj);
2002       if (xpath_ctx)
2003         xmlXPathFreeContext(xpath_ctx);
2004       if (xml_doc)
2005         xmlFreeDoc(xml_doc);
2006       sfree(xml);
2007     }
2008
2009 #ifdef HAVE_LIST_ALL_DOMAINS
2010     sfree(domains);
2011 #else
2012     sfree(domids);
2013 #endif
2014   }
2015
2016   DEBUG(PLUGIN_NAME " plugin#%s: refreshing"
2017                     " domains=%i block_devices=%i iface_devices=%i",
2018         inst->tag, state->nr_domains, state->nr_block_devices,
2019         state->nr_interface_devices);
2020
2021   return 0;
2022 }
2023
2024 static void free_domains(struct lv_read_state *state) {
2025   if (state->domains) {
2026     for (int i = 0; i < state->nr_domains; ++i)
2027       virDomainFree(state->domains[i].ptr);
2028     sfree(state->domains);
2029   }
2030   state->domains = NULL;
2031   state->nr_domains = 0;
2032 }
2033
2034 static int add_domain(struct lv_read_state *state, virDomainPtr dom) {
2035   domain_t *new_ptr;
2036   int new_size = sizeof(state->domains[0]) * (state->nr_domains + 1);
2037
2038   if (state->domains)
2039     new_ptr = realloc(state->domains, new_size);
2040   else
2041     new_ptr = malloc(new_size);
2042
2043   if (new_ptr == NULL)
2044     return -1;
2045
2046   state->domains = new_ptr;
2047   state->domains[state->nr_domains].ptr = dom;
2048   memset(&state->domains[state->nr_domains].info, 0,
2049          sizeof(state->domains[state->nr_domains].info));
2050
2051   return state->nr_domains++;
2052 }
2053
2054 static void free_block_devices(struct lv_read_state *state) {
2055   if (state->block_devices) {
2056     for (int i = 0; i < state->nr_block_devices; ++i)
2057       sfree(state->block_devices[i].path);
2058     sfree(state->block_devices);
2059   }
2060   state->block_devices = NULL;
2061   state->nr_block_devices = 0;
2062 }
2063
2064 static int add_block_device(struct lv_read_state *state, virDomainPtr dom,
2065                             const char *path) {
2066   struct block_device *new_ptr;
2067   int new_size =
2068       sizeof(state->block_devices[0]) * (state->nr_block_devices + 1);
2069   char *path_copy;
2070
2071   path_copy = strdup(path);
2072   if (!path_copy)
2073     return -1;
2074
2075   if (state->block_devices)
2076     new_ptr = realloc(state->block_devices, new_size);
2077   else
2078     new_ptr = malloc(new_size);
2079
2080   if (new_ptr == NULL) {
2081     sfree(path_copy);
2082     return -1;
2083   }
2084   state->block_devices = new_ptr;
2085   state->block_devices[state->nr_block_devices].dom = dom;
2086   state->block_devices[state->nr_block_devices].path = path_copy;
2087   return state->nr_block_devices++;
2088 }
2089
2090 static void free_interface_devices(struct lv_read_state *state) {
2091   if (state->interface_devices) {
2092     for (int i = 0; i < state->nr_interface_devices; ++i) {
2093       sfree(state->interface_devices[i].path);
2094       sfree(state->interface_devices[i].address);
2095       sfree(state->interface_devices[i].number);
2096     }
2097     sfree(state->interface_devices);
2098   }
2099   state->interface_devices = NULL;
2100   state->nr_interface_devices = 0;
2101 }
2102
2103 static int add_interface_device(struct lv_read_state *state, virDomainPtr dom,
2104                                 const char *path, const char *address,
2105                                 unsigned int number) {
2106   struct interface_device *new_ptr;
2107   int new_size =
2108       sizeof(state->interface_devices[0]) * (state->nr_interface_devices + 1);
2109   char *path_copy, *address_copy, number_string[15];
2110
2111   if ((path == NULL) || (address == NULL))
2112     return EINVAL;
2113
2114   path_copy = strdup(path);
2115   if (!path_copy)
2116     return -1;
2117
2118   address_copy = strdup(address);
2119   if (!address_copy) {
2120     sfree(path_copy);
2121     return -1;
2122   }
2123
2124   snprintf(number_string, sizeof(number_string), "interface-%u", number);
2125
2126   if (state->interface_devices)
2127     new_ptr = realloc(state->interface_devices, new_size);
2128   else
2129     new_ptr = malloc(new_size);
2130
2131   if (new_ptr == NULL) {
2132     sfree(path_copy);
2133     sfree(address_copy);
2134     return -1;
2135   }
2136   state->interface_devices = new_ptr;
2137   state->interface_devices[state->nr_interface_devices].dom = dom;
2138   state->interface_devices[state->nr_interface_devices].path = path_copy;
2139   state->interface_devices[state->nr_interface_devices].address = address_copy;
2140   state->interface_devices[state->nr_interface_devices].number =
2141       strdup(number_string);
2142   return state->nr_interface_devices++;
2143 }
2144
2145 static int ignore_device_match(ignorelist_t *il, const char *domname,
2146                                const char *devpath) {
2147   char *name;
2148   int n, r;
2149
2150   if ((domname == NULL) || (devpath == NULL))
2151     return 0;
2152
2153   n = strlen(domname) + strlen(devpath) + 2;
2154   name = malloc(n);
2155   if (name == NULL) {
2156     ERROR(PLUGIN_NAME " plugin: malloc failed.");
2157     return 0;
2158   }
2159   snprintf(name, n, "%s:%s", domname, devpath);
2160   r = ignorelist_match(il, name);
2161   sfree(name);
2162   return r;
2163 }
2164
2165 static int lv_shutdown(void) {
2166   for (int i = 0; i < nr_instances; ++i) {
2167     lv_fini_instance(i);
2168   }
2169
2170   lv_disconnect();
2171
2172   ignorelist_free(il_domains);
2173   il_domains = NULL;
2174   ignorelist_free(il_block_devices);
2175   il_block_devices = NULL;
2176   ignorelist_free(il_interface_devices);
2177   il_interface_devices = NULL;
2178
2179   return 0;
2180 }
2181
2182 void module_register(void) {
2183   plugin_register_config(PLUGIN_NAME, lv_config, config_keys, NR_CONFIG_KEYS);
2184   plugin_register_init(PLUGIN_NAME, lv_init);
2185   plugin_register_shutdown(PLUGIN_NAME, lv_shutdown);
2186 }