Merge remote-tracking branch 'upstream/master'
[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 "plugin.h"
26 #include "utils/common/common.h"
27 #include "utils/ignorelist/ignorelist.h"
28 #include "utils_complain.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 #include <stdbool.h>
38
39 /* Plugin name */
40 #define PLUGIN_NAME "virt"
41
42 /* Secure strcat macro assuring null termination. Parameter (n) is the size of
43    buffer (d), allowing this macro to be safe for static and dynamic buffers */
44 #define SSTRNCAT(d, s, n)                                                      \
45   do {                                                                         \
46     size_t _l = strlen(d);                                                     \
47     sstrncpy((d) + _l, (s), (n)-_l);                                           \
48   } while (0)
49
50 #ifdef LIBVIR_CHECK_VERSION
51
52 #if LIBVIR_CHECK_VERSION(0, 9, 2)
53 #define HAVE_DOM_REASON 1
54 #endif
55
56 #if LIBVIR_CHECK_VERSION(0, 9, 5)
57 #define HAVE_BLOCK_STATS_FLAGS 1
58 #define HAVE_DOM_REASON_PAUSED_SHUTTING_DOWN 1
59 #endif
60
61 #if LIBVIR_CHECK_VERSION(0, 9, 10)
62 #define HAVE_DISK_ERR 1
63 #endif
64
65 #if LIBVIR_CHECK_VERSION(0, 9, 11)
66 #define HAVE_CPU_STATS 1
67 #define HAVE_DOM_STATE_PMSUSPENDED 1
68 #define HAVE_DOM_REASON_RUNNING_WAKEUP 1
69 #endif
70
71 /*
72   virConnectListAllDomains() appeared in 0.10.2 (Sep 2012)
73   Note that LIBVIR_CHECK_VERSION appeared a year later (Dec 2013,
74   libvirt-1.2.0),
75   so in some systems which actually have virConnectListAllDomains()
76   we can't detect this.
77  */
78 #if LIBVIR_CHECK_VERSION(0, 10, 2)
79 #define HAVE_LIST_ALL_DOMAINS 1
80 #endif
81
82 #if LIBVIR_CHECK_VERSION(1, 0, 1)
83 #define HAVE_DOM_REASON_PAUSED_SNAPSHOT 1
84 #endif
85
86 #if LIBVIR_CHECK_VERSION(1, 1, 1)
87 #define HAVE_DOM_REASON_PAUSED_CRASHED 1
88 #endif
89
90 #if LIBVIR_CHECK_VERSION(1, 2, 9)
91 #define HAVE_JOB_STATS 1
92 #endif
93
94 #if LIBVIR_CHECK_VERSION(1, 2, 10)
95 #define HAVE_DOM_REASON_CRASHED 1
96 #endif
97
98 #if LIBVIR_CHECK_VERSION(1, 2, 11)
99 #define HAVE_FS_INFO 1
100 #endif
101
102 #if LIBVIR_CHECK_VERSION(1, 2, 15)
103 #define HAVE_DOM_REASON_PAUSED_STARTING_UP 1
104 #endif
105
106 #if LIBVIR_CHECK_VERSION(1, 3, 3)
107 #define HAVE_PERF_STATS 1
108 #define HAVE_DOM_REASON_POSTCOPY 1
109 #endif
110
111 #if LIBVIR_CHECK_VERSION(4, 10, 0)
112 #define HAVE_DOM_REASON_SHUTOFF_DAEMON 1
113 #endif
114 #endif /* LIBVIR_CHECK_VERSION */
115
116 /* structure used for aggregating notification-thread data*/
117 typedef struct virt_notif_thread_s {
118   pthread_t event_loop_tid;
119   int domain_event_cb_id;
120   pthread_mutex_t active_mutex; /* protects 'is_active' member access*/
121   bool is_active;
122 } virt_notif_thread_t;
123
124 /* PersistentNotification is false by default */
125 static bool persistent_notification = false;
126
127 static bool report_block_devices = true;
128 static bool report_network_interfaces = true;
129
130 /* Thread used for handling libvirt notifications events */
131 static virt_notif_thread_t notif_thread;
132
133 const char *domain_states[] = {
134         [VIR_DOMAIN_NOSTATE] = "no state",
135         [VIR_DOMAIN_RUNNING] = "the domain is running",
136         [VIR_DOMAIN_BLOCKED] = "the domain is blocked on resource",
137         [VIR_DOMAIN_PAUSED] = "the domain is paused by user",
138         [VIR_DOMAIN_SHUTDOWN] = "the domain is being shut down",
139         [VIR_DOMAIN_SHUTOFF] = "the domain is shut off",
140         [VIR_DOMAIN_CRASHED] = "the domain is crashed",
141 #ifdef HAVE_DOM_STATE_PMSUSPENDED
142         [VIR_DOMAIN_PMSUSPENDED] =
143             "the domain is suspended by guest power management",
144 #endif
145 };
146
147 static int map_domain_event_to_state(int event) {
148   int ret;
149   switch (event) {
150   case VIR_DOMAIN_EVENT_STARTED:
151     ret = VIR_DOMAIN_RUNNING;
152     break;
153   case VIR_DOMAIN_EVENT_SUSPENDED:
154     ret = VIR_DOMAIN_PAUSED;
155     break;
156   case VIR_DOMAIN_EVENT_RESUMED:
157     ret = VIR_DOMAIN_RUNNING;
158     break;
159   case VIR_DOMAIN_EVENT_STOPPED:
160     ret = VIR_DOMAIN_SHUTOFF;
161     break;
162   case VIR_DOMAIN_EVENT_SHUTDOWN:
163     ret = VIR_DOMAIN_SHUTDOWN;
164     break;
165 #ifdef HAVE_DOM_STATE_PMSUSPENDED
166   case VIR_DOMAIN_EVENT_PMSUSPENDED:
167     ret = VIR_DOMAIN_PMSUSPENDED;
168     break;
169 #endif
170 #ifdef HAVE_DOM_REASON_CRASHED
171   case VIR_DOMAIN_EVENT_CRASHED:
172     ret = VIR_DOMAIN_CRASHED;
173     break;
174 #endif
175   default:
176     ret = VIR_DOMAIN_NOSTATE;
177   }
178   return ret;
179 }
180
181 #ifdef HAVE_DOM_REASON
182 static int map_domain_event_detail_to_reason(int event, int detail) {
183   int ret;
184   switch (event) {
185   case VIR_DOMAIN_EVENT_STARTED:
186     switch (detail) {
187     case VIR_DOMAIN_EVENT_STARTED_BOOTED: /* Normal startup from boot */
188       ret = VIR_DOMAIN_RUNNING_BOOTED;
189       break;
190     case VIR_DOMAIN_EVENT_STARTED_MIGRATED: /* Incoming migration from another
191                                                host */
192       ret = VIR_DOMAIN_RUNNING_MIGRATED;
193       break;
194     case VIR_DOMAIN_EVENT_STARTED_RESTORED: /* Restored from a state file */
195       ret = VIR_DOMAIN_RUNNING_RESTORED;
196       break;
197     case VIR_DOMAIN_EVENT_STARTED_FROM_SNAPSHOT: /* Restored from snapshot */
198       ret = VIR_DOMAIN_RUNNING_FROM_SNAPSHOT;
199       break;
200 #ifdef HAVE_DOM_REASON_RUNNING_WAKEUP
201     case VIR_DOMAIN_EVENT_STARTED_WAKEUP: /* Started due to wakeup event */
202       ret = VIR_DOMAIN_RUNNING_WAKEUP;
203       break;
204 #endif
205     default:
206       ret = VIR_DOMAIN_RUNNING_UNKNOWN;
207     }
208     break;
209   case VIR_DOMAIN_EVENT_SUSPENDED:
210     switch (detail) {
211     case VIR_DOMAIN_EVENT_SUSPENDED_PAUSED: /* Normal suspend due to admin
212                                                pause */
213       ret = VIR_DOMAIN_PAUSED_USER;
214       break;
215     case VIR_DOMAIN_EVENT_SUSPENDED_MIGRATED: /* Suspended for offline
216                                                  migration */
217       ret = VIR_DOMAIN_PAUSED_MIGRATION;
218       break;
219     case VIR_DOMAIN_EVENT_SUSPENDED_IOERROR: /* Suspended due to a disk I/O
220                                                 error */
221       ret = VIR_DOMAIN_PAUSED_IOERROR;
222       break;
223     case VIR_DOMAIN_EVENT_SUSPENDED_WATCHDOG: /* Suspended due to a watchdog
224                                                  firing */
225       ret = VIR_DOMAIN_PAUSED_WATCHDOG;
226       break;
227     case VIR_DOMAIN_EVENT_SUSPENDED_RESTORED: /* Restored from paused state
228                                                  file */
229       ret = VIR_DOMAIN_PAUSED_UNKNOWN;
230       break;
231     case VIR_DOMAIN_EVENT_SUSPENDED_FROM_SNAPSHOT: /* Restored from paused
232                                                       snapshot */
233       ret = VIR_DOMAIN_PAUSED_FROM_SNAPSHOT;
234       break;
235     case VIR_DOMAIN_EVENT_SUSPENDED_API_ERROR: /* Suspended after failure during
236                                                   libvirt API call */
237       ret = VIR_DOMAIN_PAUSED_UNKNOWN;
238       break;
239 #ifdef HAVE_DOM_REASON_POSTCOPY
240     case VIR_DOMAIN_EVENT_SUSPENDED_POSTCOPY: /* Suspended for post-copy
241                                                  migration */
242       ret = VIR_DOMAIN_PAUSED_POSTCOPY;
243       break;
244     case VIR_DOMAIN_EVENT_SUSPENDED_POSTCOPY_FAILED: /* Suspended after failed
245                                                         post-copy */
246       ret = VIR_DOMAIN_PAUSED_POSTCOPY_FAILED;
247       break;
248 #endif
249     default:
250       ret = VIR_DOMAIN_PAUSED_UNKNOWN;
251     }
252     break;
253   case VIR_DOMAIN_EVENT_RESUMED:
254     switch (detail) {
255     case VIR_DOMAIN_EVENT_RESUMED_UNPAUSED: /* Normal resume due to admin
256                                                unpause */
257       ret = VIR_DOMAIN_RUNNING_UNPAUSED;
258       break;
259     case VIR_DOMAIN_EVENT_RESUMED_MIGRATED: /* Resumed for completion of
260                                                migration */
261       ret = VIR_DOMAIN_RUNNING_MIGRATED;
262       break;
263     case VIR_DOMAIN_EVENT_RESUMED_FROM_SNAPSHOT: /* Resumed from snapshot */
264       ret = VIR_DOMAIN_RUNNING_FROM_SNAPSHOT;
265       break;
266 #ifdef HAVE_DOM_REASON_POSTCOPY
267     case VIR_DOMAIN_EVENT_RESUMED_POSTCOPY: /* Resumed, but migration is still
268                                                running in post-copy mode */
269       ret = VIR_DOMAIN_RUNNING_POSTCOPY;
270       break;
271 #endif
272     default:
273       ret = VIR_DOMAIN_RUNNING_UNKNOWN;
274     }
275     break;
276   case VIR_DOMAIN_EVENT_STOPPED:
277     switch (detail) {
278     case VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN: /* Normal shutdown */
279       ret = VIR_DOMAIN_SHUTOFF_SHUTDOWN;
280       break;
281     case VIR_DOMAIN_EVENT_STOPPED_DESTROYED: /* Forced poweroff from host */
282       ret = VIR_DOMAIN_SHUTOFF_DESTROYED;
283       break;
284     case VIR_DOMAIN_EVENT_STOPPED_CRASHED: /* Guest crashed */
285       ret = VIR_DOMAIN_SHUTOFF_CRASHED;
286       break;
287     case VIR_DOMAIN_EVENT_STOPPED_MIGRATED: /* Migrated off to another host */
288       ret = VIR_DOMAIN_SHUTOFF_MIGRATED;
289       break;
290     case VIR_DOMAIN_EVENT_STOPPED_SAVED: /* Saved to a state file */
291       ret = VIR_DOMAIN_SHUTOFF_SAVED;
292       break;
293     case VIR_DOMAIN_EVENT_STOPPED_FAILED: /* Host emulator/mgmt failed */
294       ret = VIR_DOMAIN_SHUTOFF_FAILED;
295       break;
296     case VIR_DOMAIN_EVENT_STOPPED_FROM_SNAPSHOT: /* Offline snapshot loaded */
297       ret = VIR_DOMAIN_SHUTOFF_FROM_SNAPSHOT;
298       break;
299     default:
300       ret = VIR_DOMAIN_SHUTOFF_UNKNOWN;
301     }
302     break;
303   case VIR_DOMAIN_EVENT_SHUTDOWN:
304     switch (detail) {
305     case VIR_DOMAIN_EVENT_SHUTDOWN_FINISHED: /* Guest finished shutdown
306                                                 sequence */
307 #ifdef LIBVIR_CHECK_VERSION
308 #if LIBVIR_CHECK_VERSION(3, 4, 0)
309     case VIR_DOMAIN_EVENT_SHUTDOWN_GUEST: /* Domain finished shutting down after
310                                              request from the guest itself (e.g.
311                                              hardware-specific action) */
312     case VIR_DOMAIN_EVENT_SHUTDOWN_HOST:  /* Domain finished shutting down after
313                                              request from the host (e.g. killed
314                                              by a signal) */
315 #endif
316 #endif
317       ret = VIR_DOMAIN_SHUTDOWN_USER;
318       break;
319     default:
320       ret = VIR_DOMAIN_SHUTDOWN_UNKNOWN;
321     }
322     break;
323 #ifdef HAVE_DOM_STATE_PMSUSPENDED
324   case VIR_DOMAIN_EVENT_PMSUSPENDED:
325     switch (detail) {
326     case VIR_DOMAIN_EVENT_PMSUSPENDED_MEMORY: /* Guest was PM suspended to
327                                                  memory */
328       ret = VIR_DOMAIN_PMSUSPENDED_UNKNOWN;
329       break;
330     case VIR_DOMAIN_EVENT_PMSUSPENDED_DISK: /* Guest was PM suspended to disk */
331       ret = VIR_DOMAIN_PMSUSPENDED_DISK_UNKNOWN;
332       break;
333     default:
334       ret = VIR_DOMAIN_PMSUSPENDED_UNKNOWN;
335     }
336     break;
337 #endif
338   case VIR_DOMAIN_EVENT_CRASHED:
339     switch (detail) {
340     case VIR_DOMAIN_EVENT_CRASHED_PANICKED: /* Guest was panicked */
341       ret = VIR_DOMAIN_CRASHED_PANICKED;
342       break;
343     default:
344       ret = VIR_DOMAIN_CRASHED_UNKNOWN;
345     }
346     break;
347   default:
348     ret = VIR_DOMAIN_NOSTATE_UNKNOWN;
349   }
350   return ret;
351 }
352
353 #define DOMAIN_STATE_REASON_MAX_SIZE 20
354 const char *domain_reasons[][DOMAIN_STATE_REASON_MAX_SIZE] = {
355         [VIR_DOMAIN_NOSTATE][VIR_DOMAIN_NOSTATE_UNKNOWN] =
356             "the reason is unknown",
357
358         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_UNKNOWN] =
359             "the reason is unknown",
360         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_BOOTED] =
361             "normal startup from boot",
362         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_MIGRATED] =
363             "migrated from another host",
364         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_RESTORED] =
365             "restored from a state file",
366         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_FROM_SNAPSHOT] =
367             "restored from snapshot",
368         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_UNPAUSED] =
369             "returned from paused state",
370         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_MIGRATION_CANCELED] =
371             "returned from migration",
372         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_SAVE_CANCELED] =
373             "returned from failed save process",
374 #ifdef HAVE_DOM_REASON_RUNNING_WAKEUP
375         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_WAKEUP] =
376             "returned from pmsuspended due to wakeup event",
377 #endif
378 #ifdef HAVE_DOM_REASON_CRASHED
379         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_CRASHED] =
380             "resumed from crashed",
381 #endif
382 #ifdef HAVE_DOM_REASON_POSTCOPY
383         [VIR_DOMAIN_RUNNING][VIR_DOMAIN_RUNNING_POSTCOPY] =
384             "running in post-copy migration mode",
385 #endif
386         [VIR_DOMAIN_BLOCKED][VIR_DOMAIN_BLOCKED_UNKNOWN] =
387             "the reason is unknown",
388
389         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_UNKNOWN] =
390             "the reason is unknown",
391         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_USER] = "paused on user request",
392         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_MIGRATION] =
393             "paused for offline migration",
394         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_SAVE] = "paused for save",
395         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_DUMP] =
396             "paused for offline core dump",
397         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_IOERROR] =
398             "paused due to a disk I/O error",
399         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_WATCHDOG] =
400             "paused due to a watchdog event",
401         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_FROM_SNAPSHOT] =
402             "paused after restoring from snapshot",
403 #ifdef HAVE_DOM_REASON_PAUSED_SHUTTING_DOWN
404         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_SHUTTING_DOWN] =
405             "paused during shutdown process",
406 #endif
407 #ifdef HAVE_DOM_REASON_PAUSED_SNAPSHOT
408         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_SNAPSHOT] =
409             "paused while creating a snapshot",
410 #endif
411 #ifdef HAVE_DOM_REASON_PAUSED_CRASHED
412         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_CRASHED] =
413             "paused due to a guest crash",
414 #endif
415 #ifdef HAVE_DOM_REASON_PAUSED_STARTING_UP
416         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_STARTING_UP] =
417             "the domain is being started",
418 #endif
419 #ifdef HAVE_DOM_REASON_POSTCOPY
420         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_POSTCOPY] =
421             "paused for post-copy migration",
422         [VIR_DOMAIN_PAUSED][VIR_DOMAIN_PAUSED_POSTCOPY_FAILED] =
423             "paused after failed post-copy",
424 #endif
425         [VIR_DOMAIN_SHUTDOWN][VIR_DOMAIN_SHUTDOWN_UNKNOWN] =
426             "the reason is unknown",
427         [VIR_DOMAIN_SHUTDOWN][VIR_DOMAIN_SHUTDOWN_USER] =
428             "shutting down on user request",
429
430         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_UNKNOWN] =
431             "the reason is unknown",
432         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_SHUTDOWN] = "normal shutdown",
433         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_DESTROYED] = "forced poweroff",
434         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_CRASHED] = "domain crashed",
435         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_MIGRATED] =
436             "migrated to another host",
437         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_SAVED] = "saved to a file",
438         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_FAILED] =
439             "domain failed to start",
440         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_FROM_SNAPSHOT] =
441             "restored from a snapshot which was taken while domain was shutoff",
442 #ifdef HAVE_DOM_REASON_SHUTOFF_DAEMON
443         [VIR_DOMAIN_SHUTOFF][VIR_DOMAIN_SHUTOFF_DAEMON] =
444             "daemon decides to kill domain during reconnection processing",
445 #endif
446
447         [VIR_DOMAIN_CRASHED][VIR_DOMAIN_CRASHED_UNKNOWN] =
448             "the reason is unknown",
449 #ifdef VIR_DOMAIN_CRASHED_PANICKED
450         [VIR_DOMAIN_CRASHED][VIR_DOMAIN_CRASHED_PANICKED] = "domain panicked",
451 #endif
452
453 #ifdef HAVE_DOM_STATE_PMSUSPENDED
454         [VIR_DOMAIN_PMSUSPENDED][VIR_DOMAIN_PMSUSPENDED_UNKNOWN] =
455             "the reason is unknown",
456 #endif
457 };
458 #endif /* HAVE_DOM_REASON */
459
460 #define NANOSEC_IN_SEC 1e9
461
462 #define GET_STATS(_f, _name, ...)                                              \
463   do {                                                                         \
464     status = _f(__VA_ARGS__);                                                  \
465     if (status != 0)                                                           \
466       ERROR(PLUGIN_NAME " plugin: Failed to get " _name);                      \
467   } while (0)
468
469 /* Connection. */
470 static virConnectPtr conn;
471 static char *conn_string;
472 static c_complain_t conn_complain = C_COMPLAIN_INIT_STATIC;
473
474 /* Node information required for %CPU */
475 static virNodeInfo nodeinfo;
476
477 /* Seconds between list refreshes, 0 disables completely. */
478 static int interval = 60;
479
480 /* List of domains, if specified. */
481 static ignorelist_t *il_domains;
482 /* List of block devices, if specified. */
483 static ignorelist_t *il_block_devices;
484 /* List of network interface devices, if specified. */
485 static ignorelist_t *il_interface_devices;
486
487 static int ignore_device_match(ignorelist_t *, const char *domname,
488                                const char *devpath);
489
490 /* Actual list of block devices found on last refresh. */
491 struct block_device {
492   virDomainPtr dom; /* domain */
493   char *path;       /* name of block device */
494   bool has_source;  /* information whether source is defined or not */
495 };
496
497 /* Actual list of network interfaces found on last refresh. */
498 struct interface_device {
499   virDomainPtr dom; /* domain */
500   char *path;       /* name of interface device */
501   char *address;    /* mac address of interface device */
502   char *number;     /* interface device number */
503 };
504
505 typedef struct domain_s {
506   virDomainPtr ptr;
507   virDomainInfo info;
508   bool active;
509 } domain_t;
510
511 struct lv_read_state {
512   /* Actual list of domains found on last refresh. */
513   domain_t *domains;
514   int nr_domains;
515
516   struct block_device *block_devices;
517   int nr_block_devices;
518
519   struct interface_device *interface_devices;
520   int nr_interface_devices;
521 };
522
523 static void free_domains(struct lv_read_state *state);
524 static int add_domain(struct lv_read_state *state, virDomainPtr dom,
525                       bool active);
526
527 static void free_block_devices(struct lv_read_state *state);
528 static int add_block_device(struct lv_read_state *state, virDomainPtr dom,
529                             const char *path, bool has_source);
530
531 static void free_interface_devices(struct lv_read_state *state);
532 static int add_interface_device(struct lv_read_state *state, virDomainPtr dom,
533                                 const char *path, const char *address,
534                                 unsigned int number);
535
536 #define METADATA_VM_PARTITION_URI "http://ovirt.org/ovirtmap/tag/1.0"
537 #define METADATA_VM_PARTITION_ELEMENT "tag"
538 #define METADATA_VM_PARTITION_PREFIX "ovirtmap"
539
540 #define BUFFER_MAX_LEN 256
541 #define PARTITION_TAG_MAX_LEN 32
542
543 struct lv_read_instance {
544   struct lv_read_state read_state;
545   char tag[PARTITION_TAG_MAX_LEN];
546   size_t id;
547 };
548
549 struct lv_user_data {
550   struct lv_read_instance inst;
551   user_data_t ud;
552 };
553
554 #define NR_INSTANCES_DEFAULT 1
555 #define NR_INSTANCES_MAX 128
556 static int nr_instances = NR_INSTANCES_DEFAULT;
557 static struct lv_user_data lv_read_user_data[NR_INSTANCES_MAX];
558
559 /* HostnameFormat. */
560 #define HF_MAX_FIELDS 4
561
562 enum hf_field { hf_none = 0, hf_hostname, hf_name, hf_uuid, hf_metadata };
563
564 static enum hf_field hostname_format[HF_MAX_FIELDS] = {hf_name};
565
566 /* PluginInstanceFormat */
567 #define PLGINST_MAX_FIELDS 3
568
569 enum plginst_field {
570   plginst_none = 0,
571   plginst_name,
572   plginst_uuid,
573   plginst_metadata
574 };
575
576 static enum plginst_field plugin_instance_format[PLGINST_MAX_FIELDS] = {
577     plginst_none};
578
579 /* HostnameMetadataNS && HostnameMetadataXPath */
580 static char *hm_xpath;
581 static char *hm_ns;
582
583 /* BlockDeviceFormat */
584 enum bd_field { target, source };
585
586 /* InterfaceFormat. */
587 enum if_field { if_address, if_name, if_number };
588
589 /* ExtraStats */
590 #define EX_STATS_MAX_FIELDS 15
591 enum ex_stats {
592   ex_stats_none = 0,
593   ex_stats_disk = 1 << 0,
594   ex_stats_pcpu = 1 << 1,
595   ex_stats_cpu_util = 1 << 2,
596   ex_stats_domain_state = 1 << 3,
597 #ifdef HAVE_PERF_STATS
598   ex_stats_perf = 1 << 4,
599 #endif
600   ex_stats_vcpupin = 1 << 5,
601 #ifdef HAVE_DISK_ERR
602   ex_stats_disk_err = 1 << 6,
603 #endif
604 #ifdef HAVE_FS_INFO
605   ex_stats_fs_info = 1 << 7,
606 #endif
607 #ifdef HAVE_JOB_STATS
608   ex_stats_job_stats_completed = 1 << 8,
609   ex_stats_job_stats_background = 1 << 9,
610 #endif
611   ex_stats_disk_allocation = 1 << 10,
612   ex_stats_disk_capacity = 1 << 11,
613   ex_stats_disk_physical = 1 << 12
614 };
615
616 static unsigned int extra_stats = ex_stats_none;
617
618 struct ex_stats_item {
619   const char *name;
620   enum ex_stats flag;
621 };
622 static const struct ex_stats_item ex_stats_table[] = {
623     {"disk", ex_stats_disk},
624     {"pcpu", ex_stats_pcpu},
625     {"cpu_util", ex_stats_cpu_util},
626     {"domain_state", ex_stats_domain_state},
627 #ifdef HAVE_PERF_STATS
628     {"perf", ex_stats_perf},
629 #endif
630     {"vcpupin", ex_stats_vcpupin},
631 #ifdef HAVE_DISK_ERR
632     {"disk_err", ex_stats_disk_err},
633 #endif
634 #ifdef HAVE_FS_INFO
635     {"fs_info", ex_stats_fs_info},
636 #endif
637 #ifdef HAVE_JOB_STATS
638     {"job_stats_completed", ex_stats_job_stats_completed},
639     {"job_stats_background", ex_stats_job_stats_background},
640 #endif
641     {"disk_allocation", ex_stats_disk_allocation},
642     {"disk_capacity", ex_stats_disk_capacity},
643     {"disk_physical", ex_stats_disk_physical},
644     {NULL, ex_stats_none},
645 };
646
647 /* BlockDeviceFormatBasename */
648 static bool blockdevice_format_basename;
649 static enum bd_field blockdevice_format = target;
650 static enum if_field interface_format = if_name;
651
652 /* Time that we last refreshed. */
653 static time_t last_refresh = (time_t)0;
654
655 static int refresh_lists(struct lv_read_instance *inst);
656 static int register_event_impl(void);
657 static int start_event_loop(virt_notif_thread_t *thread_data);
658
659 struct lv_block_stats {
660   virDomainBlockStatsStruct bi;
661
662   long long rd_total_times;
663   long long wr_total_times;
664
665   long long fl_req;
666   long long fl_total_times;
667 };
668
669 static void init_block_stats(struct lv_block_stats *bstats) {
670   if (bstats == NULL)
671     return;
672
673   bstats->bi.rd_req = -1;
674   bstats->bi.wr_req = -1;
675   bstats->bi.rd_bytes = -1;
676   bstats->bi.wr_bytes = -1;
677
678   bstats->rd_total_times = -1;
679   bstats->wr_total_times = -1;
680   bstats->fl_req = -1;
681   bstats->fl_total_times = -1;
682 }
683
684 static void init_block_info(virDomainBlockInfoPtr binfo) {
685   binfo->allocation = -1;
686   binfo->capacity = -1;
687   binfo->physical = -1;
688 }
689
690 #ifdef HAVE_BLOCK_STATS_FLAGS
691
692 #define GET_BLOCK_STATS_VALUE(NAME, FIELD)                                     \
693   if (!strcmp(param[i].field, NAME)) {                                         \
694     bstats->FIELD = param[i].value.l;                                          \
695     continue;                                                                  \
696   }
697
698 static int get_block_stats(struct lv_block_stats *bstats,
699                            virTypedParameterPtr param, int nparams) {
700   if (bstats == NULL || param == NULL)
701     return -1;
702
703   for (int i = 0; i < nparams; ++i) {
704     /* ignore type. Everything must be LLONG anyway. */
705     GET_BLOCK_STATS_VALUE("rd_operations", bi.rd_req);
706     GET_BLOCK_STATS_VALUE("wr_operations", bi.wr_req);
707     GET_BLOCK_STATS_VALUE("rd_bytes", bi.rd_bytes);
708     GET_BLOCK_STATS_VALUE("wr_bytes", bi.wr_bytes);
709     GET_BLOCK_STATS_VALUE("rd_total_times", rd_total_times);
710     GET_BLOCK_STATS_VALUE("wr_total_times", wr_total_times);
711     GET_BLOCK_STATS_VALUE("flush_operations", fl_req);
712     GET_BLOCK_STATS_VALUE("flush_total_times", fl_total_times);
713   }
714
715   return 0;
716 }
717
718 #undef GET_BLOCK_STATS_VALUE
719
720 #endif /* HAVE_BLOCK_STATS_FLAGS */
721
722 /* ERROR(...) macro for virterrors. */
723 #define VIRT_ERROR(conn, s)                                                    \
724   do {                                                                         \
725     virErrorPtr err;                                                           \
726     err = (conn) ? virConnGetLastError((conn)) : virGetLastError();            \
727     if (err)                                                                   \
728       ERROR(PLUGIN_NAME " plugin: %s failed: %s", (s), err->message);          \
729   } while (0)
730
731 static char *metadata_get_hostname(virDomainPtr dom) {
732   const char *xpath_str = NULL;
733   if (hm_xpath == NULL)
734     xpath_str = "/instance/name/text()";
735   else
736     xpath_str = hm_xpath;
737
738   const char *namespace = NULL;
739   if (hm_ns == NULL) {
740     namespace = "http://openstack.org/xmlns/libvirt/nova/1.0";
741   } else {
742     namespace = hm_ns;
743   }
744
745   char *metadata_str = virDomainGetMetadata(
746       dom, VIR_DOMAIN_METADATA_ELEMENT, namespace, VIR_DOMAIN_AFFECT_CURRENT);
747   if (metadata_str == NULL) {
748     return NULL;
749   }
750
751   char *hostname = NULL;
752   xmlXPathContextPtr xpath_ctx = NULL;
753   xmlXPathObjectPtr xpath_obj = NULL;
754   xmlNodePtr xml_node = NULL;
755
756   xmlDocPtr xml_doc =
757       xmlReadDoc((xmlChar *)metadata_str, NULL, NULL, XML_PARSE_NONET);
758   if (xml_doc == NULL) {
759     ERROR(PLUGIN_NAME " plugin: xmlReadDoc failed to read metadata");
760     goto metadata_end;
761   }
762
763   xpath_ctx = xmlXPathNewContext(xml_doc);
764   if (xpath_ctx == NULL) {
765     ERROR(PLUGIN_NAME " plugin: xmlXPathNewContext(%s) failed for metadata",
766           metadata_str);
767     goto metadata_end;
768   }
769   xpath_obj = xmlXPathEval((xmlChar *)xpath_str, xpath_ctx);
770   if (xpath_obj == NULL) {
771     ERROR(PLUGIN_NAME " plugin: xmlXPathEval(%s) failed for metadata",
772           xpath_str);
773     goto metadata_end;
774   }
775
776   if (xpath_obj->type != XPATH_NODESET) {
777     ERROR(PLUGIN_NAME " plugin: xmlXPathEval(%s) unexpected return type %d "
778                       "(wanted %d) for metadata",
779           xpath_str, xpath_obj->type, XPATH_NODESET);
780     goto metadata_end;
781   }
782
783   // TODO(sileht): We can support || operator by looping on nodes here
784   if (xpath_obj->nodesetval == NULL || xpath_obj->nodesetval->nodeNr != 1) {
785     WARNING(PLUGIN_NAME " plugin: xmlXPathEval(%s) return nodeset size=%i "
786                         "expected=1 for metadata",
787             xpath_str,
788             (xpath_obj->nodesetval == NULL) ? 0
789                                             : xpath_obj->nodesetval->nodeNr);
790     goto metadata_end;
791   }
792
793   xml_node = xpath_obj->nodesetval->nodeTab[0];
794   if (xml_node->type == XML_TEXT_NODE) {
795     hostname = strdup((const char *)xml_node->content);
796   } else if (xml_node->type == XML_ATTRIBUTE_NODE) {
797     hostname = strdup((const char *)xml_node->children->content);
798   } else {
799     ERROR(PLUGIN_NAME " plugin: xmlXPathEval(%s) unsupported node type %d",
800           xpath_str, xml_node->type);
801     goto metadata_end;
802   }
803
804   if (hostname == NULL) {
805     ERROR(PLUGIN_NAME " plugin: strdup(%s) hostname failed", xpath_str);
806     goto metadata_end;
807   }
808
809 metadata_end:
810   if (xpath_obj)
811     xmlXPathFreeObject(xpath_obj);
812   if (xpath_ctx)
813     xmlXPathFreeContext(xpath_ctx);
814   if (xml_doc)
815     xmlFreeDoc(xml_doc);
816   sfree(metadata_str);
817   return hostname;
818 }
819
820 static void init_value_list(value_list_t *vl, virDomainPtr dom) {
821   const char *name;
822   char uuid[VIR_UUID_STRING_BUFLEN];
823
824   sstrncpy(vl->plugin, PLUGIN_NAME, sizeof(vl->plugin));
825
826   vl->host[0] = '\0';
827
828   /* Construct the hostname field according to HostnameFormat. */
829   for (int i = 0; i < HF_MAX_FIELDS; ++i) {
830     if (hostname_format[i] == hf_none)
831       continue;
832
833     if (i > 0)
834       SSTRNCAT(vl->host, ":", sizeof(vl->host));
835
836     switch (hostname_format[i]) {
837     case hf_none:
838       break;
839     case hf_hostname:
840       SSTRNCAT(vl->host, hostname_g, sizeof(vl->host));
841       break;
842     case hf_name:
843       name = virDomainGetName(dom);
844       if (name)
845         SSTRNCAT(vl->host, name, sizeof(vl->host));
846       break;
847     case hf_uuid:
848       if (virDomainGetUUIDString(dom, uuid) == 0)
849         SSTRNCAT(vl->host, uuid, sizeof(vl->host));
850       break;
851     case hf_metadata:
852       name = metadata_get_hostname(dom);
853       if (name)
854         SSTRNCAT(vl->host, name, sizeof(vl->host));
855       break;
856     }
857   }
858
859   /* Construct the plugin instance field according to PluginInstanceFormat. */
860   for (int i = 0; i < PLGINST_MAX_FIELDS; ++i) {
861     if (plugin_instance_format[i] == plginst_none)
862       continue;
863
864     if (i > 0)
865       SSTRNCAT(vl->plugin_instance, ":", sizeof(vl->plugin_instance));
866
867     switch (plugin_instance_format[i]) {
868     case plginst_none:
869       break;
870     case plginst_name:
871       name = virDomainGetName(dom);
872       if (name)
873         SSTRNCAT(vl->plugin_instance, name, sizeof(vl->plugin_instance));
874       break;
875     case plginst_uuid:
876       if (virDomainGetUUIDString(dom, uuid) == 0)
877         SSTRNCAT(vl->plugin_instance, uuid, sizeof(vl->plugin_instance));
878       break;
879     case plginst_metadata:
880       name = metadata_get_hostname(dom);
881       if (name)
882         SSTRNCAT(vl->plugin_instance, name, sizeof(vl->plugin_instance));
883       break;
884     }
885   }
886
887 } /* void init_value_list */
888
889 static int init_notif(notification_t *notif, const virDomainPtr domain,
890                       int severity, const char *msg, const char *type,
891                       const char *type_instance) {
892   value_list_t vl = VALUE_LIST_INIT;
893
894   if (!notif) {
895     ERROR(PLUGIN_NAME " plugin: init_notif: NULL pointer");
896     return -1;
897   }
898
899   init_value_list(&vl, domain);
900   notification_init(notif, severity, msg, vl.host, vl.plugin,
901                     vl.plugin_instance, type, type_instance);
902   notif->time = cdtime();
903   return 0;
904 }
905
906 static void submit_notif(const virDomainPtr domain, int severity,
907                          const char *msg, const char *type,
908                          const char *type_instance) {
909   notification_t notif;
910
911   init_notif(&notif, domain, severity, msg, type, type_instance);
912   plugin_dispatch_notification(&notif);
913   if (notif.meta)
914     plugin_notification_meta_free(notif.meta);
915 }
916
917 static void submit(virDomainPtr dom, char const *type,
918                    char const *type_instance, value_t *values,
919                    size_t values_len) {
920   value_list_t vl = VALUE_LIST_INIT;
921   init_value_list(&vl, dom);
922
923   vl.values = values;
924   vl.values_len = values_len;
925
926   sstrncpy(vl.type, type, sizeof(vl.type));
927   if (type_instance != NULL)
928     sstrncpy(vl.type_instance, type_instance, sizeof(vl.type_instance));
929
930   plugin_dispatch_values(&vl);
931 }
932
933 static void memory_submit(virDomainPtr dom, gauge_t value) {
934   submit(dom, "memory", "total", &(value_t){.gauge = value}, 1);
935 }
936
937 static void memory_stats_submit(gauge_t value, virDomainPtr dom,
938                                 int tag_index) {
939   static const char *tags[] = {"swap_in",        "swap_out",   "major_fault",
940                                "minor_fault",    "unused",     "available",
941                                "actual_balloon", "rss",        "usable",
942                                "last_update",    "disk_caches"};
943
944   if ((tag_index < 0) || (tag_index >= (int)STATIC_ARRAY_SIZE(tags))) {
945     ERROR("virt plugin: Array index out of bounds: tag_index = %d", tag_index);
946     return;
947   }
948
949   submit(dom, "memory", tags[tag_index], &(value_t){.gauge = value}, 1);
950 }
951
952 static void submit_derive2(const char *type, derive_t v0, derive_t v1,
953                            virDomainPtr dom, const char *devname) {
954   value_t values[] = {
955       {.derive = v0}, {.derive = v1},
956   };
957
958   submit(dom, type, devname, values, STATIC_ARRAY_SIZE(values));
959 } /* void submit_derive2 */
960
961 static double cpu_ns_to_percent(unsigned int node_cpus,
962                                 unsigned long long cpu_time_old,
963                                 unsigned long long cpu_time_new) {
964   double percent = 0.0;
965   unsigned long long cpu_time_diff = 0;
966   double time_diff_sec = CDTIME_T_TO_DOUBLE(plugin_get_interval());
967
968   if (node_cpus != 0 && time_diff_sec != 0 && cpu_time_old != 0) {
969     cpu_time_diff = cpu_time_new - cpu_time_old;
970     percent = ((double)(100 * cpu_time_diff)) /
971               (time_diff_sec * node_cpus * NANOSEC_IN_SEC);
972   }
973
974   DEBUG(PLUGIN_NAME " plugin: node_cpus=%u cpu_time_old=%" PRIu64
975                     " cpu_time_new=%" PRIu64 "cpu_time_diff=%" PRIu64
976                     " time_diff_sec=%f percent=%f",
977         node_cpus, (uint64_t)cpu_time_old, (uint64_t)cpu_time_new,
978         (uint64_t)cpu_time_diff, time_diff_sec, percent);
979
980   return percent;
981 }
982
983 static void cpu_submit(const domain_t *dom, unsigned long long cpuTime_new) {
984
985   if (!dom)
986     return;
987
988   if (extra_stats & ex_stats_cpu_util) {
989     /* Computing %CPU requires 2 samples of cpuTime */
990     if (dom->info.cpuTime != 0 && cpuTime_new != 0) {
991
992       submit(dom->ptr, "percent", "virt_cpu_total",
993              &(value_t){.gauge = cpu_ns_to_percent(
994                             nodeinfo.cpus, dom->info.cpuTime, cpuTime_new)},
995              1);
996     }
997   }
998
999   submit(dom->ptr, "virt_cpu_total", NULL, &(value_t){.derive = cpuTime_new},
1000          1);
1001 }
1002
1003 static void vcpu_submit(derive_t value, virDomainPtr dom, int vcpu_nr,
1004                         const char *type) {
1005   char type_instance[DATA_MAX_NAME_LEN];
1006
1007   ssnprintf(type_instance, sizeof(type_instance), "%d", vcpu_nr);
1008   submit(dom, type, type_instance, &(value_t){.derive = value}, 1);
1009 }
1010
1011 static void disk_block_stats_submit(struct lv_block_stats *bstats,
1012                                     virDomainPtr dom, const char *dev,
1013                                     virDomainBlockInfoPtr binfo) {
1014   char *dev_copy = strdup(dev);
1015   const char *type_instance = dev_copy;
1016
1017   if (!dev_copy)
1018     return;
1019
1020   if (blockdevice_format_basename && blockdevice_format == source)
1021     type_instance = basename(dev_copy);
1022
1023   if (!type_instance) {
1024     sfree(dev_copy);
1025     return;
1026   }
1027
1028   char flush_type_instance[DATA_MAX_NAME_LEN];
1029   ssnprintf(flush_type_instance, sizeof(flush_type_instance), "flush-%s",
1030            type_instance);
1031
1032   if ((bstats->bi.rd_req != -1) && (bstats->bi.wr_req != -1))
1033     submit_derive2("disk_ops", (derive_t)bstats->bi.rd_req,
1034                    (derive_t)bstats->bi.wr_req, dom, type_instance);
1035
1036   if ((bstats->bi.rd_bytes != -1) && (bstats->bi.wr_bytes != -1))
1037     submit_derive2("disk_octets", (derive_t)bstats->bi.rd_bytes,
1038                    (derive_t)bstats->bi.wr_bytes, dom, type_instance);
1039
1040   if (extra_stats & ex_stats_disk) {
1041     if ((bstats->rd_total_times != -1) && (bstats->wr_total_times != -1))
1042       submit_derive2("disk_time", (derive_t)bstats->rd_total_times,
1043                      (derive_t)bstats->wr_total_times, dom, type_instance);
1044
1045     if (bstats->fl_req != -1)
1046       submit(dom, "total_requests", flush_type_instance,
1047              &(value_t){.derive = (derive_t)bstats->fl_req}, 1);
1048     if (bstats->fl_total_times != -1) {
1049       derive_t value = bstats->fl_total_times / 1000; // ns -> ms
1050       submit(dom, "total_time_in_ms", flush_type_instance,
1051              &(value_t){.derive = value}, 1);
1052     }
1053   }
1054
1055   /* disk_allocation, disk_capacity and disk_physical are stored only
1056    * if corresponding extrastats are set in collectd configuration file */
1057   if ((extra_stats & ex_stats_disk_allocation) && binfo->allocation != -1)
1058     submit(dom, "disk_allocation", type_instance,
1059            &(value_t){.gauge = (gauge_t)binfo->allocation}, 1);
1060
1061   if ((extra_stats & ex_stats_disk_capacity) && binfo->capacity != -1)
1062     submit(dom, "disk_capacity", type_instance,
1063            &(value_t){.gauge = (gauge_t)binfo->capacity}, 1);
1064
1065   if ((extra_stats & ex_stats_disk_physical) && binfo->physical != -1)
1066     submit(dom, "disk_physical", type_instance,
1067            &(value_t){.gauge = (gauge_t)binfo->physical}, 1);
1068
1069   sfree(dev_copy);
1070 }
1071
1072 /**
1073  * Function for parsing ExtraStats configuration options.
1074  * Result of parsing is stored under 'out_parsed_flags' pointer.
1075  *
1076  * Returns 0 in case of success and 1 in case of parsing error
1077  */
1078 static int parse_ex_stats_flags(unsigned int *out_parsed_flags, char **exstats,
1079                                 int numexstats) {
1080   unsigned int ex_stats_flags = ex_stats_none;
1081
1082   assert(out_parsed_flags != NULL);
1083
1084   for (int i = 0; i < numexstats; i++) {
1085     for (int j = 0; ex_stats_table[j].name != NULL; j++) {
1086       if (strcasecmp(exstats[i], ex_stats_table[j].name) == 0) {
1087         DEBUG(PLUGIN_NAME " plugin: enabling extra stats for '%s'",
1088               ex_stats_table[j].name);
1089         ex_stats_flags |= ex_stats_table[j].flag;
1090         break;
1091       }
1092
1093       if (ex_stats_table[j + 1].name == NULL) {
1094         ERROR(PLUGIN_NAME " plugin: Unmatched ExtraStats option: %s",
1095               exstats[i]);
1096         return 1;
1097       }
1098     }
1099   }
1100
1101   *out_parsed_flags = ex_stats_flags;
1102   return 0;
1103 }
1104
1105 static void domain_state_submit_notif(virDomainPtr dom, int state, int reason) {
1106   if ((state < 0) || ((size_t)state >= STATIC_ARRAY_SIZE(domain_states))) {
1107     ERROR(PLUGIN_NAME " plugin: Array index out of bounds: state=%d", state);
1108     return;
1109   }
1110
1111   char msg[DATA_MAX_NAME_LEN];
1112   const char *state_str = domain_states[state];
1113 #ifdef HAVE_DOM_REASON
1114   if ((reason < 0) ||
1115       ((size_t)reason >= STATIC_ARRAY_SIZE(domain_reasons[0]))) {
1116     ERROR(PLUGIN_NAME " plugin: Array index out of bounds: reason=%d", reason);
1117     return;
1118   }
1119
1120   const char *reason_str = domain_reasons[state][reason];
1121   /* Array size for domain reasons is fixed, but different domain states can
1122    * have different number of reasons. We need to check if reason was
1123    * successfully parsed */
1124   if (!reason_str) {
1125     ERROR(PLUGIN_NAME " plugin: Invalid reason (%d) for domain state: %s",
1126           reason, state_str);
1127     return;
1128   }
1129 #else
1130   const char *reason_str = "N/A";
1131 #endif
1132
1133   ssnprintf(msg, sizeof(msg), "Domain state: %s. Reason: %s", state_str,
1134            reason_str);
1135
1136   int severity;
1137   switch (state) {
1138   case VIR_DOMAIN_NOSTATE:
1139   case VIR_DOMAIN_RUNNING:
1140   case VIR_DOMAIN_SHUTDOWN:
1141   case VIR_DOMAIN_SHUTOFF:
1142     severity = NOTIF_OKAY;
1143     break;
1144   case VIR_DOMAIN_BLOCKED:
1145   case VIR_DOMAIN_PAUSED:
1146 #ifdef DOM_STATE_PMSUSPENDED
1147   case VIR_DOMAIN_PMSUSPENDED:
1148 #endif
1149     severity = NOTIF_WARNING;
1150     break;
1151   case VIR_DOMAIN_CRASHED:
1152     severity = NOTIF_FAILURE;
1153     break;
1154   default:
1155     ERROR(PLUGIN_NAME " plugin: Unrecognized domain state (%d)", state);
1156     return;
1157   }
1158   submit_notif(dom, severity, msg, "domain_state", NULL);
1159 }
1160
1161 static int lv_init_ignorelists() {
1162   if (il_domains == NULL)
1163     il_domains = ignorelist_create(1);
1164   if (il_block_devices == NULL)
1165     il_block_devices = ignorelist_create(1);
1166   if (il_interface_devices == NULL)
1167     il_interface_devices = ignorelist_create(1);
1168
1169   if (!il_domains || !il_block_devices || !il_interface_devices)
1170     return 1;
1171
1172   return 0;
1173 }
1174
1175 /* Validates config option that may take multiple strings arguments.
1176  * Returns 0 on success, -1 otherwise */
1177 static int check_config_multiple_string_entry(const oconfig_item_t *ci) {
1178   if (ci == NULL) {
1179     ERROR(PLUGIN_NAME " plugin: ci oconfig_item can't be NULL");
1180     return -1;
1181   }
1182
1183   if (ci->values_num < 1) {
1184     ERROR(PLUGIN_NAME
1185           " plugin: the '%s' option requires at least one string argument",
1186           ci->key);
1187     return -1;
1188   }
1189
1190   for (int i = 0; i < ci->values_num; ++i) {
1191     if (ci->values[i].type != OCONFIG_TYPE_STRING) {
1192       ERROR(PLUGIN_NAME
1193             " plugin: one of the '%s' options is not a valid string",
1194             ci->key);
1195       return -1;
1196     }
1197   }
1198
1199   return 0;
1200 }
1201
1202 static int lv_config(oconfig_item_t *ci) {
1203   if (lv_init_ignorelists() != 0) {
1204     ERROR(PLUGIN_NAME " plugin: lv_init_ignorelist failed.");
1205     return -1;
1206   }
1207
1208   for (int i = 0; i < ci->children_num; ++i) {
1209     oconfig_item_t *c = ci->children + i;
1210
1211     if (strcasecmp(c->key, "Connection") == 0) {
1212       if (cf_util_get_string(c, &conn_string) != 0 || conn_string == NULL)
1213         return -1;
1214
1215       continue;
1216     } else if (strcasecmp(c->key, "RefreshInterval") == 0) {
1217       if (cf_util_get_int(c, &interval) != 0)
1218         return -1;
1219
1220       continue;
1221     } else if (strcasecmp(c->key, "Domain") == 0) {
1222       char *domain_name = NULL;
1223       if (cf_util_get_string(c, &domain_name) != 0)
1224         return -1;
1225
1226       if (ignorelist_add(il_domains, domain_name)) {
1227         ERROR(PLUGIN_NAME " plugin: Adding '%s' to domain-ignorelist failed",
1228               domain_name);
1229         sfree(domain_name);
1230         return -1;
1231       }
1232
1233       sfree(domain_name);
1234       continue;
1235     } else if (strcasecmp(c->key, "BlockDevice") == 0) {
1236       char *device_name = NULL;
1237       if (cf_util_get_string(c, &device_name) != 0)
1238         return -1;
1239
1240       if (ignorelist_add(il_block_devices, device_name) != 0) {
1241         ERROR(PLUGIN_NAME
1242               " plugin: Adding '%s' to block-device-ignorelist failed",
1243               device_name);
1244         sfree(device_name);
1245         return -1;
1246       }
1247
1248       sfree(device_name);
1249       continue;
1250     } else if (strcasecmp(c->key, "BlockDeviceFormat") == 0) {
1251       char *device_format = NULL;
1252       if (cf_util_get_string(c, &device_format) != 0)
1253         return -1;
1254
1255       if (strcasecmp(device_format, "target") == 0)
1256         blockdevice_format = target;
1257       else if (strcasecmp(device_format, "source") == 0)
1258         blockdevice_format = source;
1259       else {
1260         ERROR(PLUGIN_NAME " plugin: unknown BlockDeviceFormat: %s",
1261               device_format);
1262         sfree(device_format);
1263         return -1;
1264       }
1265
1266       sfree(device_format);
1267       continue;
1268     } else if (strcasecmp(c->key, "BlockDeviceFormatBasename") == 0) {
1269       if (cf_util_get_boolean(c, &blockdevice_format_basename) != 0)
1270         return -1;
1271
1272       continue;
1273     } else if (strcasecmp(c->key, "InterfaceDevice") == 0) {
1274       char *interface_name = NULL;
1275       if (cf_util_get_string(c, &interface_name) != 0)
1276         return -1;
1277
1278       if (ignorelist_add(il_interface_devices, interface_name)) {
1279         ERROR(PLUGIN_NAME " plugin: Adding '%s' to interface-ignorelist failed",
1280               interface_name);
1281         sfree(interface_name);
1282         return -1;
1283       }
1284
1285       sfree(interface_name);
1286       continue;
1287     } else if (strcasecmp(c->key, "IgnoreSelected") == 0) {
1288       bool ignore_selected = false;
1289       if (cf_util_get_boolean(c, &ignore_selected) != 0)
1290         return -1;
1291
1292       if (ignore_selected) {
1293         ignorelist_set_invert(il_domains, 0);
1294         ignorelist_set_invert(il_block_devices, 0);
1295         ignorelist_set_invert(il_interface_devices, 0);
1296       } else {
1297         ignorelist_set_invert(il_domains, 1);
1298         ignorelist_set_invert(il_block_devices, 1);
1299         ignorelist_set_invert(il_interface_devices, 1);
1300       }
1301
1302       continue;
1303     } else if (strcasecmp(c->key, "HostnameMetadataNS") == 0) {
1304       if (cf_util_get_string(c, &hm_ns) != 0)
1305         return -1;
1306
1307       continue;
1308     } else if (strcasecmp(c->key, "HostnameMetadataXPath") == 0) {
1309       if (cf_util_get_string(c, &hm_xpath) != 0)
1310         return -1;
1311
1312       continue;
1313     } else if (strcasecmp(c->key, "HostnameFormat") == 0) {
1314       /* this option can take multiple strings arguments in one config line*/
1315       if (check_config_multiple_string_entry(c) != 0) {
1316         ERROR(PLUGIN_NAME " plugin: Could not get 'HostnameFormat' parameter");
1317         return -1;
1318       }
1319
1320       const int params_num = c->values_num;
1321       for (int i = 0; i < params_num; ++i) {
1322         const char *param_name = c->values[i].value.string;
1323         if (strcasecmp(param_name, "hostname") == 0)
1324           hostname_format[i] = hf_hostname;
1325         else if (strcasecmp(param_name, "name") == 0)
1326           hostname_format[i] = hf_name;
1327         else if (strcasecmp(param_name, "uuid") == 0)
1328           hostname_format[i] = hf_uuid;
1329         else if (strcasecmp(param_name, "metadata") == 0)
1330           hostname_format[i] = hf_metadata;
1331         else {
1332           ERROR(PLUGIN_NAME " plugin: unknown HostnameFormat field: %s",
1333                 param_name);
1334           return -1;
1335         }
1336       }
1337
1338       for (int i = params_num; i < HF_MAX_FIELDS; ++i)
1339         hostname_format[i] = hf_none;
1340
1341       continue;
1342     } else if (strcasecmp(c->key, "PluginInstanceFormat") == 0) {
1343       /* this option can handle list of string parameters in one line*/
1344       if (check_config_multiple_string_entry(c) != 0) {
1345         ERROR(PLUGIN_NAME
1346               " plugin: Could not get 'PluginInstanceFormat' parameter");
1347         return -1;
1348       }
1349
1350       const int params_num = c->values_num;
1351       for (int i = 0; i < params_num; ++i) {
1352         const char *param_name = c->values[i].value.string;
1353         if (strcasecmp(param_name, "none") == 0) {
1354           plugin_instance_format[i] = plginst_none;
1355           break;
1356         } else if (strcasecmp(param_name, "name") == 0)
1357           plugin_instance_format[i] = plginst_name;
1358         else if (strcasecmp(param_name, "uuid") == 0)
1359           plugin_instance_format[i] = plginst_uuid;
1360         else if (strcasecmp(param_name, "metadata") == 0)
1361           plugin_instance_format[i] = plginst_metadata;
1362         else {
1363           ERROR(PLUGIN_NAME " plugin: unknown PluginInstanceFormat field: %s",
1364                 param_name);
1365
1366           return -1;
1367         }
1368       }
1369
1370       for (int i = params_num; i < PLGINST_MAX_FIELDS; ++i)
1371         plugin_instance_format[i] = plginst_none;
1372
1373       continue;
1374     } else if (strcasecmp(c->key, "InterfaceFormat") == 0) {
1375       char *format = NULL;
1376       if (cf_util_get_string(c, &format) != 0)
1377         return -1;
1378
1379       if (strcasecmp(format, "name") == 0)
1380         interface_format = if_name;
1381       else if (strcasecmp(format, "address") == 0)
1382         interface_format = if_address;
1383       else if (strcasecmp(format, "number") == 0)
1384         interface_format = if_number;
1385       else {
1386         ERROR(PLUGIN_NAME " plugin: unknown InterfaceFormat: %s", format);
1387         sfree(format);
1388         return -1;
1389       }
1390
1391       sfree(format);
1392       continue;
1393     } else if (strcasecmp(c->key, "Instances") == 0) {
1394       if (cf_util_get_int(c, &nr_instances) != 0)
1395         return -1;
1396
1397       if (nr_instances <= 0) {
1398         ERROR(PLUGIN_NAME " plugin: Instances <= 0 makes no sense.");
1399         return -1;
1400       }
1401       if (nr_instances > NR_INSTANCES_MAX) {
1402         ERROR(PLUGIN_NAME " plugin: Instances=%i > NR_INSTANCES_MAX=%i"
1403                           " use a lower setting or recompile the plugin.",
1404               nr_instances, NR_INSTANCES_MAX);
1405         return -1;
1406       }
1407
1408       DEBUG(PLUGIN_NAME " plugin: configured %i instances", nr_instances);
1409       continue;
1410     } else if (strcasecmp(c->key, "ExtraStats") == 0) {
1411       char *ex_str = NULL;
1412
1413       if (cf_util_get_string(c, &ex_str) != 0)
1414         return -1;
1415
1416       char *exstats[EX_STATS_MAX_FIELDS];
1417       int numexstats = strsplit(ex_str, exstats, STATIC_ARRAY_SIZE(exstats));
1418       int status = parse_ex_stats_flags(&extra_stats, exstats, numexstats);
1419       sfree(ex_str);
1420       if (status != 0) {
1421         ERROR(PLUGIN_NAME " plugin: parsing 'ExtraStats' option failed");
1422         return status;
1423       }
1424
1425 #ifdef HAVE_JOB_STATS
1426       if ((extra_stats & ex_stats_job_stats_completed) &&
1427           (extra_stats & ex_stats_job_stats_background)) {
1428         ERROR(PLUGIN_NAME " plugin: Invalid job stats configuration. Only one "
1429                           "type of job statistics can be collected at the same "
1430                           "time");
1431         return -1;
1432       }
1433 #endif
1434
1435       /* ExtraStats parsed successfully */
1436       continue;
1437     } else if (strcasecmp(c->key, "PersistentNotification") == 0) {
1438       if (cf_util_get_boolean(c, &persistent_notification) != 0)
1439         return -1;
1440
1441       continue;
1442     } else if (strcasecmp(c->key, "ReportBlockDevices") == 0) {
1443       if (cf_util_get_boolean(c, &report_block_devices) != 0)
1444         return -1;
1445
1446       continue;
1447     } else if (strcasecmp(c->key, "ReportNetworkInterfaces") == 0) {
1448       if (cf_util_get_boolean(c, &report_network_interfaces) != 0)
1449         return -1;
1450
1451       continue;
1452     } else {
1453       /* Unrecognised option. */
1454       ERROR(PLUGIN_NAME " plugin: Unrecognized option: '%s'", c->key);
1455       return -1;
1456     }
1457   }
1458
1459   return 0;
1460 }
1461
1462 static int lv_connect(void) {
1463   if (conn == NULL) {
1464     /* event implementation must be registered before connection is opened */
1465     if (!persistent_notification)
1466       if (register_event_impl() != 0)
1467         return -1;
1468
1469 /* `conn_string == NULL' is acceptable */
1470 #ifdef HAVE_FS_INFO
1471     /* virDomainGetFSInfo requires full read-write access connection */
1472     if (extra_stats & ex_stats_fs_info)
1473       conn = virConnectOpen(conn_string);
1474     else
1475 #endif
1476       conn = virConnectOpenReadOnly(conn_string);
1477     if (conn == NULL) {
1478       c_complain(LOG_ERR, &conn_complain,
1479                  PLUGIN_NAME " plugin: Unable to connect: "
1480                              "virConnectOpen failed.");
1481       return -1;
1482     }
1483     int status = virNodeGetInfo(conn, &nodeinfo);
1484     if (status != 0) {
1485       ERROR(PLUGIN_NAME " plugin: virNodeGetInfo failed");
1486       virConnectClose(conn);
1487       conn = NULL;
1488       return -1;
1489     }
1490
1491     if (!persistent_notification)
1492       if (start_event_loop(&notif_thread) != 0) {
1493         virConnectClose(conn);
1494         conn = NULL;
1495         return -1;
1496       }
1497   }
1498   c_release(LOG_NOTICE, &conn_complain,
1499             PLUGIN_NAME " plugin: Connection established.");
1500   return 0;
1501 }
1502
1503 static void lv_disconnect(void) {
1504   if (conn != NULL)
1505     virConnectClose(conn);
1506   conn = NULL;
1507   WARNING(PLUGIN_NAME " plugin: closed connection to libvirt");
1508 }
1509
1510 static int lv_domain_block_stats(virDomainPtr dom, const char *path,
1511                                  struct lv_block_stats *bstats) {
1512 #ifdef HAVE_BLOCK_STATS_FLAGS
1513   int nparams = 0;
1514   if (virDomainBlockStatsFlags(dom, path, NULL, &nparams, 0) < 0 ||
1515       nparams <= 0) {
1516     VIRT_ERROR(conn, "getting the disk params count");
1517     return -1;
1518   }
1519
1520   virTypedParameterPtr params = calloc(nparams, sizeof(*params));
1521   if (params == NULL) {
1522     ERROR("virt plugin: alloc(%i) for block=%s parameters failed.", nparams,
1523           path);
1524     return -1;
1525   }
1526
1527   int rc = -1;
1528   if (virDomainBlockStatsFlags(dom, path, params, &nparams, 0) < 0) {
1529     VIRT_ERROR(conn, "getting the disk params values");
1530   } else {
1531     rc = get_block_stats(bstats, params, nparams);
1532   }
1533
1534   virTypedParamsClear(params, nparams);
1535   sfree(params);
1536   return rc;
1537 #else
1538   return virDomainBlockStats(dom, path, &(bstats->bi), sizeof(bstats->bi));
1539 #endif /* HAVE_BLOCK_STATS_FLAGS */
1540 }
1541
1542 #ifdef HAVE_PERF_STATS
1543 static void perf_submit(virDomainStatsRecordPtr stats) {
1544   for (int i = 0; i < stats->nparams; ++i) {
1545     /* Replace '.' with '_' in event field to match other metrics' naming
1546      * convention */
1547     char *c = strchr(stats->params[i].field, '.');
1548     if (c)
1549       *c = '_';
1550     submit(stats->dom, "perf", stats->params[i].field,
1551            &(value_t){.derive = stats->params[i].value.ul}, 1);
1552   }
1553 }
1554
1555 static int get_perf_events(virDomainPtr domain) {
1556   virDomainStatsRecordPtr *stats = NULL;
1557   /* virDomainListGetStats requires a NULL terminated list of domains */
1558   virDomainPtr domain_array[] = {domain, NULL};
1559
1560   int status =
1561       virDomainListGetStats(domain_array, VIR_DOMAIN_STATS_PERF, &stats, 0);
1562   if (status == -1) {
1563     ERROR("virt plugin: virDomainListGetStats failed with status %i.", status);
1564     return status;
1565   }
1566
1567   for (int i = 0; i < status; ++i)
1568     perf_submit(stats[i]);
1569
1570   virDomainStatsRecordListFree(stats);
1571   return 0;
1572 }
1573 #endif /* HAVE_PERF_STATS */
1574
1575 static void vcpu_pin_submit(virDomainPtr dom, int max_cpus, int vcpu,
1576                             unsigned char *cpu_maps, int cpu_map_len) {
1577   for (int cpu = 0; cpu < max_cpus; ++cpu) {
1578     char type_instance[DATA_MAX_NAME_LEN];
1579     bool is_set = VIR_CPU_USABLE(cpu_maps, cpu_map_len, vcpu, cpu);
1580
1581     ssnprintf(type_instance, sizeof(type_instance), "vcpu_%d-cpu_%d", vcpu, cpu);
1582     submit(dom, "cpu_affinity", type_instance, &(value_t){.gauge = is_set}, 1);
1583   }
1584 }
1585
1586 static int get_vcpu_stats(virDomainPtr domain, unsigned short nr_virt_cpu) {
1587   int max_cpus = VIR_NODEINFO_MAXCPUS(nodeinfo);
1588   int cpu_map_len = VIR_CPU_MAPLEN(max_cpus);
1589
1590   virVcpuInfoPtr vinfo = calloc(nr_virt_cpu, sizeof(*vinfo));
1591   if (vinfo == NULL) {
1592     ERROR(PLUGIN_NAME " plugin: calloc failed.");
1593     return -1;
1594   }
1595
1596   unsigned char *cpumaps = calloc(nr_virt_cpu, cpu_map_len);
1597   if (cpumaps == NULL) {
1598     ERROR(PLUGIN_NAME " plugin: calloc failed.");
1599     sfree(vinfo);
1600     return -1;
1601   }
1602
1603   int status =
1604       virDomainGetVcpus(domain, vinfo, nr_virt_cpu, cpumaps, cpu_map_len);
1605   if (status < 0) {
1606     ERROR(PLUGIN_NAME " plugin: virDomainGetVcpus failed with status %i.",
1607           status);
1608     sfree(cpumaps);
1609     sfree(vinfo);
1610     return status;
1611   }
1612
1613   for (int i = 0; i < nr_virt_cpu; ++i) {
1614     vcpu_submit(vinfo[i].cpuTime, domain, vinfo[i].number, "virt_vcpu");
1615     if (extra_stats & ex_stats_vcpupin)
1616       vcpu_pin_submit(domain, max_cpus, i, cpumaps, cpu_map_len);
1617   }
1618
1619   sfree(cpumaps);
1620   sfree(vinfo);
1621   return 0;
1622 }
1623
1624 #ifdef HAVE_CPU_STATS
1625 static int get_pcpu_stats(virDomainPtr dom) {
1626   int nparams = virDomainGetCPUStats(dom, NULL, 0, -1, 1, 0);
1627   if (nparams < 0) {
1628     VIRT_ERROR(conn, "getting the CPU params count");
1629     return -1;
1630   }
1631
1632   virTypedParameterPtr param = calloc(nparams, sizeof(*param));
1633   if (param == NULL) {
1634     ERROR(PLUGIN_NAME " plugin: alloc(%i) for cpu parameters failed.", nparams);
1635     return -1;
1636   }
1637
1638   int ret = virDomainGetCPUStats(dom, param, nparams, -1, 1, 0); // total stats.
1639   if (ret < 0) {
1640     virTypedParamsClear(param, nparams);
1641     sfree(param);
1642     VIRT_ERROR(conn, "getting the CPU params values");
1643     return -1;
1644   }
1645
1646   unsigned long long total_user_cpu_time = 0;
1647   unsigned long long total_syst_cpu_time = 0;
1648
1649   for (int i = 0; i < nparams; ++i) {
1650     if (!strcmp(param[i].field, "user_time"))
1651       total_user_cpu_time = param[i].value.ul;
1652     else if (!strcmp(param[i].field, "system_time"))
1653       total_syst_cpu_time = param[i].value.ul;
1654   }
1655
1656   if (total_user_cpu_time > 0 || total_syst_cpu_time > 0)
1657     submit_derive2("ps_cputime", total_user_cpu_time, total_syst_cpu_time, dom,
1658                    NULL);
1659
1660   virTypedParamsClear(param, nparams);
1661   sfree(param);
1662
1663   return 0;
1664 }
1665 #endif /* HAVE_CPU_STATS */
1666
1667 #ifdef HAVE_DOM_REASON
1668 static int submit_domain_state(virDomainPtr domain) {
1669   int domain_state = 0;
1670   int domain_reason = 0;
1671
1672   int status = virDomainGetState(domain, &domain_state, &domain_reason, 0);
1673   if (status != 0) {
1674     ERROR(PLUGIN_NAME " plugin: virDomainGetState failed with status %i.",
1675           status);
1676     return status;
1677   }
1678
1679   value_t values[] = {
1680       {.gauge = (gauge_t)domain_state}, {.gauge = (gauge_t)domain_reason},
1681   };
1682
1683   submit(domain, "domain_state", NULL, values, STATIC_ARRAY_SIZE(values));
1684
1685   return 0;
1686 }
1687
1688 #ifdef HAVE_LIST_ALL_DOMAINS
1689 static int get_domain_state_notify(virDomainPtr domain) {
1690   int domain_state = 0;
1691   int domain_reason = 0;
1692
1693   int status = virDomainGetState(domain, &domain_state, &domain_reason, 0);
1694   if (status != 0) {
1695     ERROR(PLUGIN_NAME " plugin: virDomainGetState failed with status %i.",
1696           status);
1697     return status;
1698   }
1699
1700   domain_state_submit_notif(domain, domain_state, domain_reason);
1701
1702   return status;
1703 }
1704 #endif /* HAVE_LIST_ALL_DOMAINS */
1705 #endif /* HAVE_DOM_REASON */
1706
1707 static int get_memory_stats(virDomainPtr domain) {
1708   virDomainMemoryStatPtr minfo =
1709       calloc(VIR_DOMAIN_MEMORY_STAT_NR, sizeof(*minfo));
1710   if (minfo == NULL) {
1711     ERROR("virt plugin: calloc failed.");
1712     return -1;
1713   }
1714
1715   int mem_stats =
1716       virDomainMemoryStats(domain, minfo, VIR_DOMAIN_MEMORY_STAT_NR, 0);
1717   if (mem_stats < 0) {
1718     ERROR("virt plugin: virDomainMemoryStats failed with mem_stats %i.",
1719           mem_stats);
1720     sfree(minfo);
1721     return mem_stats;
1722   }
1723
1724   derive_t swap_in = -1;
1725   derive_t swap_out = -1;
1726   derive_t min_flt = -1;
1727   derive_t maj_flt = -1;
1728
1729   for (int i = 0; i < mem_stats; i++) {
1730     if (minfo[i].tag == VIR_DOMAIN_MEMORY_STAT_SWAP_IN)
1731       swap_in = minfo[i].val;
1732     else if (minfo[i].tag == VIR_DOMAIN_MEMORY_STAT_SWAP_OUT)
1733       swap_out = minfo[i].val;
1734     else if (minfo[i].tag == VIR_DOMAIN_MEMORY_STAT_MINOR_FAULT)
1735       min_flt = minfo[i].val;
1736     else if (minfo[i].tag == VIR_DOMAIN_MEMORY_STAT_MAJOR_FAULT)
1737       maj_flt = minfo[i].val;
1738 #ifdef LIBVIR_CHECK_VERSION
1739 #if LIBVIR_CHECK_VERSION(2, 1, 0)
1740     else if (minfo[i].tag == VIR_DOMAIN_MEMORY_STAT_LAST_UPDATE)
1741       /* Skip 'last_update' reporting as that is not memory but timestamp */
1742       continue;
1743 #endif
1744 #endif
1745     else
1746       memory_stats_submit((gauge_t)minfo[i].val * 1024, domain, minfo[i].tag);
1747   }
1748
1749   if (swap_in > 0 || swap_out > 0) {
1750     submit(domain, "swap_io", "in", &(value_t){.gauge = swap_in}, 1);
1751     submit(domain, "swap_io", "out", &(value_t){.gauge = swap_out}, 1);
1752   }
1753
1754   if (min_flt > 0 || maj_flt > 0) {
1755     value_t values[] = {
1756         {.gauge = (gauge_t)min_flt}, {.gauge = (gauge_t)maj_flt},
1757     };
1758     submit(domain, "ps_pagefaults", NULL, values, STATIC_ARRAY_SIZE(values));
1759   }
1760
1761   sfree(minfo);
1762   return 0;
1763 }
1764
1765 #ifdef HAVE_DISK_ERR
1766 static void disk_err_submit(virDomainPtr domain,
1767                             virDomainDiskErrorPtr disk_err) {
1768   submit(domain, "disk_error", disk_err->disk,
1769          &(value_t){.gauge = disk_err->error}, 1);
1770 }
1771
1772 static int get_disk_err(virDomainPtr domain) {
1773   /* Get preferred size of disk errors array */
1774   int disk_err_count = virDomainGetDiskErrors(domain, NULL, 0, 0);
1775   if (disk_err_count == -1) {
1776     ERROR(PLUGIN_NAME
1777           " plugin: failed to get preferred size of disk errors array");
1778     return -1;
1779   }
1780
1781   DEBUG(PLUGIN_NAME
1782         " plugin: preferred size of disk errors array: %d for domain %s",
1783         disk_err_count, virDomainGetName(domain));
1784   virDomainDiskError disk_err[disk_err_count];
1785
1786   disk_err_count = virDomainGetDiskErrors(domain, disk_err, disk_err_count, 0);
1787   if (disk_err_count == -1) {
1788     ERROR(PLUGIN_NAME " plugin: virDomainGetDiskErrors failed with status %d",
1789           disk_err_count);
1790     return -1;
1791   }
1792
1793   DEBUG(PLUGIN_NAME " plugin: detected %d disk errors in domain %s",
1794         disk_err_count, virDomainGetName(domain));
1795
1796   for (int i = 0; i < disk_err_count; ++i) {
1797     disk_err_submit(domain, &disk_err[i]);
1798     sfree(disk_err[i].disk);
1799   }
1800
1801   return 0;
1802 }
1803 #endif /* HAVE_DISK_ERR */
1804
1805 static int get_block_device_stats(struct block_device *block_dev) {
1806   if (!block_dev) {
1807     ERROR(PLUGIN_NAME " plugin: get_block_stats NULL pointer");
1808     return -1;
1809   }
1810
1811   virDomainBlockInfo binfo;
1812   init_block_info(&binfo);
1813
1814   /* Fetching block info stats only if needed*/
1815   if (extra_stats & (ex_stats_disk_allocation | ex_stats_disk_capacity |
1816                      ex_stats_disk_physical)) {
1817     /* Block info statistics can be only fetched from devices with 'source'
1818      * defined */
1819     if (block_dev->has_source) {
1820       if (virDomainGetBlockInfo(block_dev->dom, block_dev->path, &binfo, 0) <
1821           0) {
1822         ERROR(PLUGIN_NAME " plugin: virDomainGetBlockInfo failed for path: %s",
1823               block_dev->path);
1824         return -1;
1825       }
1826     }
1827   }
1828
1829   struct lv_block_stats bstats;
1830   init_block_stats(&bstats);
1831
1832   if (lv_domain_block_stats(block_dev->dom, block_dev->path, &bstats) < 0) {
1833     ERROR(PLUGIN_NAME " plugin: lv_domain_block_stats failed");
1834     return -1;
1835   }
1836
1837   disk_block_stats_submit(&bstats, block_dev->dom, block_dev->path, &binfo);
1838   return 0;
1839 }
1840
1841 #ifdef HAVE_FS_INFO
1842
1843 #define NM_ADD_ITEM(_fun, _name, _val)                                         \
1844   do {                                                                         \
1845     ret = _fun(&notif, _name, _val);                                           \
1846     if (ret != 0) {                                                            \
1847       ERROR(PLUGIN_NAME " plugin: failed to add notification metadata");       \
1848       goto cleanup;                                                            \
1849     }                                                                          \
1850   } while (0)
1851
1852 #define NM_ADD_STR_ITEMS(_items, _size)                                        \
1853   do {                                                                         \
1854     for (size_t _i = 0; _i < _size; ++_i) {                                    \
1855       DEBUG(PLUGIN_NAME                                                        \
1856             " plugin: Adding notification metadata name=%s value=%s",          \
1857             _items[_i].name, _items[_i].value);                                \
1858       NM_ADD_ITEM(plugin_notification_meta_add_string, _items[_i].name,        \
1859                   _items[_i].value);                                           \
1860     }                                                                          \
1861   } while (0)
1862
1863 static int fs_info_notify(virDomainPtr domain, virDomainFSInfoPtr fs_info) {
1864   notification_t notif;
1865   int ret = 0;
1866
1867   /* Local struct, just for the purpose of this function. */
1868   typedef struct nm_str_item_s {
1869     const char *name;
1870     const char *value;
1871   } nm_str_item_t;
1872
1873   nm_str_item_t fs_dev_alias[fs_info->ndevAlias];
1874   nm_str_item_t fs_str_items[] = {
1875       {.name = "mountpoint", .value = fs_info->mountpoint},
1876       {.name = "name", .value = fs_info->name},
1877       {.name = "fstype", .value = fs_info->fstype}};
1878
1879   for (size_t i = 0; i < fs_info->ndevAlias; ++i) {
1880     fs_dev_alias[i].name = "devAlias";
1881     fs_dev_alias[i].value = fs_info->devAlias[i];
1882   }
1883
1884   init_notif(&notif, domain, NOTIF_OKAY, "File system information",
1885              "file_system", NULL);
1886   NM_ADD_STR_ITEMS(fs_str_items, STATIC_ARRAY_SIZE(fs_str_items));
1887   NM_ADD_ITEM(plugin_notification_meta_add_unsigned_int, "ndevAlias",
1888               fs_info->ndevAlias);
1889   NM_ADD_STR_ITEMS(fs_dev_alias, fs_info->ndevAlias);
1890
1891   plugin_dispatch_notification(&notif);
1892
1893 cleanup:
1894   if (notif.meta)
1895     plugin_notification_meta_free(notif.meta);
1896   return ret;
1897 }
1898
1899 #undef RETURN_ON_ERR
1900 #undef NM_ADD_STR_ITEMS
1901
1902 static int get_fs_info(virDomainPtr domain) {
1903   virDomainFSInfoPtr *fs_info = NULL;
1904   int ret = 0;
1905
1906   int mount_points_cnt = virDomainGetFSInfo(domain, &fs_info, 0);
1907   if (mount_points_cnt == -1) {
1908     ERROR(PLUGIN_NAME " plugin: virDomainGetFSInfo failed: %d",
1909           mount_points_cnt);
1910     return mount_points_cnt;
1911   }
1912
1913   for (int i = 0; i < mount_points_cnt; ++i) {
1914     if (fs_info_notify(domain, fs_info[i]) != 0) {
1915       ERROR(PLUGIN_NAME " plugin: failed to send file system notification "
1916                         "for mount point %s",
1917             fs_info[i]->mountpoint);
1918       ret = -1;
1919     }
1920     virDomainFSInfoFree(fs_info[i]);
1921   }
1922
1923   sfree(fs_info);
1924   return ret;
1925 }
1926
1927 #endif /* HAVE_FS_INFO */
1928
1929 #ifdef HAVE_JOB_STATS
1930 static void job_stats_submit(virDomainPtr domain, virTypedParameterPtr param) {
1931   value_t vl = {0};
1932
1933   if (param->type == VIR_TYPED_PARAM_INT)
1934     vl.derive = param->value.i;
1935   else if (param->type == VIR_TYPED_PARAM_UINT)
1936     vl.derive = param->value.ui;
1937   else if (param->type == VIR_TYPED_PARAM_LLONG)
1938     vl.derive = param->value.l;
1939   else if (param->type == VIR_TYPED_PARAM_ULLONG)
1940     vl.derive = param->value.ul;
1941   else if (param->type == VIR_TYPED_PARAM_DOUBLE)
1942     vl.derive = param->value.d;
1943   else if (param->type == VIR_TYPED_PARAM_BOOLEAN)
1944     vl.derive = param->value.b;
1945   else if (param->type == VIR_TYPED_PARAM_STRING) {
1946     submit_notif(domain, NOTIF_OKAY, param->value.s, "job_stats", param->field);
1947     return;
1948   } else {
1949     ERROR(PLUGIN_NAME " plugin: unrecognized virTypedParameterType");
1950     return;
1951   }
1952
1953   submit(domain, "job_stats", param->field, &vl, 1);
1954 }
1955
1956 static int get_job_stats(virDomainPtr domain) {
1957   int ret = 0;
1958   int job_type = 0;
1959   int nparams = 0;
1960   virTypedParameterPtr params = NULL;
1961   int flags = (extra_stats & ex_stats_job_stats_completed)
1962                   ? VIR_DOMAIN_JOB_STATS_COMPLETED
1963                   : 0;
1964
1965   ret = virDomainGetJobStats(domain, &job_type, &params, &nparams, flags);
1966   if (ret != 0) {
1967     ERROR(PLUGIN_NAME " plugin: virDomainGetJobStats failed: %d", ret);
1968     return ret;
1969   }
1970
1971   DEBUG(PLUGIN_NAME " plugin: job_type=%d nparams=%d", job_type, nparams);
1972
1973   for (int i = 0; i < nparams; ++i) {
1974     DEBUG(PLUGIN_NAME " plugin: param[%d] field=%s type=%d", i, params[i].field,
1975           params[i].type);
1976     job_stats_submit(domain, &params[i]);
1977   }
1978
1979   virTypedParamsFree(params, nparams);
1980   return ret;
1981 }
1982 #endif /* HAVE_JOB_STATS */
1983
1984 static int get_domain_metrics(domain_t *domain) {
1985   if (!domain || !domain->ptr) {
1986     ERROR(PLUGIN_NAME " plugin: get_domain_metrics: NULL pointer");
1987     return -1;
1988   }
1989
1990   virDomainInfo info;
1991   int status = virDomainGetInfo(domain->ptr, &info);
1992   if (status != 0) {
1993     ERROR(PLUGIN_NAME " plugin: virDomainGetInfo failed with status %i.",
1994           status);
1995     return -1;
1996   }
1997
1998   if (extra_stats & ex_stats_domain_state) {
1999 #ifdef HAVE_DOM_REASON
2000     /* At this point we already know domain's state from virDomainGetInfo call,
2001      * however it doesn't provide a reason for entering particular state.
2002      * We need to get it from virDomainGetState.
2003      */
2004     GET_STATS(submit_domain_state, "domain reason", domain->ptr);
2005 #endif
2006   }
2007
2008   /* Gather remaining stats only for running domains */
2009   if (info.state != VIR_DOMAIN_RUNNING)
2010     return 0;
2011
2012 #ifdef HAVE_CPU_STATS
2013   if (extra_stats & ex_stats_pcpu)
2014     get_pcpu_stats(domain->ptr);
2015 #endif
2016
2017   cpu_submit(domain, info.cpuTime);
2018
2019   memory_submit(domain->ptr, (gauge_t)info.memory * 1024);
2020
2021   GET_STATS(get_vcpu_stats, "vcpu stats", domain->ptr, info.nrVirtCpu);
2022   GET_STATS(get_memory_stats, "memory stats", domain->ptr);
2023
2024 #ifdef HAVE_PERF_STATS
2025   if (extra_stats & ex_stats_perf)
2026     GET_STATS(get_perf_events, "performance monitoring events", domain->ptr);
2027 #endif
2028
2029 #ifdef HAVE_FS_INFO
2030   if (extra_stats & ex_stats_fs_info)
2031     GET_STATS(get_fs_info, "file system info", domain->ptr);
2032 #endif
2033
2034 #ifdef HAVE_DISK_ERR
2035   if (extra_stats & ex_stats_disk_err)
2036     GET_STATS(get_disk_err, "disk errors", domain->ptr);
2037 #endif
2038
2039 #ifdef HAVE_JOB_STATS
2040   if (extra_stats &
2041       (ex_stats_job_stats_completed | ex_stats_job_stats_background))
2042     GET_STATS(get_job_stats, "job stats", domain->ptr);
2043 #endif
2044
2045   /* Update cached virDomainInfo. It has to be done after cpu_submit */
2046   memcpy(&domain->info, &info, sizeof(domain->info));
2047
2048   return 0;
2049 }
2050
2051 static int get_if_dev_stats(struct interface_device *if_dev) {
2052   virDomainInterfaceStatsStruct stats = {0};
2053   char *display_name = NULL;
2054
2055   if (!if_dev) {
2056     ERROR(PLUGIN_NAME " plugin: get_if_dev_stats: NULL pointer");
2057     return -1;
2058   }
2059
2060   switch (interface_format) {
2061   case if_address:
2062     display_name = if_dev->address;
2063     break;
2064   case if_number:
2065     display_name = if_dev->number;
2066     break;
2067   case if_name:
2068   default:
2069     display_name = if_dev->path;
2070   }
2071
2072   if (virDomainInterfaceStats(if_dev->dom, if_dev->path, &stats,
2073                               sizeof(stats)) != 0) {
2074     ERROR(PLUGIN_NAME " plugin: virDomainInterfaceStats failed");
2075     return -1;
2076   }
2077
2078   if ((stats.rx_bytes != -1) && (stats.tx_bytes != -1))
2079     submit_derive2("if_octets", (derive_t)stats.rx_bytes,
2080                    (derive_t)stats.tx_bytes, if_dev->dom, display_name);
2081
2082   if ((stats.rx_packets != -1) && (stats.tx_packets != -1))
2083     submit_derive2("if_packets", (derive_t)stats.rx_packets,
2084                    (derive_t)stats.tx_packets, if_dev->dom, display_name);
2085
2086   if ((stats.rx_errs != -1) && (stats.tx_errs != -1))
2087     submit_derive2("if_errors", (derive_t)stats.rx_errs,
2088                    (derive_t)stats.tx_errs, if_dev->dom, display_name);
2089
2090   if ((stats.rx_drop != -1) && (stats.tx_drop != -1))
2091     submit_derive2("if_dropped", (derive_t)stats.rx_drop,
2092                    (derive_t)stats.tx_drop, if_dev->dom, display_name);
2093   return 0;
2094 }
2095
2096 static int domain_lifecycle_event_cb(__attribute__((unused)) virConnectPtr con_,
2097                                      virDomainPtr dom, int event, int detail,
2098                                      __attribute__((unused)) void *opaque) {
2099   int domain_state = map_domain_event_to_state(event);
2100   int domain_reason = 0; /* 0 means UNKNOWN reason for any state */
2101 #ifdef HAVE_DOM_REASON
2102   domain_reason = map_domain_event_detail_to_reason(event, detail);
2103 #endif
2104   domain_state_submit_notif(dom, domain_state, domain_reason);
2105
2106   return 0;
2107 }
2108
2109 static int register_event_impl(void) {
2110   if (virEventRegisterDefaultImpl() < 0) {
2111     virErrorPtr err = virGetLastError();
2112     ERROR(PLUGIN_NAME
2113           " plugin: error while event implementation registering: %s",
2114           err && err->message ? err->message : "Unknown error");
2115     return -1;
2116   }
2117
2118   return 0;
2119 }
2120
2121 static void virt_notif_thread_set_active(virt_notif_thread_t *thread_data,
2122                                          const bool active) {
2123   assert(thread_data != NULL);
2124   pthread_mutex_lock(&thread_data->active_mutex);
2125   thread_data->is_active = active;
2126   pthread_mutex_unlock(&thread_data->active_mutex);
2127 }
2128
2129 static bool virt_notif_thread_is_active(virt_notif_thread_t *thread_data) {
2130   bool active = false;
2131
2132   assert(thread_data != NULL);
2133   pthread_mutex_lock(&thread_data->active_mutex);
2134   active = thread_data->is_active;
2135   pthread_mutex_unlock(&thread_data->active_mutex);
2136
2137   return active;
2138 }
2139
2140 /* worker function running default event implementation */
2141 static void *event_loop_worker(void *arg) {
2142   virt_notif_thread_t *thread_data = (virt_notif_thread_t *)arg;
2143
2144   while (virt_notif_thread_is_active(thread_data)) {
2145     if (virEventRunDefaultImpl() < 0) {
2146       virErrorPtr err = virGetLastError();
2147       ERROR(PLUGIN_NAME " plugin: failed to run event loop: %s\n",
2148             err && err->message ? err->message : "Unknown error");
2149     }
2150   }
2151
2152   return NULL;
2153 }
2154
2155 static int virt_notif_thread_init(virt_notif_thread_t *thread_data) {
2156   assert(thread_data != NULL);
2157
2158   int ret = pthread_mutex_init(&thread_data->active_mutex, NULL);
2159   if (ret != 0) {
2160     ERROR(PLUGIN_NAME " plugin: Failed to initialize mutex, err %u", ret);
2161     return ret;
2162   }
2163
2164   /**
2165    * '0' and positive integers are meaningful ID's, therefore setting
2166    * domain_event_cb_id to '-1'
2167    */
2168   thread_data->domain_event_cb_id = -1;
2169   pthread_mutex_lock(&thread_data->active_mutex);
2170   thread_data->is_active = false;
2171   pthread_mutex_unlock(&thread_data->active_mutex);
2172
2173   return 0;
2174 }
2175
2176 /* register domain event callback and start event loop thread */
2177 static int start_event_loop(virt_notif_thread_t *thread_data) {
2178   assert(thread_data != NULL);
2179   thread_data->domain_event_cb_id = virConnectDomainEventRegisterAny(
2180       conn, NULL, VIR_DOMAIN_EVENT_ID_LIFECYCLE,
2181       VIR_DOMAIN_EVENT_CALLBACK(domain_lifecycle_event_cb), NULL, NULL);
2182   if (thread_data->domain_event_cb_id == -1) {
2183     ERROR(PLUGIN_NAME " plugin: error while callback registering");
2184     return -1;
2185   }
2186
2187   DEBUG(PLUGIN_NAME " plugin: starting event loop");
2188
2189   virt_notif_thread_set_active(thread_data, 1);
2190   if (pthread_create(&thread_data->event_loop_tid, NULL, event_loop_worker,
2191                      thread_data)) {
2192     ERROR(PLUGIN_NAME " plugin: failed event loop thread creation");
2193     virt_notif_thread_set_active(thread_data, 0);
2194     virConnectDomainEventDeregisterAny(conn, thread_data->domain_event_cb_id);
2195     thread_data->domain_event_cb_id = -1;
2196     return -1;
2197   }
2198
2199   return 0;
2200 }
2201
2202 /* stop event loop thread and deregister callback */
2203 static void stop_event_loop(virt_notif_thread_t *thread_data) {
2204
2205   DEBUG(PLUGIN_NAME " plugin: stopping event loop");
2206
2207   /* Stopping loop */
2208   if (virt_notif_thread_is_active(thread_data)) {
2209     virt_notif_thread_set_active(thread_data, 0);
2210     if (pthread_join(notif_thread.event_loop_tid, NULL) != 0)
2211       ERROR(PLUGIN_NAME " plugin: stopping notification thread failed");
2212   }
2213
2214   /* ... and de-registering event handler */
2215   if (conn != NULL && thread_data->domain_event_cb_id != -1) {
2216     virConnectDomainEventDeregisterAny(conn, thread_data->domain_event_cb_id);
2217     thread_data->domain_event_cb_id = -1;
2218   }
2219 }
2220
2221 static int persistent_domains_state_notification(void) {
2222   int status = 0;
2223   int n;
2224 #ifdef HAVE_LIST_ALL_DOMAINS
2225   virDomainPtr *domains = NULL;
2226   n = virConnectListAllDomains(conn, &domains,
2227                                VIR_CONNECT_LIST_DOMAINS_PERSISTENT);
2228   if (n < 0) {
2229     VIRT_ERROR(conn, "reading list of persistent domains");
2230     status = -1;
2231   } else {
2232     DEBUG(PLUGIN_NAME " plugin: getting state of %i persistent domains", n);
2233     /* Fetch each persistent domain's state and notify it */
2234     int n_notified = n;
2235     for (int i = 0; i < n; ++i) {
2236       status = get_domain_state_notify(domains[i]);
2237       if (status != 0) {
2238         n_notified--;
2239         ERROR(PLUGIN_NAME " plugin: could not notify state of domain %s",
2240               virDomainGetName(domains[i]));
2241       }
2242       virDomainFree(domains[i]);
2243     }
2244
2245     sfree(domains);
2246     DEBUG(PLUGIN_NAME " plugin: notified state of %i persistent domains",
2247           n_notified);
2248   }
2249 #else
2250   n = virConnectNumOfDomains(conn);
2251   if (n > 0) {
2252     int *domids;
2253     /* Get list of domains. */
2254     domids = calloc(n, sizeof(*domids));
2255     if (domids == NULL) {
2256       ERROR(PLUGIN_NAME " plugin: calloc failed.");
2257       return -1;
2258     }
2259     n = virConnectListDomains(conn, domids, n);
2260     if (n < 0) {
2261       VIRT_ERROR(conn, "reading list of domains");
2262       sfree(domids);
2263       return -1;
2264     }
2265     /* Fetch info of each active domain and notify it */
2266     for (int i = 0; i < n; ++i) {
2267       virDomainInfo info;
2268       virDomainPtr dom = NULL;
2269       dom = virDomainLookupByID(conn, domids[i]);
2270       if (dom == NULL) {
2271         VIRT_ERROR(conn, "virDomainLookupByID");
2272         /* Could be that the domain went away -- ignore it anyway. */
2273         continue;
2274       }
2275       status = virDomainGetInfo(dom, &info);
2276       if (status == 0)
2277         /* virDomainGetState is not available. Submit 0, which corresponds to
2278          * unknown reason. */
2279         domain_state_submit_notif(dom, info.state, 0);
2280       else
2281         ERROR(PLUGIN_NAME " plugin: virDomainGetInfo failed with status %i.",
2282               status);
2283
2284       virDomainFree(dom);
2285     }
2286     sfree(domids);
2287   }
2288 #endif
2289
2290   return status;
2291 }
2292
2293 static int lv_read(user_data_t *ud) {
2294   if (ud->data == NULL) {
2295     ERROR(PLUGIN_NAME " plugin: NULL userdata");
2296     return -1;
2297   }
2298
2299   struct lv_read_instance *inst = ud->data;
2300   struct lv_read_state *state = &inst->read_state;
2301
2302   if (inst->id == 0)
2303     if (lv_connect() < 0)
2304       return -1;
2305
2306   /* Wait until inst#0 establish connection */
2307   if (conn == NULL) {
2308     DEBUG(PLUGIN_NAME " plugin#%s: Wait until inst#0 establish connection",
2309           inst->tag);
2310     return 0;
2311   }
2312
2313   time_t t;
2314   time(&t);
2315
2316   /* Need to refresh domain or device lists? */
2317   if ((last_refresh == (time_t)0) ||
2318       ((interval > 0) && ((last_refresh + interval) <= t))) {
2319     if (refresh_lists(inst) != 0) {
2320       if (inst->id == 0) {
2321         if (!persistent_notification)
2322           stop_event_loop(&notif_thread);
2323         lv_disconnect();
2324       }
2325       return -1;
2326     }
2327     last_refresh = t;
2328   }
2329
2330   /* persistent domains state notifications are handled by instance 0 */
2331   if (inst->id == 0 && persistent_notification) {
2332     int status = persistent_domains_state_notification();
2333     if (status != 0)
2334       DEBUG(PLUGIN_NAME " plugin: persistent_domains_state_notifications "
2335                         "returned with status %i",
2336             status);
2337   }
2338
2339 #if COLLECT_DEBUG
2340   for (int i = 0; i < state->nr_domains; ++i)
2341     DEBUG(PLUGIN_NAME " plugin: domain %s",
2342           virDomainGetName(state->domains[i].ptr));
2343   for (int i = 0; i < state->nr_block_devices; ++i)
2344     DEBUG(PLUGIN_NAME " plugin: block device %d %s:%s", i,
2345           virDomainGetName(state->block_devices[i].dom),
2346           state->block_devices[i].path);
2347   for (int i = 0; i < state->nr_interface_devices; ++i)
2348     DEBUG(PLUGIN_NAME " plugin: interface device %d %s:%s", i,
2349           virDomainGetName(state->interface_devices[i].dom),
2350           state->interface_devices[i].path);
2351 #endif
2352
2353   /* Get domains' metrics */
2354   for (int i = 0; i < state->nr_domains; ++i) {
2355     domain_t *dom = &state->domains[i];
2356     int status = 0;
2357     if (dom->active)
2358       status = get_domain_metrics(dom);
2359 #ifdef HAVE_DOM_REASON
2360     else if (extra_stats & ex_stats_domain_state)
2361       status = submit_domain_state(dom->ptr);
2362 #endif
2363
2364     if (status != 0)
2365       ERROR(PLUGIN_NAME " plugin: failed to get metrics for domain=%s",
2366             virDomainGetName(dom->ptr));
2367   }
2368
2369   /* Get block device stats for each domain. */
2370   for (int i = 0; i < state->nr_block_devices; ++i) {
2371     int status = get_block_device_stats(&state->block_devices[i]);
2372     if (status != 0)
2373       ERROR(PLUGIN_NAME
2374             " plugin: failed to get stats for block device (%s) in domain %s",
2375             state->block_devices[i].path,
2376             virDomainGetName(state->block_devices[i].dom));
2377   }
2378
2379   /* Get interface stats for each domain. */
2380   for (int i = 0; i < state->nr_interface_devices; ++i) {
2381     int status = get_if_dev_stats(&state->interface_devices[i]);
2382     if (status != 0)
2383       ERROR(
2384           PLUGIN_NAME
2385           " plugin: failed to get interface stats for device (%s) in domain %s",
2386           state->interface_devices[i].path,
2387           virDomainGetName(state->interface_devices[i].dom));
2388   }
2389
2390   return 0;
2391 }
2392
2393 static int lv_init_instance(size_t i, plugin_read_cb callback) {
2394   struct lv_user_data *lv_ud = &(lv_read_user_data[i]);
2395   struct lv_read_instance *inst = &(lv_ud->inst);
2396
2397   memset(lv_ud, 0, sizeof(*lv_ud));
2398
2399   ssnprintf(inst->tag, sizeof(inst->tag), "%s-%" PRIsz, PLUGIN_NAME, i);
2400   inst->id = i;
2401
2402   user_data_t *ud = &(lv_ud->ud);
2403   ud->data = inst;
2404   ud->free_func = NULL;
2405
2406   INFO(PLUGIN_NAME " plugin: reader %s initialized", inst->tag);
2407
2408   return plugin_register_complex_read(NULL, inst->tag, callback, 0, ud);
2409 }
2410
2411 static void lv_clean_read_state(struct lv_read_state *state) {
2412   free_block_devices(state);
2413   free_interface_devices(state);
2414   free_domains(state);
2415 }
2416
2417 static void lv_fini_instance(size_t i) {
2418   struct lv_read_instance *inst = &(lv_read_user_data[i].inst);
2419   struct lv_read_state *state = &(inst->read_state);
2420
2421   lv_clean_read_state(state);
2422
2423   INFO(PLUGIN_NAME " plugin: reader %s finalized", inst->tag);
2424 }
2425
2426 static int lv_init(void) {
2427   if (virInitialize() != 0)
2428     return -1;
2429
2430   /* Init ignorelists if there was no explicit configuration */
2431   if (lv_init_ignorelists() != 0)
2432     return -1;
2433
2434   if (!persistent_notification)
2435     if (virt_notif_thread_init(&notif_thread) != 0)
2436       return -1;
2437
2438   lv_connect();
2439
2440   DEBUG(PLUGIN_NAME " plugin: starting %i instances", nr_instances);
2441
2442   for (int i = 0; i < nr_instances; ++i)
2443     if (lv_init_instance(i, lv_read) != 0)
2444       return -1;
2445
2446   return 0;
2447 }
2448
2449 /*
2450  * returns 0 on success and <0 on error
2451  */
2452 static int lv_domain_get_tag(xmlXPathContextPtr xpath_ctx, const char *dom_name,
2453                              char *dom_tag) {
2454   char xpath_str[BUFFER_MAX_LEN] = {'\0'};
2455   xmlXPathObjectPtr xpath_obj = NULL;
2456   xmlNodePtr xml_node = NULL;
2457   int ret = -1;
2458   int err;
2459
2460   err = xmlXPathRegisterNs(xpath_ctx,
2461                            (const xmlChar *)METADATA_VM_PARTITION_PREFIX,
2462                            (const xmlChar *)METADATA_VM_PARTITION_URI);
2463   if (err) {
2464     ERROR(PLUGIN_NAME " plugin: xmlXpathRegisterNs(%s, %s) failed on domain %s",
2465           METADATA_VM_PARTITION_PREFIX, METADATA_VM_PARTITION_URI, dom_name);
2466     goto done;
2467   }
2468
2469   ssnprintf(xpath_str, sizeof(xpath_str), "/domain/metadata/%s:%s/text()",
2470            METADATA_VM_PARTITION_PREFIX, METADATA_VM_PARTITION_ELEMENT);
2471   xpath_obj = xmlXPathEvalExpression((xmlChar *)xpath_str, xpath_ctx);
2472   if (xpath_obj == NULL) {
2473     ERROR(PLUGIN_NAME " plugin: xmlXPathEval(%s) failed on domain %s",
2474           xpath_str, dom_name);
2475     goto done;
2476   }
2477
2478   if (xpath_obj->type != XPATH_NODESET) {
2479     ERROR(PLUGIN_NAME " plugin: xmlXPathEval(%s) unexpected return type %d "
2480                       "(wanted %d) on domain %s",
2481           xpath_str, xpath_obj->type, XPATH_NODESET, dom_name);
2482     goto done;
2483   }
2484
2485   /*
2486    * from now on there is no real error, it's ok if a domain
2487    * doesn't have the metadata partition tag.
2488    */
2489   ret = 0;
2490   if (xpath_obj->nodesetval == NULL || xpath_obj->nodesetval->nodeNr != 1) {
2491     DEBUG(PLUGIN_NAME " plugin: xmlXPathEval(%s) return nodeset size=%i "
2492                       "expected=1 on domain %s",
2493           xpath_str,
2494           (xpath_obj->nodesetval == NULL) ? 0 : xpath_obj->nodesetval->nodeNr,
2495           dom_name);
2496   } else {
2497     xml_node = xpath_obj->nodesetval->nodeTab[0];
2498     sstrncpy(dom_tag, (const char *)xml_node->content, PARTITION_TAG_MAX_LEN);
2499   }
2500
2501 done:
2502   /* deregister to clean up */
2503   err = xmlXPathRegisterNs(xpath_ctx,
2504                            (const xmlChar *)METADATA_VM_PARTITION_PREFIX, NULL);
2505   if (err) {
2506     /* we can't really recover here */
2507     ERROR(PLUGIN_NAME
2508           " plugin: deregistration of namespace %s failed for domain %s",
2509           METADATA_VM_PARTITION_PREFIX, dom_name);
2510   }
2511   if (xpath_obj)
2512     xmlXPathFreeObject(xpath_obj);
2513
2514   return ret;
2515 }
2516
2517 static int is_known_tag(const char *dom_tag) {
2518   for (int i = 0; i < nr_instances; ++i)
2519     if (!strcmp(dom_tag, lv_read_user_data[i].inst.tag))
2520       return 1;
2521   return 0;
2522 }
2523
2524 static int lv_instance_include_domain(struct lv_read_instance *inst,
2525                                       const char *dom_name,
2526                                       const char *dom_tag) {
2527   if ((dom_tag[0] != '\0') && (strcmp(dom_tag, inst->tag) == 0))
2528     return 1;
2529
2530   /* instance#0 will always be there, so it is in charge of extra duties */
2531   if (inst->id == 0) {
2532     if (dom_tag[0] == '\0' || !is_known_tag(dom_tag)) {
2533       DEBUG(PLUGIN_NAME " plugin#%s: refreshing domain %s "
2534                         "with unknown tag '%s'",
2535             inst->tag, dom_name, dom_tag);
2536       return 1;
2537     }
2538   }
2539
2540   return 0;
2541 }
2542
2543 static void lv_add_block_devices(struct lv_read_state *state, virDomainPtr dom,
2544                                  const char *domname,
2545                                  xmlXPathContextPtr xpath_ctx) {
2546   xmlXPathObjectPtr xpath_obj =
2547       xmlXPathEval((const xmlChar *)"/domain/devices/disk", xpath_ctx);
2548
2549   if (xpath_obj == NULL) {
2550     DEBUG(PLUGIN_NAME " plugin: no disk xpath-object found for domain %s",
2551           domname);
2552     return;
2553   }
2554
2555   if (xpath_obj->type != XPATH_NODESET || xpath_obj->nodesetval == NULL) {
2556     DEBUG(PLUGIN_NAME " plugin: no disk node found for domain %s", domname);
2557     goto cleanup;
2558   }
2559
2560   xmlNodeSetPtr xml_block_devices = xpath_obj->nodesetval;
2561   for (int i = 0; i < xml_block_devices->nodeNr; ++i) {
2562     xmlNodePtr xml_device = xpath_obj->nodesetval->nodeTab[i];
2563     char *path_str = NULL;
2564     char *source_str = NULL;
2565
2566     if (!xml_device)
2567       continue;
2568
2569     /* Fetching path and source for block device */
2570     for (xmlNodePtr child = xml_device->children; child; child = child->next) {
2571       if (child->type != XML_ELEMENT_NODE)
2572         continue;
2573
2574       /* we are interested only in either "target" or "source" elements */
2575       if (xmlStrEqual(child->name, (const xmlChar *)"target"))
2576         path_str = (char *)xmlGetProp(child, (const xmlChar *)"dev");
2577       else if (xmlStrEqual(child->name, (const xmlChar *)"source")) {
2578         /* name of the source is located in "dev" or "file" element (it depends
2579          * on type of source). Trying "dev" at first*/
2580         source_str = (char *)xmlGetProp(child, (const xmlChar *)"dev");
2581         if (!source_str)
2582           source_str = (char *)xmlGetProp(child, (const xmlChar *)"file");
2583       }
2584       /* ignoring any other element*/
2585     }
2586
2587     /* source_str will be interpreted as a device path if blockdevice_format
2588      *  param is set to 'source'. */
2589     const char *device_path =
2590         (blockdevice_format == source) ? source_str : path_str;
2591
2592     if (!device_path) {
2593       /* no path found and we can't add block_device without it */
2594       WARNING(PLUGIN_NAME " plugin: could not generate device path for disk in "
2595                           "domain %s - disk device will be ignored in reports",
2596               domname);
2597       goto cont;
2598     }
2599
2600     if (ignore_device_match(il_block_devices, domname, device_path) == 0) {
2601       /* we only have to store information whether 'source' exists or not */
2602       bool has_source = (source_str != NULL) ? true : false;
2603
2604       add_block_device(state, dom, device_path, has_source);
2605     }
2606
2607   cont:
2608     if (path_str)
2609       xmlFree(path_str);
2610
2611     if (source_str)
2612       xmlFree(source_str);
2613   }
2614
2615 cleanup:
2616   xmlXPathFreeObject(xpath_obj);
2617 }
2618
2619 static void lv_add_network_interfaces(struct lv_read_state *state,
2620                                       virDomainPtr dom, const char *domname,
2621                                       xmlXPathContextPtr xpath_ctx) {
2622   xmlXPathObjectPtr xpath_obj = xmlXPathEval(
2623       (xmlChar *)"/domain/devices/interface[target[@dev]]", xpath_ctx);
2624
2625   if (xpath_obj == NULL)
2626     return;
2627
2628   if (xpath_obj->type != XPATH_NODESET || xpath_obj->nodesetval == NULL) {
2629     xmlXPathFreeObject(xpath_obj);
2630     return;
2631   }
2632
2633   xmlNodeSetPtr xml_interfaces = xpath_obj->nodesetval;
2634
2635   for (int j = 0; j < xml_interfaces->nodeNr; ++j) {
2636     char *path = NULL;
2637     char *address = NULL;
2638     const int itf_number = j + 1;
2639
2640     xmlNodePtr xml_interface = xml_interfaces->nodeTab[j];
2641     if (!xml_interface)
2642       continue;
2643
2644     for (xmlNodePtr child = xml_interface->children; child;
2645          child = child->next) {
2646       if (child->type != XML_ELEMENT_NODE)
2647         continue;
2648
2649       if (xmlStrEqual(child->name, (const xmlChar *)"target")) {
2650         path = (char *)xmlGetProp(child, (const xmlChar *)"dev");
2651         if (!path)
2652           continue;
2653       } else if (xmlStrEqual(child->name, (const xmlChar *)"mac")) {
2654         address = (char *)xmlGetProp(child, (const xmlChar *)"address");
2655         if (!address)
2656           continue;
2657       }
2658     }
2659
2660     bool device_ignored = false;
2661     switch (interface_format) {
2662     case if_name:
2663       if (ignore_device_match(il_interface_devices, domname, path) != 0)
2664         device_ignored = true;
2665       break;
2666     case if_address:
2667       if (ignore_device_match(il_interface_devices, domname, address) != 0)
2668         device_ignored = true;
2669       break;
2670     case if_number: {
2671       char number_string[4];
2672       ssnprintf(number_string, sizeof(number_string), "%d", itf_number);
2673       if (ignore_device_match(il_interface_devices, domname, number_string) !=
2674           0)
2675         device_ignored = true;
2676     } break;
2677     default:
2678       ERROR(PLUGIN_NAME " plugin: Unknown interface_format option: %d",
2679             interface_format);
2680     }
2681
2682     if (!device_ignored)
2683       add_interface_device(state, dom, path, address, itf_number);
2684
2685     if (path)
2686       xmlFree(path);
2687     if (address)
2688       xmlFree(address);
2689   }
2690   xmlXPathFreeObject(xpath_obj);
2691 }
2692
2693 static bool is_domain_ignored(virDomainPtr dom) {
2694   const char *domname = virDomainGetName(dom);
2695
2696   if (domname == NULL) {
2697     VIRT_ERROR(conn, "virDomainGetName failed, ignoring domain");
2698     return true;
2699   }
2700
2701   if (ignorelist_match(il_domains, domname) != 0) {
2702     DEBUG(PLUGIN_NAME
2703           " plugin: ignoring domain '%s' because of ignorelist option",
2704           domname);
2705     return true;
2706   }
2707
2708   return false;
2709 }
2710
2711 static int refresh_lists(struct lv_read_instance *inst) {
2712   struct lv_read_state *state = &inst->read_state;
2713   int n;
2714
2715 #ifndef HAVE_LIST_ALL_DOMAINS
2716   n = virConnectNumOfDomains(conn);
2717   if (n < 0) {
2718     VIRT_ERROR(conn, "reading number of domains");
2719     return -1;
2720   }
2721 #endif
2722
2723   lv_clean_read_state(state);
2724
2725 #ifndef HAVE_LIST_ALL_DOMAINS
2726   if (n == 0)
2727     goto end;
2728 #endif
2729
2730 #ifdef HAVE_LIST_ALL_DOMAINS
2731   virDomainPtr *domains, *domains_inactive;
2732   int m = virConnectListAllDomains(conn, &domains_inactive,
2733                                    VIR_CONNECT_LIST_DOMAINS_INACTIVE);
2734   n = virConnectListAllDomains(conn, &domains, VIR_CONNECT_LIST_DOMAINS_ACTIVE);
2735 #else
2736   /* Get list of domains. */
2737   int *domids = calloc(n, sizeof(*domids));
2738   if (domids == NULL) {
2739     ERROR(PLUGIN_NAME " plugin: calloc failed.");
2740     return -1;
2741   }
2742
2743   n = virConnectListDomains(conn, domids, n);
2744 #endif
2745
2746   if (n < 0) {
2747     VIRT_ERROR(conn, "reading list of domains");
2748 #ifndef HAVE_LIST_ALL_DOMAINS
2749     sfree(domids);
2750 #else
2751     for (int i = 0; i < m; ++i)
2752       virDomainFree(domains_inactive[i]);
2753     sfree(domains_inactive);
2754 #endif
2755     return -1;
2756   }
2757
2758 #ifdef HAVE_LIST_ALL_DOMAINS
2759   for (int i = 0; i < m; ++i)
2760     if (is_domain_ignored(domains_inactive[i]) ||
2761         add_domain(state, domains_inactive[i], 0) < 0) {
2762       /* domain ignored or failed during adding to domains list*/
2763       virDomainFree(domains_inactive[i]);
2764       domains_inactive[i] = NULL;
2765       continue;
2766     }
2767 #endif
2768
2769   /* Fetch each domain and add it to the list, unless ignore. */
2770   for (int i = 0; i < n; ++i) {
2771
2772 #ifdef HAVE_LIST_ALL_DOMAINS
2773     virDomainPtr dom = domains[i];
2774 #else
2775     virDomainPtr dom = virDomainLookupByID(conn, domids[i]);
2776     if (dom == NULL) {
2777       VIRT_ERROR(conn, "virDomainLookupByID");
2778       /* Could be that the domain went away -- ignore it anyway. */
2779       continue;
2780     }
2781 #endif
2782
2783     if (is_domain_ignored(dom) || add_domain(state, dom, 1) < 0) {
2784       /*
2785        * domain ignored or failed during adding to domains list
2786        *
2787        * When domain is already tracked, then there is
2788        * no problem with memory handling (will be freed
2789        * with the rest of domains cached data)
2790        * But in case of error like this (error occurred
2791        * before adding domain to track) we have to take
2792        * care it ourselves and call virDomainFree
2793        */
2794       virDomainFree(dom);
2795       continue;
2796     }
2797
2798     const char *domname = virDomainGetName(dom);
2799     if (domname == NULL) {
2800       VIRT_ERROR(conn, "virDomainGetName");
2801       continue;
2802     }
2803
2804     virDomainInfo info;
2805     int status = virDomainGetInfo(dom, &info);
2806     if (status != 0) {
2807       ERROR(PLUGIN_NAME " plugin: virDomainGetInfo failed with status %i.",
2808             status);
2809       continue;
2810     }
2811
2812     if (info.state != VIR_DOMAIN_RUNNING) {
2813       DEBUG(PLUGIN_NAME " plugin: skipping inactive domain %s", domname);
2814       continue;
2815     }
2816
2817     /* Get a list of devices for this domain. */
2818     xmlDocPtr xml_doc = NULL;
2819     xmlXPathContextPtr xpath_ctx = NULL;
2820
2821     char *xml = virDomainGetXMLDesc(dom, 0);
2822     if (!xml) {
2823       VIRT_ERROR(conn, "virDomainGetXMLDesc");
2824       goto cont;
2825     }
2826
2827     /* Yuck, XML.  Parse out the devices. */
2828     xml_doc = xmlReadDoc((xmlChar *)xml, NULL, NULL, XML_PARSE_NONET);
2829     if (xml_doc == NULL) {
2830       VIRT_ERROR(conn, "xmlReadDoc");
2831       goto cont;
2832     }
2833
2834     xpath_ctx = xmlXPathNewContext(xml_doc);
2835
2836     char tag[PARTITION_TAG_MAX_LEN] = {'\0'};
2837     if (lv_domain_get_tag(xpath_ctx, domname, tag) < 0) {
2838       ERROR(PLUGIN_NAME " plugin: lv_domain_get_tag failed.");
2839       goto cont;
2840     }
2841
2842     if (!lv_instance_include_domain(inst, domname, tag))
2843       goto cont;
2844
2845     /* Block devices. */
2846     if (report_block_devices)
2847       lv_add_block_devices(state, dom, domname, xpath_ctx);
2848
2849     /* Network interfaces. */
2850     if (report_network_interfaces)
2851       lv_add_network_interfaces(state, dom, domname, xpath_ctx);
2852
2853   cont:
2854     if (xpath_ctx)
2855       xmlXPathFreeContext(xpath_ctx);
2856     if (xml_doc)
2857       xmlFreeDoc(xml_doc);
2858     sfree(xml);
2859   }
2860
2861 #ifdef HAVE_LIST_ALL_DOMAINS
2862   /* NOTE: domains_active and domains_inactive data will be cleared during
2863      refresh of all domains (inside lv_clean_read_state function) so we need
2864      to free here only allocated arrays */
2865   sfree(domains);
2866   sfree(domains_inactive);
2867 #else
2868   sfree(domids);
2869
2870 end:
2871 #endif
2872
2873   DEBUG(PLUGIN_NAME " plugin#%s: refreshing"
2874                     " domains=%i block_devices=%i iface_devices=%i",
2875         inst->tag, state->nr_domains, state->nr_block_devices,
2876         state->nr_interface_devices);
2877
2878   return 0;
2879 }
2880
2881 static void free_domains(struct lv_read_state *state) {
2882   if (state->domains) {
2883     for (int i = 0; i < state->nr_domains; ++i)
2884       virDomainFree(state->domains[i].ptr);
2885     sfree(state->domains);
2886   }
2887   state->domains = NULL;
2888   state->nr_domains = 0;
2889 }
2890
2891 static int add_domain(struct lv_read_state *state, virDomainPtr dom,
2892                       bool active) {
2893   int new_size = sizeof(state->domains[0]) * (state->nr_domains + 1);
2894
2895   domain_t *new_ptr = realloc(state->domains, new_size);
2896   if (new_ptr == NULL) {
2897     ERROR(PLUGIN_NAME " plugin: realloc failed in add_domain()");
2898     return -1;
2899   }
2900
2901   state->domains = new_ptr;
2902   state->domains[state->nr_domains].ptr = dom;
2903   state->domains[state->nr_domains].active = active;
2904   memset(&state->domains[state->nr_domains].info, 0,
2905          sizeof(state->domains[state->nr_domains].info));
2906
2907   return state->nr_domains++;
2908 }
2909
2910 static void free_block_devices(struct lv_read_state *state) {
2911   if (state->block_devices) {
2912     for (int i = 0; i < state->nr_block_devices; ++i)
2913       sfree(state->block_devices[i].path);
2914     sfree(state->block_devices);
2915   }
2916   state->block_devices = NULL;
2917   state->nr_block_devices = 0;
2918 }
2919
2920 static int add_block_device(struct lv_read_state *state, virDomainPtr dom,
2921                             const char *path, bool has_source) {
2922
2923   char *path_copy = strdup(path);
2924   if (!path_copy)
2925     return -1;
2926
2927   int new_size =
2928       sizeof(state->block_devices[0]) * (state->nr_block_devices + 1);
2929
2930   struct block_device *new_ptr = realloc(state->block_devices, new_size);
2931   if (new_ptr == NULL) {
2932     sfree(path_copy);
2933     return -1;
2934   }
2935   state->block_devices = new_ptr;
2936   state->block_devices[state->nr_block_devices].dom = dom;
2937   state->block_devices[state->nr_block_devices].path = path_copy;
2938   state->block_devices[state->nr_block_devices].has_source = has_source;
2939   return state->nr_block_devices++;
2940 }
2941
2942 static void free_interface_devices(struct lv_read_state *state) {
2943   if (state->interface_devices) {
2944     for (int i = 0; i < state->nr_interface_devices; ++i) {
2945       sfree(state->interface_devices[i].path);
2946       sfree(state->interface_devices[i].address);
2947       sfree(state->interface_devices[i].number);
2948     }
2949     sfree(state->interface_devices);
2950   }
2951   state->interface_devices = NULL;
2952   state->nr_interface_devices = 0;
2953 }
2954
2955 static int add_interface_device(struct lv_read_state *state, virDomainPtr dom,
2956                                 const char *path, const char *address,
2957                                 unsigned int number) {
2958
2959   if ((path == NULL) || (address == NULL))
2960     return EINVAL;
2961
2962   char *path_copy = strdup(path);
2963   if (!path_copy)
2964     return -1;
2965
2966   char *address_copy = strdup(address);
2967   if (!address_copy) {
2968     sfree(path_copy);
2969     return -1;
2970   }
2971
2972   char number_string[21];
2973   ssnprintf(number_string, sizeof(number_string), "interface-%u", number);
2974   char *number_copy = strdup(number_string);
2975   if (!number_copy) {
2976     sfree(path_copy);
2977     sfree(address_copy);
2978     return -1;
2979   }
2980
2981   int new_size =
2982       sizeof(state->interface_devices[0]) * (state->nr_interface_devices + 1);
2983
2984   struct interface_device *new_ptr =
2985       realloc(state->interface_devices, new_size);
2986   if (new_ptr == NULL) {
2987     sfree(path_copy);
2988     sfree(address_copy);
2989     sfree(number_copy);
2990     return -1;
2991   }
2992
2993   state->interface_devices = new_ptr;
2994   state->interface_devices[state->nr_interface_devices].dom = dom;
2995   state->interface_devices[state->nr_interface_devices].path = path_copy;
2996   state->interface_devices[state->nr_interface_devices].address = address_copy;
2997   state->interface_devices[state->nr_interface_devices].number = number_copy;
2998   return state->nr_interface_devices++;
2999 }
3000
3001 static int ignore_device_match(ignorelist_t *il, const char *domname,
3002                                const char *devpath) {
3003   if ((domname == NULL) || (devpath == NULL))
3004     return 0;
3005
3006   size_t n = strlen(domname) + strlen(devpath) + 2;
3007   char *name = malloc(n);
3008   if (name == NULL) {
3009     ERROR(PLUGIN_NAME " plugin: malloc failed.");
3010     return 0;
3011   }
3012   ssnprintf(name, n, "%s:%s", domname, devpath);
3013   int r = ignorelist_match(il, name);
3014   sfree(name);
3015   return r;
3016 }
3017
3018 static int lv_shutdown(void) {
3019   for (int i = 0; i < nr_instances; ++i) {
3020     lv_fini_instance(i);
3021   }
3022
3023   if (!persistent_notification)
3024     stop_event_loop(&notif_thread);
3025
3026   lv_disconnect();
3027
3028   ignorelist_free(il_domains);
3029   il_domains = NULL;
3030   ignorelist_free(il_block_devices);
3031   il_block_devices = NULL;
3032   ignorelist_free(il_interface_devices);
3033   il_interface_devices = NULL;
3034
3035   return 0;
3036 }
3037
3038 void module_register(void) {
3039   plugin_register_complex_config("virt", lv_config);
3040   plugin_register_init(PLUGIN_NAME, lv_init);
3041   plugin_register_shutdown(PLUGIN_NAME, lv_shutdown);
3042 }