Merge branch 'sh/teamspeak2'
[collectd.git] / src / teamspeak2.c
1 /**
2  * collectd - src/teamspeak2.c
3  * Copyright (C) 2008  Stefan Hacker
4  * Copyright (C) 2008  Florian Forster
5  *
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.
9  *
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.
14  *
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
18  *
19  * Authors:
20  *   Stefan Hacker <d0t at dbclan dot de>
21  *   Florian Forster <octo at verplant.org>
22  **/
23
24 #include "collectd.h"
25 #include "common.h"
26 #include "plugin.h"
27
28 #include <arpa/inet.h>
29 #include <netinet/in.h>
30 #include <sys/types.h>
31 #include <sys/socket.h>
32 #include <netdb.h>
33
34 /*
35  * Defines
36  */
37 /* Default host and port */
38 #define DEFAULT_HOST    "127.0.0.1"
39 #define DEFAULT_PORT    "51234"
40
41 /*
42  * Variables
43  */
44 /* Server linked list structure */
45 typedef struct vserver_list_s
46 {
47         int port;
48         struct vserver_list_s *next;
49 } vserver_list_t;
50 static vserver_list_t *server_list = NULL;
51
52 /* Host data */
53 static char *config_host = NULL;
54 static char *config_port = NULL;
55
56 static FILE *global_read_fh = NULL;
57 static FILE *global_write_fh = NULL;
58
59 /* Config data */
60 static const char *config_keys[] =
61 {
62         "Host",
63         "Port",
64         "Server"
65 };
66 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
67
68 /*
69  * Functions
70  */
71 static int tss2_add_vserver (int vserver_port)
72 {
73         /*
74          * Adds a new vserver to the linked list
75          */
76         vserver_list_t *entry;
77
78         /* Check port range */
79         if ((vserver_port <= 0) || (vserver_port > 65535))
80         {
81                 ERROR ("teamspeak2 plugin: VServer port is invalid: %i",
82                                 vserver_port);
83                 return (-1);
84         }
85
86         /* Allocate memory */
87         entry = (vserver_list_t *) malloc (sizeof (vserver_list_t));
88         if (entry == NULL)
89         {
90                 ERROR ("teamspeak2 plugin: malloc failed.");
91                 return (-1);
92         }
93         memset (entry, 0, sizeof (vserver_list_t));
94
95         /* Save data */
96         entry->port = vserver_port;
97
98         /* Insert to list */
99         if(server_list == NULL) {
100                 /* Add the server as the first element */
101                 server_list = entry;
102         }
103         else {
104                 vserver_list_t *prev;
105
106                 /* Add the server to the end of the list */
107                 prev = server_list;
108                 while (prev->next != NULL)
109                         prev = prev->next;
110                 prev->next = entry;
111         }
112
113         INFO ("teamspeak2 plugin: Registered new vserver: %i", vserver_port);
114
115         return (0);
116 } /* int tss2_add_vserver */
117
118 static void tss2_submit_gauge (const char *plugin_instance, const char *type,
119                 gauge_t value)
120 {
121         /*
122          * Submits a gauge value to the collectd daemon
123          */
124         value_t values[1];
125         value_list_t vl = VALUE_LIST_INIT;
126
127         values[0].gauge = value;
128
129         vl.values     = values;
130         vl.values_len = 1;
131         vl.time       = time (NULL);
132         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
133         sstrncpy (vl.plugin, "teamspeak2", sizeof (vl.plugin));
134
135         if (plugin_instance != NULL)
136                 sstrncpy (vl.plugin_instance, plugin_instance,
137                                 sizeof (vl.plugin_instance));
138         
139         plugin_dispatch_values (type, &vl);
140 } /* void tss2_submit_gauge */
141
142 static void tss2_submit_io (const char *plugin_instance, const char *type,
143                 counter_t rx, counter_t tx)
144 {
145         /*
146          * Submits the io rx/tx tuple to the collectd daemon
147          */
148         value_t values[2];
149         value_list_t vl = VALUE_LIST_INIT;
150
151         values[0].counter = rx;
152         values[1].counter = tx;
153
154         vl.values     = values;
155         vl.values_len = 2;
156         vl.time       = time (NULL);
157         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
158         sstrncpy (vl.plugin, "teamspeak2", sizeof (vl.plugin));
159
160         if (plugin_instance != NULL)
161                 sstrncpy (vl.plugin_instance, plugin_instance,
162                                 sizeof (vl.plugin_instance));
163         
164         plugin_dispatch_values (type, &vl);
165 } /* void tss2_submit_gauge */
166
167 static void tss2_close_socket (void)
168 {
169         /*
170          * Closes all sockets
171          */
172         if (global_write_fh != NULL)
173         {
174                 fputs ("quit\r\n", global_write_fh);
175         }
176
177         if (global_read_fh != NULL)
178         {
179                 fclose (global_read_fh);
180                 global_read_fh = NULL;
181         }
182
183         if (global_write_fh != NULL)
184         {
185                 fclose (global_write_fh);
186                 global_write_fh = NULL;
187         }
188 } /* void tss2_close_socket */
189
190 static int tss2_get_socket (FILE **ret_read_fh, FILE **ret_write_fh)
191 {
192         /*
193          * Returns connected file objects or establishes the connection
194          * if it's not already present
195          */
196         struct addrinfo ai_hints;
197         struct addrinfo *ai_head;
198         struct addrinfo *ai_ptr;
199         int sd = -1;
200         int status;
201
202         /* Check if we already got opened connections */
203         if ((global_read_fh != NULL) && (global_write_fh != NULL))
204         {
205                 /* If so, use them */
206                 if (ret_read_fh != NULL)
207                         *ret_read_fh = global_read_fh;
208                 if (ret_write_fh != NULL)
209                         *ret_write_fh = global_write_fh;
210                 return (0);
211         }
212
213         /* Get all addrs for this hostname */
214         memset (&ai_hints, 0, sizeof (ai_hints));
215 #ifdef AI_ADDRCONFIG
216         ai_hints.ai_flags |= AI_ADDRCONFIG;
217 #endif
218         ai_hints.ai_family = AF_UNSPEC;
219         ai_hints.ai_socktype = SOCK_STREAM;
220
221         status = getaddrinfo ((config_host != NULL) ? config_host : DEFAULT_HOST,
222                         (config_port != NULL) ? config_port : DEFAULT_PORT,
223                         &ai_hints,
224                         &ai_head);
225         if (status != 0)
226         {
227                 ERROR ("teamspeak2 plugin: getaddrinfo failed: %s",
228                                 gai_strerror (status));
229                 return (-1);
230         }
231
232         /* Try all given hosts until we can connect to one */
233         for (ai_ptr = ai_head; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
234         {
235                 /* Create socket */
236                 sd = socket (ai_ptr->ai_family, ai_ptr->ai_socktype,
237                                 ai_ptr->ai_protocol);
238                 if (sd < 0)
239                 {
240                         char errbuf[1024];
241                         WARNING ("teamspeak2 plugin: socket failed: %s",
242                                         sstrerror (errno, errbuf, sizeof (errbuf)));
243                         continue;
244                 }
245
246                 /* Try to connect */
247                 status = connect (sd, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
248                 if (status != 0)
249                 {
250                         char errbuf[1024];
251                         WARNING ("teamspeak2 plugin: connect failed: %s",
252                                         sstrerror (errno, errbuf, sizeof (errbuf)));
253                         close (sd);
254                         continue;
255                 }
256
257                 /*
258                  * Success, we can break. Don't need more than one connection
259                  */
260                 break;
261         } /* for (ai_ptr) */
262
263         freeaddrinfo (ai_head);
264
265         /* Check if we really got connected */
266         if (sd < 0)
267                 return (-1);
268
269         /* Create file objects from sockets */
270         global_read_fh = fdopen (sd, "r");
271         if (global_read_fh == NULL)
272         {
273                 char errbuf[1024];
274                 ERROR ("teamspeak2 plugin: fdopen failed: %s",
275                                 sstrerror (errno, errbuf, sizeof (errbuf)));
276                 close (sd);
277                 return (-1);
278         }
279
280         global_write_fh = fdopen (sd, "w");
281         if (global_write_fh == NULL)
282         {
283                 char errbuf[1024];
284                 ERROR ("teamspeak2 plugin: fdopen failed: %s",
285                                 sstrerror (errno, errbuf, sizeof (errbuf)));
286                 tss2_close_socket ();
287                 return (-1);
288         }
289
290         { /* Check that the server correctly identifies itself. */
291                 char buffer[4096];
292                 char *buffer_ptr;
293
294                 buffer_ptr = fgets (buffer, sizeof (buffer), global_read_fh);
295                 buffer[sizeof (buffer) - 1] = 0;
296
297                 if (memcmp ("[TS]\r\n", buffer, 6) != 0)
298                 {
299                         ERROR ("teamspeak2 plugin: Unexpected response when connecting "
300                                         "to server. Expected ``[TS]'', got ``%s''.",
301                                         buffer);
302                         tss2_close_socket ();
303                         return (-1);
304                 }
305                 DEBUG ("teamspeak2 plugin: Server send correct banner, connected!");
306         }
307
308         /* Copy the new filehandles to the given pointers */
309         if (ret_read_fh != NULL)
310                 *ret_read_fh = global_read_fh;
311         if (ret_write_fh != NULL)
312                 *ret_write_fh = global_write_fh;
313         return (0);
314 } /* int tss2_get_socket */
315
316 static int tss2_send_request (FILE *fh, const char *request)
317 {
318         /*
319          * This function puts a request to the server socket
320          */
321         int status;
322
323         status = fputs (request, fh);
324         if (status < 0)
325         {
326                 ERROR ("teamspeak2 plugin: fputs failed.");
327                 tss2_close_socket ();
328                 return (-1);
329         }
330         fflush (fh);
331
332         return (0);
333 } /* int tss2_send_request */
334
335 static int tss2_receive_line (FILE *fh, char *buffer, int buffer_size)
336 {
337         /*
338          * Receive a single line from the given file object
339          */
340         char *temp;
341          
342         /*
343          * fgets is blocking but much easier then doing anything else
344          * TODO: Non-blocking Version would be safer
345          */
346         temp = fgets (buffer, buffer_size, fh);
347         if (temp == NULL)
348         {
349                 char errbuf[1024];
350                 ERROR ("teamspeak2 plugin: fgets failed: %s",
351                                 sstrerror (errno, errbuf, sizeof(errbuf)));
352                 tss2_close_socket ();
353                 return (-1);
354         }
355
356         buffer[buffer_size - 1] = 0;
357         return (0);
358 } /* int tss2_receive_line */
359
360 static int tss2_select_vserver (FILE *read_fh, FILE *write_fh, vserver_list_t *vserver)
361 {
362         /*
363          * Tell the server to select the given vserver
364          */
365         char command[128];
366         char response[128];
367         int status;
368
369         DEBUG("teamspeak2 plugin: Select server %i", vserver->port);
370         
371         /* Send request */
372         snprintf (command, sizeof (command), "sel %i\r\n", vserver->port);
373         command[sizeof (command) - 1] = 0;
374
375         status = tss2_send_request (write_fh, command);
376         if (status != 0)
377         {
378                 ERROR ("teamspeak2 plugin: tss2_send_request (%s) failed.", command);
379                 return (-1);
380         }
381
382         /* Get answer */
383         status = tss2_receive_line (read_fh, response, sizeof (response));
384         if (status != 0)
385         {
386                 ERROR ("teamspeak2 plugin: tss2_receive_line failed.");
387                 return (-1);
388         }
389         response[sizeof (response)] = 0;
390
391         /* Check answer */
392         if ((strncmp ("OK", response, 2) == 0)
393                         && ((response[2] == 0)
394                                 || (response[2] == '\n')
395                                 || (response[2] == '\r')))
396                 return (0);
397
398         ERROR ("teamspeak2 plugin: Command ``%s'' failed. "
399                         "Response received from server was: ``%s''.",
400                         command, response);
401         return (-1);
402 } /* int tss2_select_vserver */
403
404 static int tss2_read_vserver (vserver_list_t *vserver)
405 {
406         int status;
407
408         gauge_t users = NAN;
409         counter_t rx_octets = 0;
410         counter_t tx_octets = 0;
411         counter_t rx_packets = 0;
412         counter_t tx_packets = 0;
413         int valid = 0;
414
415         char plugin_instance[DATA_MAX_NAME_LEN];
416
417         FILE *read_fh;
418         FILE *write_fh;
419
420         /* Get the send/receive sockets */
421         status = tss2_get_socket (&read_fh, &write_fh);
422         if (status != 0)
423         {
424                 ERROR ("teamspeak2 plugin: tss2_get_socket failed.");
425                 return (-1);
426         }
427
428         if (vserver == NULL)
429         {
430                 /* Request global information */
431                 DEBUG("teamspeak2 plugin: Read global server information");
432         
433                 memset (plugin_instance, 0, sizeof (plugin_instance));
434
435                 status = tss2_send_request (write_fh, "gi\r\n");
436         }
437         else
438         {
439                 /* Request server information */
440                 DEBUG("teamspeak2 plugin: Read vserver's %i information!", vserver->port);
441         
442                 snprintf (plugin_instance, sizeof (plugin_instance), "vserver%i",
443                                 vserver->port);
444                 plugin_instance[sizeof (plugin_instance) - 1] = 0;
445
446                 /* Select the server */
447                 status = tss2_select_vserver (read_fh, write_fh, vserver);
448                 if (status != 0)
449                         return (status);
450
451                 status = tss2_send_request (write_fh, "si\r\n");
452         }
453
454         if (status != 0)
455         {
456                 ERROR ("teamspeak2 plugin: tss2_send_request failed.");
457                 return (-1);
458         }
459
460         /* Loop until break */
461         while (42)
462         {
463                 char buffer[4096];
464                 char *key;
465                 char *value;
466                 char *endptr = NULL;
467                 
468                 /* Read one line of the server's answer */
469                 status = tss2_receive_line (read_fh, buffer, sizeof (buffer));
470                 if (status != 0)
471                 {
472                         /* Set to NULL just to make sure noone uses these FHs anymore. */
473                         read_fh = NULL;
474                         write_fh = NULL;
475                         ERROR ("teamspeak2 plugin: tss2_receive_line failed.");
476                         break;
477                 }
478
479                 if (strncmp ("ERROR", buffer, 5) == 0)
480                 {
481                         ERROR ("teamspeak2 plugin: Server returned an error: %s",
482                                         buffer);
483                         break;
484                 }
485                 else if (strncmp ("OK", buffer, 2) == 0)
486                 {
487                         break;
488                 }
489
490                 /* Split line into key and value */
491                 key = strchr (buffer, '_');
492                 if (key == NULL)
493                 {
494                         DEBUG ("teamspeak2 plugin: Cannot parse line: %s", buffer);
495                         continue;
496                 }
497                 key++;
498
499                 /* Evaluate assignment */
500                 value = strchr (key, '=');
501                 if (value == NULL)
502                 {
503                         DEBUG ("teamspeak2 plugin: Cannot parse line: %s", buffer);
504                         continue;
505                 }
506                 *value = 0;
507                 value++;
508
509                 /* Check for known key and save the given value */
510                 if ((strcmp ("currentusers", key) == 0)
511                                 || (strcmp ("users_online", key) == 0))
512                 {
513                         users = strtod (value, &endptr);
514                         if (value != endptr)
515                                 valid |= 0x01;
516                 }
517                 else if (strcmp ("bytesreceived", key) == 0)
518                 {
519                         rx_octets = strtoll (value, &endptr, 0);
520                         if (value != endptr)
521                                 valid |= 0x02;
522                 }
523                 else if (strcmp ("bytessend", key) == 0)
524                 {
525                         tx_octets = strtoll (value, &endptr, 0);
526                         if (value != endptr)
527                                 valid |= 0x04;
528                 }
529                 else if (strcmp ("packetsreceived", key) == 0)
530                 {
531                         rx_packets = strtoll (value, &endptr, 0);
532                         if (value != endptr)
533                                 valid |= 0x08;
534                 }
535                 else if (strcmp ("packetssend", key) == 0)
536                 {
537                         tx_packets = strtoll (value, &endptr, 0);
538                         if (value != endptr)
539                                 valid |= 0x10;
540                 }
541                 else if ((strncmp ("allow_codec_", key, strlen ("allow_codec_")) == 0)
542                                 || (strncmp ("bwinlast", key, strlen ("bwinlast")) == 0)
543                                 || (strncmp ("bwoutlast", key, strlen ("bwoutlast")) == 0)
544                                 || (strncmp ("webpost_", key, strlen ("webpost_")) == 0)
545                                 || (strcmp ("adminemail", key) == 0)
546                                 || (strcmp ("clan_server", key) == 0)
547                                 || (strcmp ("countrynumber", key) == 0)
548                                 || (strcmp ("id", key) == 0)
549                                 || (strcmp ("ispname", key) == 0)
550                                 || (strcmp ("linkurl", key) == 0)
551                                 || (strcmp ("maxusers", key) == 0)
552                                 || (strcmp ("name", key) == 0)
553                                 || (strcmp ("password", key) == 0)
554                                 || (strcmp ("platform", key) == 0)
555                                 || (strcmp ("server_platform", key) == 0)
556                                 || (strcmp ("server_uptime", key) == 0)
557                                 || (strcmp ("server_version", key) == 0)
558                                 || (strcmp ("udpport", key) == 0)
559                                 || (strcmp ("uptime", key) == 0)
560                                 || (strcmp ("users_maximal", key) == 0)
561                                 || (strcmp ("welcomemessage", key) == 0))
562                         /* ignore */;
563                 else
564                 {
565                         INFO ("teamspeak2 plugin: Unknown key-value-pair: "
566                                         "key = %s; value = %s;", key, value);
567                 }
568         } /* while (42) */
569
570         if ((valid & 0x01) == 0x01)
571                 tss2_submit_gauge (plugin_instance, "users", users);
572
573         if ((valid & 0x06) == 0x06)
574                 tss2_submit_io (plugin_instance, "io_octets", rx_octets, tx_octets);
575
576         if ((valid & 0x18) == 0x18)
577                 tss2_submit_io (plugin_instance, "io_packets", rx_packets, tx_packets);
578
579         if (valid == 0)
580                 return (-1);
581         return (0);
582 } /* int tss2_read_vserver */
583
584 static int tss2_config (const char *key, const char *value)
585 {
586         /*
587          * Interpret configuration values
588          */
589     if (strcasecmp ("Host", key) == 0)
590         {
591                 char *temp;
592
593                 temp = strdup (value);
594                 if (temp == NULL)
595                 {
596                         ERROR("teamspeak2 plugin: strdup failed.");
597                         return (1);
598                 }
599                 sfree (config_host);
600                 config_host = temp;
601         }
602         else if (strcasecmp ("Port", key) == 0)
603         {
604                 char *temp;
605
606                 temp = strdup (value);
607                 if (temp == NULL)
608                 {
609                         ERROR("teamspeak2 plugin: strdup failed.");
610                         return (1);
611                 }
612                 sfree (config_port);
613                 config_port = temp;
614         }
615         else if (strcasecmp ("Server", key) == 0)
616         {
617                 /* Server variable found */
618                 int status;
619                 
620                 status = tss2_add_vserver (atoi (value));
621                 if (status != 0)
622                         return (1);
623         }
624         else
625         {
626                 /* Unknown variable found */
627                 return (-1);
628         }
629
630         return 0;
631 } /* int tss2_config */
632
633 static int tss2_read (void)
634 {
635         vserver_list_t *vserver;
636         int success = 0;
637         int status;
638
639         /* Handle global server variables */
640         status = tss2_read_vserver (NULL);
641         if (status == 0)
642         {
643                 success++;
644         }
645         else
646         {
647                 WARNING ("teamspeak2 plugin: Reading global server variables failed.");
648         }
649
650         for (vserver = server_list; vserver != NULL; vserver = vserver->next)
651         {
652                 status = tss2_read_vserver (vserver);
653                 if (status == 0)
654                 {
655                         success++;
656                 }
657                 else
658                 {
659                         WARNING ("teamspeak2 plugin: Reading statistics "
660                                         "for vserver %i failed.", vserver->port);
661                         continue;
662                 }
663         }
664         
665         if (success == 0)
666                 return (-1);
667     return (0);
668 } /* int tss2_read */
669
670 static int tss2_shutdown(void)
671 {
672         /*
673          * Shutdown handler
674          */
675         vserver_list_t *entry;
676
677         tss2_close_socket ();
678
679         entry = server_list;
680         server_list = NULL;
681         while (entry != NULL)
682         {
683                 vserver_list_t *next;
684
685                 next = entry->next;
686                 sfree (entry);
687                 entry = next;
688         }
689
690         /* Get rid of the configuration */
691         sfree (config_host);
692         sfree (config_port);
693         
694     return (0);
695 } /* int tss2_shutdown */
696
697 void module_register(void)
698 {
699         /*
700          * Mandatory module_register function
701          */
702         plugin_register_config ("teamspeak2", tss2_config,
703                         config_keys, config_keys_num);
704         plugin_register_read ("teamspeak2", tss2_read);
705         plugin_register_shutdown ("teamspeak2", tss2_shutdown);
706 } /* void module_register */
707
708 /* vim: set sw=4 ts=4 : */