2 * collectd - src/openvpn.c
3 * Copyright (C) 2008 Doug MacEachern
4 * Copyright (C) 2009,2010 Florian octo Forster
5 * Copyright (C) 2009 Marco Chiappero
6 * Copyright (C) 2009 Fabian Schuh
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; only version 2 of the License is applicable.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 * Doug MacEachern <dougm at hyperic.com>
23 * Florian octo Forster <octo at collectd.org>
24 * Marco Chiappero <marco at absence.it>
25 * Fabian Schuh <mail at xeroc.org>
32 #define V1STRING "Common Name,Real Address,Bytes Received,Bytes Sent,Connected Since\n"
33 #define V2STRING "HEADER,CLIENT_LIST,Common Name,Real Address,Virtual Address,Bytes Received,Bytes Sent,Connected Since,Connected Since (time_t)\n"
34 #define V3STRING "HEADER CLIENT_LIST Common Name Real Address Virtual Address Bytes Received Bytes Sent Connected Since Connected Since (time_t)\n"
35 #define V4STRING "HEADER,CLIENT_LIST,Common Name,Real Address,Virtual Address,Bytes Received,Bytes Sent,Connected Since,Connected Since (time_t),Username\n"
36 #define VSSTRING "OpenVPN STATISTICS\n"
44 MULTI1 = 1, /* status-version 1 */
45 MULTI2, /* status-version 2 */
46 MULTI3, /* status-version 3 */
47 MULTI4, /* status-version 4 */
48 SINGLE = 10 /* currently no versions for single mode, maybe in the future */
52 typedef struct vpn_status_s vpn_status_t;
54 static vpn_status_t **vpn_list = NULL;
55 static int vpn_num = 0;
57 static _Bool new_naming_schema = 0;
58 static _Bool collect_compression = 1;
59 static _Bool collect_user_count = 0;
60 static _Bool collect_individual_users = 1;
62 static const char *config_keys[] =
65 "Compression", /* old, deprecated name */
66 "ImprovedNamingSchema",
69 "CollectIndividualUsers"
71 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
75 * copy-n-pasted from common.c - changed delim to "," */
76 static int openvpn_strsplit (char *string, char **fields, size_t size)
85 while ((fields[i] = strtok_r (ptr, ",", &saveptr)) != NULL)
95 } /* int openvpn_strsplit */
97 /* dispatches number of users */
98 static void numusers_submit (char *pinst, char *tinst, gauge_t value)
101 value_list_t vl = VALUE_LIST_INIT;
103 values[0].gauge = value;
106 vl.values_len = STATIC_ARRAY_SIZE (values);
107 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
108 sstrncpy (vl.plugin, "openvpn", sizeof (vl.plugin));
109 sstrncpy (vl.type, "users", sizeof (vl.type));
111 sstrncpy (vl.plugin_instance, pinst, sizeof (vl.plugin_instance));
113 sstrncpy (vl.type_instance, tinst, sizeof (vl.type_instance));
115 plugin_dispatch_values (&vl);
116 } /* void numusers_submit */
118 /* dispatches stats about traffic (TCP or UDP) generated by the tunnel per single endpoint */
119 static void iostats_submit (char *pinst, char *tinst, derive_t rx, derive_t tx)
122 value_list_t vl = VALUE_LIST_INIT;
124 values[0].derive = rx;
125 values[1].derive = tx;
127 /* NOTE ON THE NEW NAMING SCHEMA:
128 * using plugin_instance to identify each vpn config (and
129 * status) file; using type_instance to identify the endpoint
130 * host when in multimode, traffic or overhead when in single.
134 vl.values_len = STATIC_ARRAY_SIZE (values);
135 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
136 sstrncpy (vl.plugin, "openvpn", sizeof (vl.plugin));
138 sstrncpy (vl.plugin_instance, pinst,
139 sizeof (vl.plugin_instance));
140 sstrncpy (vl.type, "if_octets", sizeof (vl.type));
142 sstrncpy (vl.type_instance, tinst, sizeof (vl.type_instance));
144 plugin_dispatch_values (&vl);
145 } /* void traffic_submit */
147 /* dispatches stats about data compression shown when in single mode */
148 static void compression_submit (char *pinst, char *tinst,
149 derive_t uncompressed, derive_t compressed)
152 value_list_t vl = VALUE_LIST_INIT;
154 values[0].derive = uncompressed;
155 values[1].derive = compressed;
158 vl.values_len = STATIC_ARRAY_SIZE (values);
159 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
160 sstrncpy (vl.plugin, "openvpn", sizeof (vl.plugin));
162 sstrncpy (vl.plugin_instance, pinst,
163 sizeof (vl.plugin_instance));
164 sstrncpy (vl.type, "compression", sizeof (vl.type));
166 sstrncpy (vl.type_instance, tinst, sizeof (vl.type_instance));
168 plugin_dispatch_values (&vl);
169 } /* void compression_submit */
171 static int single_read (char *name, FILE *fh)
175 const int max_fields = STATIC_ARRAY_SIZE (fields);
176 int fields_num, read = 0;
178 derive_t link_rx, link_tx;
179 derive_t tun_rx, tun_tx;
180 derive_t pre_compress, post_compress;
181 derive_t pre_decompress, post_decompress;
182 derive_t overhead_rx, overhead_tx;
195 while (fgets (buffer, sizeof (buffer), fh) != NULL)
197 fields_num = openvpn_strsplit (buffer, fields, max_fields);
199 /* status file is generated by openvpn/sig.c:print_status()
200 * http://svn.openvpn.net/projects/openvpn/trunk/openvpn/sig.c
202 * The line we're expecting has 2 fields. We ignore all lines
203 * with more or less fields.
210 if (strcmp (fields[0], "TUN/TAP read bytes") == 0)
212 /* read from the system and sent over the tunnel */
213 tun_tx = atoll (fields[1]);
215 else if (strcmp (fields[0], "TUN/TAP write bytes") == 0)
217 /* read from the tunnel and written in the system */
218 tun_rx = atoll (fields[1]);
220 else if (strcmp (fields[0], "TCP/UDP read bytes") == 0)
222 link_rx = atoll (fields[1]);
224 else if (strcmp (fields[0], "TCP/UDP write bytes") == 0)
226 link_tx = atoll (fields[1]);
228 else if (strcmp (fields[0], "pre-compress bytes") == 0)
230 pre_compress = atoll (fields[1]);
232 else if (strcmp (fields[0], "post-compress bytes") == 0)
234 post_compress = atoll (fields[1]);
236 else if (strcmp (fields[0], "pre-decompress bytes") == 0)
238 pre_decompress = atoll (fields[1]);
240 else if (strcmp (fields[0], "post-decompress bytes") == 0)
242 post_decompress = atoll (fields[1]);
246 iostats_submit (name, "traffic", link_rx, link_tx);
248 /* we need to force this order to avoid negative values with these unsigned */
249 overhead_rx = (((link_rx - pre_decompress) + post_decompress) - tun_rx);
250 overhead_tx = (((link_tx - post_compress) + pre_compress) - tun_tx);
252 iostats_submit (name, "overhead", overhead_rx, overhead_tx);
254 if (collect_compression)
256 compression_submit (name, "data_in", post_decompress, pre_decompress);
257 compression_submit (name, "data_out", pre_compress, post_compress);
263 } /* int single_read */
265 /* for reading status version 1 */
266 static int multi1_read (char *name, FILE *fh)
270 int fields_num, found_header = 0;
271 long long sum_users = 0;
273 /* read the file until the "ROUTING TABLE" line is found (no more info after) */
274 while (fgets (buffer, sizeof (buffer), fh) != NULL)
276 if (strcmp (buffer, "ROUTING TABLE\n") == 0)
279 if (strcmp (buffer, V1STRING) == 0)
285 /* skip the first lines until the client list section is found */
286 if (found_header == 0)
287 /* we can't start reading data until this string is found */
290 fields_num = openvpn_strsplit (buffer,
291 fields, STATIC_ARRAY_SIZE (fields));
295 if (collect_user_count)
296 /* If so, sum all users, ignore the individuals*/
300 if (collect_individual_users)
302 if (new_naming_schema)
304 iostats_submit (name, /* vpn instance */
305 fields[0], /* "Common Name" */
306 atoll (fields[2]), /* "Bytes Received" */
307 atoll (fields[3])); /* "Bytes Sent" */
311 iostats_submit (fields[0], /* "Common Name" */
312 NULL, /* unused when in multimode */
313 atoll (fields[2]), /* "Bytes Received" */
314 atoll (fields[3])); /* "Bytes Sent" */
322 if (collect_user_count)
323 numusers_submit(name, name, sum_users);
326 } /* int multi1_read */
328 /* for reading status version 2 */
329 static int multi2_read (char *name, FILE *fh)
333 const int max_fields = STATIC_ARRAY_SIZE (fields);
334 int fields_num, read = 0;
335 long long sum_users = 0;
337 while (fgets (buffer, sizeof (buffer), fh) != NULL)
339 fields_num = openvpn_strsplit (buffer, fields, max_fields);
341 /* status file is generated by openvpn/multi.c:multi_print_status()
342 * http://svn.openvpn.net/projects/openvpn/trunk/openvpn/multi.c
344 * The line we're expecting has 8 fields. We ignore all lines
345 * with more or less fields.
350 if (strcmp (fields[0], "CLIENT_LIST") != 0)
353 if (collect_user_count)
354 /* If so, sum all users, ignore the individuals*/
358 if (collect_individual_users)
360 if (new_naming_schema)
362 /* plugin inst = file name, type inst = fields[1] */
363 iostats_submit (name, /* vpn instance */
364 fields[1], /* "Common Name" */
365 atoll (fields[4]), /* "Bytes Received" */
366 atoll (fields[5])); /* "Bytes Sent" */
370 /* plugin inst = fields[1], type inst = "" */
371 iostats_submit (fields[1], /* "Common Name" */
372 NULL, /* unused when in multimode */
373 atoll (fields[4]), /* "Bytes Received" */
374 atoll (fields[5])); /* "Bytes Sent" */
381 if (collect_user_count)
383 numusers_submit(name, name, sum_users);
388 } /* int multi2_read */
390 /* for reading status version 3 */
391 static int multi3_read (char *name, FILE *fh)
395 const int max_fields = STATIC_ARRAY_SIZE (fields);
396 int fields_num, read = 0;
397 long long sum_users = 0;
399 while (fgets (buffer, sizeof (buffer), fh) != NULL)
401 fields_num = strsplit (buffer, fields, max_fields);
403 /* status file is generated by openvpn/multi.c:multi_print_status()
404 * http://svn.openvpn.net/projects/openvpn/trunk/openvpn/multi.c
406 * The line we're expecting has 12 fields. We ignore all lines
407 * with more or less fields.
409 if (fields_num != 12)
415 if (strcmp (fields[0], "CLIENT_LIST") != 0)
418 if (collect_user_count)
419 /* If so, sum all users, ignore the individuals*/
424 if (collect_individual_users)
426 if (new_naming_schema)
428 iostats_submit (name, /* vpn instance */
429 fields[1], /* "Common Name" */
430 atoll (fields[4]), /* "Bytes Received" */
431 atoll (fields[5])); /* "Bytes Sent" */
435 iostats_submit (fields[1], /* "Common Name" */
436 NULL, /* unused when in multimode */
437 atoll (fields[4]), /* "Bytes Received" */
438 atoll (fields[5])); /* "Bytes Sent" */
446 if (collect_user_count)
448 numusers_submit(name, name, sum_users);
453 } /* int multi3_read */
455 /* for reading status version 4 */
456 static int multi4_read (char *name, FILE *fh)
460 const int max_fields = STATIC_ARRAY_SIZE (fields);
461 int fields_num, read = 0;
462 long long sum_users = 0;
464 while (fgets (buffer, sizeof (buffer), fh) != NULL)
466 fields_num = openvpn_strsplit (buffer, fields, max_fields);
468 /* status file is generated by openvpn/multi.c:multi_print_status()
469 * http://svn.openvpn.net/projects/openvpn/trunk/openvpn/multi.c
471 * The line we're expecting has 9 fields. We ignore all lines
472 * with more or less fields.
478 if (strcmp (fields[0], "CLIENT_LIST") != 0)
482 if (collect_user_count)
483 /* If so, sum all users, ignore the individuals*/
487 if (collect_individual_users)
489 if (new_naming_schema)
491 /* plugin inst = file name, type inst = fields[1] */
492 iostats_submit (name, /* vpn instance */
493 fields[1], /* "Common Name" */
494 atoll (fields[4]), /* "Bytes Received" */
495 atoll (fields[5])); /* "Bytes Sent" */
499 /* plugin inst = fields[1], type inst = "" */
500 iostats_submit (fields[1], /* "Common Name" */
501 NULL, /* unused when in multimode */
502 atoll (fields[4]), /* "Bytes Received" */
503 atoll (fields[5])); /* "Bytes Sent" */
510 if (collect_user_count)
512 numusers_submit(name, name, sum_users);
517 } /* int multi4_read */
520 static int openvpn_read (void)
523 int i, vpn_read, read;
527 /* call the right read function for every status entry in the list */
528 for (i = 0; i < vpn_num; i++)
530 fh = fopen (vpn_list[i]->file, "r");
534 WARNING ("openvpn plugin: fopen(%s) failed: %s", vpn_list[i]->file,
535 sstrerror (errno, errbuf, sizeof (errbuf)));
540 switch (vpn_list[i]->version)
543 vpn_read = single_read(vpn_list[i]->name, fh);
547 vpn_read = multi1_read(vpn_list[i]->name, fh);
551 vpn_read = multi2_read(vpn_list[i]->name, fh);
555 vpn_read = multi3_read(vpn_list[i]->name, fh);
559 vpn_read = multi4_read(vpn_list[i]->name, fh);
567 return (read ? 0 : -1);
568 } /* int openvpn_read */
570 static int version_detect (const char *filename)
576 /* Sanity checking. We're called from the config handling routine, so
577 * better play it save. */
578 if ((filename == NULL) || (*filename == 0))
581 fh = fopen (filename, "r");
585 WARNING ("openvpn plugin: Unable to read \"%s\": %s", filename,
586 sstrerror (errno, errbuf, sizeof (errbuf)));
590 /* now search for the specific multimode data format */
591 while ((fgets (buffer, sizeof (buffer), fh)) != NULL)
593 /* we look at the first line searching for SINGLE mode configuration */
594 if (strcmp (buffer, VSSTRING) == 0)
596 DEBUG ("openvpn plugin: found status file version SINGLE");
600 /* searching for multi version 1 */
601 else if (strcmp (buffer, V1STRING) == 0)
603 DEBUG ("openvpn plugin: found status file version MULTI1");
607 /* searching for multi version 2 */
608 else if (strcmp (buffer, V2STRING) == 0)
610 DEBUG ("openvpn plugin: found status file version MULTI2");
614 /* searching for multi version 3 */
615 else if (strcmp (buffer, V3STRING) == 0)
617 DEBUG ("openvpn plugin: found status file version MULTI3");
621 /* searching for multi version 4 */
622 else if (strcmp (buffer, V4STRING) == 0)
624 DEBUG ("openvpn plugin: found status file version MULTI4");
632 /* This is only reached during configuration, so complaining to
633 * the user is in order. */
634 NOTICE ("openvpn plugin: %s: Unknown file format, please "
635 "report this as bug. Make sure to include "
636 "your status file, so the plugin can "
637 "be adapted.", filename);
643 } /* int version_detect */
645 static int openvpn_config (const char *key, const char *value)
647 if (strcasecmp ("StatusFile", key) == 0)
649 char *status_file, *status_name, *filename;
650 int status_version, i;
653 /* try to detect the status file format */
654 status_version = version_detect (value);
656 if (status_version == 0)
658 WARNING ("openvpn plugin: unable to detect status version, \
659 discarding status file \"%s\".", value);
663 status_file = sstrdup (value);
664 if (status_file == NULL)
667 WARNING ("openvpn plugin: sstrdup failed: %s",
668 sstrerror (errno, errbuf, sizeof (errbuf)));
672 /* it determines the file name as string starting at location filename + 1 */
673 filename = strrchr (status_file, (int) '/');
674 if (filename == NULL)
676 /* status_file is already the file name only */
677 status_name = status_file;
681 /* doesn't waste memory, uses status_file starting at filename + 1 */
682 status_name = filename + 1;
685 /* scan the list looking for a clone */
686 for (i = 0; i < vpn_num; i++)
688 if (strcasecmp (vpn_list[i]->name, status_name) == 0)
690 WARNING ("openvpn plugin: status filename \"%s\" "
691 "already used, please choose a "
692 "different one.", status_name);
698 /* create a new vpn element since file, version and name are ok */
699 temp = (vpn_status_t *) malloc (sizeof (vpn_status_t));
700 temp->file = status_file;
701 temp->version = status_version;
702 temp->name = status_name;
704 vpn_list = (vpn_status_t **) realloc (vpn_list, (vpn_num + 1) * sizeof (vpn_status_t *));
705 if (vpn_list == NULL)
708 ERROR ("openvpn plugin: malloc failed: %s",
709 sstrerror (errno, errbuf, sizeof (errbuf)));
716 vpn_list[vpn_num] = temp;
719 DEBUG ("openvpn plugin: status file \"%s\" added", temp->file);
721 } /* if (strcasecmp ("StatusFile", key) == 0) */
722 else if ((strcasecmp ("CollectCompression", key) == 0)
723 || (strcasecmp ("Compression", key) == 0)) /* old, deprecated name */
725 if (IS_FALSE (value))
726 collect_compression = 0;
728 collect_compression = 1;
729 } /* if (strcasecmp ("CollectCompression", key) == 0) */
730 else if (strcasecmp ("ImprovedNamingSchema", key) == 0)
734 DEBUG ("openvpn plugin: using the new naming schema");
735 new_naming_schema = 1;
739 new_naming_schema = 0;
741 } /* if (strcasecmp ("ImprovedNamingSchema", key) == 0) */
742 else if (strcasecmp("CollectUserCount", key) == 0)
745 collect_user_count = 1;
747 collect_user_count = 0;
748 } /* if (strcasecmp("CollectUserCount", key) == 0) */
749 else if (strcasecmp("CollectIndividualUsers", key) == 0)
751 if (IS_FALSE (value))
752 collect_individual_users = 0;
754 collect_individual_users = 1;
755 } /* if (strcasecmp("CollectIndividualUsers", key) == 0) */
762 } /* int openvpn_config */
764 /* shutdown callback */
765 static int openvpn_shutdown (void)
769 for (i = 0; i < vpn_num; i++)
771 sfree (vpn_list[i]->file);
778 } /* int openvpn_shutdown */
780 static int openvpn_init (void)
782 if (!collect_individual_users
783 && !collect_compression
784 && !collect_user_count)
786 WARNING ("OpenVPN plugin: Neither `CollectIndividualUsers', "
787 "`CollectCompression', nor `CollectUserCount' is true. There's no "
788 "data left to collect.");
792 plugin_register_read ("openvpn", openvpn_read);
793 plugin_register_shutdown ("openvpn", openvpn_shutdown);
796 } /* int openvpn_init */
798 void module_register (void)
800 plugin_register_config ("openvpn", openvpn_config,
801 config_keys, config_keys_num);
802 plugin_register_init ("openvpn", openvpn_init);
803 } /* void module_register */
805 /* vim: set sw=2 ts=2 : */