2 * collectd - src/teamspeak2.c
3 * Copyright (C) 2008 Stefan Hacker
4 * Copyright (C) 2008 Florian Forster
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; only version 2 of the License is applicable.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Stefan Hacker <d0t at dbclan dot de>
21 * Florian Forster <octo at collectd.org>
28 #include <netinet/in.h>
29 #include <arpa/inet.h>
30 #include <sys/types.h>
31 #include <sys/socket.h>
37 /* Default host and port */
38 #define DEFAULT_HOST "127.0.0.1"
39 #define DEFAULT_PORT "51234"
44 /* Server linked list structure */
45 typedef struct vserver_list_s
48 struct vserver_list_s *next;
50 static vserver_list_t *server_list = NULL;
53 static char *config_host = NULL;
54 static char *config_port = NULL;
56 static FILE *global_read_fh = NULL;
57 static FILE *global_write_fh = NULL;
60 static const char *config_keys[] =
66 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
71 static int tss2_add_vserver (int vserver_port)
74 * Adds a new vserver to the linked list
76 vserver_list_t *entry;
78 /* Check port range */
79 if ((vserver_port <= 0) || (vserver_port > 65535))
81 ERROR ("teamspeak2 plugin: VServer port is invalid: %i",
87 entry = (vserver_list_t *) malloc (sizeof (vserver_list_t));
90 ERROR ("teamspeak2 plugin: malloc failed.");
93 memset (entry, 0, sizeof (vserver_list_t));
96 entry->port = vserver_port;
99 if(server_list == NULL) {
100 /* Add the server as the first element */
104 vserver_list_t *prev;
106 /* Add the server to the end of the list */
108 while (prev->next != NULL)
113 INFO ("teamspeak2 plugin: Registered new vserver: %i", vserver_port);
116 } /* int tss2_add_vserver */
118 static void tss2_submit_gauge (const char *plugin_instance,
119 const char *type, const char *type_instance,
123 * Submits a gauge value to the collectd daemon
126 value_list_t vl = VALUE_LIST_INIT;
128 values[0].gauge = value;
132 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
133 sstrncpy (vl.plugin, "teamspeak2", sizeof (vl.plugin));
135 if (plugin_instance != NULL)
136 sstrncpy (vl.plugin_instance, plugin_instance,
137 sizeof (vl.plugin_instance));
139 sstrncpy (vl.type, type, sizeof (vl.type));
141 if (type_instance != NULL)
142 sstrncpy (vl.type_instance, type_instance,
143 sizeof (vl.type_instance));
145 plugin_dispatch_values (&vl);
146 } /* void tss2_submit_gauge */
148 static void tss2_submit_io (const char *plugin_instance, const char *type,
149 derive_t rx, derive_t tx)
152 * Submits the io rx/tx tuple to the collectd daemon
155 value_list_t vl = VALUE_LIST_INIT;
157 values[0].derive = rx;
158 values[1].derive = tx;
162 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
163 sstrncpy (vl.plugin, "teamspeak2", sizeof (vl.plugin));
165 if (plugin_instance != NULL)
166 sstrncpy (vl.plugin_instance, plugin_instance,
167 sizeof (vl.plugin_instance));
169 sstrncpy (vl.type, type, sizeof (vl.type));
171 plugin_dispatch_values (&vl);
172 } /* void tss2_submit_gauge */
174 static void tss2_close_socket (void)
179 if (global_write_fh != NULL)
181 fputs ("quit\r\n", global_write_fh);
184 if (global_read_fh != NULL)
186 fclose (global_read_fh);
187 global_read_fh = NULL;
190 if (global_write_fh != NULL)
192 fclose (global_write_fh);
193 global_write_fh = NULL;
195 } /* void tss2_close_socket */
197 static int tss2_get_socket (FILE **ret_read_fh, FILE **ret_write_fh)
200 * Returns connected file objects or establishes the connection
201 * if it's not already present
203 struct addrinfo ai_hints;
204 struct addrinfo *ai_head;
205 struct addrinfo *ai_ptr;
209 /* Check if we already got opened connections */
210 if ((global_read_fh != NULL) && (global_write_fh != NULL))
212 /* If so, use them */
213 if (ret_read_fh != NULL)
214 *ret_read_fh = global_read_fh;
215 if (ret_write_fh != NULL)
216 *ret_write_fh = global_write_fh;
220 /* Get all addrs for this hostname */
221 memset (&ai_hints, 0, sizeof (ai_hints));
223 ai_hints.ai_flags |= AI_ADDRCONFIG;
225 ai_hints.ai_family = AF_UNSPEC;
226 ai_hints.ai_socktype = SOCK_STREAM;
228 status = getaddrinfo ((config_host != NULL) ? config_host : DEFAULT_HOST,
229 (config_port != NULL) ? config_port : DEFAULT_PORT,
234 ERROR ("teamspeak2 plugin: getaddrinfo failed: %s",
235 gai_strerror (status));
239 /* Try all given hosts until we can connect to one */
240 for (ai_ptr = ai_head; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
243 sd = socket (ai_ptr->ai_family, ai_ptr->ai_socktype,
244 ai_ptr->ai_protocol);
248 WARNING ("teamspeak2 plugin: socket failed: %s",
249 sstrerror (errno, errbuf, sizeof (errbuf)));
254 status = connect (sd, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
258 WARNING ("teamspeak2 plugin: connect failed: %s",
259 sstrerror (errno, errbuf, sizeof (errbuf)));
265 * Success, we can break. Don't need more than one connection
270 freeaddrinfo (ai_head);
272 /* Check if we really got connected */
276 /* Create file objects from sockets */
277 global_read_fh = fdopen (sd, "r");
278 if (global_read_fh == NULL)
281 ERROR ("teamspeak2 plugin: fdopen failed: %s",
282 sstrerror (errno, errbuf, sizeof (errbuf)));
287 global_write_fh = fdopen (sd, "w");
288 if (global_write_fh == NULL)
291 ERROR ("teamspeak2 plugin: fdopen failed: %s",
292 sstrerror (errno, errbuf, sizeof (errbuf)));
293 tss2_close_socket ();
297 { /* Check that the server correctly identifies itself. */
301 buffer_ptr = fgets (buffer, sizeof (buffer), global_read_fh);
302 if (buffer_ptr == NULL)
304 WARNING ("teamspeak2 plugin: Unexpected EOF received "
305 "from remote host %s:%s.",
306 config_host ? config_host : DEFAULT_HOST,
307 config_port ? config_port : DEFAULT_PORT);
309 buffer[sizeof (buffer) - 1] = 0;
311 if (memcmp ("[TS]\r\n", buffer, 6) != 0)
313 ERROR ("teamspeak2 plugin: Unexpected response when connecting "
314 "to server. Expected ``[TS]'', got ``%s''.",
316 tss2_close_socket ();
319 DEBUG ("teamspeak2 plugin: Server send correct banner, connected!");
322 /* Copy the new filehandles to the given pointers */
323 if (ret_read_fh != NULL)
324 *ret_read_fh = global_read_fh;
325 if (ret_write_fh != NULL)
326 *ret_write_fh = global_write_fh;
328 } /* int tss2_get_socket */
330 static int tss2_send_request (FILE *fh, const char *request)
333 * This function puts a request to the server socket
337 status = fputs (request, fh);
340 ERROR ("teamspeak2 plugin: fputs failed.");
341 tss2_close_socket ();
347 } /* int tss2_send_request */
349 static int tss2_receive_line (FILE *fh, char *buffer, int buffer_size)
352 * Receive a single line from the given file object
357 * fgets is blocking but much easier then doing anything else
358 * TODO: Non-blocking Version would be safer
360 temp = fgets (buffer, buffer_size, fh);
364 ERROR ("teamspeak2 plugin: fgets failed: %s",
365 sstrerror (errno, errbuf, sizeof(errbuf)));
366 tss2_close_socket ();
370 buffer[buffer_size - 1] = 0;
372 } /* int tss2_receive_line */
374 static int tss2_select_vserver (FILE *read_fh, FILE *write_fh, vserver_list_t *vserver)
377 * Tell the server to select the given vserver
384 ssnprintf (command, sizeof (command), "sel %i\r\n", vserver->port);
386 status = tss2_send_request (write_fh, command);
389 ERROR ("teamspeak2 plugin: tss2_send_request (%s) failed.", command);
394 status = tss2_receive_line (read_fh, response, sizeof (response));
397 ERROR ("teamspeak2 plugin: tss2_receive_line failed.");
400 response[sizeof (response) - 1] = 0;
403 if ((strncasecmp ("OK", response, 2) == 0)
404 && ((response[2] == 0)
405 || (response[2] == '\n')
406 || (response[2] == '\r')))
409 ERROR ("teamspeak2 plugin: Command ``%s'' failed. "
410 "Response received from server was: ``%s''.",
413 } /* int tss2_select_vserver */
415 static int tss2_vserver_gapl (FILE *read_fh, FILE *write_fh,
419 * Reads the vserver's average packet loss and submits it to collectd.
420 * Be sure to run the tss2_read_vserver function before calling this so
421 * the vserver is selected correctly.
423 gauge_t packet_loss = NAN;
426 status = tss2_send_request (write_fh, "gapl\r\n");
429 ERROR("teamspeak2 plugin: tss2_send_request (gapl) failed.");
439 status = tss2_receive_line (read_fh, buffer, sizeof (buffer));
442 /* Set to NULL just to make sure no one uses these FHs anymore. */
445 ERROR ("teamspeak2 plugin: tss2_receive_line failed.");
448 buffer[sizeof (buffer) - 1] = 0;
450 if (strncmp ("average_packet_loss=", buffer,
451 strlen ("average_packet_loss=")) == 0)
453 /* Got average packet loss, now interpret it */
455 /* Replace , with . */
468 packet_loss = strtod (value, &endptr);
472 WARNING ("teamspeak2 plugin: Could not read average package "
473 "loss from string: %s", buffer);
477 else if (strncasecmp ("OK", buffer, 2) == 0)
481 else if (strncasecmp ("ERROR", buffer, 5) == 0)
483 ERROR ("teamspeak2 plugin: Server returned an error: %s", buffer);
488 WARNING ("teamspeak2 plugin: Server returned unexpected string: %s",
493 *ret_value = packet_loss;
495 } /* int tss2_vserver_gapl */
497 static int tss2_read_vserver (vserver_list_t *vserver)
500 * Poll information for the given vserver and submit it to collect.
501 * If vserver is NULL the global server information will be queried.
506 gauge_t channels = NAN;
507 gauge_t servers = NAN;
508 derive_t rx_octets = 0;
509 derive_t tx_octets = 0;
510 derive_t rx_packets = 0;
511 derive_t tx_packets = 0;
512 gauge_t packet_loss = NAN;
515 char plugin_instance[DATA_MAX_NAME_LEN];
520 /* Get the send/receive sockets */
521 status = tss2_get_socket (&read_fh, &write_fh);
524 ERROR ("teamspeak2 plugin: tss2_get_socket failed.");
530 /* Request global information */
531 memset (plugin_instance, 0, sizeof (plugin_instance));
533 status = tss2_send_request (write_fh, "gi\r\n");
537 /* Request server information */
538 ssnprintf (plugin_instance, sizeof (plugin_instance), "vserver%i",
541 /* Select the server */
542 status = tss2_select_vserver (read_fh, write_fh, vserver);
546 status = tss2_send_request (write_fh, "si\r\n");
551 ERROR ("teamspeak2 plugin: tss2_send_request failed.");
555 /* Loop until break */
563 /* Read one line of the server's answer */
564 status = tss2_receive_line (read_fh, buffer, sizeof (buffer));
567 /* Set to NULL just to make sure no one uses these FHs anymore. */
570 ERROR ("teamspeak2 plugin: tss2_receive_line failed.");
574 if (strncasecmp ("ERROR", buffer, 5) == 0)
576 ERROR ("teamspeak2 plugin: Server returned an error: %s",
580 else if (strncasecmp ("OK", buffer, 2) == 0)
585 /* Split line into key and value */
586 key = strchr (buffer, '_');
589 DEBUG ("teamspeak2 plugin: Cannot parse line: %s", buffer);
594 /* Evaluate assignment */
595 value = strchr (key, '=');
598 DEBUG ("teamspeak2 plugin: Cannot parse line: %s", buffer);
604 /* Check for known key and save the given value */
605 /* global info: users_online,
606 * server info: currentusers. */
607 if ((strcmp ("currentusers", key) == 0)
608 || (strcmp ("users_online", key) == 0))
610 users = strtod (value, &endptr);
614 /* global info: channels,
615 * server info: currentchannels. */
616 else if ((strcmp ("currentchannels", key) == 0)
617 || (strcmp ("channels", key) == 0))
619 channels = strtod (value, &endptr);
624 else if (strcmp ("servers", key) == 0)
626 servers = strtod (value, &endptr);
630 else if (strcmp ("bytesreceived", key) == 0)
632 rx_octets = strtoll (value, &endptr, 0);
636 else if (strcmp ("bytessend", key) == 0)
638 tx_octets = strtoll (value, &endptr, 0);
642 else if (strcmp ("packetsreceived", key) == 0)
644 rx_packets = strtoll (value, &endptr, 0);
648 else if (strcmp ("packetssend", key) == 0)
650 tx_packets = strtoll (value, &endptr, 0);
654 else if ((strncmp ("allow_codec_", key, strlen ("allow_codec_")) == 0)
655 || (strncmp ("bwinlast", key, strlen ("bwinlast")) == 0)
656 || (strncmp ("bwoutlast", key, strlen ("bwoutlast")) == 0)
657 || (strncmp ("webpost_", key, strlen ("webpost_")) == 0)
658 || (strcmp ("adminemail", key) == 0)
659 || (strcmp ("clan_server", key) == 0)
660 || (strcmp ("countrynumber", key) == 0)
661 || (strcmp ("id", key) == 0)
662 || (strcmp ("ispname", key) == 0)
663 || (strcmp ("linkurl", key) == 0)
664 || (strcmp ("maxusers", key) == 0)
665 || (strcmp ("name", key) == 0)
666 || (strcmp ("password", key) == 0)
667 || (strcmp ("platform", key) == 0)
668 || (strcmp ("server_platform", key) == 0)
669 || (strcmp ("server_uptime", key) == 0)
670 || (strcmp ("server_version", key) == 0)
671 || (strcmp ("udpport", key) == 0)
672 || (strcmp ("uptime", key) == 0)
673 || (strcmp ("users_maximal", key) == 0)
674 || (strcmp ("welcomemessage", key) == 0))
678 INFO ("teamspeak2 plugin: Unknown key-value-pair: "
679 "key = %s; value = %s;", key, value);
683 /* Collect vserver packet loss rates only if the loop above did not exit
685 if ((status == 0) && (vserver != NULL))
687 status = tss2_vserver_gapl (read_fh, write_fh, &packet_loss);
694 WARNING ("teamspeak2 plugin: Reading package loss "
695 "for vserver %i failed.", vserver->port);
699 if ((valid & 0x01) == 0x01)
700 tss2_submit_gauge (plugin_instance, "users", NULL, users);
702 if ((valid & 0x06) == 0x06)
703 tss2_submit_io (plugin_instance, "io_octets", rx_octets, tx_octets);
705 if ((valid & 0x18) == 0x18)
706 tss2_submit_io (plugin_instance, "io_packets", rx_packets, tx_packets);
708 if ((valid & 0x20) == 0x20)
709 tss2_submit_gauge (plugin_instance, "percent", "packet_loss", packet_loss);
711 if ((valid & 0x40) == 0x40)
712 tss2_submit_gauge (plugin_instance, "gauge", "channels", channels);
714 if ((valid & 0x80) == 0x80)
715 tss2_submit_gauge (plugin_instance, "gauge", "servers", servers);
720 } /* int tss2_read_vserver */
722 static int tss2_config (const char *key, const char *value)
725 * Interpret configuration values
727 if (strcasecmp ("Host", key) == 0)
731 temp = strdup (value);
734 ERROR("teamspeak2 plugin: strdup failed.");
740 else if (strcasecmp ("Port", key) == 0)
744 temp = strdup (value);
747 ERROR("teamspeak2 plugin: strdup failed.");
753 else if (strcasecmp ("Server", key) == 0)
755 /* Server variable found */
758 status = tss2_add_vserver (atoi (value));
764 /* Unknown variable found */
769 } /* int tss2_config */
771 static int tss2_read (void)
774 * Poll function which collects global and vserver information
775 * and submits it to collectd
777 vserver_list_t *vserver;
781 /* Handle global server variables */
782 status = tss2_read_vserver (NULL);
789 WARNING ("teamspeak2 plugin: Reading global server variables failed.");
792 /* Handle vservers */
793 for (vserver = server_list; vserver != NULL; vserver = vserver->next)
795 status = tss2_read_vserver (vserver);
802 WARNING ("teamspeak2 plugin: Reading statistics "
803 "for vserver %i failed.", vserver->port);
811 } /* int tss2_read */
813 static int tss2_shutdown(void)
818 vserver_list_t *entry;
820 tss2_close_socket ();
824 while (entry != NULL)
826 vserver_list_t *next;
833 /* Get rid of the configuration */
838 } /* int tss2_shutdown */
840 void module_register(void)
843 * Mandatory module_register function
845 plugin_register_config ("teamspeak2", tss2_config,
846 config_keys, config_keys_num);
847 plugin_register_read ("teamspeak2", tss2_read);
848 plugin_register_shutdown ("teamspeak2", tss2_shutdown);
849 } /* void module_register */
851 /* vim: set sw=4 ts=4 : */