ovs_stats: Do not create ports if there is no bridge name
[collectd.git] / src / ovs_stats.c
1 /*
2  * collectd - src/ovs_stats.c
3  *
4  * Copyright(c) 2016 Intel Corporation. All rights reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of
8  * this software and associated documentation files (the "Software"), to deal in
9  * the Software without restriction, including without limitation the rights to
10  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
11  * of the Software, and to permit persons to whom the Software is furnished to
12  * do
13  * so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice shall be included in
16  * all
17  * copies or substantial portions of the Software.
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25  * SOFTWARE.
26  *
27  * Authors:
28  *   Taras Chornyi <tarasx.chornyi@intel.com>
29  */
30
31 #include "common.h"
32
33 #include "utils_ovs.h" /* OvS helpers */
34
35 /* Plugin name */
36 static const char plugin_name[] = "ovs_stats";
37
38 typedef enum iface_counter {
39   not_supported = -1,
40   collisions,
41   rx_bytes,
42   rx_crc_err,
43   rx_dropped,
44   rx_errors,
45   rx_frame_err,
46   rx_over_err,
47   rx_packets,
48   tx_bytes,
49   tx_dropped,
50   tx_errors,
51   tx_packets,
52   rx_1_to_64_packets,
53   rx_65_to_127_packets,
54   rx_128_to_255_packets,
55   rx_256_to_511_packets,
56   rx_512_to_1023_packets,
57   rx_1024_to_1522_packets,
58   rx_1523_to_max_packets,
59   tx_1_to_64_packets,
60   tx_65_to_127_packets,
61   tx_128_to_255_packets,
62   tx_256_to_511_packets,
63   tx_512_to_1023_packets,
64   tx_1024_to_1522_packets,
65   tx_1523_to_max_packets,
66   tx_multicast_packets,
67   rx_broadcast_packets,
68   tx_broadcast_packets,
69   rx_undersized_errors,
70   rx_oversize_errors,
71   rx_fragmented_errors,
72   rx_jabber_errors,
73   __iface_counter_max
74 } iface_counter;
75
76 #define IFACE_COUNTER_MAX (__iface_counter_max - 1)
77 #define IFACE_COUNTER_COUNT (__iface_counter_max)
78 #define PORT_NAME_SIZE_MAX 255
79 #define UUID_SIZE 64
80
81 typedef struct interface_s {
82   char name[PORT_NAME_SIZE_MAX];      /* Interface name */
83   char iface_uuid[UUID_SIZE];         /* Interface table uuid */
84   char ex_iface_id[UUID_SIZE];        /* External iface id */
85   char ex_vm_id[UUID_SIZE];           /* External vm id */
86   int64_t stats[IFACE_COUNTER_COUNT]; /* Statistics for interface */
87   struct interface_s *next;           /* Next interface for associated port */
88 } interface_list_t;
89
90 typedef struct port_s {
91   char name[PORT_NAME_SIZE_MAX]; /* Port name */
92   char port_uuid[UUID_SIZE];     /* Port table _uuid */
93   struct bridge_list_s *br;      /* Pointer to bridge */
94   struct interface_s *iface;     /* Pointer to first interface */
95   struct port_s *next;           /* Next port */
96 } port_list_t;
97
98 typedef struct bridge_list_s {
99   char *name;                 /* Bridge name */
100   struct bridge_list_s *next; /* Next bridge*/
101 } bridge_list_t;
102
103 #define cnt_str(x) [x] = #x
104
105 static const char *const iface_counter_table[IFACE_COUNTER_COUNT] = {
106     cnt_str(collisions),
107     cnt_str(rx_bytes),
108     cnt_str(rx_crc_err),
109     cnt_str(rx_dropped),
110     cnt_str(rx_errors),
111     cnt_str(rx_frame_err),
112     cnt_str(rx_over_err),
113     cnt_str(rx_packets),
114     cnt_str(tx_bytes),
115     cnt_str(tx_dropped),
116     cnt_str(tx_errors),
117     cnt_str(tx_packets),
118     cnt_str(rx_1_to_64_packets),
119     cnt_str(rx_65_to_127_packets),
120     cnt_str(rx_128_to_255_packets),
121     cnt_str(rx_256_to_511_packets),
122     cnt_str(rx_512_to_1023_packets),
123     cnt_str(rx_1024_to_1522_packets),
124     cnt_str(rx_1523_to_max_packets),
125     cnt_str(tx_1_to_64_packets),
126     cnt_str(tx_65_to_127_packets),
127     cnt_str(tx_128_to_255_packets),
128     cnt_str(tx_256_to_511_packets),
129     cnt_str(tx_512_to_1023_packets),
130     cnt_str(tx_1024_to_1522_packets),
131     cnt_str(tx_1523_to_max_packets),
132     cnt_str(tx_multicast_packets),
133     cnt_str(rx_broadcast_packets),
134     cnt_str(tx_broadcast_packets),
135     cnt_str(rx_undersized_errors),
136     cnt_str(rx_oversize_errors),
137     cnt_str(rx_fragmented_errors),
138     cnt_str(rx_jabber_errors),
139 };
140
141 #undef cnt_str
142
143 /* Entry into the list of network bridges */
144 static bridge_list_t *g_bridge_list_head;
145
146 /* Entry into the list of monitored network bridges */
147 static bridge_list_t *g_monitored_bridge_list_head;
148
149 /* entry into the list of network bridges */
150 static port_list_t *g_port_list_head;
151
152 /* lock for statistics cache */
153 static pthread_mutex_t g_stats_lock;
154
155 /* OvS DB socket */
156 static ovs_db_t *g_ovs_db;
157
158 /* OVS stats configuration data */
159 struct ovs_stats_config_s {
160   char ovs_db_node[OVS_DB_ADDR_NODE_SIZE];    /* OVS DB node */
161   char ovs_db_serv[OVS_DB_ADDR_SERVICE_SIZE]; /* OVS DB service */
162   char ovs_db_unix[OVS_DB_ADDR_UNIX_SIZE];    /* OVS DB unix socket path */
163 };
164 typedef struct ovs_stats_config_s ovs_stats_config_t;
165
166 static ovs_stats_config_t ovs_stats_cfg = {
167     .ovs_db_node = "localhost", /* use default OVS DB node */
168     .ovs_db_serv = "6640",      /* use default OVS DB service */
169 };
170
171 /* flag indicating whether or not to publish individual interface statistics */
172 static bool interface_stats = false;
173
174 static iface_counter ovs_stats_counter_name_to_type(const char *counter) {
175   iface_counter index = not_supported;
176
177   if (counter == NULL)
178     return not_supported;
179
180   for (int i = 0; i < IFACE_COUNTER_COUNT; i++) {
181     if (strncmp(iface_counter_table[i], counter,
182                 strlen(iface_counter_table[i])) == 0) {
183       index = i;
184       break;
185     }
186   }
187   return index;
188 }
189
190 static void ovs_stats_submit_one(const char *dev, const char *type,
191                                  const char *type_instance, derive_t value,
192                                  meta_data_t *meta) {
193   /* if counter is less than 0 - skip it*/
194   if (value < 0)
195     return;
196   value_list_t vl = VALUE_LIST_INIT;
197
198   vl.values = &(value_t){.derive = value};
199   vl.values_len = 1;
200   vl.meta = meta;
201
202   sstrncpy(vl.plugin, plugin_name, sizeof(vl.plugin));
203   sstrncpy(vl.plugin_instance, dev, sizeof(vl.plugin_instance));
204   sstrncpy(vl.type, type, sizeof(vl.type));
205
206   if (type_instance != NULL)
207     sstrncpy(vl.type_instance, type_instance, sizeof(vl.type_instance));
208
209   plugin_dispatch_values(&vl);
210 }
211
212 static void ovs_stats_submit_two(const char *dev, const char *type,
213                                  const char *type_instance, derive_t rx,
214                                  derive_t tx, meta_data_t *meta) {
215   /* if counter is less than 0 - skip it*/
216   if (rx < 0 || tx < 0)
217     return;
218   value_list_t vl = VALUE_LIST_INIT;
219   value_t values[] = {{.derive = rx}, {.derive = tx}};
220
221   vl.values = values;
222   vl.values_len = STATIC_ARRAY_SIZE(values);
223   vl.meta = meta;
224
225   sstrncpy(vl.plugin, plugin_name, sizeof(vl.plugin));
226   sstrncpy(vl.plugin_instance, dev, sizeof(vl.plugin_instance));
227   sstrncpy(vl.type, type, sizeof(vl.type));
228
229   if (type_instance != NULL)
230     sstrncpy(vl.type_instance, type_instance, sizeof(vl.type_instance));
231
232   plugin_dispatch_values(&vl);
233 }
234
235 static void ovs_stats_submit_interfaces(bridge_list_t *bridge,
236                                         port_list_t *port) {
237   char devname[PORT_NAME_SIZE_MAX * 2];
238
239   for (interface_list_t *iface = port->iface; iface != NULL;
240        iface = iface->next) {
241     meta_data_t *meta = meta_data_create();
242     if (meta != NULL) {
243       meta_data_add_string(meta, "uuid", iface->iface_uuid);
244
245       if (strlen(iface->ex_vm_id))
246         meta_data_add_string(meta, "vm-uuid", iface->ex_vm_id);
247
248       if (strlen(iface->ex_iface_id))
249         meta_data_add_string(meta, "iface-id", iface->ex_iface_id);
250     }
251     snprintf(devname, sizeof(devname), "%s.%s.%s", bridge->name, port->name,
252              iface->name);
253     ovs_stats_submit_one(devname, "if_collisions", NULL,
254                          iface->stats[collisions], meta);
255     ovs_stats_submit_two(devname, "if_dropped", NULL, iface->stats[rx_dropped],
256                          iface->stats[tx_dropped], meta);
257     ovs_stats_submit_two(devname, "if_errors", NULL, iface->stats[rx_errors],
258                          iface->stats[tx_errors], meta);
259     ovs_stats_submit_two(devname, "if_packets", NULL, iface->stats[rx_packets],
260                          iface->stats[tx_packets], meta);
261     ovs_stats_submit_one(devname, "if_rx_errors", "crc",
262                          iface->stats[rx_crc_err], meta);
263     ovs_stats_submit_one(devname, "if_rx_errors", "frame",
264                          iface->stats[rx_frame_err], meta);
265     ovs_stats_submit_one(devname, "if_rx_errors", "over",
266                          iface->stats[rx_over_err], meta);
267     ovs_stats_submit_one(devname, "if_rx_octets", NULL, iface->stats[rx_bytes],
268                          meta);
269     ovs_stats_submit_one(devname, "if_tx_octets", NULL, iface->stats[tx_bytes],
270                          meta);
271     ovs_stats_submit_two(devname, "if_packets", "1_to_64_packets",
272                          iface->stats[rx_1_to_64_packets],
273                          iface->stats[tx_1_to_64_packets], meta);
274     ovs_stats_submit_two(devname, "if_packets", "65_to_127_packets",
275                          iface->stats[rx_65_to_127_packets],
276                          iface->stats[tx_65_to_127_packets], meta);
277     ovs_stats_submit_two(devname, "if_packets", "128_to_255_packets",
278                          iface->stats[rx_128_to_255_packets],
279                          iface->stats[tx_128_to_255_packets], meta);
280     ovs_stats_submit_two(devname, "if_packets", "256_to_511_packets",
281                          iface->stats[rx_256_to_511_packets],
282                          iface->stats[tx_256_to_511_packets], meta);
283     ovs_stats_submit_two(devname, "if_packets", "512_to_1023_packets",
284                          iface->stats[rx_512_to_1023_packets],
285                          iface->stats[tx_512_to_1023_packets], meta);
286     ovs_stats_submit_two(devname, "if_packets", "1024_to_1522_packets",
287                          iface->stats[rx_1024_to_1522_packets],
288                          iface->stats[tx_1024_to_1522_packets], meta);
289     ovs_stats_submit_two(devname, "if_packets", "1523_to_max_packets",
290                          iface->stats[rx_1523_to_max_packets],
291                          iface->stats[tx_1523_to_max_packets], meta);
292     ovs_stats_submit_two(devname, "if_packets", "broadcast_packets",
293                          iface->stats[rx_broadcast_packets],
294                          iface->stats[tx_broadcast_packets], meta);
295     ovs_stats_submit_one(devname, "if_multicast", "tx_multicast_packets",
296                          iface->stats[tx_multicast_packets], meta);
297     ovs_stats_submit_one(devname, "if_rx_errors", "rx_undersized_errors",
298                          iface->stats[rx_undersized_errors], meta);
299     ovs_stats_submit_one(devname, "if_rx_errors", "rx_oversize_errors",
300                          iface->stats[rx_oversize_errors], meta);
301     ovs_stats_submit_one(devname, "if_rx_errors", "rx_fragmented_errors",
302                          iface->stats[rx_fragmented_errors], meta);
303     ovs_stats_submit_one(devname, "if_rx_errors", "rx_jabber_errors",
304                          iface->stats[rx_jabber_errors], meta);
305
306     meta_data_destroy(meta);
307   }
308 }
309
310 static int ovs_stats_get_port_stat_value(port_list_t *port,
311                                          iface_counter index) {
312   if (port == NULL)
313     return 0;
314
315   int value = 0;
316
317   for (interface_list_t *iface = port->iface; iface != NULL;
318        iface = iface->next) {
319     value = value + iface->stats[index];
320   }
321
322   return value;
323 }
324
325 static void ovs_stats_submit_port(bridge_list_t *bridge, port_list_t *port) {
326   char devname[PORT_NAME_SIZE_MAX * 2];
327
328   meta_data_t *meta = meta_data_create();
329   if (meta != NULL) {
330     char key_str[DATA_MAX_NAME_LEN];
331     int i = 0;
332
333     for (interface_list_t *iface = port->iface; iface != NULL;
334          iface = iface->next) {
335       snprintf(key_str, sizeof(key_str), "uuid%d", i);
336       meta_data_add_string(meta, key_str, iface->iface_uuid);
337
338       if (strlen(iface->ex_vm_id)) {
339         snprintf(key_str, sizeof(key_str), "vm-uuid%d", i);
340         meta_data_add_string(meta, key_str, iface->ex_vm_id);
341       }
342
343       if (strlen(iface->ex_iface_id)) {
344         snprintf(key_str, sizeof(key_str), "iface-id%d", i);
345         meta_data_add_string(meta, key_str, iface->ex_iface_id);
346       }
347
348       i++;
349     }
350   }
351   snprintf(devname, sizeof(devname), "%s.%s", bridge->name, port->name);
352   ovs_stats_submit_one(devname, "if_collisions", NULL,
353                        ovs_stats_get_port_stat_value(port, collisions), meta);
354   ovs_stats_submit_two(devname, "if_dropped", NULL,
355                        ovs_stats_get_port_stat_value(port, rx_dropped),
356                        ovs_stats_get_port_stat_value(port, tx_dropped), meta);
357   ovs_stats_submit_two(devname, "if_errors", NULL,
358                        ovs_stats_get_port_stat_value(port, rx_errors),
359                        ovs_stats_get_port_stat_value(port, tx_errors), meta);
360   ovs_stats_submit_two(devname, "if_packets", NULL,
361                        ovs_stats_get_port_stat_value(port, rx_packets),
362                        ovs_stats_get_port_stat_value(port, tx_packets), meta);
363   ovs_stats_submit_one(devname, "if_rx_errors", "crc",
364                        ovs_stats_get_port_stat_value(port, rx_crc_err), meta);
365   ovs_stats_submit_one(devname, "if_rx_errors", "frame",
366                        ovs_stats_get_port_stat_value(port, rx_frame_err), meta);
367   ovs_stats_submit_one(devname, "if_rx_errors", "over",
368                        ovs_stats_get_port_stat_value(port, rx_over_err), meta);
369   ovs_stats_submit_one(devname, "if_rx_octets", NULL,
370                        ovs_stats_get_port_stat_value(port, rx_bytes), meta);
371   ovs_stats_submit_one(devname, "if_tx_octets", NULL,
372                        ovs_stats_get_port_stat_value(port, tx_bytes), meta);
373   ovs_stats_submit_two(devname, "if_packets", "1_to_64_packets",
374                        ovs_stats_get_port_stat_value(port, rx_1_to_64_packets),
375                        ovs_stats_get_port_stat_value(port, tx_1_to_64_packets),
376                        meta);
377   ovs_stats_submit_two(
378       devname, "if_packets", "65_to_127_packets",
379       ovs_stats_get_port_stat_value(port, rx_65_to_127_packets),
380       ovs_stats_get_port_stat_value(port, tx_65_to_127_packets), meta);
381   ovs_stats_submit_two(
382       devname, "if_packets", "128_to_255_packets",
383       ovs_stats_get_port_stat_value(port, rx_128_to_255_packets),
384       ovs_stats_get_port_stat_value(port, tx_128_to_255_packets), meta);
385   ovs_stats_submit_two(
386       devname, "if_packets", "256_to_511_packets",
387       ovs_stats_get_port_stat_value(port, rx_256_to_511_packets),
388       ovs_stats_get_port_stat_value(port, tx_256_to_511_packets), meta);
389   ovs_stats_submit_two(
390       devname, "if_packets", "512_to_1023_packets",
391       ovs_stats_get_port_stat_value(port, rx_512_to_1023_packets),
392       ovs_stats_get_port_stat_value(port, tx_512_to_1023_packets), meta);
393   ovs_stats_submit_two(
394       devname, "if_packets", "1024_to_1522_packets",
395       ovs_stats_get_port_stat_value(port, rx_1024_to_1522_packets),
396       ovs_stats_get_port_stat_value(port, tx_1024_to_1522_packets), meta);
397   ovs_stats_submit_two(
398       devname, "if_packets", "1523_to_max_packets",
399       ovs_stats_get_port_stat_value(port, rx_1523_to_max_packets),
400       ovs_stats_get_port_stat_value(port, tx_1523_to_max_packets), meta);
401   ovs_stats_submit_two(
402       devname, "if_packets", "broadcast_packets",
403       ovs_stats_get_port_stat_value(port, rx_broadcast_packets),
404       ovs_stats_get_port_stat_value(port, tx_broadcast_packets), meta);
405   ovs_stats_submit_one(
406       devname, "if_multicast", "tx_multicast_packets",
407       ovs_stats_get_port_stat_value(port, tx_multicast_packets), meta);
408   ovs_stats_submit_one(
409       devname, "if_rx_errors", "rx_undersized_errors",
410       ovs_stats_get_port_stat_value(port, rx_undersized_errors), meta);
411   ovs_stats_submit_one(devname, "if_rx_errors", "rx_oversize_errors",
412                        ovs_stats_get_port_stat_value(port, rx_oversize_errors),
413                        meta);
414   ovs_stats_submit_one(
415       devname, "if_rx_errors", "rx_fragmented_errors",
416       ovs_stats_get_port_stat_value(port, rx_fragmented_errors), meta);
417   ovs_stats_submit_one(devname, "if_rx_errors", "rx_jabber_errors",
418                        ovs_stats_get_port_stat_value(port, rx_jabber_errors),
419                        meta);
420
421   meta_data_destroy(meta);
422 }
423
424 static port_list_t *ovs_stats_get_port(const char *uuid) {
425   if (uuid == NULL)
426     return NULL;
427
428   for (port_list_t *port = g_port_list_head; port != NULL; port = port->next) {
429     if (strncmp(port->port_uuid, uuid, strlen(port->port_uuid)) == 0)
430       return port;
431   }
432   return NULL;
433 }
434
435 static port_list_t *ovs_stats_get_port_by_interface_uuid(const char *uuid) {
436   if (uuid == NULL)
437     return NULL;
438
439   for (port_list_t *port = g_port_list_head; port != NULL; port = port->next) {
440     for (interface_list_t *iface = port->iface; iface != NULL;
441          iface = iface->next) {
442       if (strncmp(iface->iface_uuid, uuid, strlen(uuid)) == 0)
443         return port;
444     }
445   }
446   return NULL;
447 }
448
449 static interface_list_t *ovs_stats_get_port_interface(port_list_t *port,
450                                                       const char *uuid) {
451   if (port == NULL || uuid == NULL)
452     return NULL;
453
454   for (interface_list_t *iface = port->iface; iface != NULL;
455        iface = iface->next) {
456     if (strncmp(iface->iface_uuid, uuid, strlen(uuid)) == 0)
457       return iface;
458   }
459   return NULL;
460 }
461
462 static interface_list_t *ovs_stats_get_interface(const char *uuid) {
463   if (uuid == NULL)
464     return NULL;
465
466   for (port_list_t *port = g_port_list_head; port != NULL; port = port->next) {
467     for (interface_list_t *iface = port->iface; iface != NULL;
468          iface = iface->next) {
469       if (strncmp(iface->iface_uuid, uuid, strlen(uuid)) == 0)
470         return iface;
471     }
472   }
473   return NULL;
474 }
475
476 static interface_list_t *ovs_stats_new_port_interface(port_list_t *port,
477                                                       const char *uuid) {
478   if (uuid == NULL)
479     return NULL;
480
481   interface_list_t *iface = ovs_stats_get_port_interface(port, uuid);
482
483   if (iface == NULL) {
484     iface = (interface_list_t *)calloc(1, sizeof(interface_list_t));
485     if (!iface) {
486       ERROR("%s: Error allocating interface", plugin_name);
487       return NULL;
488     }
489     memset(iface->stats, -1, sizeof(int64_t[IFACE_COUNTER_COUNT]));
490     sstrncpy(iface->iface_uuid, uuid, sizeof(iface->iface_uuid));
491     pthread_mutex_lock(&g_stats_lock);
492     interface_list_t *iface_head = port->iface;
493     iface->next = iface_head;
494     port->iface = iface;
495     pthread_mutex_unlock(&g_stats_lock);
496   }
497   return iface;
498 }
499
500 /* Create or get port by port uuid */
501 static port_list_t *ovs_stats_new_port(bridge_list_t *bridge,
502                                        const char *uuid) {
503   if (uuid == NULL)
504     return NULL;
505
506   port_list_t *port = ovs_stats_get_port(uuid);
507
508   if (port == NULL) {
509     port = (port_list_t *)calloc(1, sizeof(port_list_t));
510     if (!port) {
511       ERROR("%s: Error allocating port", plugin_name);
512       return NULL;
513     }
514     sstrncpy(port->port_uuid, uuid, sizeof(port->port_uuid));
515     pthread_mutex_lock(&g_stats_lock);
516     port->next = g_port_list_head;
517     g_port_list_head = port;
518     pthread_mutex_unlock(&g_stats_lock);
519   }
520   if (bridge != NULL) {
521     pthread_mutex_lock(&g_stats_lock);
522     port->br = bridge;
523     pthread_mutex_unlock(&g_stats_lock);
524   }
525   return port;
526 }
527
528 /* Get bridge by name*/
529 static bridge_list_t *ovs_stats_get_bridge(bridge_list_t *head,
530                                            const char *name) {
531   if (name == NULL)
532     return NULL;
533
534   for (bridge_list_t *bridge = head; bridge != NULL; bridge = bridge->next) {
535     if ((strncmp(bridge->name, name, strlen(bridge->name)) == 0) &&
536         strlen(name) == strlen(bridge->name))
537       return bridge;
538   }
539   return NULL;
540 }
541
542 /* Delete bridge */
543 static int ovs_stats_del_bridge(yajl_val bridge) {
544   const char *old[] = {"old", NULL};
545   const char *name[] = {"name", NULL};
546
547   if (!bridge || !YAJL_IS_OBJECT(bridge)) {
548     WARNING("%s: Incorrect data for deleting bridge", plugin_name);
549     return 0;
550   }
551
552   yajl_val row = yajl_tree_get(bridge, old, yajl_t_object);
553   if (!row || !YAJL_IS_OBJECT(row))
554     return 0;
555
556   yajl_val br_name = yajl_tree_get(row, name, yajl_t_string);
557   if (!br_name || !YAJL_IS_STRING(br_name))
558     return 0;
559
560   bridge_list_t *prev_br = g_bridge_list_head;
561   for (bridge_list_t *br = g_bridge_list_head; br != NULL;
562        prev_br = br, br = br->next) {
563     if ((strncmp(br->name, br_name->u.string, strlen(br->name)) == 0) &&
564         strlen(br->name) == strlen(br_name->u.string)) {
565       if (br == g_bridge_list_head)
566         g_bridge_list_head = br->next;
567       else
568         prev_br->next = br->next;
569       sfree(br->name);
570       sfree(br);
571       break;
572     }
573   }
574   return 0;
575 }
576
577 /* Update Bridge. Create bridge ports*/
578 static int ovs_stats_update_bridge(yajl_val bridge) {
579   const char *new[] = {"new", NULL};
580   const char *name[] = {"name", NULL};
581   const char *ports[] = {"ports", NULL};
582
583   if (!bridge || !YAJL_IS_OBJECT(bridge))
584     goto failure;
585
586   yajl_val row = yajl_tree_get(bridge, new, yajl_t_object);
587   if (!row || !YAJL_IS_OBJECT(row))
588     return 0;
589
590   yajl_val br_name = yajl_tree_get(row, name, yajl_t_string);
591   if (!br_name || !YAJL_IS_STRING(br_name))
592     return 0;
593
594   bridge_list_t *br =
595       ovs_stats_get_bridge(g_bridge_list_head, YAJL_GET_STRING(br_name));
596   pthread_mutex_lock(&g_stats_lock);
597   if (br == NULL) {
598     br = calloc(1, sizeof(*br));
599     if (!br) {
600       pthread_mutex_unlock(&g_stats_lock);
601       ERROR("%s: calloc(%zu) failed.", plugin_name, sizeof(*br));
602       return -1;
603     }
604
605     char *tmp = YAJL_GET_STRING(br_name);
606     if (tmp != NULL)
607       br->name = strdup(tmp);
608
609     if (br->name == NULL) {
610       sfree(br);
611       pthread_mutex_unlock(&g_stats_lock);
612       ERROR("%s: strdup failed.", plugin_name);
613       return -1;
614     }
615
616     br->next = g_bridge_list_head;
617     g_bridge_list_head = br;
618   }
619   pthread_mutex_unlock(&g_stats_lock);
620
621   yajl_val br_ports = yajl_tree_get(row, ports, yajl_t_array);
622   if (!br_ports || !YAJL_IS_ARRAY(br_ports))
623     return 0;
624
625   char *tmp = YAJL_GET_STRING(br_ports->u.array.values[0]);
626   if (tmp != NULL && strcmp("set", tmp) == 0) {
627     yajl_val *array = YAJL_GET_ARRAY(br_ports)->values;
628     size_t array_len = YAJL_GET_ARRAY(br_ports)->len;
629     if (array != NULL && array_len > 0 && YAJL_IS_ARRAY(array[1])) {
630       if (YAJL_GET_ARRAY(array[1]) == NULL)
631         goto failure;
632
633       yajl_val *ports_arr = YAJL_GET_ARRAY(array[1])->values;
634       size_t ports_num = YAJL_GET_ARRAY(array[1])->len;
635       for (size_t i = 0; i < ports_num && ports_arr != NULL; i++) {
636         tmp = YAJL_GET_STRING(ports_arr[i]->u.array.values[1]);
637         if (tmp != NULL)
638           ovs_stats_new_port(br, tmp);
639         else
640           goto failure;
641       }
642     }
643   } else {
644     ovs_stats_new_port(br, YAJL_GET_STRING(br_ports->u.array.values[1]));
645   }
646
647   return 0;
648
649 failure:
650   ERROR("Incorrect JSON Bridge data");
651   return -1;
652 }
653
654 /* Handle JSON with Bridge Table change event */
655 static void ovs_stats_bridge_table_change_cb(yajl_val jupdates) {
656   /* Bridge Table update example JSON data
657     {
658       "Bridge": {
659         "bb1f8965-5775-46d9-b820-236ca8edbedc": {
660           "new": {
661             "name": "br0",
662             "ports": [
663               "set",
664               [
665                 [
666                   "uuid",
667                   "117f1a07-7ef0-458a-865c-ec7fbb85bc01"
668                 ],
669                 [
670                   "uuid",
671                   "12fd8bdc-e950-4281-aaa9-46e185658f79"
672                 ]
673               ]
674             ]
675           }
676         }
677       }
678     }
679    */
680   const char *path[] = {"Bridge", NULL};
681   yajl_val bridges = yajl_tree_get(jupdates, path, yajl_t_object);
682
683   if (!bridges || !YAJL_IS_OBJECT(bridges))
684     return;
685
686   for (size_t i = 0; i < YAJL_GET_OBJECT(bridges)->len; i++) {
687     yajl_val bridge = YAJL_GET_OBJECT(bridges)->values[i];
688     ovs_stats_update_bridge(bridge);
689   }
690 }
691
692 /* Handle Bridge Table delete event */
693 static void ovs_stats_bridge_table_delete_cb(yajl_val jupdates) {
694   const char *path[] = {"Bridge", NULL};
695   yajl_val bridges = yajl_tree_get(jupdates, path, yajl_t_object);
696   if (!bridges || !YAJL_IS_OBJECT(bridges))
697     return;
698
699   pthread_mutex_lock(&g_stats_lock);
700   for (size_t i = 0; i < YAJL_GET_OBJECT(bridges)->len; i++) {
701     yajl_val bridge = YAJL_GET_OBJECT(bridges)->values[i];
702     ovs_stats_del_bridge(bridge);
703   }
704   pthread_mutex_unlock(&g_stats_lock);
705 }
706
707 /* Handle JSON with Bridge table initial values */
708 static void ovs_stats_bridge_table_result_cb(yajl_val jresult,
709                                              yajl_val jerror) {
710   if (YAJL_IS_NULL(jerror))
711     ovs_stats_bridge_table_change_cb(jresult);
712   else
713     ERROR("%s: Error received from OvSDB. Table: Bridge", plugin_name);
714   return;
715 }
716
717 /* Update port name and interface UUID(s)*/
718 static int ovs_stats_update_port(const char *uuid, yajl_val port) {
719   const char *new[] = {"new", NULL};
720   const char *name[] = {"name", NULL};
721
722   if (!port || !YAJL_IS_OBJECT(port)) {
723     ERROR("Incorrect JSON Port data");
724     return -1;
725   }
726
727   yajl_val row = yajl_tree_get(port, new, yajl_t_object);
728   if (!row || !YAJL_IS_OBJECT(row))
729     return 0;
730
731   yajl_val port_name = yajl_tree_get(row, name, yajl_t_string);
732   if (!port_name || !YAJL_IS_STRING(port_name))
733     return 0;
734
735   /* Create or get port by port uuid */
736   port_list_t *portentry = ovs_stats_new_port(NULL, uuid);
737   if (!portentry)
738     return 0;
739
740   pthread_mutex_lock(&g_stats_lock);
741   sstrncpy(portentry->name, YAJL_GET_STRING(port_name),
742            sizeof(portentry->name));
743   pthread_mutex_unlock(&g_stats_lock);
744
745   yajl_val ifaces_root = ovs_utils_get_value_by_key(row, "interfaces");
746   char *ifaces_root_key =
747       YAJL_GET_STRING(YAJL_GET_ARRAY(ifaces_root)->values[0]);
748
749   if (strcmp("set", ifaces_root_key) == 0) {
750     // ifaces_root is ["set", [[ "uuid", "<some_uuid>" ], [ "uuid",
751     // "<another_uuid>" ], ... ]]
752     yajl_val ifaces_list = YAJL_GET_ARRAY(ifaces_root)->values[1];
753
754     // ifaces_list is [[ "uuid", "<some_uuid>" ], [ "uuid",
755     // "<another_uuid>" ], ... ]]
756     for (int i = 0; i < YAJL_GET_ARRAY(ifaces_list)->len; i++) {
757       yajl_val iface_tuple = YAJL_GET_ARRAY(ifaces_list)->values[i];
758
759       // iface_tuple is [ "uuid", "<some_uuid>" ]
760       char *iface_uuid_str =
761           YAJL_GET_STRING(YAJL_GET_ARRAY(iface_tuple)->values[1]);
762
763       // Also checks if interface already registered
764       ovs_stats_new_port_interface(portentry, iface_uuid_str);
765     }
766   } else {
767     // ifaces_root is [ "uuid", "<some_uuid>" ]
768     char *iface_uuid_str =
769         YAJL_GET_STRING(YAJL_GET_ARRAY(ifaces_root)->values[1]);
770
771     // Also checks if interface already registered
772     ovs_stats_new_port_interface(portentry, iface_uuid_str);
773   }
774
775   return 0;
776 }
777
778 /* Delete port from global port list */
779 static int ovs_stats_del_port(const char *uuid) {
780   port_list_t *prev_port = g_port_list_head;
781   for (port_list_t *port = g_port_list_head; port != NULL;
782        prev_port = port, port = port->next) {
783     if (strncmp(port->port_uuid, uuid, strlen(port->port_uuid)) == 0) {
784       if (port == g_port_list_head)
785         g_port_list_head = port->next;
786       else
787         prev_port->next = port->next;
788
789       for (interface_list_t *iface = port->iface; iface != NULL;
790            iface = port->iface) {
791         interface_list_t *del = iface;
792         port->iface = iface->next;
793         sfree(del);
794       }
795
796       sfree(port);
797       break;
798     }
799   }
800   return 0;
801 }
802
803 /* Handle JSON with Port Table change event */
804 static void ovs_stats_port_table_change_cb(yajl_val jupdates) {
805   /* Port Table update example JSON data
806     {
807       "Port": {
808         "ab107d6f-28a1-4257-b1cc-5b742821db8a": {
809           "new": {
810             "name": "br1",
811             "interfaces": [
812               "uuid",
813               "33a289a0-1d34-4e46-a3c2-3e4066fbecc6"
814             ]
815           }
816         }
817       }
818     }
819    */
820   const char *path[] = {"Port", NULL};
821   yajl_val ports = yajl_tree_get(jupdates, path, yajl_t_object);
822   if (!ports || !YAJL_IS_OBJECT(ports))
823     return;
824
825   for (size_t i = 0; i < YAJL_GET_OBJECT(ports)->len; i++) {
826     yajl_val port = YAJL_GET_OBJECT(ports)->values[i];
827     ovs_stats_update_port(YAJL_GET_OBJECT(ports)->keys[i], port);
828   }
829   return;
830 }
831
832 /* Handle JSON with Port table initial values */
833 static void ovs_stats_port_table_result_cb(yajl_val jresult, yajl_val jerror) {
834   if (YAJL_IS_NULL(jerror))
835     ovs_stats_port_table_change_cb(jresult);
836   else
837     ERROR("%s: Error received from OvSDB. Table: Port", plugin_name);
838   return;
839 }
840
841 /* Handle Port Table delete event */
842 static void ovs_stats_port_table_delete_cb(yajl_val jupdates) {
843   const char *path[] = {"Port", NULL};
844   yajl_val ports = yajl_tree_get(jupdates, path, yajl_t_object);
845   if (!ports || !YAJL_IS_OBJECT(ports))
846     return;
847
848   pthread_mutex_lock(&g_stats_lock);
849   for (size_t i = 0; i < YAJL_GET_OBJECT(ports)->len; i++) {
850     ovs_stats_del_port(YAJL_GET_OBJECT(ports)->keys[i]);
851   }
852   pthread_mutex_unlock(&g_stats_lock);
853   return;
854 }
855
856 /* Update interface statistics */
857 static int ovs_stats_update_iface_stats(interface_list_t *iface,
858                                         yajl_val stats) {
859
860   if (!stats || !YAJL_IS_ARRAY(stats))
861     return 0;
862
863   for (size_t i = 0; i < YAJL_GET_ARRAY(stats)->len; i++) {
864     yajl_val stat = YAJL_GET_ARRAY(stats)->values[i];
865     if (!YAJL_IS_ARRAY(stat))
866       return -1;
867
868     char *counter_name = YAJL_GET_STRING(YAJL_GET_ARRAY(stat)->values[0]);
869     iface_counter counter_index = ovs_stats_counter_name_to_type(counter_name);
870     int64_t counter_value = YAJL_GET_INTEGER(YAJL_GET_ARRAY(stat)->values[1]);
871     if (counter_index == not_supported)
872       continue;
873
874     iface->stats[counter_index] = counter_value;
875   }
876
877   return 0;
878 }
879
880 /* Update interface external_ids */
881 static int ovs_stats_update_iface_ext_ids(interface_list_t *iface,
882                                           yajl_val ext_ids) {
883
884   if (ext_ids && YAJL_IS_ARRAY(ext_ids)) {
885     for (size_t i = 0; i < YAJL_GET_ARRAY(ext_ids)->len; i++) {
886       yajl_val ext_id = YAJL_GET_ARRAY(ext_ids)->values[i];
887       if (!YAJL_IS_ARRAY(ext_id))
888         return -1;
889
890       char *key = YAJL_GET_STRING(YAJL_GET_ARRAY(ext_id)->values[0]);
891       char *value = YAJL_GET_STRING(YAJL_GET_ARRAY(ext_id)->values[1]);
892       if (key && value) {
893         if (strncmp(key, "iface-id", strlen(key)) == 0) {
894           sstrncpy(iface->ex_iface_id, value, sizeof(iface->ex_iface_id));
895         } else if (strncmp(key, "vm-uuid", strlen(key)) == 0) {
896           sstrncpy(iface->ex_vm_id, value, sizeof(iface->ex_vm_id));
897         }
898       }
899     }
900   }
901
902   return 0;
903 }
904
905 /* Get interface statistic and external_ids */
906 static int ovs_stats_update_iface(yajl_val iface_obj) {
907   if (!iface_obj || !YAJL_IS_OBJECT(iface_obj)) {
908     ERROR("ovs_stats plugin: incorrect JSON interface data");
909     return -1;
910   }
911
912   yajl_val row = ovs_utils_get_value_by_key(iface_obj, "new");
913   if (!row || !YAJL_IS_OBJECT(row))
914     return 0;
915
916   yajl_val iface_name = ovs_utils_get_value_by_key(row, "name");
917   if (!iface_name || !YAJL_IS_STRING(iface_name))
918     return 0;
919
920   yajl_val iface_uuid = ovs_utils_get_value_by_key(row, "_uuid");
921   if (!iface_uuid || !YAJL_IS_ARRAY(iface_uuid) ||
922       YAJL_GET_ARRAY(iface_uuid)->len != 2)
923     return 0;
924
925   char *iface_uuid_str = YAJL_GET_STRING(YAJL_GET_ARRAY(iface_uuid)->values[1]);
926   if (iface_uuid_str == NULL) {
927     ERROR("ovs_stats plugin: incorrect JSON interface data");
928     return -1;
929   }
930
931   interface_list_t *iface = ovs_stats_get_interface(iface_uuid_str);
932   if (iface == NULL)
933     return 0;
934
935   sstrncpy(iface->name, YAJL_GET_STRING(iface_name), sizeof(iface->name));
936
937   yajl_val iface_stats = ovs_utils_get_value_by_key(row, "statistics");
938   yajl_val iface_ext_ids = ovs_utils_get_value_by_key(row, "external_ids");
939
940   /*
941    * {
942         "statistics": [
943           "map",
944           [
945             [
946               "collisions",
947               0
948             ],
949             . . .
950             [
951               "tx_packets",
952               0
953             ]
954           ]
955         ]
956       }
957    Check that statistics is an array with 2 elements
958    */
959
960   if (iface_stats && YAJL_IS_ARRAY(iface_stats) &&
961       YAJL_GET_ARRAY(iface_stats)->len == 2)
962     ovs_stats_update_iface_stats(iface, YAJL_GET_ARRAY(iface_stats)->values[1]);
963
964   if (iface_ext_ids && YAJL_IS_ARRAY(iface_ext_ids))
965     ovs_stats_update_iface_ext_ids(iface,
966                                    YAJL_GET_ARRAY(iface_ext_ids)->values[1]);
967
968   return 0;
969 }
970
971 /* Delete interface */
972 static int ovs_stats_del_interface(const char *uuid) {
973   port_list_t *port = ovs_stats_get_port_by_interface_uuid(uuid);
974
975   if (port == NULL)
976     return 0;
977
978   interface_list_t *prev_iface = NULL;
979
980   for (interface_list_t *iface = port->iface; iface != NULL;
981        iface = port->iface) {
982     if (strncmp(iface->iface_uuid, uuid, strlen(iface->iface_uuid))) {
983
984       interface_list_t *del = iface;
985
986       if (prev_iface == NULL)
987         port->iface = iface->next;
988       else
989         prev_iface->next = iface->next;
990
991       sfree(del);
992       break;
993     } else {
994       prev_iface = iface;
995     }
996   }
997
998   return 0;
999 }
1000
1001 /* Handle JSON with Interface Table change event */
1002 static void ovs_stats_interface_table_change_cb(yajl_val jupdates) {
1003   /* Interface Table update example JSON data
1004     {
1005       "Interface": {
1006         "33a289a0-1d34-4e46-a3c2-3e4066fbecc6": {
1007           "new": {
1008             "name": "br1",
1009             "statistics": [
1010               "map",
1011               [
1012                 [
1013                   "collisions",
1014                   0
1015                 ],
1016                 [
1017                   "rx_bytes",
1018                   0
1019                 ],
1020                . . .
1021                 [
1022                   "tx_packets",
1023                   12617
1024                 ]
1025               ]
1026             ],
1027             "_uuid": [
1028               "uuid",
1029               "33a289a0-1d34-4e46-a3c2-3e4066fbecc6"
1030             ]
1031             "external_ids": [
1032                 "map",
1033                 [
1034                   [
1035                     "attached-mac",
1036                     "fa:16:3e:7c:1c:4b"
1037                   ],
1038                   [
1039                     "iface-id",
1040                     "a61b7e2b-6951-488a-b4c6-6e91343960b2"
1041                   ],
1042                   [
1043                     "iface-status",
1044                     "active"
1045                   ]
1046                 ]
1047               ]
1048           }
1049         }
1050       }
1051     }
1052    */
1053   const char *path[] = {"Interface", NULL};
1054   yajl_val interfaces = yajl_tree_get(jupdates, path, yajl_t_object);
1055   if (!interfaces || !YAJL_IS_OBJECT(interfaces))
1056     return;
1057
1058   pthread_mutex_lock(&g_stats_lock);
1059   for (size_t i = 0; i < YAJL_GET_OBJECT(interfaces)->len; i++) {
1060     ovs_stats_update_iface(YAJL_GET_OBJECT(interfaces)->values[i]);
1061   }
1062   pthread_mutex_unlock(&g_stats_lock);
1063
1064   return;
1065 }
1066
1067 /* Handle JSON with Interface table initial values */
1068 static void ovs_stats_interface_table_result_cb(yajl_val jresult,
1069                                                 yajl_val jerror) {
1070   if (YAJL_IS_NULL(jerror))
1071     ovs_stats_interface_table_change_cb(jresult);
1072   else
1073     ERROR("%s: Error received from OvSDB. Table: Interface", plugin_name);
1074   return;
1075 }
1076
1077 /* Handle Interface Table delete event */
1078 static void ovs_stats_interface_table_delete_cb(yajl_val jupdates) {
1079   const char *path[] = {"Interface", NULL};
1080   yajl_val interfaces = yajl_tree_get(jupdates, path, yajl_t_object);
1081   if (!interfaces || !YAJL_IS_OBJECT(interfaces))
1082     return;
1083
1084   pthread_mutex_lock(&g_stats_lock);
1085   for (size_t i = 0; i < YAJL_GET_OBJECT(interfaces)->len; i++) {
1086     ovs_stats_del_interface(YAJL_GET_OBJECT(interfaces)->keys[i]);
1087   }
1088   pthread_mutex_unlock(&g_stats_lock);
1089
1090   return;
1091 }
1092
1093 /* Setup OVS DB table callbacks  */
1094 static void ovs_stats_initialize(ovs_db_t *pdb) {
1095   const char *bridge_columns[] = {"name", "ports", NULL};
1096   const char *port_columns[] = {"name", "interfaces", NULL};
1097   const char *interface_columns[] = {"name", "statistics", "_uuid",
1098                                      "external_ids", NULL};
1099
1100   /* subscribe to a tables */
1101   ovs_db_table_cb_register(
1102       pdb, "Bridge", bridge_columns, ovs_stats_bridge_table_change_cb,
1103       ovs_stats_bridge_table_result_cb,
1104       OVS_DB_TABLE_CB_FLAG_INITIAL | OVS_DB_TABLE_CB_FLAG_INSERT |
1105           OVS_DB_TABLE_CB_FLAG_MODIFY);
1106
1107   ovs_db_table_cb_register(pdb, "Bridge", bridge_columns,
1108                            ovs_stats_bridge_table_delete_cb, NULL,
1109                            OVS_DB_TABLE_CB_FLAG_DELETE);
1110
1111   ovs_db_table_cb_register(
1112       pdb, "Port", port_columns, ovs_stats_port_table_change_cb,
1113       ovs_stats_port_table_result_cb,
1114       OVS_DB_TABLE_CB_FLAG_INITIAL | OVS_DB_TABLE_CB_FLAG_INSERT |
1115           OVS_DB_TABLE_CB_FLAG_MODIFY);
1116
1117   ovs_db_table_cb_register(pdb, "Port", port_columns,
1118                            ovs_stats_port_table_delete_cb, NULL,
1119                            OVS_DB_TABLE_CB_FLAG_DELETE);
1120
1121   ovs_db_table_cb_register(
1122       pdb, "Interface", interface_columns, ovs_stats_interface_table_change_cb,
1123       ovs_stats_interface_table_result_cb,
1124       OVS_DB_TABLE_CB_FLAG_INITIAL | OVS_DB_TABLE_CB_FLAG_INSERT |
1125           OVS_DB_TABLE_CB_FLAG_MODIFY);
1126
1127   ovs_db_table_cb_register(pdb, "Interface", interface_columns,
1128                            ovs_stats_interface_table_delete_cb, NULL,
1129                            OVS_DB_TABLE_CB_FLAG_DELETE);
1130 }
1131
1132 /* Check if bridge is configured to be monitored in config file */
1133 static int ovs_stats_is_monitored_bridge(const char *br_name) {
1134   /* if no bridges are configured, return true */
1135   if (g_monitored_bridge_list_head == NULL)
1136     return 1;
1137
1138   /* check if given bridge exists */
1139   if (ovs_stats_get_bridge(g_monitored_bridge_list_head, br_name) != NULL)
1140     return 1;
1141
1142   return 0;
1143 }
1144
1145 /* Delete all ports from port list */
1146 static void ovs_stats_free_port_list(port_list_t *head) {
1147   for (port_list_t *i = head; i != NULL;) {
1148     port_list_t *del = i;
1149
1150     for (interface_list_t *iface = i->iface; iface != NULL; iface = i->iface) {
1151       interface_list_t *del2 = iface;
1152       i->iface = iface->next;
1153       sfree(del2);
1154     }
1155
1156     i = i->next;
1157     sfree(del);
1158   }
1159 }
1160
1161 /* Delete all bridges from bridge list */
1162 static void ovs_stats_free_bridge_list(bridge_list_t *head) {
1163   for (bridge_list_t *i = head; i != NULL;) {
1164     bridge_list_t *del = i;
1165     i = i->next;
1166     sfree(del->name);
1167     sfree(del);
1168   }
1169 }
1170
1171 /* Handle OVSDB lost connection callback */
1172 static void ovs_stats_conn_terminate() {
1173   WARNING("Lost connection to OVSDB server");
1174   pthread_mutex_lock(&g_stats_lock);
1175   ovs_stats_free_bridge_list(g_bridge_list_head);
1176   g_bridge_list_head = NULL;
1177   ovs_stats_free_port_list(g_port_list_head);
1178   g_port_list_head = NULL;
1179   pthread_mutex_unlock(&g_stats_lock);
1180 }
1181
1182 /* Parse plugin configuration file and store the config
1183  * in allocated memory. Returns negative value in case of error.
1184  */
1185 static int ovs_stats_plugin_config(oconfig_item_t *ci) {
1186   bridge_list_t *bridge;
1187
1188   for (int i = 0; i < ci->children_num; i++) {
1189     oconfig_item_t *child = ci->children + i;
1190     if (strcasecmp("Address", child->key) == 0) {
1191       if (cf_util_get_string_buffer(child, ovs_stats_cfg.ovs_db_node,
1192                                     OVS_DB_ADDR_NODE_SIZE) != 0) {
1193         ERROR("%s: parse '%s' option failed", plugin_name, child->key);
1194         return -1;
1195       }
1196     } else if (strcasecmp("Port", child->key) == 0) {
1197       if (cf_util_get_string_buffer(child, ovs_stats_cfg.ovs_db_serv,
1198                                     OVS_DB_ADDR_SERVICE_SIZE) != 0) {
1199         ERROR("%s: parse '%s' option failed", plugin_name, child->key);
1200         return -1;
1201       }
1202     } else if (strcasecmp("Socket", child->key) == 0) {
1203       if (cf_util_get_string_buffer(child, ovs_stats_cfg.ovs_db_unix,
1204                                     OVS_DB_ADDR_UNIX_SIZE) != 0) {
1205         ERROR("%s: parse '%s' option failed", plugin_name, child->key);
1206         return -1;
1207       }
1208     } else if (strcasecmp("Bridges", child->key) == 0) {
1209       for (int j = 0; j < child->values_num; j++) {
1210         /* check value type */
1211         if (child->values[j].type != OCONFIG_TYPE_STRING) {
1212           ERROR("%s: Wrong bridge name [idx=%d]. "
1213                 "Bridge name should be string",
1214                 plugin_name, j);
1215           goto cleanup_fail;
1216         }
1217         /* get value */
1218         char const *br_name = child->values[j].value.string;
1219         if ((bridge = ovs_stats_get_bridge(g_monitored_bridge_list_head,
1220                                            br_name)) == NULL) {
1221           if ((bridge = calloc(1, sizeof(bridge_list_t))) == NULL) {
1222             ERROR("%s: Error allocating memory for bridge", plugin_name);
1223             goto cleanup_fail;
1224           } else {
1225             char *br_name_dup = strdup(br_name);
1226             if (br_name_dup == NULL) {
1227               ERROR("%s: strdup() copy bridge name fail", plugin_name);
1228               sfree(bridge);
1229               goto cleanup_fail;
1230             }
1231
1232             pthread_mutex_lock(&g_stats_lock);
1233             /* store bridge name */
1234             bridge->name = br_name_dup;
1235             bridge->next = g_monitored_bridge_list_head;
1236             g_monitored_bridge_list_head = bridge;
1237             pthread_mutex_unlock(&g_stats_lock);
1238             DEBUG("%s: found monitored interface \"%s\"", plugin_name, br_name);
1239           }
1240         }
1241       }
1242     } else if (strcasecmp("InterfaceStats", child->key) == 0) {
1243       if (cf_util_get_boolean(child, &interface_stats) != 0) {
1244         ERROR("%s: parse '%s' option failed", plugin_name, child->key);
1245         return -1;
1246       }
1247     } else {
1248       WARNING("%s: option '%s' not allowed here", plugin_name, child->key);
1249       goto cleanup_fail;
1250     }
1251   }
1252   return 0;
1253
1254 cleanup_fail:
1255   ovs_stats_free_bridge_list(g_monitored_bridge_list_head);
1256   return -1;
1257 }
1258
1259 /* Initialize OvS Stats plugin*/
1260 static int ovs_stats_plugin_init(void) {
1261   ovs_db_callback_t cb = {.post_conn_init = ovs_stats_initialize,
1262                           .post_conn_terminate = ovs_stats_conn_terminate};
1263
1264   INFO("%s: Connecting to OVS DB using address=%s, service=%s, unix=%s",
1265        plugin_name, ovs_stats_cfg.ovs_db_node, ovs_stats_cfg.ovs_db_serv,
1266        ovs_stats_cfg.ovs_db_unix);
1267   /* connect to OvS DB */
1268   if ((g_ovs_db =
1269            ovs_db_init(ovs_stats_cfg.ovs_db_node, ovs_stats_cfg.ovs_db_serv,
1270                        ovs_stats_cfg.ovs_db_unix, &cb)) == NULL) {
1271     ERROR("%s: plugin: failed to connect to OvS DB server", plugin_name);
1272     return -1;
1273   }
1274   int err = pthread_mutex_init(&g_stats_lock, NULL);
1275   if (err < 0) {
1276     ERROR("%s: plugin: failed to initialize cache lock", plugin_name);
1277     ovs_db_destroy(g_ovs_db);
1278     return -1;
1279   }
1280   return 0;
1281 }
1282
1283 /* OvS stats read callback. Read bridge/port information and submit it*/
1284 static int ovs_stats_plugin_read(__attribute__((unused)) user_data_t *ud) {
1285   bridge_list_t *bridge;
1286   port_list_t *port;
1287
1288   pthread_mutex_lock(&g_stats_lock);
1289   for (bridge = g_bridge_list_head; bridge != NULL; bridge = bridge->next) {
1290     if (!ovs_stats_is_monitored_bridge(bridge->name))
1291       continue;
1292
1293     for (port = g_port_list_head; port != NULL; port = port->next) {
1294       if (port->br != bridge)
1295         continue;
1296
1297       if (strlen(port->name) == 0)
1298         /* Skip port w/o name. This is possible when read callback
1299          * is called after Interface Table update callback but before
1300          * Port table Update callback. Will add this port on next read */
1301         continue;
1302
1303       ovs_stats_submit_port(bridge, port);
1304
1305       if (interface_stats)
1306         ovs_stats_submit_interfaces(bridge, port);
1307     }
1308   }
1309   pthread_mutex_unlock(&g_stats_lock);
1310   return 0;
1311 }
1312
1313 /* Shutdown OvS Stats plugin */
1314 static int ovs_stats_plugin_shutdown(void) {
1315   DEBUG("OvS Statistics plugin shutting down");
1316   ovs_db_destroy(g_ovs_db);
1317   pthread_mutex_lock(&g_stats_lock);
1318   ovs_stats_free_bridge_list(g_bridge_list_head);
1319   ovs_stats_free_bridge_list(g_monitored_bridge_list_head);
1320   ovs_stats_free_port_list(g_port_list_head);
1321   pthread_mutex_unlock(&g_stats_lock);
1322   pthread_mutex_destroy(&g_stats_lock);
1323   return 0;
1324 }
1325
1326 /* Register OvS Stats plugin callbacks */
1327 void module_register(void) {
1328   plugin_register_complex_config(plugin_name, ovs_stats_plugin_config);
1329   plugin_register_init(plugin_name, ovs_stats_plugin_init);
1330   plugin_register_complex_read(NULL, plugin_name, ovs_stats_plugin_read, 0,
1331                                NULL);
1332   plugin_register_shutdown(plugin_name, ovs_stats_plugin_shutdown);
1333 }