apcups plugin: Use `plugin_complain' and `plugin_relief'.
[collectd.git] / src / apcups.c
1 /*
2  * collectd - src/apcups.c
3  * Copyright (C) 2006 Anthony Gialluca <tonyabg at charter.net>
4  * Copyright (C) 2000-2004 Kern Sibbald
5  * Copyright (C) 1996-99 Andre M. Hedrick <andre at suse.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of version 2 of the GNU General
9  * Public License as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the Free
18  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
19  * MA 02111-1307, USA.
20  *
21  * Authors:
22  *   Anthony Gialluca <tonyabg at charter.net>
23  **/
24
25 /*
26  * FIXME: Don't know why but without this here atof() was not returning
27  * correct values for me. This is behavior that I don't understand and
28  * should be examined in closer detail.
29  */
30 #include <stdlib.h>
31
32 #include "collectd.h"
33 #include "common.h"      /* rrd_update_file */
34 #include "plugin.h"      /* plugin_register, plugin_submit */
35 #include "configfile.h"  /* cf_register */
36 #include "utils_debug.h"
37
38 #if HAVE_SYS_TYPES_H
39 # include <sys/types.h>
40 #endif
41 #if HAVE_SYS_SOCKET_H
42 # include <sys/socket.h>
43 #endif
44 #if HAVE_NETDB_H
45 # include <netdb.h>
46 #endif
47
48 #if HAVE_NETINET_IN_H
49 # include <netinet/in.h>
50 #endif
51
52 #ifndef APCMAIN
53 # define APCMAIN 0
54 #endif
55
56 #define NISPORT 3551
57 #define MAXSTRING               256
58 #define MODULE_NAME "apcups"
59
60 #define APCUPS_DEFAULT_HOST "localhost"
61
62 /* Default values for contacting daemon */
63 static char *global_host = NULL;
64 static int   global_port = NISPORT;
65
66 /* 
67  * The following are only if not compiled to test the module with its own main.
68 */
69 #if !APCMAIN
70 static char *bvolt_file_template = "apcups/voltage-%s.rrd";
71 static char *bvolt_ds_def[] = 
72 {
73         "DS:voltage:GAUGE:"COLLECTD_HEARTBEAT":0:U",
74 };
75 static int bvolt_ds_num = 1;
76
77 static char *load_file_template = "apcups/load_percent.rrd";
78 static char *load_ds_def[] = 
79 {
80         "DS:percent:GAUGE:"COLLECTD_HEARTBEAT":0:110",
81 };
82 static int load_ds_num = 1;
83
84 static char *charge_file_template = "apcups/charge_percent.rrd";
85 static char *charge_ds_def[] = 
86 {
87         "DS:percent:GAUGE:"COLLECTD_HEARTBEAT":0:110",
88 };
89 static int charge_ds_num = 1;
90
91 static char *time_file_template = "apcups/timeleft.rrd";
92 static char *time_ds_def[] = 
93 {
94         "DS:timeleft:GAUGE:"COLLECTD_HEARTBEAT":0:100",
95 };
96 static int time_ds_num = 1;
97
98 static char *temp_file_template = "apcups/temperature.rrd";
99 static char *temp_ds_def[] = 
100 {
101         /* -273.15 is absolute zero */
102         "DS:value:GAUGE:"COLLECTD_HEARTBEAT":-274:U",
103 };
104 static int temp_ds_num = 1;
105
106 static char *freq_file_template = "apcups/frequency-%s.rrd";
107 static char *freq_ds_def[] = 
108 {
109         "DS:frequency:GAUGE:"COLLECTD_HEARTBEAT":0:U",
110 };
111 static int freq_ds_num = 1;
112
113 static char *config_keys[] =
114 {
115         "Host",
116         "Port",
117         NULL
118 };
119 static int config_keys_num = 2;
120
121 #endif /* if APCMAIN */
122
123 struct apc_detail_s
124 {
125         double linev;
126         double loadpct;
127         double bcharge;
128         double timeleft;
129         double outputv;
130         double itemp;
131         double battv;
132         double linefreq;
133 };
134
135 #define BIG_BUF 4096
136
137 #if APCMAIN
138 /* Close the network connection */
139 static void net_close (int *fd)
140 {
141         uint16_t packet_size = 0;
142
143         assert (*fd >= 0);
144
145         DBG ("Gracefully shutting down socket %i.", *fd);
146
147         /* send EOF sentinel */
148         swrite (*fd, (void *) &packet_size, sizeof (packet_size));
149
150         close (*fd);
151         *fd = -1;
152 }
153 #endif /* APCMAIN */
154
155 /*     
156  * Open a TCP connection to the UPS network server
157  * Returns -1 on error
158  * Returns socket file descriptor otherwise
159  */
160 static int net_open (char *host, char *service, int port)
161 {
162         int              sd;
163         int              status;
164         char             port_str[8];
165         struct addrinfo  ai_hints;
166         struct addrinfo *ai_return;
167         struct addrinfo *ai_list;
168
169         assert ((port > 0x00000000) && (port <= 0x0000FFFF));
170
171         /* Convert the port to a string */
172         snprintf (port_str, 8, "%i", port);
173         port_str[7] = '\0';
174
175         /* Resolve name */
176         memset ((void *) &ai_hints, '\0', sizeof (ai_hints));
177         ai_hints.ai_family   = AF_INET; /* XXX: Change this to `AF_UNSPEC' if apcupsd can handle IPv6 */
178         ai_hints.ai_socktype = SOCK_STREAM;
179
180         status = getaddrinfo (host, port_str, &ai_hints, &ai_return);
181         if (status != 0)
182         {
183                 DBG ("getaddrinfo failed: %s", status == EAI_SYSTEM ? strerror (errno) : gai_strerror (status));
184                 return (-1);
185         }
186
187         /* Create socket */
188         sd = -1;
189         for (ai_list = ai_return; ai_list != NULL; ai_list = ai_list->ai_next)
190         {
191                 sd = socket (ai_list->ai_family, ai_list->ai_socktype, ai_list->ai_protocol);
192                 if (sd >= 0)
193                         break;
194         }
195         /* `ai_list' still holds the current description of the socket.. */
196
197         if (sd < 0)
198         {
199                 DBG ("Unable to open a socket");
200                 freeaddrinfo (ai_return);
201                 return (-1);
202         }
203
204         status = connect (sd, ai_list->ai_addr, ai_list->ai_addrlen);
205
206         freeaddrinfo (ai_return);
207
208         if (status != 0) /* `connect(2)' failed */
209         {
210                 DBG ("connect failed: %s", strerror (errno));
211                 return (-1);
212         }
213
214         DBG ("Done opening a socket %i", sd);
215
216         return (sd);
217 } /* int net_open (char *host, char *service, int port) */
218
219 /* 
220  * Receive a message from the other end. Each message consists of
221  * two packets. The first is a header that contains the size
222  * of the data that follows in the second packet.
223  * Returns number of bytes read
224  * Returns 0 on end of file
225  * Returns -1 on hard end of file (i.e. network connection close)
226  * Returns -2 on error
227  */
228 static int net_recv (int *sockfd, char *buf, int buflen)
229 {
230         uint16_t packet_size;
231
232         /* get data size -- in short */
233         if (sread (*sockfd, (void *) &packet_size, sizeof (packet_size)) != 0)
234         {
235                 *sockfd = -1;
236                 return (-1);
237         }
238
239         packet_size = ntohs (packet_size);
240         if (packet_size > buflen)
241         {
242                 DBG ("record length too large");
243                 return (-2);
244         }
245
246         if (packet_size == 0)
247                 return (0);
248
249         /* now read the actual data */
250         if (sread (*sockfd, (void *) buf, packet_size) != 0)
251         {
252                 *sockfd = -1;
253                 return (-1);
254         }
255
256         return ((int) packet_size);
257 } /* static int net_recv (int *sockfd, char *buf, int buflen) */
258
259 /*
260  * Send a message over the network. The send consists of
261  * two network packets. The first is sends a short containing
262  * the length of the data packet which follows.
263  * Returns zero on success
264  * Returns non-zero on error
265  */
266 static int net_send (int *sockfd, char *buff, int len)
267 {
268         uint16_t packet_size;
269
270         assert (len > 0);
271         assert (*sockfd >= 0);
272
273         /* send short containing size of data packet */
274         packet_size = htons ((uint16_t) len);
275
276         if (swrite (*sockfd, (void *) &packet_size, sizeof (packet_size)) != 0)
277         {
278                 *sockfd = -1;
279                 return (-1);
280         }
281
282         /* send data packet */
283         if (swrite (*sockfd, (void *) buff, len) != 0)
284         {
285                 *sockfd = -1;
286                 return (-2);
287         }
288
289         return (0);
290 }
291
292 /* Get and print status from apcupsd NIS server */
293 static int apc_query_server (char *host, int port,
294                 struct apc_detail_s *apcups_detail)
295 {
296         int     n;
297         char    recvline[1024];
298         char   *tokptr;
299         char   *key;
300         double  value;
301
302         static int sockfd   = -1;
303         static complain_t compl;
304
305 #if APCMAIN
306 # define PRINT_VALUE(name, val) printf("  Found property: name = %s; value = %f;\n", name, val)
307 #else
308 # define PRINT_VALUE(name, val) /**/
309 #endif
310
311         if (sockfd < 0)
312         {
313                 if ((sockfd = net_open (host, NULL, port)) < 0)
314                 {
315                         plugin_complain (LOG_ERR, &compl, "apcups plugin: "
316                                         "Connecting to the apcupsd failed.");
317                         return (-1);
318                 }
319                 else
320                 {
321                         plugin_relief (LOG_NOTICE, &compl, "apcups plugin: "
322                                         "Connection re-established to the apcupsd.");
323                 }
324         }
325
326         if (net_send (&sockfd, "status", 6) < 0)
327         {
328                 syslog (LOG_ERR, "apcups plugin: Writing to the socket failed.");
329                 return (-1);
330         }
331
332         while ((n = net_recv (&sockfd, recvline, sizeof (recvline) - 1)) > 0)
333         {
334                 assert (n < sizeof (recvline));
335                 recvline[n] = '\0';
336 #if APCMAIN
337                 printf ("net_recv = `%s';\n", recvline);
338 #endif /* if APCMAIN */
339
340                 tokptr = strtok (recvline, " :\t");
341                 while (tokptr != NULL)
342                 {
343                         key = tokptr;
344                         if ((tokptr = strtok (NULL, " :\t")) == NULL)
345                                 continue;
346                         value = atof (tokptr);
347
348                         PRINT_VALUE (key, value);
349
350                         if (strcmp ("LINEV", key) == 0)
351                                 apcups_detail->linev = value;
352                         else if (strcmp ("BATTV", key) == 0) 
353                                 apcups_detail->battv = value;
354                         else if (strcmp ("ITEMP", key) == 0)
355                                 apcups_detail->itemp = value;
356                         else if (strcmp ("LOADPCT", key) == 0)
357                                 apcups_detail->loadpct = value;
358                         else if (strcmp ("BCHARGE", key) == 0)
359                                 apcups_detail->bcharge = value;
360                         else if (strcmp ("OUTPUTV", key) == 0)
361                                 apcups_detail->outputv = value;
362                         else if (strcmp ("LINEFREQ", key) == 0)
363                                 apcups_detail->linefreq = value;
364                         else if (strcmp ("TIMELEFT", key) == 0)
365                                 apcups_detail->timeleft = value;
366
367                         tokptr = strtok (NULL, ":");
368                 } /* while (tokptr != NULL) */
369         }
370         
371         if (n < 0)
372         {
373                 syslog (LOG_WARNING, "apcups plugin: Error reading from socket");
374                 return (-1);
375         }
376 #if APCMAIN
377         else
378         {
379                 /* close the opened socket */
380                 net_close (&sockfd);
381         }
382 #endif /* APCMAIN */
383
384         return (0);
385 }
386
387 #if APCMAIN
388 /*
389  * This is used for testing apcups in a standalone mode.
390  * Usefull for debugging.
391  */
392 int main (int argc, char **argv)
393 {
394         /* we are not really going to use this */
395         struct apc_detail_s apcups_detail;
396
397         openlog ("apcups", LOG_PID | LOG_NDELAY | LOG_LOCAL1, LOG_USER);
398
399         if (global_host == NULL || strcmp (global_host, "0.0.0.0") == 0)
400                 global_host = "localhost";
401
402         if(apc_query_server (global_host, global_port, &apcups_detail) < 0)
403         {
404                 printf("apcups: Failed...\n");
405                 return(-1);
406         }
407
408         return 0;
409 }
410 #else
411 static int apcups_config (char *key, char *value)
412 {
413         if (strcasecmp (key, "host") == 0)
414         {
415                 if (global_host != NULL)
416                 {
417                         free (global_host);
418                         global_host = NULL;
419                 }
420                 if ((global_host = strdup (value)) == NULL)
421                         return (1);
422         }
423         else if (strcasecmp (key, "Port") == 0)
424         {
425                 int port_tmp = atoi (value);
426                 if (port_tmp < 1 || port_tmp > 65535)
427                 {
428                         syslog (LOG_WARNING, "apcups plugin: Invalid port: %i", port_tmp);
429                         return (1);
430                 }
431                 global_port = port_tmp;
432         }
433         else
434         {
435                 return (-1);
436         }
437         return (0);
438 }
439
440 static void apcups_init (void)
441 {
442         return;
443 }
444
445 static void apc_write_voltage (char *host, char *inst, char *val)
446 {
447         char file[512];
448         int  status;
449
450         status = snprintf (file, 512, bvolt_file_template, inst);
451         if ((status < 1) || (status >= 512))
452                 return;
453
454         rrd_update_file (host, file, val, bvolt_ds_def, bvolt_ds_num);
455 }
456
457 static void apc_write_charge (char *host, char *inst, char *val)
458 {
459         rrd_update_file (host, charge_file_template, val, charge_ds_def, charge_ds_num);
460 }
461
462 static void apc_write_percent (char *host, char *inst, char *val)
463 {
464         rrd_update_file (host, load_file_template, val, load_ds_def, load_ds_num);
465 }
466
467 static void apc_write_timeleft (char *host, char *inst, char *val)
468 {
469         rrd_update_file (host, time_file_template, val, time_ds_def, time_ds_num);
470 }
471
472 static void apc_write_temperature (char *host, char *inst, char *val)
473 {
474         rrd_update_file (host, temp_file_template, val, temp_ds_def, temp_ds_num);
475 }
476
477 static void apc_write_frequency (char *host, char *inst, char *val)
478 {
479         char file[512];
480         int  status;
481
482         status = snprintf (file, 512, freq_file_template, inst);
483         if ((status < 1) || (status >= 512))
484                 return;
485
486         rrd_update_file (host, file, val, freq_ds_def, freq_ds_num);
487 }
488
489 static void apc_submit_generic (char *type, char *inst,
490                 double value)
491 {
492         char buf[512];
493         int  status;
494
495         status = snprintf (buf, 512, "%u:%f",
496                         (unsigned int) curtime, value);
497         if ((status < 1) || (status >= 512))
498                 return;
499
500         DBG ("plugin_submit (%s, %s, %s);", type, inst, buf);
501         plugin_submit (type, inst, buf);
502 }
503
504 static void apc_submit (struct apc_detail_s *apcups_detail)
505 {
506         apc_submit_generic ("apcups_voltage",    "input",   apcups_detail->linev);
507         apc_submit_generic ("apcups_voltage",    "output",  apcups_detail->outputv);
508         apc_submit_generic ("apcups_voltage",    "battery", apcups_detail->battv);
509         apc_submit_generic ("apcups_charge",     "-",       apcups_detail->bcharge);
510         apc_submit_generic ("apcups_charge_pct", "-",       apcups_detail->loadpct);
511         apc_submit_generic ("apcups_timeleft",   "-",       apcups_detail->timeleft);
512         apc_submit_generic ("apcups_temp",       "-",       apcups_detail->itemp);
513         apc_submit_generic ("apcups_frequency",  "input",   apcups_detail->linefreq);
514 }
515
516 static void apcups_read (void)
517 {
518         struct apc_detail_s apcups_detail;
519         int status;
520
521         apcups_detail.linev    =   -1.0;
522         apcups_detail.outputv  =   -1.0;
523         apcups_detail.battv    =   -1.0;
524         apcups_detail.loadpct  =   -1.0;
525         apcups_detail.bcharge  =   -1.0;
526         apcups_detail.timeleft =   -1.0;
527         apcups_detail.itemp    = -300.0;
528         apcups_detail.linefreq =   -1.0;
529   
530         status = apc_query_server (global_host == NULL
531                         ? APCUPS_DEFAULT_HOST
532                         : global_host,
533                         global_port, &apcups_detail);
534  
535         /*
536          * if we did not connect then do not bother submitting
537          * zeros. We want rrd files to have NAN.
538          */
539         if (status != 0)
540         {
541                 DBG ("apc_query_server (%s, %i) = %i",
542                                 global_host == NULL
543                                 ? APCUPS_DEFAULT_HOST
544                                 : global_host,
545                                 global_port, status);
546                 return;
547         }
548
549         apc_submit (&apcups_detail);
550 } /* apcups_read */
551
552 void module_register (void)
553 {
554         plugin_register (MODULE_NAME, apcups_init, apcups_read, NULL);
555         plugin_register ("apcups_voltage",    NULL, NULL, apc_write_voltage);
556         plugin_register ("apcups_charge",     NULL, NULL, apc_write_charge);
557         plugin_register ("apcups_charge_pct", NULL, NULL, apc_write_percent);
558         plugin_register ("apcups_timeleft",   NULL, NULL, apc_write_timeleft);
559         plugin_register ("apcups_temp",       NULL, NULL, apc_write_temperature);
560         plugin_register ("apcups_frequency",  NULL, NULL, apc_write_frequency);
561         cf_register (MODULE_NAME, apcups_config, config_keys, config_keys_num);
562 }
563
564 #endif /* if APCMAIN */
565 #undef MODULE_NAME