Various plugins: Convert more plugins to use "derive" instead of "counter".
[collectd.git] / src / libvirt.c
1 /**
2  * collectd - src/libvirt.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  **/
21
22 #include "collectd.h"
23 #include "common.h"
24 #include "plugin.h"
25 #include "configfile.h"
26 #include "utils_ignorelist.h"
27 #include "utils_complain.h"
28
29 #include <libvirt/libvirt.h>
30 #include <libvirt/virterror.h>
31 #include <libxml/parser.h>
32 #include <libxml/tree.h>
33 #include <libxml/xpath.h>
34
35 static const char *config_keys[] = {
36     "Connection",
37
38     "RefreshInterval",
39
40     "Domain",
41     "BlockDevice",
42     "InterfaceDevice",
43     "IgnoreSelected",
44
45     "HostnameFormat",
46     "InterfaceFormat",
47
48     NULL
49 };
50 #define NR_CONFIG_KEYS ((sizeof config_keys / sizeof config_keys[0]) - 1)
51
52 /* Connection. */
53 static virConnectPtr conn = 0;
54 static char *conn_string = NULL;
55 static c_complain_t conn_complain = C_COMPLAIN_INIT_STATIC;
56
57 /* Seconds between list refreshes, 0 disables completely. */
58 static int interval = 60;
59
60 /* List of domains, if specified. */
61 static ignorelist_t *il_domains = NULL;
62 /* List of block devices, if specified. */
63 static ignorelist_t *il_block_devices = NULL;
64 /* List of network interface devices, if specified. */
65 static ignorelist_t *il_interface_devices = NULL;
66
67 static int ignore_device_match (ignorelist_t *,
68                                 const char *domname, const char *devpath);
69
70 /* Actual list of domains found on last refresh. */
71 static virDomainPtr *domains = NULL;
72 static int nr_domains = 0;
73
74 static void free_domains (void);
75 static int add_domain (virDomainPtr dom);
76
77 /* Actual list of block devices found on last refresh. */
78 struct block_device {
79     virDomainPtr dom;           /* domain */
80     char *path;                 /* name of block device */
81 };
82
83 static struct block_device *block_devices = NULL;
84 static int nr_block_devices = 0;
85
86 static void free_block_devices (void);
87 static int add_block_device (virDomainPtr dom, const char *path);
88
89 /* Actual list of network interfaces found on last refresh. */
90 struct interface_device {
91     virDomainPtr dom;           /* domain */
92     char *path;                 /* name of interface device */
93     char *address;              /* mac address of interface device */
94 };
95
96 static struct interface_device *interface_devices = NULL;
97 static int nr_interface_devices = 0;
98
99 static void free_interface_devices (void);
100 static int add_interface_device (virDomainPtr dom, const char *path, const char *address);
101
102 /* HostnameFormat. */
103 #define HF_MAX_FIELDS 3
104
105 enum hf_field {
106     hf_none = 0,
107     hf_hostname,
108     hf_name,
109     hf_uuid
110 };
111
112 static enum hf_field hostname_format[HF_MAX_FIELDS] =
113     { hf_name };
114
115 /* InterfaceFormat. */
116 enum if_field {
117     if_address,
118     if_name
119 };
120
121 static enum if_field interface_format = if_name;
122
123 /* Time that we last refreshed. */
124 static time_t last_refresh = (time_t) 0;
125
126 static int refresh_lists (void);
127
128 /* ERROR(...) macro for virterrors. */
129 #define VIRT_ERROR(conn,s) do {                 \
130         virErrorPtr err;                        \
131         err = (conn) ? virConnGetLastError ((conn)) : virGetLastError (); \
132         if (err) ERROR ("%s: %s", (s), err->message);                   \
133     } while(0)
134
135 static void
136 init_value_list (value_list_t *vl, virDomainPtr dom)
137 {
138     int i, n;
139     const char *name;
140     char uuid[VIR_UUID_STRING_BUFLEN];
141     char  *host_ptr;
142     size_t host_len;
143
144     vl->interval = interval_g;
145
146     sstrncpy (vl->plugin, "libvirt", sizeof (vl->plugin));
147
148     vl->host[0] = '\0';
149     host_ptr = vl->host;
150     host_len = sizeof (vl->host);
151
152     /* Construct the hostname field according to HostnameFormat. */
153     for (i = 0; i < HF_MAX_FIELDS; ++i) {
154         if (hostname_format[i] == hf_none)
155             continue;
156
157         n = DATA_MAX_NAME_LEN - strlen (vl->host) - 2;
158
159         if (i > 0 && n >= 1) {
160             strncat (vl->host, ":", 1);
161             n--;
162         }
163
164         switch (hostname_format[i]) {
165         case hf_none: break;
166         case hf_hostname:
167             strncat (vl->host, hostname_g, n);
168             break;
169         case hf_name:
170             name = virDomainGetName (dom);
171             if (name)
172                 strncat (vl->host, name, n);
173             break;
174         case hf_uuid:
175             if (virDomainGetUUIDString (dom, uuid) == 0)
176                 strncat (vl->host, uuid, n);
177             break;
178         }
179     }
180
181     vl->host[sizeof (vl->host) - 1] = '\0';
182 } /* void init_value_list */
183
184 static void
185 cpu_submit (unsigned long long cpu_time,
186             virDomainPtr dom, const char *type)
187 {
188     value_t values[1];
189     value_list_t vl = VALUE_LIST_INIT;
190
191     init_value_list (&vl, dom);
192
193     values[0].derive = cpu_time;
194
195     vl.values = values;
196     vl.values_len = 1;
197
198     sstrncpy (vl.type, type, sizeof (vl.type));
199
200     plugin_dispatch_values (&vl);
201 }
202
203 static void
204 vcpu_submit (derive_t cpu_time,
205              virDomainPtr dom, int vcpu_nr, const char *type)
206 {
207     value_t values[1];
208     value_list_t vl = VALUE_LIST_INIT;
209
210     init_value_list (&vl, dom);
211
212     values[0].derive = cpu_time;
213     vl.values = values;
214     vl.values_len = 1;
215
216     sstrncpy (vl.type, type, sizeof (vl.type));
217     ssnprintf (vl.type_instance, sizeof (vl.type_instance), "%d", vcpu_nr);
218
219     plugin_dispatch_values (&vl);
220 }
221
222 static void
223 submit_derive2 (const char *type, derive_t v0, derive_t v1,
224              virDomainPtr dom, const char *devname)
225 {
226     value_t values[2];
227     value_list_t vl = VALUE_LIST_INIT;
228
229     init_value_list (&vl, dom);
230
231     values[0].derive = v0;
232     values[1].derive = v1;
233     vl.values = values;
234     vl.values_len = 2;
235
236     sstrncpy (vl.type, type, sizeof (vl.type));
237     sstrncpy (vl.type_instance, devname, sizeof (vl.type_instance));
238
239     plugin_dispatch_values (&vl);
240 } /* void submit_derive2 */
241
242 static int
243 lv_init (void)
244 {
245     if (virInitialize () != 0)
246         return -1;
247
248         return 0;
249 }
250
251 static int
252 lv_config (const char *key, const char *value)
253 {
254     if (virInitialize () != 0)
255         return 1;
256
257     if (il_domains == NULL)
258         il_domains = ignorelist_create (1);
259     if (il_block_devices == NULL)
260         il_block_devices = ignorelist_create (1);
261     if (il_interface_devices == NULL)
262         il_interface_devices = ignorelist_create (1);
263
264     if (strcasecmp (key, "Connection") == 0) {
265         char *tmp = strdup (value);
266         if (tmp == NULL) {
267             ERROR ("libvirt plugin: Connection strdup failed.");
268             return 1;
269         }
270         sfree (conn_string);
271         conn_string = tmp;
272         return 0;
273     }
274
275     if (strcasecmp (key, "RefreshInterval") == 0) {
276         char *eptr = NULL;
277         interval = strtol (value, &eptr, 10);
278         if (eptr == NULL || *eptr != '\0') return 1;
279         return 0;
280     }
281
282     if (strcasecmp (key, "Domain") == 0) {
283         if (ignorelist_add (il_domains, value)) return 1;
284         return 0;
285     }
286     if (strcasecmp (key, "BlockDevice") == 0) {
287         if (ignorelist_add (il_block_devices, value)) return 1;
288         return 0;
289     }
290     if (strcasecmp (key, "InterfaceDevice") == 0) {
291         if (ignorelist_add (il_interface_devices, value)) return 1;
292         return 0;
293     }
294
295     if (strcasecmp (key, "IgnoreSelected") == 0) {
296         if (IS_TRUE (value))
297         {
298             ignorelist_set_invert (il_domains, 0);
299             ignorelist_set_invert (il_block_devices, 0);
300             ignorelist_set_invert (il_interface_devices, 0);
301         }
302         else
303         {
304             ignorelist_set_invert (il_domains, 1);
305             ignorelist_set_invert (il_block_devices, 1);
306             ignorelist_set_invert (il_interface_devices, 1);
307         }
308         return 0;
309     }
310
311     if (strcasecmp (key, "HostnameFormat") == 0) {
312         char *value_copy;
313         char *fields[HF_MAX_FIELDS];
314         int i, n;
315
316         value_copy = strdup (value);
317         if (value_copy == NULL) {
318             ERROR ("libvirt plugin: strdup failed.");
319             return -1;
320         }
321
322         n = strsplit (value_copy, fields, HF_MAX_FIELDS);
323         if (n < 1) {
324             sfree (value_copy);
325             ERROR ("HostnameFormat: no fields");
326             return -1;
327         }
328
329         for (i = 0; i < n; ++i) {
330             if (strcasecmp (fields[i], "hostname") == 0)
331                 hostname_format[i] = hf_hostname;
332             else if (strcasecmp (fields[i], "name") == 0)
333                 hostname_format[i] = hf_name;
334             else if (strcasecmp (fields[i], "uuid") == 0)
335                 hostname_format[i] = hf_uuid;
336             else {
337                 sfree (value_copy);
338                 ERROR ("unknown HostnameFormat field: %s", fields[i]);
339                 return -1;
340             }
341         }
342         sfree (value_copy);
343
344         for (i = n; i < HF_MAX_FIELDS; ++i)
345             hostname_format[i] = hf_none;
346
347         return 0;
348     }
349
350     if (strcasecmp (key, "InterfaceFormat") == 0) {
351         if (strcasecmp (value, "name") == 0)
352             interface_format = if_name;
353         else if (strcasecmp (value, "address") == 0)
354             interface_format = if_address;
355         else {
356             ERROR ("unknown InterfaceFormat: %s", value);
357             return -1;
358         }
359         return 0;
360     }
361
362     /* Unrecognised option. */
363     return -1;
364 }
365
366 static int
367 lv_read (void)
368 {
369     time_t t;
370     int i;
371
372     if (conn == NULL) {
373         /* `conn_string == NULL' is acceptable. */
374         conn = virConnectOpenReadOnly (conn_string);
375         if (conn == NULL) {
376             c_complain (LOG_ERR, &conn_complain,
377                     "libvirt plugin: Unable to connect: "
378                     "virConnectOpenReadOnly failed.");
379             return -1;
380         }
381     }
382     c_release (LOG_NOTICE, &conn_complain,
383             "libvirt plugin: Connection established.");
384
385     time (&t);
386
387     /* Need to refresh domain or device lists? */
388     if ((last_refresh == (time_t) 0) ||
389             ((interval > 0) && ((last_refresh + interval) <= t))) {
390         if (refresh_lists () != 0) {
391             if (conn != NULL)
392                 virConnectClose (conn);
393             conn = NULL;
394             return -1;
395         }
396         last_refresh = t;
397     }
398
399 #if 0
400     for (i = 0; i < nr_domains; ++i)
401         fprintf (stderr, "domain %s\n", virDomainGetName (domains[i]));
402     for (i = 0; i < nr_block_devices; ++i)
403         fprintf  (stderr, "block device %d %s:%s\n",
404                   i, virDomainGetName (block_devices[i].dom),
405                   block_devices[i].path);
406     for (i = 0; i < nr_interface_devices; ++i)
407         fprintf (stderr, "interface device %d %s:%s\n",
408                  i, virDomainGetName (interface_devices[i].dom),
409                  interface_devices[i].path);
410 #endif
411
412     /* Get CPU usage, VCPU usage for each domain. */
413     for (i = 0; i < nr_domains; ++i) {
414         virDomainInfo info;
415         virVcpuInfoPtr vinfo = NULL;
416         int j;
417
418         if (virDomainGetInfo (domains[i], &info) != 0)
419             continue;
420
421         cpu_submit (info.cpuTime, domains[i], "virt_cpu_total");
422
423         vinfo = malloc (info.nrVirtCpu * sizeof vinfo[0]);
424         if (vinfo == NULL) {
425             ERROR ("libvirt plugin: malloc failed.");
426             continue;
427         }
428
429         if (virDomainGetVcpus (domains[i], vinfo, info.nrVirtCpu,
430                     NULL, 0) != 0) {
431             sfree (vinfo);
432             continue;
433         }
434
435         for (j = 0; j < info.nrVirtCpu; ++j)
436             vcpu_submit (vinfo[j].cpuTime,
437                     domains[i], vinfo[j].number, "virt_vcpu");
438
439         sfree (vinfo);
440     }
441
442     /* Get block device stats for each domain. */
443     for (i = 0; i < nr_block_devices; ++i) {
444         struct _virDomainBlockStats stats;
445
446         if (virDomainBlockStats (block_devices[i].dom, block_devices[i].path,
447                     &stats, sizeof stats) != 0)
448             continue;
449
450         if ((stats.rd_req != -1) && (stats.wr_req != -1))
451             submit_derive2 ("disk_ops",
452                     (derive_t) stats.rd_req, (derive_t) stats.wr_req,
453                     block_devices[i].dom, block_devices[i].path);
454
455         if ((stats.rd_bytes != -1) && (stats.wr_bytes != -1))
456             submit_derive2 ("disk_octets",
457                     (derive_t) stats.rd_bytes, (derive_t) stats.wr_bytes,
458                     block_devices[i].dom, block_devices[i].path);
459     } /* for (nr_block_devices) */
460
461     /* Get interface stats for each domain. */
462     for (i = 0; i < nr_interface_devices; ++i) {
463         struct _virDomainInterfaceStats stats;
464         char *display_name = interface_devices[i].path;
465
466         if (interface_format == if_address)
467             display_name = interface_devices[i].address;
468
469         if (virDomainInterfaceStats (interface_devices[i].dom,
470                     interface_devices[i].path,
471                     &stats, sizeof stats) != 0)
472             continue;
473
474         if ((stats.rx_bytes != -1) && (stats.tx_bytes != -1))
475             submit_derive2 ("if_octets",
476                     (derive_t) stats.rx_bytes, (derive_t) stats.tx_bytes,
477                     interface_devices[i].dom, display_name);
478
479         if ((stats.rx_packets != -1) && (stats.tx_packets != -1))
480             submit_derive2 ("if_packets",
481                     (derive_t) stats.rx_packets, (derive_t) stats.tx_packets,
482                     interface_devices[i].dom, display_name);
483
484         if ((stats.rx_errs != -1) && (stats.tx_errs != -1))
485             submit_derive2 ("if_errors",
486                     (derive_t) stats.rx_errs, (derive_t) stats.tx_errs,
487                     interface_devices[i].dom, display_name);
488
489         if ((stats.rx_drop != -1) && (stats.tx_drop != -1))
490             submit_derive2 ("if_dropped",
491                     (derive_t) stats.rx_drop, (derive_t) stats.tx_drop,
492                     interface_devices[i].dom, display_name);
493     } /* for (nr_interface_devices) */
494
495     return 0;
496 }
497
498 static int
499 refresh_lists (void)
500 {
501     int n;
502
503     n = virConnectNumOfDomains (conn);
504     if (n < 0) {
505         VIRT_ERROR (conn, "reading number of domains");
506         return -1;
507     }
508
509     if (n > 0) {
510         int i;
511         int *domids;
512
513         /* Get list of domains. */
514         domids = malloc (sizeof (int) * n);
515         if (domids == 0) {
516             ERROR ("libvirt plugin: malloc failed.");
517             return -1;
518         }
519
520         n = virConnectListDomains (conn, domids, n);
521         if (n < 0) {
522             VIRT_ERROR (conn, "reading list of domains");
523             sfree (domids);
524             return -1;
525         }
526
527         free_block_devices ();
528         free_interface_devices ();
529         free_domains ();
530
531         /* Fetch each domain and add it to the list, unless ignore. */
532         for (i = 0; i < n; ++i) {
533             virDomainPtr dom = NULL;
534             const char *name;
535             char *xml = NULL;
536             xmlDocPtr xml_doc = NULL;
537             xmlXPathContextPtr xpath_ctx = NULL;
538             xmlXPathObjectPtr xpath_obj = NULL;
539             int j;
540
541             dom = virDomainLookupByID (conn, domids[i]);
542             if (dom == NULL) {
543                 VIRT_ERROR (conn, "virDomainLookupByID");
544                 /* Could be that the domain went away -- ignore it anyway. */
545                 continue;
546             }
547
548             name = virDomainGetName (dom);
549             if (name == NULL) {
550                 VIRT_ERROR (conn, "virDomainGetName");
551                 goto cont;
552             }
553
554             if (il_domains && ignorelist_match (il_domains, name) != 0)
555                 goto cont;
556
557             if (add_domain (dom) < 0) {
558                 ERROR ("libvirt plugin: malloc failed.");
559                 goto cont;
560             }
561
562             /* Get a list of devices for this domain. */
563             xml = virDomainGetXMLDesc (dom, 0);
564             if (!xml) {
565                 VIRT_ERROR (conn, "virDomainGetXMLDesc");
566                 goto cont;
567             }
568
569             /* Yuck, XML.  Parse out the devices. */
570             xml_doc = xmlReadDoc ((xmlChar *) xml, NULL, NULL, XML_PARSE_NONET);
571             if (xml_doc == NULL) {
572                 VIRT_ERROR (conn, "xmlReadDoc");
573                 goto cont;
574             }
575
576             xpath_ctx = xmlXPathNewContext (xml_doc);
577
578             /* Block devices. */
579             xpath_obj = xmlXPathEval
580                 ((xmlChar *) "/domain/devices/disk/target[@dev]",
581                  xpath_ctx);
582             if (xpath_obj == NULL || xpath_obj->type != XPATH_NODESET ||
583                 xpath_obj->nodesetval == NULL)
584                 goto cont;
585
586             for (j = 0; j < xpath_obj->nodesetval->nodeNr; ++j) {
587                 xmlNodePtr node;
588                 char *path = NULL;
589
590                 node = xpath_obj->nodesetval->nodeTab[j];
591                 if (!node) continue;
592                 path = (char *) xmlGetProp (node, (xmlChar *) "dev");
593                 if (!path) continue;
594
595                 if (il_block_devices &&
596                     ignore_device_match (il_block_devices, name, path) != 0)
597                     goto cont2;
598
599                 add_block_device (dom, path);
600             cont2:
601                 if (path) xmlFree (path);
602             }
603             xmlXPathFreeObject (xpath_obj);
604
605             /* Network interfaces. */
606             xpath_obj = xmlXPathEval
607                 ((xmlChar *) "/domain/devices/interface[target[@dev]]",
608                  xpath_ctx);
609             if (xpath_obj == NULL || xpath_obj->type != XPATH_NODESET ||
610                 xpath_obj->nodesetval == NULL)
611                 goto cont;
612
613             xmlNodeSetPtr xml_interfaces = xpath_obj->nodesetval;
614
615             for (j = 0; j < xml_interfaces->nodeNr; ++j) {
616                 char *path = NULL;
617                 char *address = NULL;
618                 xmlNodePtr xml_interface;
619
620                 xml_interface = xml_interfaces->nodeTab[j];
621                 if (!xml_interface) continue;
622                 xmlNodePtr child = NULL;
623
624                 for (child = xml_interface->children; child; child = child->next) {
625                     if (child->type != XML_ELEMENT_NODE) continue;
626
627                     if (xmlStrEqual(child->name, (const xmlChar *) "target")) {
628                         path = (char *) xmlGetProp (child, (const xmlChar *) "dev");
629                         if (!path) continue;
630                     } else if (xmlStrEqual(child->name, (const xmlChar *) "mac")) {
631                         address = (char *) xmlGetProp (child, (const xmlChar *) "address");
632                         if (!address) continue;
633                     }
634                 }
635
636                 if (il_interface_devices &&
637                     (ignore_device_match (il_interface_devices, name, path) != 0 ||
638                      ignore_device_match (il_interface_devices, name, address) != 0))
639                     goto cont3;
640
641                 add_interface_device (dom, path, address);
642                 cont3:
643                     if (path) xmlFree (path);
644                     if (address) xmlFree (address);
645             }
646
647         cont:
648             if (xpath_obj) xmlXPathFreeObject (xpath_obj);
649             if (xpath_ctx) xmlXPathFreeContext (xpath_ctx);
650             if (xml_doc) xmlFreeDoc (xml_doc);
651             sfree (xml);
652         }
653
654         sfree (domids);
655     }
656
657     return 0;
658 }
659
660 static void
661 free_domains ()
662 {
663     int i;
664
665     if (domains) {
666         for (i = 0; i < nr_domains; ++i)
667             virDomainFree (domains[i]);
668         sfree (domains);
669     }
670     domains = NULL;
671     nr_domains = 0;
672 }
673
674 static int
675 add_domain (virDomainPtr dom)
676 {
677     virDomainPtr *new_ptr;
678     int new_size = sizeof (domains[0]) * (nr_domains+1);
679
680     if (domains)
681         new_ptr = realloc (domains, new_size);
682     else
683         new_ptr = malloc (new_size);
684
685     if (new_ptr == NULL)
686         return -1;
687
688     domains = new_ptr;
689     domains[nr_domains] = dom;
690     return nr_domains++;
691 }
692
693 static void
694 free_block_devices ()
695 {
696     int i;
697
698     if (block_devices) {
699         for (i = 0; i < nr_block_devices; ++i)
700             sfree (block_devices[i].path);
701         sfree (block_devices);
702     }
703     block_devices = NULL;
704     nr_block_devices = 0;
705 }
706
707 static int
708 add_block_device (virDomainPtr dom, const char *path)
709 {
710     struct block_device *new_ptr;
711     int new_size = sizeof (block_devices[0]) * (nr_block_devices+1);
712     char *path_copy;
713
714     path_copy = strdup (path);
715     if (!path_copy)
716         return -1;
717
718     if (block_devices)
719         new_ptr = realloc (block_devices, new_size);
720     else
721         new_ptr = malloc (new_size);
722
723     if (new_ptr == NULL) {
724         sfree (path_copy);
725         return -1;
726     }
727     block_devices = new_ptr;
728     block_devices[nr_block_devices].dom = dom;
729     block_devices[nr_block_devices].path = path_copy;
730     return nr_block_devices++;
731 }
732
733 static void
734 free_interface_devices ()
735 {
736     int i;
737
738     if (interface_devices) {
739         for (i = 0; i < nr_interface_devices; ++i) {
740             sfree (interface_devices[i].path);
741             sfree (interface_devices[i].address);
742         }
743         sfree (interface_devices);
744     }
745     interface_devices = NULL;
746     nr_interface_devices = 0;
747 }
748
749 static int
750 add_interface_device (virDomainPtr dom, const char *path, const char *address)
751 {
752     struct interface_device *new_ptr;
753     int new_size = sizeof (interface_devices[0]) * (nr_interface_devices+1);
754     char *path_copy, *address_copy;
755
756     path_copy = strdup (path);
757     if (!path_copy) return -1;
758
759     address_copy = strdup (address);
760     if (!address_copy) return -1;
761
762     if (interface_devices)
763         new_ptr = realloc (interface_devices, new_size);
764     else
765         new_ptr = malloc (new_size);
766
767     if (new_ptr == NULL) {
768         sfree (path_copy);
769         sfree (address_copy);
770         return -1;
771     }
772     interface_devices = new_ptr;
773     interface_devices[nr_interface_devices].dom = dom;
774     interface_devices[nr_interface_devices].path = path_copy;
775     interface_devices[nr_interface_devices].address = address_copy;
776     return nr_interface_devices++;
777 }
778
779 static int
780 ignore_device_match (ignorelist_t *il, const char *domname, const char *devpath)
781 {
782     char *name;
783     int n, r;
784
785     n = sizeof (char) * (strlen (domname) + strlen (devpath) + 2);
786     name = malloc (n);
787     if (name == NULL) {
788         ERROR ("libvirt plugin: malloc failed.");
789         return 0;
790     }
791     ssnprintf (name, n, "%s:%s", domname, devpath);
792     r = ignorelist_match (il, name);
793     sfree (name);
794     return r;
795 }
796
797 static int
798 lv_shutdown (void)
799 {
800     free_block_devices ();
801     free_interface_devices ();
802     free_domains ();
803
804     if (conn != NULL)
805         virConnectClose (conn);
806     conn = NULL;
807
808     ignorelist_free (il_domains);
809     il_domains = NULL;
810     ignorelist_free (il_block_devices);
811     il_block_devices = NULL;
812     ignorelist_free (il_interface_devices);
813     il_interface_devices = NULL;
814
815     return 0;
816 }
817
818 void
819 module_register (void)
820 {
821     plugin_register_config ("libvirt",
822             lv_config,
823             config_keys, NR_CONFIG_KEYS);
824     plugin_register_init ("libvirt", lv_init);
825     plugin_register_read ("libvirt", lv_read);
826     plugin_register_shutdown ("libvirt", lv_shutdown);
827 }
828
829 /*
830  * vim: shiftwidth=4 tabstop=8 softtabstop=4 expandtab fdm=marker
831  */