2 * collectd - src/apcups.c
3 * Copyright (C) 2006-2012 Florian octo Forster
4 * Copyright (C) 2006 Anthony Gialluca <tonyabg at charter.net>
5 * Copyright (C) 2000-2004 Kern Sibbald
6 * Copyright (C) 1996-1999 Andre M. Hedrick <andre at suse.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of version 2 of the GNU General
10 * Public License as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but 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
18 * License along with this program; if not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23 * Anthony Gialluca <tonyabg at charter.net>
24 * Florian octo Forster <octo at verplant.org>
28 #include "common.h" /* rrd_update_file */
29 #include "plugin.h" /* plugin_register, plugin_submit */
30 #include "configfile.h" /* cf_register */
33 # include <sys/types.h>
36 # include <sys/socket.h>
43 # include <netinet/in.h>
48 #define MODULE_NAME "apcups"
50 #define APCUPS_DEFAULT_HOST "localhost"
70 /* Default values for contacting daemon */
71 static char *conf_host = NULL;
72 static int conf_port = NISPORT;
74 static int global_sockfd = -1;
76 static int count_retries = 0;
77 static int count_iterations = 0;
78 static _Bool close_socket = 0;
80 static const char *config_keys[] =
86 static int config_keys_num = 2;
88 static int net_shutdown (int *fd)
90 uint16_t packet_size = 0;
92 if ((fd == NULL) || (*fd < 0))
95 swrite (*fd, (void *) &packet_size, sizeof (packet_size));
100 } /* int net_shutdown */
102 /* Close the network connection */
103 static int apcups_shutdown (void)
105 if (global_sockfd < 0)
108 net_shutdown (&global_sockfd);
110 } /* int apcups_shutdown */
113 * Open a TCP connection to the UPS network server
114 * Returns -1 on error
115 * Returns socket file descriptor otherwise
117 static int net_open (char *host, int port)
122 struct addrinfo ai_hints;
123 struct addrinfo *ai_return;
124 struct addrinfo *ai_list;
126 assert ((port > 0x00000000) && (port <= 0x0000FFFF));
128 /* Convert the port to a string */
129 ssnprintf (port_str, sizeof (port_str), "%i", port);
132 memset ((void *) &ai_hints, '\0', sizeof (ai_hints));
133 ai_hints.ai_family = AF_INET; /* XXX: Change this to `AF_UNSPEC' if apcupsd can handle IPv6 */
134 ai_hints.ai_socktype = SOCK_STREAM;
136 status = getaddrinfo (host, port_str, &ai_hints, &ai_return);
140 INFO ("getaddrinfo failed: %s",
141 (status == EAI_SYSTEM)
142 ? sstrerror (errno, errbuf, sizeof (errbuf))
143 : gai_strerror (status));
149 for (ai_list = ai_return; ai_list != NULL; ai_list = ai_list->ai_next)
151 sd = socket (ai_list->ai_family, ai_list->ai_socktype, ai_list->ai_protocol);
155 /* `ai_list' still holds the current description of the socket.. */
159 DEBUG ("Unable to open a socket");
160 freeaddrinfo (ai_return);
164 status = connect (sd, ai_list->ai_addr, ai_list->ai_addrlen);
166 freeaddrinfo (ai_return);
168 if (status != 0) /* `connect(2)' failed */
171 INFO ("connect failed: %s",
172 sstrerror (errno, errbuf, sizeof (errbuf)));
177 DEBUG ("Done opening a socket %i", sd);
180 } /* int net_open (char *host, char *service, int port) */
183 * Receive a message from the other end. Each message consists of
184 * two packets. The first is a header that contains the size
185 * of the data that follows in the second packet.
186 * Returns number of bytes read
187 * Returns 0 on end of file
188 * Returns -1 on hard end of file (i.e. network connection close)
189 * Returns -2 on error
191 static int net_recv (int *sockfd, char *buf, int buflen)
193 uint16_t packet_size;
195 /* get data size -- in short */
196 if (sread (*sockfd, (void *) &packet_size, sizeof (packet_size)) != 0)
203 packet_size = ntohs (packet_size);
204 if (packet_size > buflen)
206 ERROR ("apcups plugin: Received %"PRIu16" bytes of payload "
207 "but have only %i bytes of buffer available.",
208 packet_size, buflen);
214 if (packet_size == 0)
217 /* now read the actual data */
218 if (sread (*sockfd, (void *) buf, packet_size) != 0)
225 return ((int) packet_size);
226 } /* static int net_recv (int *sockfd, char *buf, int buflen) */
229 * Send a message over the network. The send consists of
230 * two network packets. The first is sends a short containing
231 * the length of the data packet which follows.
232 * Returns zero on success
233 * Returns non-zero on error
235 static int net_send (int *sockfd, char *buff, int len)
237 uint16_t packet_size;
240 assert (*sockfd >= 0);
242 /* send short containing size of data packet */
243 packet_size = htons ((uint16_t) len);
245 if (swrite (*sockfd, (void *) &packet_size, sizeof (packet_size)) != 0)
252 /* send data packet */
253 if (swrite (*sockfd, (void *) buff, len) != 0)
263 /* Get and print status from apcupsd NIS server */
264 static int apc_query_server (char *host, int port,
265 struct apc_detail_s *apcups_detail)
277 # define PRINT_VALUE(name, val) printf(" Found property: name = %s; value = %f;\n", name, val)
279 # define PRINT_VALUE(name, val) /**/
284 if (global_sockfd < 0)
286 global_sockfd = net_open (host, port);
287 if (global_sockfd < 0)
289 ERROR ("apcups plugin: Connecting to the "
296 status = net_send (&global_sockfd, "status", strlen ("status"));
299 /* net_send is closing the socket on error. */
300 assert (global_sockfd < 0);
308 ERROR ("apcups plugin: Writing to the socket failed.");
313 } /* while (retry) */
315 /* When collectd's collection interval is larger than apcupsd's
316 * timeout, we would have to retry / re-connect each iteration. Try to
317 * detect this situation and shut down the socket gracefully in that
318 * case. Otherwise, keep the socket open to avoid overhead. */
320 if ((count_iterations == 10) && (count_retries > 2))
322 NOTICE ("apcups plugin: There have been %i retries in the "
323 "first %i iterations. Will close the socket "
324 "in future iterations.",
325 count_retries, count_iterations);
329 while ((n = net_recv (&global_sockfd, recvline, sizeof (recvline) - 1)) > 0)
331 assert ((unsigned int)n < sizeof (recvline));
334 printf ("net_recv = `%s';\n", recvline);
335 #endif /* if APCMAIN */
338 tokptr = strtok_r (recvline, " :\t", &toksaveptr);
339 while (tokptr != NULL)
342 if ((tokptr = strtok_r (NULL, " :\t", &toksaveptr)) == NULL)
344 value = atof (tokptr);
346 PRINT_VALUE (key, value);
348 if (strcmp ("LINEV", key) == 0)
349 apcups_detail->linev = value;
350 else if (strcmp ("BATTV", key) == 0)
351 apcups_detail->battv = value;
352 else if (strcmp ("ITEMP", key) == 0)
353 apcups_detail->itemp = value;
354 else if (strcmp ("LOADPCT", key) == 0)
355 apcups_detail->loadpct = value;
356 else if (strcmp ("BCHARGE", key) == 0)
357 apcups_detail->bcharge = value;
358 else if (strcmp ("OUTPUTV", key) == 0)
359 apcups_detail->outputv = value;
360 else if (strcmp ("LINEFREQ", key) == 0)
361 apcups_detail->linefreq = value;
362 else if (strcmp ("TIMELEFT", key) == 0)
363 apcups_detail->timeleft = value;
365 tokptr = strtok_r (NULL, ":", &toksaveptr);
366 } /* while (tokptr != NULL) */
368 status = errno; /* save errno, net_shutdown() may re-set it. */
371 net_shutdown (&global_sockfd);
376 ERROR ("apcups plugin: Reading from socket failed: %s",
377 sstrerror (status, errbuf, sizeof (errbuf)));
384 static int apcups_config (const char *key, const char *value)
386 if (strcasecmp (key, "host") == 0)
388 if (conf_host != NULL)
393 if ((conf_host = strdup (value)) == NULL)
396 else if (strcasecmp (key, "Port") == 0)
398 int port_tmp = atoi (value);
399 if (port_tmp < 1 || port_tmp > 65535)
401 WARNING ("apcups plugin: Invalid port: %i", port_tmp);
404 conf_port = port_tmp;
413 static void apc_submit_generic (char *type, char *type_inst, double value)
416 value_list_t vl = VALUE_LIST_INIT;
418 values[0].gauge = value;
422 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
423 sstrncpy (vl.plugin, "apcups", sizeof (vl.plugin));
424 sstrncpy (vl.plugin_instance, "", sizeof (vl.plugin_instance));
425 sstrncpy (vl.type, type, sizeof (vl.type));
426 sstrncpy (vl.type_instance, type_inst, sizeof (vl.type_instance));
428 plugin_dispatch_values (&vl);
431 static void apc_submit (struct apc_detail_s *apcups_detail)
433 apc_submit_generic ("voltage", "input", apcups_detail->linev);
434 apc_submit_generic ("voltage", "output", apcups_detail->outputv);
435 apc_submit_generic ("voltage", "battery", apcups_detail->battv);
436 apc_submit_generic ("charge", "", apcups_detail->bcharge);
437 apc_submit_generic ("percent", "load", apcups_detail->loadpct);
438 apc_submit_generic ("timeleft", "", apcups_detail->timeleft);
439 apc_submit_generic ("temperature", "", apcups_detail->itemp);
440 apc_submit_generic ("frequency", "input", apcups_detail->linefreq);
443 static int apcups_read (void)
445 struct apc_detail_s apcups_detail;
448 apcups_detail.linev = -1.0;
449 apcups_detail.outputv = -1.0;
450 apcups_detail.battv = -1.0;
451 apcups_detail.loadpct = -1.0;
452 apcups_detail.bcharge = -1.0;
453 apcups_detail.timeleft = NAN;
454 apcups_detail.itemp = -300.0;
455 apcups_detail.linefreq = -1.0;
457 status = apc_query_server (conf_host == NULL
458 ? APCUPS_DEFAULT_HOST
460 conf_port, &apcups_detail);
463 * if we did not connect then do not bother submitting
464 * zeros. We want rrd files to have NAN.
468 DEBUG ("apc_query_server (%s, %i) = %i",
470 ? APCUPS_DEFAULT_HOST
476 apc_submit (&apcups_detail);
481 void module_register (void)
483 plugin_register_config ("apcups", apcups_config, config_keys,
485 plugin_register_read ("apcups", apcups_read);
486 plugin_register_shutdown ("apcups", apcups_shutdown);
487 } /* void module_register */