3 * Copyright (C) 2007 Florian octo Forster
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * Florian octo Forster <octo at collectd.org>
25 * Pavel Rochnyak <pavel2000 ngs.ru>
33 #include <upsclient.h>
36 typedef UPSCONN_t collectd_upsconn_t;
38 typedef UPSCONN collectd_upsconn_t;
40 #error "Unable to determine the UPS connection type."
44 typedef struct nut_ups_s nut_ups_t;
46 collectd_upsconn_t *conn;
53 static const char *config_keys[] = {"UPS", "FORCESSL", "VERIFYPEER", "CAPATH",
55 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
56 static int force_ssl; // Initialized to default of 0 (false)
57 static int verify_peer; // Initialized to default of 0 (false)
58 static int ssl_flags = UPSCLI_CONN_TRYSSL;
59 static int connect_timeout = -1;
62 static int nut_read(user_data_t *user_data);
64 static void free_nut_ups_t(void *arg) {
67 if (ups->conn != NULL) {
68 upscli_disconnect(ups->conn);
74 } /* void free_nut_ups_t */
76 static int nut_add_ups(const char *name) {
81 DEBUG("nut plugin: nut_add_ups (name = %s);", name);
83 ups = calloc(1, sizeof(*ups));
85 ERROR("nut plugin: nut_add_ups: calloc failed.");
89 status = upscli_splitname(name, &ups->upsname, &ups->hostname, &ups->port);
91 ERROR("nut plugin: nut_add_ups: upscli_splitname (%s) failed.", name);
96 cb_name = ssnprintf_alloc("nut/%s", name);
98 status = plugin_register_complex_read(
100 /* name = */ cb_name,
101 /* callback = */ nut_read,
103 /* user_data = */ &(user_data_t){
104 .data = ups, .free_func = free_nut_ups_t,
109 if (status == EINVAL) {
110 WARNING("nut plugin: UPS \"%s\" already added. "
111 "Please check your configuration.",
117 } /* int nut_add_ups */
119 static int nut_force_ssl(const char *value) {
120 if (strcasecmp(value, "true") == 0)
122 else if (strcasecmp(value, "false") == 0)
123 force_ssl = 0; // Should already be set to 0 from initialization
126 WARNING("nut plugin: nut_force_ssl: invalid FORCESSL value "
127 "found. Defaulting to false.");
130 } /* int nut_parse_force_ssl */
132 static int nut_verify_peer(const char *value) {
133 if (strcasecmp(value, "true") == 0)
135 else if (strcasecmp(value, "false") == 0)
136 verify_peer = 0; // Should already be set to 0 from initialization
139 WARNING("nut plugin: nut_verify_peer: invalid VERIFYPEER value "
140 "found. Defaulting to false.");
143 } /* int nut_verify_peer */
145 static int nut_ca_path(const char *value) {
146 if (value != NULL && strcmp(value, "") != 0) {
147 ca_path = malloc(strlen(value) + 1);
148 strncpy(ca_path, value, (strlen(value) + 1));
150 ca_path = NULL; // Should alread be set to NULL from initialization
153 } /* int nut_ca_path */
155 static int nut_set_connect_timeout(const char *value) {
156 #if HAVE_UPSCLI_TRYCONNECT
160 ret = strtol(value, /* endptr = */ NULL, /* base = */ 10);
162 connect_timeout = ret;
164 WARNING("nut plugin: The ConnectTimeout option requires numeric argument. "
166 #else /* #if HAVE_UPSCLI_TRYCONNECT */
167 WARNING("nut plugin: Dependency libupsclient version insufficient (<2.6.2) "
168 "for ConnectTimeout option support. Setting ignored.");
171 } /* int nut_set_connect_timeout */
173 static int nut_config(const char *key, const char *value) {
174 if (strcasecmp(key, "UPS") == 0)
175 return nut_add_ups(value);
176 else if (strcasecmp(key, "FORCESSL") == 0)
177 return nut_force_ssl(value);
178 else if (strcasecmp(key, "VERIFYPEER") == 0)
179 return nut_verify_peer(value);
180 else if (strcasecmp(key, "CAPATH") == 0)
181 return nut_ca_path(value);
182 else if (strcasecmp(key, "CONNECTTIMEOUT") == 0)
183 return nut_set_connect_timeout(value);
186 } /* int nut_config */
188 static void nut_submit(nut_ups_t *ups, const char *type,
189 const char *type_instance, gauge_t value) {
190 value_list_t vl = VALUE_LIST_INIT;
192 vl.values = &(value_t){.gauge = value};
194 if (strcasecmp(ups->hostname, "localhost") != 0)
195 sstrncpy(vl.host, ups->hostname, sizeof(vl.host));
196 sstrncpy(vl.plugin, "nut", sizeof(vl.plugin));
197 sstrncpy(vl.plugin_instance, ups->upsname, sizeof(vl.plugin_instance));
198 sstrncpy(vl.type, type, sizeof(vl.type));
199 sstrncpy(vl.type_instance, type_instance, sizeof(vl.type_instance));
201 plugin_dispatch_values(&vl);
202 } /* void nut_submit */
204 static int nut_connect(nut_ups_t *ups) {
205 int status, ssl_status;
207 #if HAVE_UPSCLI_TRYCONNECT
209 tv.tv_sec = connect_timeout / 1000;
210 tv.tv_usec = connect_timeout % 1000;
213 upscli_tryconnect(ups->conn, ups->hostname, ups->port, ssl_flags, &tv);
214 #else /* #if HAVE_UPSCLI_TRYCONNECT */
215 status = upscli_connect(ups->conn, ups->hostname, ups->port, ssl_flags);
219 ERROR("nut plugin: nut_connect: upscli_connect (%s, %i) failed: %s",
220 ups->hostname, ups->port, upscli_strerror(ups->conn));
223 } /* if (status != 0) */
225 INFO("nut plugin: Connection to (%s, %i) established.", ups->hostname,
228 // Output INFO or WARNING based on SSL and VERIFICATION
229 ssl_status = upscli_ssl(ups->conn); // 1 for SSL, 0 for not, -1 for error
230 if (ssl_status == 1 && verify_peer == 1) {
231 INFO("nut plugin: Connection is secured with SSL and certificate "
232 "has been verified.");
233 } else if (ssl_status == 1) {
234 INFO("nut plugin: Connection is secured with SSL with no verification "
235 "of server SSL certificate.");
236 } else if (ssl_status == 0) {
237 WARNING("nut plugin: Connection is unsecured (no SSL).");
239 ERROR("nut plugin: nut_connect: upscli_ssl failed: %s",
240 upscli_strerror(ups->conn));
243 } /* if (ssl_status == 1 && verify_peer == 1) */
247 static int nut_read(user_data_t *user_data) {
248 nut_ups_t *ups = user_data->data;
249 const char *query[3] = {"VAR", ups->upsname, NULL};
250 unsigned int query_num = 2;
252 unsigned int answer_num;
255 /* (Re-)Connect if we have no connection */
256 if (ups->conn == NULL) {
257 ups->conn = malloc(sizeof(*ups->conn));
258 if (ups->conn == NULL) {
259 ERROR("nut plugin: malloc failed.");
263 status = nut_connect(ups);
267 } /* if (ups->conn == NULL) */
269 /* nut plugin: nut_read_one: upscli_list_start (adpos) failed: Protocol
271 status = upscli_list_start(ups->conn, query_num, query);
273 ERROR("nut plugin: nut_read: upscli_list_start (%s) failed: %s",
274 ups->upsname, upscli_strerror(ups->conn));
275 upscli_disconnect(ups->conn);
280 while ((status = upscli_list_next(ups->conn, query_num, query, &answer_num,
289 value = atof(answer[3]);
291 if (strncmp("ambient.", key, 8) == 0) {
292 if (strcmp("ambient.humidity", key) == 0)
293 nut_submit(ups, "humidity", "ambient", value);
294 else if (strcmp("ambient.temperature", key) == 0)
295 nut_submit(ups, "temperature", "ambient", value);
296 } else if (strncmp("battery.", key, 8) == 0) {
297 if (strcmp("battery.charge", key) == 0)
298 nut_submit(ups, "percent", "charge", value);
299 else if (strcmp("battery.current", key) == 0)
300 nut_submit(ups, "current", "battery", value);
301 else if (strcmp("battery.runtime", key) == 0)
302 nut_submit(ups, "timeleft", "battery", value);
303 else if (strcmp("battery.temperature", key) == 0)
304 nut_submit(ups, "temperature", "battery", value);
305 else if (strcmp("battery.voltage", key) == 0)
306 nut_submit(ups, "voltage", "battery", value);
307 } else if (strncmp("input.", key, 6) == 0) {
308 if (strcmp("input.frequency", key) == 0)
309 nut_submit(ups, "frequency", "input", value);
310 else if (strcmp("input.voltage", key) == 0)
311 nut_submit(ups, "voltage", "input", value);
312 } else if (strncmp("output.", key, 7) == 0) {
313 if (strcmp("output.current", key) == 0)
314 nut_submit(ups, "current", "output", value);
315 else if (strcmp("output.frequency", key) == 0)
316 nut_submit(ups, "frequency", "output", value);
317 else if (strcmp("output.voltage", key) == 0)
318 nut_submit(ups, "voltage", "output", value);
319 } else if (strncmp("ups.", key, 4) == 0) {
320 if (strcmp("ups.load", key) == 0)
321 nut_submit(ups, "percent", "load", value);
322 else if (strcmp("ups.power", key) == 0)
323 nut_submit(ups, "power", "ups", value);
324 else if (strcmp("ups.temperature", key) == 0)
325 nut_submit(ups, "temperature", "ups", value);
327 } /* while (upscli_list_next) */
332 static int nut_init(void) {
334 if (verify_peer == 1 && force_ssl == 0) {
335 WARNING("nut plugin: nut_connect: VerifyPeer true but ForceSSL "
336 "false. Setting ForceSSL to true.");
340 if (verify_peer == 1 && ca_path == NULL) {
341 ERROR("nut plugin: nut_connect: VerifyPeer true but missing "
343 plugin_unregister_read_group("nut");
347 if (verify_peer == 1 || force_ssl == 1) {
348 int status = upscli_init(verify_peer, ca_path, NULL, NULL);
351 ERROR("nut plugin: upscli_init (%i, %s) failed", verify_peer, ca_path);
353 plugin_unregister_read_group("nut");
356 } /* if (verify_peer == 1) */
358 if (verify_peer == 1)
359 ssl_flags = (UPSCLI_CONN_REQSSL | UPSCLI_CONN_CERTVERIF);
360 else if (force_ssl == 1)
361 ssl_flags = UPSCLI_CONN_REQSSL;
363 #else /* #if HAVE_UPSCLI_INIT */
364 if (verify_peer == 1 || ca_path != NULL) {
365 WARNING("nut plugin: nut_connect: Dependency libupsclient version "
366 "insufficient (<2.7) for VerifyPeer support. Ignoring VerifyPeer "
372 ssl_flags = UPSCLI_CONN_REQSSL;
375 if (connect_timeout <= 0)
376 connect_timeout = (long)CDTIME_T_TO_MS(plugin_get_interval());
381 static int nut_shutdown(void) {
387 } /* int nut_shutdown */
389 void module_register(void) {
390 plugin_register_config("nut", nut_config, config_keys, config_keys_num);
391 plugin_register_init("nut", nut_init);
392 plugin_register_shutdown("nut", nut_shutdown);
393 } /* void module_register */