1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
/*
* clone-outlet.c: clone outlet UPS driver
*
* Copyright (C) 2009 - Arjen de Korte <adkorte-guest@alioth.debian.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "main.h"
#include "parseconf.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#define DRIVER_NAME "clone outlet UPS Driver"
#define DRIVER_VERSION "0.01"
/* driver description structure */
upsdrv_info_t upsdrv_info = {
DRIVER_NAME,
DRIVER_VERSION,
"Arjen de Korte <adkorte-guest@alioth.debian.org>",
DRV_EXPERIMENTAL,
{ NULL }
};
static struct {
struct {
char *shutdown;
} delay;
struct {
char *shutdown;
} timer;
char *status;
} prefix = { { NULL }, { NULL }, NULL };
static struct {
struct {
long shutdown;
} delay;
struct {
long shutdown;
} timer;
int status;
} outlet = { { -1 }, { -1 }, 1 };
static struct {
char status[LARGEBUF];
} ups = { "WAIT" };
static int dumpdone = 0;
static PCONF_CTX_t sock_ctx;
static time_t last_heard = 0, last_ping = 0, last_connfail = 0;
static int parse_args(int numargs, char **arg)
{
if (numargs < 1) {
return 0;
}
if (!strcasecmp(arg[0], "PONG")) {
upsdebugx(3, "Got PONG from UPS");
return 1;
}
if (!strcasecmp(arg[0], "DUMPDONE")) {
upsdebugx(3, "UPS: dump is done");
dumpdone = 1;
return 1;
}
if (!strcasecmp(arg[0], "DATASTALE")) {
dstate_datastale();
return 1;
}
if (!strcasecmp(arg[0], "DATAOK")) {
dstate_dataok();
return 1;
}
if (numargs < 2) {
return 0;
}
/* DELINFO <var> */
if (!strcasecmp(arg[0], "DELINFO")) {
dstate_delinfo(arg[1]);
return 1;
}
if (numargs < 3) {
return 0;
}
/* SETINFO <varname> <value> */
if (!strcasecmp(arg[0], "SETINFO")) {
if (!strncasecmp(arg[1], "driver.", 7)) {
/* don't pass on upstream driver settings */
return 1;
}
if (!strcasecmp(arg[1], prefix.delay.shutdown)) {
outlet.delay.shutdown = strtol(arg[2], NULL, 10);
}
if (!strcasecmp(arg[1], prefix.timer.shutdown)) {
outlet.timer.shutdown = strtol(arg[2], NULL, 10);
}
if (!strcasecmp(arg[1], prefix.status)) {
outlet.status = strcasecmp(arg[2], "off");
}
if (!strcasecmp(arg[1], "ups.status")) {
snprintf(ups.status, sizeof(ups.status), "%s", arg[2]);
return 1;
}
dstate_setinfo(arg[1], "%s", arg[2]);
return 1;
}
return 0;
}
static int sstate_connect(void)
{
int ret, fd;
const char *dumpcmd = "DUMPALL\n";
struct sockaddr_un sa;
memset(&sa, '\0', sizeof(sa));
sa.sun_family = AF_UNIX;
snprintf(sa.sun_path, sizeof(sa.sun_path), "%s/%s", dflt_statepath(), device_path);
fd = socket(AF_UNIX, SOCK_STREAM, 0);
if (fd < 0) {
upslog_with_errno(LOG_ERR, "Can't create socket for UPS [%s]", device_path);
return -1;
}
ret = connect(fd, (struct sockaddr *) &sa, sizeof(sa));
if (ret < 0) {
time_t now;
close(fd);
/* rate-limit complaints - don't spam the syslog */
time(&now);
if (difftime(now, last_connfail) < 60) {
return -1;
}
last_connfail = now;
upslog_with_errno(LOG_ERR, "Can't connect to UPS [%s]", device_path);
return -1;
}
ret = fcntl(fd, F_GETFL, 0);
if (ret < 0) {
upslog_with_errno(LOG_ERR, "fcntl get on UPS [%s] failed", device_path);
close(fd);
return -1;
}
ret = fcntl(fd, F_SETFL, ret | O_NDELAY);
if (ret < 0) {
upslog_with_errno(LOG_ERR, "fcntl set O_NDELAY on UPS [%s] failed", device_path);
close(fd);
return -1;
}
/* get a dump started so we have a fresh set of data */
ret = write(fd, dumpcmd, strlen(dumpcmd));
if (ret != (int)strlen(dumpcmd)) {
upslog_with_errno(LOG_ERR, "Initial write to UPS [%s] failed", device_path);
close(fd);
return -1;
}
pconf_init(&sock_ctx, NULL);
time(&last_heard);
dumpdone = 0;
/* set ups.status to "WAIT" while waiting for the driver response to dumpcmd */
dstate_setinfo("ups.status", "WAIT");
upslogx(LOG_INFO, "Connected to UPS [%s]", device_path);
return fd;
}
static void sstate_disconnect(void)
{
if (upsfd < 0) {
return;
}
pconf_finish(&sock_ctx);
close(upsfd);
upsfd = -1;
}
static int sstate_sendline(const char *buf)
{
int ret;
if (upsfd < 0) {
return -1; /* failed */
}
ret = write(upsfd, buf, strlen(buf));
if (ret == (int)strlen(buf)) {
return 0;
}
upslog_with_errno(LOG_NOTICE, "Send to UPS [%s] failed", device_path);
return -1; /* failed */
}
static int sstate_readline(void)
{
int i, ret;
char buf[SMALLBUF];
if (upsfd < 0) {
return -1; /* failed */
}
ret = read(upsfd, buf, sizeof(buf));
if (ret < 0) {
switch(errno)
{
case EINTR:
case EAGAIN:
return 0;
default:
upslog_with_errno(LOG_WARNING, "Read from UPS [%s] failed", device_path);
return -1;
}
}
for (i = 0; i < ret; i++) {
switch (pconf_char(&sock_ctx, buf[i]))
{
case 1:
if (parse_args(sock_ctx.numargs, sock_ctx.arglist)) {
time(&last_heard);
}
continue;
case 0:
continue; /* haven't gotten a line yet */
default:
/* parse error */
upslogx(LOG_NOTICE, "Parse error on sock: %s", sock_ctx.errmsg);
return -1;
}
}
return 0;
}
static int sstate_dead(int maxage)
{
time_t now;
double elapsed;
/* an unconnected ups is always dead */
if (upsfd < 0) {
upsdebugx(3, "sstate_dead: connection to driver socket for UPS [%s] lost", device_path);
return -1; /* dead */
}
time(&now);
/* ignore DATAOK/DATASTALE unless the dump is done */
if (dumpdone && dstate_is_stale()) {
upsdebugx(3, "sstate_dead: driver for UPS [%s] says data is stale", device_path);
return -1; /* dead */
}
elapsed = difftime(now, last_heard);
/* somewhere beyond a third of the maximum time - prod it to make it talk */
if ((elapsed > (maxage / 3)) && (difftime(now, last_ping) > (maxage / 3))) {
upsdebugx(3, "Send PING to UPS");
sstate_sendline("PING\n");
last_ping = now;
}
if (elapsed > maxage) {
upsdebugx(3, "sstate_dead: didn't hear from driver for UPS [%s] for %g seconds (max %d)",
device_path, elapsed, maxage);
return -1; /* dead */
}
return 0;
}
void upsdrv_initinfo(void)
{
}
void upsdrv_updateinfo(void)
{
if (sstate_dead(15)) {
sstate_disconnect();
extrafd = upsfd = sstate_connect();
return;
}
if (sstate_readline()) {
sstate_disconnect();
return;
}
if (outlet.status == 0) {
upsdebugx(2, "OFF flag set (%s: switched off)", prefix.status);
dstate_setinfo("ups.status", "%s OFF", ups.status);
return;
}
if ((outlet.timer.shutdown > -1) && (outlet.timer.shutdown <= outlet.delay.shutdown)) {
upsdebugx(2, "FSD flag set (%s: -1 < [%ld] <= %ld)", prefix.timer.shutdown, outlet.timer.shutdown, outlet.delay.shutdown);
dstate_setinfo("ups.status", "FSD %s", ups.status);
return;
}
upsdebugx(3, "%s: power state not critical", getval("prefix"));
dstate_setinfo("ups.status", "%s", ups.status);
}
void upsdrv_shutdown(void)
{
}
void upsdrv_help(void)
{
}
void upsdrv_makevartable(void)
{
addvar(VAR_VALUE, "prefix", "Outlet prefix (mandatory)");
}
void upsdrv_initups(void)
{
char buf[SMALLBUF];
const char *val;
val = getval("prefix");
if (!val) {
fatalx(EXIT_FAILURE, "Outlet prefix is mandatory for this driver!");
}
snprintf(buf, sizeof(buf), "%s.delay.shutdown", val);
prefix.delay.shutdown = xstrdup(buf);
snprintf(buf, sizeof(buf), "%s.timer.shutdown", val);
prefix.timer.shutdown = xstrdup(buf);
snprintf(buf, sizeof(buf), "%s.status", val);
prefix.status = xstrdup(buf);
extrafd = upsfd = sstate_connect();
}
void upsdrv_cleanup(void)
{
free(prefix.delay.shutdown);
free(prefix.timer.shutdown);
free(prefix.status);
sstate_disconnect();
}
|