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