2010-03-25 23:20:59 +00:00
|
|
|
/*
|
2011-09-29 18:14:46 +00:00
|
|
|
* apcsmart.c - driver for APC smart protocol units (originally "newapc")
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 Russell Kroll <rkroll@exploits.org>
|
|
|
|
* (C) 2000 Nigel Metheringham <Nigel.Metheringham@Intechnology.co.uk>
|
2013-11-24 15:00:12 +00:00
|
|
|
* (C) 2011+ Michal Soltys <soltys@ziu.info>
|
2011-09-29 18:14:46 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
#include "main.h" /* Must be first, includes "config.h" */
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <regex.h>
|
|
|
|
#include <ctype.h>
|
2013-11-24 15:00:12 +00:00
|
|
|
#include <strings.h> /* strcasecmp() */
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
#include "serial.h"
|
2011-09-29 18:14:46 +00:00
|
|
|
#include "timehead.h"
|
2022-06-29 10:37:36 +00:00
|
|
|
#include "nut_stdint.h"
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
#include "apcsmart.h"
|
|
|
|
#include "apcsmart_tabs.h"
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* driver description structure */
|
|
|
|
upsdrv_info_t upsdrv_info = {
|
|
|
|
DRIVER_NAME,
|
|
|
|
DRIVER_VERSION,
|
2011-06-01 20:31:49 +00:00
|
|
|
"Russell Kroll <rkroll@exploits.org>\n"
|
|
|
|
"Nigel Metheringham <Nigel.Metheringham@Intechnology.co.uk>\n"
|
|
|
|
"Michal Soltys <soltys@ziu.info>",
|
2010-03-25 23:20:59 +00:00
|
|
|
DRV_STABLE,
|
2011-09-29 18:14:46 +00:00
|
|
|
{ &apc_tab_info, NULL }
|
2010-03-25 23:20:59 +00:00
|
|
|
};
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
static long ups_status = 0;
|
2011-09-29 18:14:46 +00:00
|
|
|
|
|
|
|
/* some forwards */
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
static int sdcmd_S(const void *);
|
|
|
|
static int sdcmd_AT(const void *);
|
|
|
|
static int sdcmd_K(const void *);
|
|
|
|
static int sdcmd_Z(const void *);
|
|
|
|
static int sdcmd_CS(const void *);
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
/*
|
|
|
|
* following table *must* match order defined in the man page, namely:
|
|
|
|
* 0:: soft hibernate (*S*)
|
|
|
|
* 1:: hard hibernate (*@*)
|
|
|
|
* 2:: delayed poweroff (*K*)
|
|
|
|
* 3:: instant poweroff (*Z*)
|
|
|
|
* 4:: "force OB hack" (*CS*)
|
|
|
|
*/
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
static int (*sdlist[])(const void *) = {
|
|
|
|
sdcmd_S,
|
|
|
|
sdcmd_AT,
|
|
|
|
sdcmd_K,
|
|
|
|
sdcmd_Z,
|
|
|
|
sdcmd_CS,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SDIDX_AT 1
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
/*
|
|
|
|
* note: both lookup functions MUST be used after variable detection is
|
|
|
|
* completed - that is after deprecate_vars() call; the general reason for this
|
|
|
|
* is 1:n and n:1 nut <-> apc mappings, which are not determined prior to the
|
|
|
|
* detection
|
|
|
|
*/
|
|
|
|
static apc_vartab_t *vt_lookup_char(char cmdchar)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; apc_vartab[i].name != NULL; i++)
|
2013-11-24 15:00:12 +00:00
|
|
|
if ((apc_vartab[i].flags & APC_PRESENT) &&
|
|
|
|
apc_vartab[i].cmd == cmdchar)
|
2010-03-25 23:20:59 +00:00
|
|
|
return &apc_vartab[i];
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
static apc_vartab_t *vt_lookup_name(const char *var)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; apc_vartab[i].name != NULL; i++)
|
2013-11-24 15:00:12 +00:00
|
|
|
if ((apc_vartab[i].flags & APC_PRESENT) &&
|
2011-09-29 18:14:46 +00:00
|
|
|
!strcasecmp(apc_vartab[i].name, var))
|
2010-03-25 23:20:59 +00:00
|
|
|
return &apc_vartab[i];
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
static const char *prtchr(char x)
|
|
|
|
{
|
|
|
|
static size_t curr = 24;
|
|
|
|
static char info[32];
|
|
|
|
|
|
|
|
curr = (curr + 8) & 0x1F;
|
2022-06-29 10:37:36 +00:00
|
|
|
snprintf(info + curr, 8, isprint((size_t)x) ? "%c" : "0x%02x", x);
|
2013-11-24 15:00:12 +00:00
|
|
|
|
|
|
|
return info + curr;
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
static int rexhlp(const char *rex, const char *val)
|
|
|
|
{
|
2013-11-24 15:00:12 +00:00
|
|
|
static const char *empty = "";
|
2011-09-29 18:14:46 +00:00
|
|
|
int ret;
|
|
|
|
regex_t mbuf;
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (!rex || !*rex)
|
|
|
|
return 1;
|
|
|
|
if (!val)
|
|
|
|
val = empty;
|
2011-09-29 18:14:46 +00:00
|
|
|
regcomp(&mbuf, rex, REG_EXTENDED|REG_NOSUB);
|
2013-11-24 15:00:12 +00:00
|
|
|
ret = regexec(&mbuf, val, 0, 0, 0);
|
2011-09-29 18:14:46 +00:00
|
|
|
regfree(&mbuf);
|
2013-11-24 15:00:12 +00:00
|
|
|
return !ret;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
|
|
|
|
2010-03-25 23:20:59 +00:00
|
|
|
/* convert APC formatting to NUT formatting */
|
2011-09-29 18:14:46 +00:00
|
|
|
/* TODO: handle errors better */
|
2013-11-24 15:00:12 +00:00
|
|
|
static const char *convert_data(apc_vartab_t *vt, const char *upsval)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
2011-09-29 18:14:46 +00:00
|
|
|
static char temp[APC_LBUF];
|
2022-06-29 10:37:36 +00:00
|
|
|
long tval;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* this should never happen */
|
|
|
|
if (strlen(upsval) >= sizeof(temp)) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_CRIT, "%s: the length of [%s] is too big", __func__, vt->name);
|
2013-11-24 15:00:12 +00:00
|
|
|
memcpy(temp, upsval, sizeof(temp) - 1);
|
2011-09-29 18:14:46 +00:00
|
|
|
temp[sizeof(temp) - 1] = '\0';
|
|
|
|
return temp;
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
switch (vt->flags & APC_F_MASK) {
|
2010-03-25 23:20:59 +00:00
|
|
|
case APC_F_PERCENT:
|
|
|
|
case APC_F_VOLT:
|
|
|
|
case APC_F_AMP:
|
|
|
|
case APC_F_CELSIUS:
|
|
|
|
case APC_F_HEX:
|
|
|
|
case APC_F_DEC:
|
|
|
|
case APC_F_SECONDS:
|
|
|
|
case APC_F_LEAVE:
|
|
|
|
/* no conversion for any of these */
|
2011-09-29 18:14:46 +00:00
|
|
|
strcpy(temp, upsval);
|
|
|
|
return temp;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
case APC_F_HOURS:
|
|
|
|
/* convert to seconds */
|
|
|
|
|
|
|
|
tval = 60 * 60 * strtol(upsval, NULL, 10);
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
snprintf(temp, sizeof(temp), "%ld", tval);
|
2011-09-29 18:14:46 +00:00
|
|
|
return temp;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
case APC_F_MINUTES:
|
|
|
|
/* Convert to seconds - NUT standard time measurement */
|
|
|
|
tval = 60 * strtol(upsval, NULL, 10);
|
2011-09-29 18:14:46 +00:00
|
|
|
/* Ignore errors - there's not much we can do */
|
2022-06-29 10:37:36 +00:00
|
|
|
snprintf(temp, sizeof(temp), "%ld", tval);
|
2011-09-29 18:14:46 +00:00
|
|
|
return temp;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
case APC_F_REASON:
|
|
|
|
switch (upsval[0]) {
|
|
|
|
case 'R': return "unacceptable utility voltage rate of change";
|
|
|
|
case 'H': return "high utility voltage";
|
|
|
|
case 'L': return "low utility voltage";
|
|
|
|
case 'T': return "line voltage notch or spike";
|
|
|
|
case 'O': return "no transfers yet since turnon";
|
|
|
|
case 'S': return "simulated power failure or UPS test";
|
2011-09-29 18:14:46 +00:00
|
|
|
default:
|
|
|
|
strcpy(temp, upsval);
|
|
|
|
return temp;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
/* this should never happen */
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_CRIT, "%s: unable to convert [%s]", __func__, vt->name);
|
2011-09-29 18:14:46 +00:00
|
|
|
strcpy(temp, upsval);
|
|
|
|
return temp;
|
|
|
|
}
|
|
|
|
|
2012-08-12 21:39:31 +00:00
|
|
|
/* report differences if tcsetattr != tcgetattr, return otherwise */
|
2013-11-24 15:00:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Aix compatible names
|
|
|
|
*/
|
|
|
|
#if defined(VWERSE) && !defined(VWERASE)
|
|
|
|
#define VWERASE VWERSE
|
|
|
|
#endif /* VWERSE && !VWERASE */
|
|
|
|
|
|
|
|
#if defined(VDISCRD) && !defined(VDISCARD)
|
|
|
|
#define VDISCARD VDISCRD
|
|
|
|
#endif /* VDISCRD && !VDISCARD */
|
|
|
|
|
2012-08-12 21:39:31 +00:00
|
|
|
static void apc_ser_diff(struct termios *tioset, struct termios *tioget)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
const char dir[] = { 's', 'g' };
|
|
|
|
struct termios *tio[] = { tioset, tioget };
|
|
|
|
struct cchar {
|
|
|
|
const char *name;
|
2013-11-24 15:00:12 +00:00
|
|
|
unsigned int sub;
|
2012-08-12 21:39:31 +00:00
|
|
|
};
|
|
|
|
const struct cchar cchars1[] = {
|
|
|
|
#ifdef VDISCARD
|
2013-11-24 15:00:12 +00:00
|
|
|
{ "discard", VDISCARD },
|
2012-08-12 21:39:31 +00:00
|
|
|
#endif
|
|
|
|
#ifdef VDSUSP
|
2013-11-24 15:00:12 +00:00
|
|
|
{ "dsusp", VDSUSP },
|
2012-08-12 21:39:31 +00:00
|
|
|
#endif
|
2013-11-24 15:00:12 +00:00
|
|
|
{ "eof", VEOF },
|
|
|
|
{ "eol", VEOL },
|
|
|
|
{ "eol2", VEOL2 },
|
|
|
|
{ "erase", VERASE },
|
2012-08-12 21:39:31 +00:00
|
|
|
#ifdef VINTR
|
2013-11-24 15:00:12 +00:00
|
|
|
{ "intr", VINTR },
|
2012-08-12 21:39:31 +00:00
|
|
|
#endif
|
2013-11-24 15:00:12 +00:00
|
|
|
{ "kill", VKILL },
|
|
|
|
{ "lnext", VLNEXT },
|
|
|
|
{ "min", VMIN },
|
|
|
|
{ "quit", VQUIT },
|
2012-08-12 21:39:31 +00:00
|
|
|
#ifdef VREPRINT
|
2013-11-24 15:00:12 +00:00
|
|
|
{ "reprint", VREPRINT },
|
2012-08-12 21:39:31 +00:00
|
|
|
#endif
|
2013-11-24 15:00:12 +00:00
|
|
|
{ "start", VSTART },
|
2012-08-12 21:39:31 +00:00
|
|
|
#ifdef VSTATUS
|
2013-11-24 15:00:12 +00:00
|
|
|
{ "status", VSTATUS },
|
2012-08-12 21:39:31 +00:00
|
|
|
#endif
|
2013-11-24 15:00:12 +00:00
|
|
|
{ "stop", VSTOP },
|
|
|
|
{ "susp", VSUSP },
|
|
|
|
{ "time", VTIME },
|
|
|
|
{ "werase", VWERASE },
|
2022-06-29 10:37:36 +00:00
|
|
|
{ NULL, 0 },
|
2012-08-12 21:39:31 +00:00
|
|
|
}, *cp;
|
|
|
|
|
|
|
|
/* clear status flags so that they don't affect our binary compare */
|
|
|
|
#if defined(PENDIN) || defined(FLUSHO)
|
|
|
|
for (i = 0; i < sizeof(tio)/sizeof(tio[0]); i++) {
|
|
|
|
#ifdef PENDIN
|
2022-06-29 10:37:36 +00:00
|
|
|
tio[i]->c_lflag &= ~(unsigned int)PENDIN;
|
2012-08-12 21:39:31 +00:00
|
|
|
#endif
|
|
|
|
#ifdef FLUSHO
|
2022-06-29 10:37:36 +00:00
|
|
|
tio[i]->c_lflag &= ~(unsigned int)FLUSHO;
|
2012-08-12 21:39:31 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif /* defined(PENDIN) || defined(FLUSHO) */
|
|
|
|
|
|
|
|
if (!memcmp(tio[0], tio[1], sizeof(*tio[0])))
|
|
|
|
return;
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
upslogx(LOG_NOTICE, "%s: device reports different attributes than requested", device_path);
|
2012-08-12 21:39:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* According to the manual the most common problem is mis-matched
|
|
|
|
* combinations of input and output baud rates. If the combination is
|
|
|
|
* not supported then neither are changed. This should not be a
|
|
|
|
* problem here since we set them both to the same extremely common
|
|
|
|
* rate of 2400.
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(tio)/sizeof(tio[0]); i++) {
|
|
|
|
upsdebugx(1, "tc%cetattr(): gfmt1:cflag=%x:iflag=%x:lflag=%x:oflag=%x:", dir[i],
|
|
|
|
(unsigned int) tio[i]->c_cflag, (unsigned int) tio[i]->c_iflag,
|
|
|
|
(unsigned int) tio[i]->c_lflag, (unsigned int) tio[i]->c_oflag);
|
|
|
|
for (cp = cchars1; cp->name; ++cp)
|
|
|
|
upsdebugx(1, "\t%s=%x:", cp->name, tio[i]->c_cc[cp->sub]);
|
|
|
|
upsdebugx(1, "\tispeed=%d:ospeed=%d", (int) cfgetispeed(tio[i]), (int) cfgetospeed(tio[i]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
static void apc_ser_set(void)
|
|
|
|
{
|
|
|
|
struct termios tio, tio_chk;
|
2013-11-24 15:00:12 +00:00
|
|
|
char *val;
|
2011-09-29 18:14:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* this must be called before the rest, as ser_set_speed() performs
|
|
|
|
* early initialization of the port, apart from changing speed
|
|
|
|
*/
|
|
|
|
ser_set_speed(upsfd, device_path, B2400);
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
val = getval("cable");
|
|
|
|
if (val && !strcasecmp(val, ALT_CABLE_1)) {
|
|
|
|
if (ser_set_dtr(upsfd, 1) == -1)
|
2022-06-29 10:37:36 +00:00
|
|
|
fatalx(EXIT_FAILURE, "%s: ser_set_dtr(%s) failed", __func__, device_path);
|
2013-11-24 15:00:12 +00:00
|
|
|
if (ser_set_rts(upsfd, 0) == -1)
|
2022-06-29 10:37:36 +00:00
|
|
|
fatalx(EXIT_FAILURE, "%s: ser_set_rts(%s) failed", __func__, device_path);
|
2013-11-24 15:00:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* that's all if we want simple non canonical mode; this is meant as a
|
|
|
|
* compatibility measure for windows systems and perhaps some
|
|
|
|
* problematic serial cards/converters
|
|
|
|
*/
|
|
|
|
if ((val = getval("ttymode")) && !strcmp(val, "raw"))
|
|
|
|
return;
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
memset(&tio, 0, sizeof(tio));
|
|
|
|
errno = 0;
|
|
|
|
|
|
|
|
if (tcgetattr(upsfd, &tio))
|
2022-06-29 10:37:36 +00:00
|
|
|
fatal_with_errno(EXIT_FAILURE, "%s: tcgetattr(%s)", __func__, device_path);
|
2011-09-29 18:14:46 +00:00
|
|
|
|
|
|
|
/* set port mode: common stuff, canonical processing */
|
|
|
|
|
|
|
|
tio.c_cflag |= (CS8 | CLOCAL | CREAD);
|
|
|
|
|
|
|
|
tio.c_lflag |= ICANON;
|
2012-06-01 13:55:19 +00:00
|
|
|
#ifdef NOKERNINFO
|
|
|
|
tio.c_lflag |= NOKERNINFO;
|
|
|
|
#endif
|
2022-06-29 10:37:36 +00:00
|
|
|
tio.c_lflag &= ~(unsigned int)(ISIG | IEXTEN);
|
2011-09-29 18:14:46 +00:00
|
|
|
|
|
|
|
tio.c_iflag |= (IGNCR | IGNPAR);
|
2022-06-29 10:37:36 +00:00
|
|
|
tio.c_iflag &= ~(unsigned int)(IXON | IXOFF);
|
2011-09-29 18:14:46 +00:00
|
|
|
|
|
|
|
tio.c_cc[VEOL] = '*'; /* specially handled in apc_read() */
|
|
|
|
#ifdef _POSIX_VDISABLE
|
|
|
|
tio.c_cc[VERASE] = _POSIX_VDISABLE;
|
|
|
|
tio.c_cc[VKILL] = _POSIX_VDISABLE;
|
|
|
|
tio.c_cc[VEOF] = _POSIX_VDISABLE;
|
|
|
|
tio.c_cc[VEOL2] = _POSIX_VDISABLE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (tcflush(upsfd, TCIOFLUSH))
|
2022-06-29 10:37:36 +00:00
|
|
|
fatal_with_errno(EXIT_FAILURE, "%s: tcflush(%s)", __func__, device_path);
|
2011-09-29 18:14:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* warn:
|
|
|
|
* Note, that tcsetattr() returns success if /any/ of the requested
|
|
|
|
* changes could be successfully carried out. Thus the more complicated
|
|
|
|
* test.
|
|
|
|
*/
|
|
|
|
if (tcsetattr(upsfd, TCSANOW, &tio))
|
2022-06-29 10:37:36 +00:00
|
|
|
fatal_with_errno(EXIT_FAILURE, "%s: tcsetattr(%s)", __func__, device_path);
|
2011-09-29 18:14:46 +00:00
|
|
|
|
|
|
|
memset(&tio_chk, 0, sizeof(tio_chk));
|
|
|
|
if (tcgetattr(upsfd, &tio_chk))
|
2022-06-29 10:37:36 +00:00
|
|
|
fatal_with_errno(EXIT_FAILURE, "%s: tcgetattr(%s)", __func__, device_path);
|
2012-06-01 13:55:19 +00:00
|
|
|
|
2012-08-12 21:39:31 +00:00
|
|
|
apc_ser_diff(&tio, &tio_chk);
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ups_status_set(void)
|
|
|
|
{
|
|
|
|
status_init();
|
|
|
|
if (ups_status & APC_STAT_CAL)
|
|
|
|
status_set("CAL"); /* calibration */
|
|
|
|
if (ups_status & APC_STAT_TRIM)
|
|
|
|
status_set("TRIM"); /* SmartTrim */
|
|
|
|
if (ups_status & APC_STAT_BOOST)
|
|
|
|
status_set("BOOST"); /* SmartBoost */
|
|
|
|
if (ups_status & APC_STAT_OL)
|
|
|
|
status_set("OL"); /* on line */
|
|
|
|
if (ups_status & APC_STAT_OB)
|
|
|
|
status_set("OB"); /* on battery */
|
|
|
|
if (ups_status & APC_STAT_OVER)
|
|
|
|
status_set("OVER"); /* overload */
|
|
|
|
if (ups_status & APC_STAT_LB)
|
|
|
|
status_set("LB"); /* low battery */
|
|
|
|
if (ups_status & APC_STAT_RB)
|
|
|
|
status_set("RB"); /* replace batt */
|
|
|
|
|
|
|
|
if (ups_status == 0)
|
|
|
|
status_set("OFF");
|
|
|
|
|
|
|
|
status_commit();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void alert_handler(char ch)
|
|
|
|
{
|
|
|
|
switch (ch) {
|
|
|
|
case '!': /* clear OL, set OB */
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s", __func__, "OB");
|
2010-03-25 23:20:59 +00:00
|
|
|
ups_status &= ~APC_STAT_OL;
|
|
|
|
ups_status |= APC_STAT_OB;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '$': /* clear OB, set OL */
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s", __func__, "OL");
|
2010-03-25 23:20:59 +00:00
|
|
|
ups_status &= ~APC_STAT_OB;
|
|
|
|
ups_status |= APC_STAT_OL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '%': /* set LB */
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s", __func__, "LB");
|
2010-03-25 23:20:59 +00:00
|
|
|
ups_status |= APC_STAT_LB;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '+': /* clear LB */
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s", __func__, "not LB");
|
2010-03-25 23:20:59 +00:00
|
|
|
ups_status &= ~APC_STAT_LB;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '#': /* set RB */
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s", __func__, "RB");
|
2010-03-25 23:20:59 +00:00
|
|
|
ups_status |= APC_STAT_RB;
|
|
|
|
break;
|
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
case '?': /* set OVER */
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s", __func__, "OVER");
|
2011-06-01 20:31:49 +00:00
|
|
|
ups_status |= APC_STAT_OVER;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '=': /* clear OVER */
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s", __func__, "not OVER");
|
2011-06-01 20:31:49 +00:00
|
|
|
ups_status &= ~APC_STAT_OVER;
|
|
|
|
break;
|
|
|
|
|
2010-03-25 23:20:59 +00:00
|
|
|
default:
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: got 0x%02x (unhandled)", __func__, ch);
|
2010-03-25 23:20:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ups_status_set();
|
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/*
|
|
|
|
* we need a tiny bit different processing due to '*' and canonical mode; the
|
|
|
|
* function is subtly different from generic ser_get_line_alert()
|
|
|
|
*/
|
2013-11-24 15:00:12 +00:00
|
|
|
#define apc_read(b, l, f) apc_read_i(b, l, f, __func__, __LINE__)
|
2022-06-29 10:37:36 +00:00
|
|
|
static ssize_t apc_read_i(char *buf, size_t buflen, int flags, const char *fn, unsigned int ln)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
2011-09-29 18:14:46 +00:00
|
|
|
const char *iset = IGN_CHARS, *aset = "";
|
|
|
|
size_t count = 0;
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t i, ret;
|
|
|
|
int sec = 3, usec = 0;
|
2011-09-29 18:14:46 +00:00
|
|
|
char temp[APC_LBUF];
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
if (buflen > (size_t)SSIZE_MAX) {
|
|
|
|
fatalx (EXIT_FAILURE, "Error: apc_read_i called with buflen too large");
|
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if (upsfd == -1)
|
|
|
|
return 0;
|
|
|
|
if (flags & SER_D0) {
|
|
|
|
sec = 0; usec = 0;
|
|
|
|
}
|
|
|
|
if (flags & SER_DX) {
|
|
|
|
sec = 0; usec = 200000;
|
|
|
|
}
|
|
|
|
if (flags & SER_D1) {
|
|
|
|
sec = 1; usec = 500000;
|
|
|
|
}
|
|
|
|
if (flags & SER_D3) {
|
|
|
|
sec = 3; usec = 0;
|
|
|
|
}
|
|
|
|
if (flags & SER_AA) {
|
|
|
|
iset = IGN_AACHARS;
|
|
|
|
aset = ALERT_CHARS;
|
|
|
|
}
|
|
|
|
if (flags & SER_CC) {
|
|
|
|
iset = IGN_CCCHARS;
|
|
|
|
aset = "";
|
|
|
|
sec = 6; usec = 0;
|
|
|
|
}
|
|
|
|
if (flags & SER_CS) {
|
|
|
|
iset = IGN_CSCHARS;
|
|
|
|
aset = "";
|
|
|
|
sec = 6; usec = 0;
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
memset(buf, '\0', buflen);
|
|
|
|
|
|
|
|
while (count < buflen - 1) {
|
|
|
|
errno = 0;
|
|
|
|
ret = select_read(upsfd, temp, sizeof(temp), sec, usec);
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
/* partial timeout (non-canon only paranoid check) */
|
|
|
|
if (ret == 0 && count) {
|
|
|
|
ser_comm_fail("serial port partial timeout: %u(%s)", ln, fn);
|
|
|
|
return -1;
|
|
|
|
}
|
2011-09-29 18:14:46 +00:00
|
|
|
/* error or no timeout allowed */
|
|
|
|
if (ret < 0 || (ret == 0 && !(flags & SER_TO))) {
|
2013-11-24 15:00:12 +00:00
|
|
|
if (ret)
|
|
|
|
ser_comm_fail("serial port read error: %u(%s): %s", ln, fn, strerror(errno));
|
|
|
|
else
|
|
|
|
ser_comm_fail("serial port read timeout: %u(%s)", ln, fn);
|
2011-09-29 18:14:46 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
/* ok, timeout is acceptable */
|
|
|
|
if (ret == 0 && (flags & SER_TO)) {
|
|
|
|
/*
|
|
|
|
* but it doesn't imply ser_comm_good
|
|
|
|
*
|
2013-11-24 15:00:12 +00:00
|
|
|
* for example we might be in comm_fail condition,
|
|
|
|
* trying to "nudge" the UPS with some command
|
|
|
|
* obviously expecting timeout if the comm is still
|
|
|
|
* lost. This would result with filling logs with
|
|
|
|
* confusing comm lost/comm re-established pairs due to
|
|
|
|
* successful serial writes
|
2011-09-29 18:14:46 +00:00
|
|
|
*/
|
2013-11-24 15:00:12 +00:00
|
|
|
return 0;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* parse input */
|
|
|
|
for (i = 0; i < ret; i++) {
|
2013-11-24 15:00:12 +00:00
|
|
|
/* overflow read */
|
|
|
|
if (count == buflen - 1) {
|
|
|
|
ser_comm_fail("serial port read overflow: %u(%s)", ln, fn);
|
|
|
|
tcflush(upsfd, TCIFLUSH);
|
|
|
|
return -1;
|
|
|
|
}
|
2011-09-29 18:14:46 +00:00
|
|
|
/* standard "line received" condition */
|
2013-11-24 15:00:12 +00:00
|
|
|
if (temp[i] == ENDCHAR) {
|
2011-09-29 18:14:46 +00:00
|
|
|
ser_comm_good();
|
2022-06-29 10:37:36 +00:00
|
|
|
return (ssize_t)count;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* '*' is set as a secondary EOL; convert to 'OK' only as a
|
|
|
|
* reply to shutdown command in sdok(); otherwise next
|
|
|
|
* select_read() will continue normally
|
|
|
|
*/
|
|
|
|
if ((flags & SER_HA) && temp[i] == '*') {
|
|
|
|
/*
|
|
|
|
* a bit paranoid, but remember '*' is not real EOL;
|
|
|
|
* there could be some firmware in existence, that
|
|
|
|
* would send both string: 'OK\n' and alert: '*'.
|
|
|
|
* Just in case, try to flush the input with small 1 sec.
|
|
|
|
* timeout
|
|
|
|
*/
|
|
|
|
memset(buf, '\0', buflen);
|
|
|
|
errno = 0;
|
|
|
|
ret = select_read(upsfd, temp, sizeof(temp), 1, 0);
|
|
|
|
if (ret < 0) {
|
2013-11-24 15:00:12 +00:00
|
|
|
ser_comm_fail("serial port read error: %u(%s): %s", ln, fn, strerror(errno));
|
2011-09-29 18:14:46 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
buf[0] = 'O';
|
|
|
|
buf[1] = 'K';
|
|
|
|
ser_comm_good();
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
/* ignore set */
|
|
|
|
if (strchr(iset, temp[i]) || temp[i] == '*') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* alert set */
|
|
|
|
if (strchr(aset, temp[i])) {
|
|
|
|
alert_handler(temp[i]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf[count++] = temp[i];
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ser_comm_good();
|
2022-06-29 10:37:36 +00:00
|
|
|
/* buflen range limited above */
|
|
|
|
return (ssize_t)count;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
2013-11-24 15:00:12 +00:00
|
|
|
|
|
|
|
#define apc_write(code) apc_write_i(code, __func__, __LINE__)
|
2022-06-29 10:37:36 +00:00
|
|
|
static ssize_t apc_write_i(unsigned char code, const char *fn, unsigned int ln)
|
2011-09-29 18:14:46 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
2011-09-29 18:14:46 +00:00
|
|
|
errno = 0;
|
2013-11-24 15:00:12 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if (upsfd == -1)
|
|
|
|
return 0;
|
2013-11-24 15:00:12 +00:00
|
|
|
|
|
|
|
ret = ser_send_char(upsfd, code);
|
|
|
|
/*
|
|
|
|
* Formally any write() sould never return 0, if the count != 0. For
|
|
|
|
* the sake of handling any obscure nonsense, we consider such return
|
|
|
|
* as a failure - thus <= condition; either way, LE is pretty hard
|
|
|
|
* condition hardly ever happening;
|
|
|
|
*/
|
|
|
|
if (ret <= 0)
|
|
|
|
ser_comm_fail("serial port write error: %u(%s): %s", ln, fn, strerror(errno));
|
|
|
|
|
|
|
|
return ret;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We have to watch out for NA, here;
|
|
|
|
* This is generally safe, as otherwise we will just timeout. The reason we do
|
|
|
|
* it, is that under certain conditions an ups might respond with NA for
|
|
|
|
* something it would normally handle (e.g. calling @ while being in powered
|
|
|
|
* off or hibernated state. If we keep sending the "arguments" after getting
|
|
|
|
* NA, they will be interpreted as commands, which is quite a bug :)
|
|
|
|
* Furthermore later flushes might not work properly, if the reply to those
|
|
|
|
* commands are generated with some delay.
|
|
|
|
*
|
|
|
|
* We also set errno to something usable, so outside upslog calls don't output
|
|
|
|
* confusing "success".
|
|
|
|
*/
|
2013-11-24 15:00:12 +00:00
|
|
|
#define apc_write_long(code) apc_write_long_i(code, __func__, __LINE__)
|
2022-06-29 10:37:36 +00:00
|
|
|
static ssize_t apc_write_long_i(const char *code, const char *fn, unsigned int ln)
|
2011-09-29 18:14:46 +00:00
|
|
|
{
|
|
|
|
char temp[APC_LBUF];
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
2011-09-29 18:14:46 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
ret = apc_write_i((const unsigned char)(*code), fn, ln);
|
2011-09-29 18:14:46 +00:00
|
|
|
if (ret != 1)
|
|
|
|
return ret;
|
|
|
|
/* peek for the answer - anything at this point is failure */
|
|
|
|
ret = apc_read(temp, sizeof(temp), SER_DX|SER_TO);
|
|
|
|
if (ret) {
|
|
|
|
errno = ECANCELED;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-06-01 13:55:19 +00:00
|
|
|
ret = ser_send_pace(upsfd, 50000, "%s", code + 1);
|
2013-11-24 15:00:12 +00:00
|
|
|
if (ret >= 0)
|
|
|
|
ret++;
|
|
|
|
/* see remark in plain apc_write() */
|
|
|
|
if (ret != (int)strlen(code))
|
|
|
|
ser_comm_fail("serial port write error: %u(%s): %s", ln, fn, strerror(errno));
|
|
|
|
return ret;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
#define apc_write_rep(code) apc_write_rep_i(code, __func__, __LINE__)
|
2022-06-29 10:37:36 +00:00
|
|
|
static ssize_t apc_write_rep_i(unsigned char code, const char *fn, unsigned int ln)
|
2011-09-29 18:14:46 +00:00
|
|
|
{
|
|
|
|
char temp[APC_LBUF];
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
2011-09-29 18:14:46 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
ret = apc_write_i(code, fn, ln);
|
2011-09-29 18:14:46 +00:00
|
|
|
if (ret != 1)
|
|
|
|
return ret;
|
|
|
|
/* peek for the answer - anything at this point is failure */
|
|
|
|
ret = apc_read(temp, sizeof(temp), SER_DX|SER_TO);
|
|
|
|
if (ret) {
|
|
|
|
errno = ECANCELED;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
usleep(1300000);
|
2013-11-24 15:00:12 +00:00
|
|
|
|
|
|
|
ret = apc_write_i(code, fn, ln);
|
|
|
|
if (ret >= 0)
|
|
|
|
ret++;
|
|
|
|
return ret;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* all flags other than SER_AA are ignored */
|
|
|
|
static void apc_flush(int flags)
|
|
|
|
{
|
|
|
|
char temp[APC_LBUF];
|
|
|
|
|
|
|
|
if (flags & SER_AA) {
|
|
|
|
tcflush(upsfd, TCOFLUSH);
|
2013-11-24 15:00:12 +00:00
|
|
|
/* TODO */
|
|
|
|
while(apc_read(temp, sizeof(temp), SER_D0|SER_TO|SER_AA) > 0);
|
2011-09-29 18:14:46 +00:00
|
|
|
} else {
|
|
|
|
tcflush(upsfd, TCIOFLUSH);
|
|
|
|
/* tcflush(upsfd, TCIFLUSH); */
|
|
|
|
/* while(apc_read(temp, sizeof(temp), SER_D0|SER_TO)); */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
/* apc specific wrappers around set/del info - to handle "packed" variables */
|
2022-06-29 10:37:36 +00:00
|
|
|
static void apc_dstate_delinfo(apc_vartab_t *vt, int skip)
|
2013-11-24 15:00:12 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
char *name, *nidx;
|
2013-11-24 15:00:12 +00:00
|
|
|
int c;
|
|
|
|
|
|
|
|
/* standard not packed var */
|
|
|
|
if (!(vt->flags & APC_PACK)) {
|
|
|
|
dstate_delinfo(vt->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
if ( !(name = xmalloc(sizeof(char) * vt->nlen0)) ) {
|
|
|
|
upslogx(LOG_ERR, "apc_dstate_delinfo() failed to allocate buffer");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
strcpy(name, vt->name);
|
|
|
|
nidx = strstr(name,".0.") + 1;
|
|
|
|
|
|
|
|
for (c = skip; c < vt->cnt; c++) {
|
|
|
|
*nidx = (char)('1' + c);
|
|
|
|
dstate_delinfo(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
vt->cnt = 0;
|
2022-06-29 10:37:36 +00:00
|
|
|
free(name);
|
2013-11-24 15:00:12 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
static void apc_dstate_setinfo(apc_vartab_t *vt, const char *upsval)
|
2013-11-24 15:00:12 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
char *name, *nidx;
|
|
|
|
char *temp, *vidx[APC_PACK_MAX], *com, *curr;
|
2013-11-24 15:00:12 +00:00
|
|
|
int c;
|
|
|
|
|
|
|
|
/* standard not packed var */
|
|
|
|
if (!(vt->flags & APC_PACK)) {
|
|
|
|
dstate_setinfo(vt->name, "%s", convert_data(vt, upsval));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
if ( !(name = xmalloc(sizeof(char) * vt->nlen0)) ) {
|
|
|
|
upslogx(LOG_ERR, "apc_dstate_setinfo() failed to allocate buffer");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !(temp = xmalloc(sizeof(char) * (strlen(upsval) + 1))) ) {
|
|
|
|
upslogx(LOG_ERR, "apc_dstate_setinfo() failed to allocate buffer");
|
|
|
|
free(name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
/* we have to set proper name for dstate_setinfo() calls */
|
|
|
|
strcpy(name, vt->name);
|
|
|
|
nidx = strstr(name,".0.") + 1;
|
|
|
|
|
|
|
|
/* split the value string */
|
|
|
|
strcpy(temp, upsval);
|
|
|
|
curr = temp;
|
|
|
|
c = 0;
|
|
|
|
do {
|
|
|
|
vidx[c] = curr;
|
|
|
|
com = strchr(curr, ',');
|
|
|
|
if (com) {
|
|
|
|
curr = com + 1;
|
|
|
|
*com = '\0';
|
|
|
|
}
|
|
|
|
} while(++c < APC_PACK_MAX && com);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* unlikely, but keep things tidy - remove leftover values, if
|
|
|
|
* subsequent read returns less
|
|
|
|
*/
|
|
|
|
if (vt->cnt > c)
|
|
|
|
apc_dstate_delinfo(vt, c);
|
|
|
|
|
|
|
|
/* unlikely - warn user if we have more than APC_PACK_MAX fields */
|
|
|
|
if (c == APC_PACK_MAX && com)
|
|
|
|
upslogx(LOG_WARNING,
|
|
|
|
"packed variable %s [%s] longer than %d fields,\n"
|
|
|
|
"ignoring remaining fields",
|
|
|
|
vt->name, prtchr(vt->cmd), c);
|
|
|
|
|
|
|
|
vt->cnt = c;
|
|
|
|
|
|
|
|
while (c-- > 0) {
|
|
|
|
*nidx = (char)('1' + c);
|
|
|
|
if (*vidx[c])
|
|
|
|
dstate_setinfo(name, "%s", convert_data(vt, vidx[c]));
|
|
|
|
else
|
|
|
|
dstate_setinfo(name, "N/A");
|
|
|
|
}
|
2022-06-29 10:37:36 +00:00
|
|
|
|
|
|
|
free(name);
|
|
|
|
free(temp);
|
2013-11-24 15:00:12 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
static const char *preread_data(apc_vartab_t *vt)
|
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
2013-11-24 15:00:12 +00:00
|
|
|
static char temp[APC_LBUF];
|
2011-09-29 18:14:46 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s [%s]", __func__, vt->name, prtchr(vt->cmd));
|
2011-09-29 18:14:46 +00:00
|
|
|
|
|
|
|
apc_flush(0);
|
2022-06-29 10:37:36 +00:00
|
|
|
ret = apc_write((const unsigned char)vt->cmd);
|
2011-09-29 18:14:46 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (ret != 1)
|
2011-09-29 18:14:46 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = apc_read(temp, sizeof(temp), SER_TO);
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (ret < 1 || !strcmp(temp, "NA")) {
|
|
|
|
if (ret >= 0)
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_ERR, "%s: %s [%s] timed out or not supported", __func__, vt->name, prtchr(vt->cmd));
|
2011-09-29 18:14:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
return temp;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2011-01-26 09:35:08 +00:00
|
|
|
static int poll_data(apc_vartab_t *vt)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
2013-11-24 15:00:12 +00:00
|
|
|
char temp[APC_LBUF];
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if (!(vt->flags & APC_PRESENT))
|
2010-03-25 23:20:59 +00:00
|
|
|
return 1;
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s [%s]", __func__, vt->name, prtchr(vt->cmd));
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(SER_AA);
|
2022-06-29 10:37:36 +00:00
|
|
|
if (apc_write((const unsigned char)vt->cmd) != 1)
|
2010-03-25 23:20:59 +00:00
|
|
|
return 0;
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_read(temp, sizeof(temp), SER_AA) < 1)
|
2010-03-25 23:20:59 +00:00
|
|
|
return 0;
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* automagically no longer supported by the hardware somehow */
|
2013-11-24 15:00:12 +00:00
|
|
|
if (!strcmp(temp, "NA")) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s: verified variable %s [%s] returned NA, removing", __func__, vt->name, prtchr(vt->cmd));
|
|
|
|
vt->flags &= ~(unsigned int)APC_PRESENT;
|
2013-11-24 15:00:12 +00:00
|
|
|
apc_dstate_delinfo(vt, 0);
|
|
|
|
} else
|
|
|
|
apc_dstate_setinfo(vt, temp);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
static int update_status(void)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
2013-11-24 15:00:12 +00:00
|
|
|
char buf[APC_LBUF];
|
2011-09-29 18:14:46 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: [%s]", __func__, prtchr(APC_STATUS));
|
2011-09-29 18:14:46 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
apc_flush(SER_AA);
|
|
|
|
if (apc_write(APC_STATUS) != 1)
|
|
|
|
return 0;
|
|
|
|
ret = apc_read(buf, sizeof(buf), SER_AA);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if ((ret < 1) || (!strcmp(buf, "NA"))) {
|
|
|
|
if (ret >= 0)
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s: %s", __func__, "failed");
|
2013-11-24 15:00:12 +00:00
|
|
|
return 0;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
ups_status = strtol(buf, 0, 16) & 0xff;
|
|
|
|
ups_status_set();
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
return 1;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-11-24 15:00:12 +00:00
|
|
|
* two informative functions, to not redo the same thing in few places
|
2011-09-29 18:14:46 +00:00
|
|
|
*/
|
2013-11-24 15:00:12 +00:00
|
|
|
|
|
|
|
static inline void confirm_cv(unsigned char cmd, const char *tag, const char *name)
|
2011-09-29 18:14:46 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s [%s] - %s supported", name, prtchr((char)cmd), tag);
|
2013-11-24 15:00:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void warn_cv(unsigned char cmd, const char *tag, const char *name)
|
|
|
|
{
|
|
|
|
if (tag && name)
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s [%s] - %s invalid", name, prtchr((char)cmd), tag);
|
2013-11-24 15:00:12 +00:00
|
|
|
else
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "[%s] unrecognized", prtchr((char)cmd));
|
2013-11-24 15:00:12 +00:00
|
|
|
}
|
2011-09-29 18:14:46 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
static void var_string_setup(apc_vartab_t *vt)
|
|
|
|
{
|
2011-06-01 20:31:49 +00:00
|
|
|
/*
|
2013-11-24 15:00:12 +00:00
|
|
|
* handle special data for our two strings; note - STRING variables
|
|
|
|
* cannot be PACK at the same time
|
2011-06-01 20:31:49 +00:00
|
|
|
*/
|
2013-11-24 15:00:12 +00:00
|
|
|
if (vt->flags & APC_STRING) {
|
|
|
|
dstate_setflags(vt->name, ST_FLAG_RW | ST_FLAG_STRING);
|
|
|
|
dstate_setaux(vt->name, APC_STRLEN);
|
|
|
|
vt->flags |= APC_RW;
|
|
|
|
}
|
|
|
|
}
|
2011-09-29 18:14:46 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
static int var_verify(apc_vartab_t *vt)
|
|
|
|
{
|
|
|
|
const char *temp;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (vt->flags & APC_MULTI) {
|
|
|
|
/* APC_MULTI are handled by deprecate_vars() */
|
2011-09-29 18:14:46 +00:00
|
|
|
vt->flags |= APC_PRESENT;
|
2013-11-24 15:00:12 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
temp = preread_data(vt);
|
|
|
|
/* no conversion here, validator should operate on raw values */
|
|
|
|
if (!temp || !rexhlp(vt->regex, temp)) {
|
2022-06-29 10:37:36 +00:00
|
|
|
warn_cv((const unsigned char)vt->cmd, "variable", vt->name);
|
2013-11-24 15:00:12 +00:00
|
|
|
return 0;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
vt->flags |= APC_PRESENT;
|
|
|
|
apc_dstate_setinfo(vt, temp);
|
|
|
|
var_string_setup(vt);
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
confirm_cv((const unsigned char)vt->cmd, "variable", vt->name);
|
2013-11-24 15:00:12 +00:00
|
|
|
|
|
|
|
return 1;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/*
|
2013-11-24 15:00:12 +00:00
|
|
|
* This function iterates over vartab, deprecating nut<->apc 1:n and n:1
|
|
|
|
* variables. We prefer earliest present variable. All the other ones must be
|
|
|
|
* marked as not present (which implies deprecation).
|
|
|
|
* This pass is requried after completion of all protocol_verify() and/or
|
|
|
|
* legacy_verify() calls.
|
2011-09-29 18:14:46 +00:00
|
|
|
*/
|
|
|
|
static void deprecate_vars(void)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
const char *temp;
|
|
|
|
apc_vartab_t *vt, *vtn;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
for (i = 0; apc_vartab[i].name != NULL; i++) {
|
|
|
|
vt = &apc_vartab[i];
|
2013-11-24 15:00:12 +00:00
|
|
|
if (!(vt->flags & APC_MULTI) || !(vt->flags & APC_PRESENT)) {
|
|
|
|
/*
|
|
|
|
* a) not interesting, or
|
|
|
|
* b) not marked as present earlier, or already handled
|
|
|
|
*/
|
2011-09-29 18:14:46 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* pre-read data, we have to verify it */
|
|
|
|
temp = preread_data(vt);
|
2013-11-24 15:00:12 +00:00
|
|
|
/* no conversion here, validator should operate on raw values */
|
|
|
|
if (!temp || !rexhlp(vt->regex, temp)) {
|
2022-06-29 10:37:36 +00:00
|
|
|
vt->flags &= ~(unsigned int)APC_PRESENT;
|
2013-11-24 15:00:12 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
warn_cv((const unsigned char)vt->cmd, "variable combination", vt->name);
|
2011-09-29 18:14:46 +00:00
|
|
|
continue;
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* multi & present, deprecate all the remaining ones */
|
|
|
|
for (j = i + 1; apc_vartab[j].name != NULL; j++) {
|
|
|
|
vtn = &apc_vartab[j];
|
2013-11-24 15:00:12 +00:00
|
|
|
if (strcmp(vtn->name, vt->name) && vtn->cmd != vt->cmd)
|
2011-09-29 18:14:46 +00:00
|
|
|
continue;
|
2022-06-29 10:37:36 +00:00
|
|
|
vtn->flags &= ~(unsigned int)APC_PRESENT;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
apc_dstate_setinfo(vt, temp);
|
|
|
|
var_string_setup(vt);
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
confirm_cv((const unsigned char)vt->cmd, "variable combination", vt->name);
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
static void apc_getcaps(int qco)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
|
|
|
const char *ptr, *entptr;
|
2011-09-29 18:14:46 +00:00
|
|
|
char upsloc, temp[APC_LBUF], cmd, loc, etmp[APC_SBUF], *endtemp;
|
2022-06-29 10:37:36 +00:00
|
|
|
int matrix, valid;
|
|
|
|
size_t nument, entlen, i;
|
|
|
|
ssize_t ret;
|
2011-01-26 09:35:08 +00:00
|
|
|
apc_vartab_t *vt;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
/*
|
|
|
|
* If we can do caps, then we need the Firmware revision which has the
|
|
|
|
* locale descriptor as the last character (ugh); this is valid for
|
|
|
|
* both 'V' and 'b' commands.
|
|
|
|
*/
|
2010-03-25 23:20:59 +00:00
|
|
|
ptr = dstate_getinfo("ups.firmware");
|
|
|
|
if (ptr)
|
|
|
|
upsloc = ptr[strlen(ptr) - 1];
|
|
|
|
else
|
|
|
|
upsloc = 0;
|
|
|
|
|
|
|
|
/* get capability string */
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(0);
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_write(APC_CAPS) != 1)
|
2010-03-25 23:20:59 +00:00
|
|
|
return;
|
2013-11-24 15:00:12 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/*
|
2013-11-24 15:00:12 +00:00
|
|
|
* note - apc_read() needs larger timeout grace (not a problem w.r.t.
|
|
|
|
* to nut's timing, as it's done only during setup) and different
|
2011-09-29 18:14:46 +00:00
|
|
|
* ignore set due to certain characters like '#' being received
|
|
|
|
*/
|
|
|
|
ret = apc_read(temp, sizeof(temp), SER_CC|SER_TO);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if ((ret < 1) || (!strcmp(temp, "NA"))) {
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
/*
|
|
|
|
* Early Smart-UPS not as smart as the later ones ...
|
|
|
|
* this should never happen on properly functioning hardware -
|
|
|
|
* as capability support was reported earlier
|
|
|
|
*/
|
|
|
|
if (ret >= 0)
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s", "APC cannot do capabilities but said it could !");
|
2010-03-25 23:20:59 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* recv always puts a \0 at the end, so this is safe */
|
|
|
|
/* however it assumes a zero byte cannot be embedded */
|
|
|
|
endtemp = &temp[0] + strlen(temp);
|
|
|
|
|
|
|
|
if (temp[0] != '#') {
|
2013-11-24 15:00:12 +00:00
|
|
|
upslogx(LOG_WARNING, "unknown capability start char [%c] !", temp[0]);
|
|
|
|
upsdebugx(1, "please report this caps string: %s", temp);
|
2010-03-25 23:20:59 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (temp[1] == '#') { /* Matrix-UPS */
|
|
|
|
ptr = &temp[0];
|
2013-11-24 15:00:12 +00:00
|
|
|
matrix = 1;
|
|
|
|
} else {
|
2010-03-25 23:20:59 +00:00
|
|
|
ptr = &temp[1];
|
|
|
|
matrix = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* command char, location, # of entries, entry length */
|
|
|
|
|
|
|
|
while (ptr[0] != '\0') {
|
|
|
|
if (matrix)
|
|
|
|
ptr += 2; /* jump over repeating ## */
|
|
|
|
|
|
|
|
/* check for idiocy */
|
|
|
|
if (ptr >= endtemp) {
|
|
|
|
/* if we expected this, just ignore it */
|
2011-09-29 18:14:46 +00:00
|
|
|
if (qco)
|
2010-03-25 23:20:59 +00:00
|
|
|
return;
|
2013-11-24 15:00:12 +00:00
|
|
|
fatalx(EXIT_FAILURE, "capability string has overflowed, please report this error !");
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd = ptr[0];
|
|
|
|
loc = ptr[1];
|
2022-06-29 10:37:36 +00:00
|
|
|
|
|
|
|
if (ptr[2] < 48 || ptr[3] < 48) {
|
|
|
|
upsdebugx(0,
|
|
|
|
"%s: nument (%d) or entlen (%d) out of range",
|
|
|
|
__func__, (ptr[2] - 48), (ptr[3] - 48));
|
|
|
|
fatalx(EXIT_FAILURE,
|
|
|
|
"nument or entlen out of range\n"
|
|
|
|
"Please report this error\n"
|
|
|
|
"ERROR: capability overflow!");
|
|
|
|
}
|
|
|
|
|
|
|
|
nument = (size_t)ptr[2] - 48;
|
|
|
|
entlen = (size_t)ptr[3] - 48;
|
2010-03-25 23:20:59 +00:00
|
|
|
entptr = &ptr[4];
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
vt = vt_lookup_char(cmd);
|
|
|
|
valid = vt && ((loc == upsloc) || (loc == '4')) && !(vt->flags & APC_PACK);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* mark this as writable */
|
2011-06-01 20:31:49 +00:00
|
|
|
if (valid) {
|
2013-11-24 15:00:12 +00:00
|
|
|
upsdebugx(1, "%s [%s(%c)] - capability supported", vt->name, prtchr(cmd), loc);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
dstate_setflags(vt->name, ST_FLAG_RW);
|
|
|
|
|
|
|
|
/* make sure setvar knows what this is */
|
|
|
|
vt->flags |= APC_RW | APC_ENUM;
|
2015-04-30 13:53:36 +00:00
|
|
|
} else if (vt && (vt->flags & APC_PACK))
|
2013-11-24 15:00:12 +00:00
|
|
|
/*
|
|
|
|
* Currently we assume - basing on the following
|
|
|
|
* feedback:
|
|
|
|
* http://www.mail-archive.com/nut-upsdev@lists.alioth.debian.org/msg03398.html
|
|
|
|
* - that "packed" variables are not enumerable; if at
|
|
|
|
* some point in the future it turns out to be false,
|
|
|
|
* the handling will have to be a bit more complex
|
|
|
|
*/
|
|
|
|
upslogx(LOG_WARNING,
|
|
|
|
"WARN: packed APC variable %s [%s] reported as enumerable,\n"
|
|
|
|
"please report it on the mailing list", vt->name, prtchr(cmd));
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
for (i = 0; i < nument; i++) {
|
2011-06-01 20:31:49 +00:00
|
|
|
if (valid) {
|
|
|
|
snprintf(etmp, entlen + 1, "%s", entptr);
|
|
|
|
dstate_addenum(vt->name, "%s", convert_data(vt, etmp));
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
entptr += entlen;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr = entptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
static void legacy_verify(const char *var)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
2013-11-24 15:00:12 +00:00
|
|
|
int i;
|
2011-09-29 18:14:46 +00:00
|
|
|
/*
|
2013-11-24 15:00:12 +00:00
|
|
|
* note: some NUT variables map onto multiple APC ones, e.g. firmware:
|
|
|
|
* V,b -> ups.firmware; that's why we keep the loop, as it's over NUT
|
|
|
|
* names
|
2011-09-29 18:14:46 +00:00
|
|
|
*/
|
2013-11-24 15:00:12 +00:00
|
|
|
for (i = 0; apc_vartab[i].name != NULL; i++) {
|
|
|
|
if (strcmp(apc_vartab[i].name, var))
|
|
|
|
continue;
|
|
|
|
var_verify(&apc_vartab[i]);
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void protocol_verify(unsigned char cmd)
|
|
|
|
{
|
2011-09-29 18:14:46 +00:00
|
|
|
int i, found;
|
2013-11-24 15:00:12 +00:00
|
|
|
apc_vartab_t *vt;
|
|
|
|
apc_cmdtab_t *ct;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* don't bother with cmd/var we don't care about */
|
|
|
|
if (strchr(APC_UNR_CMDS, cmd))
|
|
|
|
return;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/*
|
2013-11-24 15:00:12 +00:00
|
|
|
* loop necessary for apc:nut 1:n cases (e.g. T -> device.uptime,
|
|
|
|
* ambient.0.temperature)
|
2011-09-29 18:14:46 +00:00
|
|
|
*/
|
2013-11-24 15:00:12 +00:00
|
|
|
found = 0;
|
2011-09-29 18:14:46 +00:00
|
|
|
for (i = 0; apc_vartab[i].name != NULL; i++) {
|
2013-11-24 15:00:12 +00:00
|
|
|
vt = &apc_vartab[i];
|
|
|
|
if (vt->cmd != cmd)
|
|
|
|
continue;
|
|
|
|
var_verify(vt);
|
|
|
|
found = 1;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
2013-11-24 15:00:12 +00:00
|
|
|
if (found)
|
|
|
|
return;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/*
|
2013-11-24 15:00:12 +00:00
|
|
|
* see if it's a command
|
|
|
|
* loop necessary for apc:nut 1:n cases (e.g. D -> calibrate.start,
|
|
|
|
* calibrate.stop)
|
2011-09-29 18:14:46 +00:00
|
|
|
*/
|
2010-03-25 23:20:59 +00:00
|
|
|
found = 0;
|
|
|
|
for (i = 0; apc_cmdtab[i].name != NULL; i++) {
|
2013-11-24 15:00:12 +00:00
|
|
|
ct = &apc_cmdtab[i];
|
|
|
|
if (ct->cmd != cmd)
|
|
|
|
continue;
|
|
|
|
ct->flags |= APC_PRESENT;
|
|
|
|
dstate_addcmd(ct->name);
|
|
|
|
confirm_cv(cmd, "command", ct->name);
|
|
|
|
found = 1;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (found)
|
|
|
|
return;
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
/*
|
|
|
|
* epilogue - unrecognized command / variable not included
|
|
|
|
* in APC_UNR_CMDS
|
|
|
|
*/
|
|
|
|
warn_cv(cmd, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void oldapcsetup(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* note: battery.date and ups.id make little sense here, as
|
|
|
|
* that would imply writability and this is an *old* apc psu
|
|
|
|
*/
|
|
|
|
legacy_verify("ups.temperature");
|
|
|
|
legacy_verify("ups.load");
|
|
|
|
legacy_verify("input.voltage");
|
|
|
|
legacy_verify("output.voltage");
|
|
|
|
legacy_verify("battery.charge");
|
|
|
|
legacy_verify("battery.voltage");
|
|
|
|
|
|
|
|
/* these will usually timeout */
|
|
|
|
legacy_verify("ups.model");
|
|
|
|
legacy_verify("ups.serial");
|
|
|
|
legacy_verify("ups.firmware");
|
|
|
|
legacy_verify("output.current");
|
|
|
|
|
|
|
|
deprecate_vars();
|
|
|
|
|
|
|
|
/* see if this might be an old Matrix-UPS instead */
|
|
|
|
if (vt_lookup_name("output.current"))
|
|
|
|
dstate_setinfo("ups.model", "Matrix-UPS");
|
|
|
|
else {
|
|
|
|
/* really old models don't support ups.model (apc: 0x01) */
|
|
|
|
if (!vt_lookup_name("ups.model"))
|
|
|
|
/* force the model name */
|
|
|
|
dstate_setinfo("ups.model", "Smart-UPS");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we have come down this path then we dont do capabilities and
|
|
|
|
* other shiny features.
|
|
|
|
*/
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* some hardware is a special case - hotwire the list of cmdchars */
|
|
|
|
static int firmware_table_lookup(void)
|
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
2013-11-24 15:00:12 +00:00
|
|
|
unsigned int i, j;
|
|
|
|
char buf[APC_LBUF];
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
upsdebugx(1, "attempting firmware lookup using [%s]", prtchr(APC_FW_OLD));
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(0);
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_write(APC_FW_OLD) != 1)
|
|
|
|
return 0;
|
|
|
|
if ((ret = apc_read(buf, sizeof(buf), SER_TO)) < 0)
|
2010-03-25 23:20:59 +00:00
|
|
|
return 0;
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
/*
|
2011-06-01 20:31:49 +00:00
|
|
|
* Some UPSes support both 'V' and 'b'. As 'b' doesn't always return
|
|
|
|
* firmware version, we attempt that only if 'V' doesn't work.
|
2010-03-25 23:20:59 +00:00
|
|
|
*/
|
2013-11-24 15:00:12 +00:00
|
|
|
if (!ret || !strcmp(buf, "NA")) {
|
|
|
|
upsdebugx(1, "attempting firmware lookup using [%s]", prtchr(APC_FW_NEW));
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_write(APC_FW_NEW) != 1)
|
2010-03-25 23:20:59 +00:00
|
|
|
return 0;
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_read(buf, sizeof(buf), SER_TO) < 1)
|
2010-03-25 23:20:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
upsdebugx(1, "detected firmware version: %s", buf);
|
2011-06-01 20:31:49 +00:00
|
|
|
|
2010-03-25 23:20:59 +00:00
|
|
|
/* this will be reworked if we get a lot of these things */
|
2013-11-24 15:00:12 +00:00
|
|
|
if (!strcmp(buf, "451.2.I")) {
|
2011-09-29 18:14:46 +00:00
|
|
|
/* quirk_capability_overflow */
|
2013-11-24 15:00:12 +00:00
|
|
|
upsdebugx(1, "WARN: quirky firmware !");
|
2011-09-29 18:14:46 +00:00
|
|
|
return 2;
|
2013-11-24 15:00:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rexhlp("^[a-fA-F0-9]{2}$", buf)) {
|
|
|
|
/*
|
|
|
|
* certain old set of UPSes that return voltage above 255V
|
|
|
|
* through 'b'; see:
|
|
|
|
* http://article.gmane.org/gmane.comp.monitoring.nut.user/7762
|
|
|
|
*/
|
|
|
|
strcpy(buf, "set\1");
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
for (i = 0; apc_compattab[i].firmware != NULL; i++) {
|
|
|
|
if (!strcmp(apc_compattab[i].firmware, buf)) {
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
upsdebugx(1, "matched firmware: %s", apc_compattab[i].firmware);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
/* magic ? */
|
2011-09-29 18:14:46 +00:00
|
|
|
if (strspn(apc_compattab[i].firmware, "05")) {
|
2010-03-25 23:20:59 +00:00
|
|
|
dstate_setinfo("ups.model", "Matrix-UPS");
|
|
|
|
} else {
|
|
|
|
dstate_setinfo("ups.model", "Smart-UPS");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* matched - run the cmdchars from the table */
|
2013-11-24 15:00:12 +00:00
|
|
|
upsdebugx(1, "parsing out supported cmds and vars");
|
2011-09-29 18:14:46 +00:00
|
|
|
for (j = 0; j < strlen(apc_compattab[i].cmdchars); j++)
|
2022-06-29 10:37:36 +00:00
|
|
|
protocol_verify((const unsigned char)(apc_compattab[i].cmdchars[j]));
|
2011-09-29 18:14:46 +00:00
|
|
|
deprecate_vars();
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
return 1; /* matched */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
return 0;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
static int getbaseinfo(void)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
|
|
|
unsigned int i;
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
|
|
|
int qco;
|
2015-04-30 13:53:36 +00:00
|
|
|
char *cmds, *tail, temp[APC_LBUF];
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
/*
|
|
|
|
* try firmware lookup first; we could start with 'a', but older models
|
|
|
|
* sometimes return other things than a command set
|
|
|
|
*/
|
2011-09-29 18:14:46 +00:00
|
|
|
qco = firmware_table_lookup();
|
|
|
|
if (qco == 1)
|
|
|
|
/* found compat */
|
2013-11-24 15:00:12 +00:00
|
|
|
return 1;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
upsdebugx(1, "attempting var/cmdset lookup using [%s]", prtchr(APC_CMDSET));
|
2011-09-29 18:14:46 +00:00
|
|
|
/*
|
2013-11-24 15:00:12 +00:00
|
|
|
* Initially we ask the UPS what commands it takes. If this fails we are
|
2011-09-29 18:14:46 +00:00
|
|
|
* going to need an alternate strategy - we can deal with that if it
|
|
|
|
* happens
|
|
|
|
*/
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(0);
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_write(APC_CMDSET) != 1)
|
|
|
|
return 0;
|
|
|
|
if ((ret = apc_read(temp, sizeof(temp), SER_CS|SER_TO)) < 0)
|
|
|
|
return 0;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (!ret || !strcmp(temp, "NA") || !rexhlp(APC_CMDSET_FMT, temp)) {
|
2010-03-25 23:20:59 +00:00
|
|
|
/* We have an old dumb UPS - go to specific code for old stuff */
|
2013-11-24 15:00:12 +00:00
|
|
|
upslogx(LOG_NOTICE, "very old or unknown APC model, support will be limited");
|
2010-03-25 23:20:59 +00:00
|
|
|
oldapcsetup();
|
2013-11-24 15:00:12 +00:00
|
|
|
return 1;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
upsdebugx(1, "parsing out supported cmds/vars");
|
2011-09-29 18:14:46 +00:00
|
|
|
/*
|
|
|
|
* returned set is verified for validity above, so just extract
|
|
|
|
* what's interesting for us
|
2015-04-30 13:53:36 +00:00
|
|
|
*
|
|
|
|
* the known format is:
|
|
|
|
* ver.alerts.commands[.stuff]
|
2011-09-29 18:14:46 +00:00
|
|
|
*/
|
2015-04-30 13:53:36 +00:00
|
|
|
cmds = strchr(temp, '.');
|
|
|
|
cmds = strchr(cmds + 1, '.');
|
|
|
|
tail = strchr(++cmds, '.');
|
|
|
|
if (tail)
|
|
|
|
*tail = 0;
|
|
|
|
for (i = 0; i < strlen(cmds); i++)
|
2022-06-29 10:37:36 +00:00
|
|
|
protocol_verify((const unsigned char)cmds[i]);
|
2011-09-29 18:14:46 +00:00
|
|
|
deprecate_vars();
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* if capabilities are supported, add them here */
|
2011-09-29 18:14:46 +00:00
|
|
|
if (strchr(cmds, APC_CAPS)) {
|
2013-11-24 15:00:12 +00:00
|
|
|
upsdebugx(1, "parsing out caps");
|
|
|
|
apc_getcaps(qco);
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
2013-11-24 15:00:12 +00:00
|
|
|
return 1;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* check for calibration status and either start or stop */
|
|
|
|
static int do_cal(int start)
|
|
|
|
{
|
2011-09-29 18:14:46 +00:00
|
|
|
char temp[APC_LBUF];
|
2022-06-29 10:37:36 +00:00
|
|
|
long tval;
|
|
|
|
ssize_t ret;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(SER_AA);
|
|
|
|
ret = apc_write(APC_STATUS);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if (ret != 1) {
|
|
|
|
return STAT_INSTCMD_HANDLED; /* FUTURE: failure */
|
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = apc_read(temp, sizeof(temp), SER_AA);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* if we can't check the current calibration status, bail out */
|
2013-11-24 15:00:12 +00:00
|
|
|
if ((ret < 1) || (!strcmp(temp, "NA"))) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s", "runtime calibration state undeterminable");
|
2010-03-25 23:20:59 +00:00
|
|
|
return STAT_INSTCMD_HANDLED; /* FUTURE: failure */
|
2013-11-24 15:00:12 +00:00
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
tval = strtol(temp, 0, 16);
|
|
|
|
|
|
|
|
if (tval & APC_STAT_CAL) { /* calibration currently happening */
|
|
|
|
if (start == 1) {
|
|
|
|
/* requested start while calibration still running */
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_NOTICE, "%s", "runtime calibration already in progress");
|
2010-03-25 23:20:59 +00:00
|
|
|
return STAT_INSTCMD_HANDLED; /* FUTURE: failure */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* stop requested */
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_NOTICE, "%s", "stopping runtime calibration");
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = apc_write(APC_CMD_CALTOGGLE);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if (ret != 1) {
|
|
|
|
return STAT_INSTCMD_HANDLED; /* FUTURE: failure */
|
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = apc_read(temp, sizeof(temp), SER_AA);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if ((ret < 1) || (!strcmp(temp, "NA")) || (!strcmp(temp, "NO"))) {
|
2013-11-24 15:00:12 +00:00
|
|
|
upslogx(LOG_WARNING, "stop calibration failed, cmd returned: %s", temp);
|
2010-03-25 23:20:59 +00:00
|
|
|
return STAT_INSTCMD_HANDLED; /* FUTURE: failure */
|
|
|
|
}
|
|
|
|
|
|
|
|
return STAT_INSTCMD_HANDLED; /* FUTURE: success */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* calibration not happening */
|
|
|
|
|
|
|
|
if (start == 0) { /* stop requested */
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_NOTICE, "%s", "runtime calibration not occurring");
|
2010-03-25 23:20:59 +00:00
|
|
|
return STAT_INSTCMD_HANDLED; /* FUTURE: failure */
|
|
|
|
}
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_NOTICE, "%s", "starting runtime calibration");
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = apc_write(APC_CMD_CALTOGGLE);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if (ret != 1) {
|
|
|
|
return STAT_INSTCMD_HANDLED; /* FUTURE: failure */
|
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = apc_read(temp, sizeof(temp), SER_AA);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if ((ret < 1) || (!strcmp(temp, "NA")) || (!strcmp(temp, "NO"))) {
|
2013-11-24 15:00:12 +00:00
|
|
|
upslogx(LOG_WARNING, "start calibration failed, cmd returned: %s", temp);
|
2010-03-25 23:20:59 +00:00
|
|
|
return STAT_INSTCMD_HANDLED; /* FUTURE: failure */
|
|
|
|
}
|
|
|
|
|
|
|
|
return STAT_INSTCMD_HANDLED; /* FUTURE: success */
|
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
#if 0
|
2010-03-25 23:20:59 +00:00
|
|
|
/* get the UPS talking to us in smart mode */
|
|
|
|
static int smartmode(void)
|
|
|
|
{
|
2011-09-29 18:14:46 +00:00
|
|
|
int ret;
|
|
|
|
char temp[APC_LBUF];
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(0);
|
|
|
|
ret = apc_write(APC_GOSMART);
|
|
|
|
if (ret != 1) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
ret = apc_read(temp, sizeof(temp), 0);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if ((ret < 1) || (!strcmp(temp, "NA")) || (!strcmp(temp, "NO"))) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_CRIT, "%s", "enabling smartmode failed !");
|
2011-09-29 18:14:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/*
|
|
|
|
* get the UPS talking to us in smart mode
|
|
|
|
* note: this is weird overkill, but possibly excused due to some obscure
|
|
|
|
* hardware/firmware combinations; simpler version commmented out above, for
|
|
|
|
* now let's keep minimally adjusted old one
|
|
|
|
*/
|
|
|
|
static int smartmode(int cnt)
|
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
|
|
|
int tries;
|
2011-09-29 18:14:46 +00:00
|
|
|
char temp[APC_LBUF];
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
for (tries = 0; tries < cnt; tries++) {
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(0);
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_write(APC_GOSMART) != 1)
|
2011-09-29 18:14:46 +00:00
|
|
|
return 0;
|
2013-11-24 15:00:12 +00:00
|
|
|
|
|
|
|
/* timeout here is intented */
|
|
|
|
ret = apc_read(temp, sizeof(temp), SER_TO|SER_D1);
|
2011-09-29 18:14:46 +00:00
|
|
|
if (ret > 0 && !strcmp(temp, "SM"))
|
|
|
|
return 1; /* success */
|
2013-11-24 15:00:12 +00:00
|
|
|
if (ret < 0)
|
2011-09-29 18:14:46 +00:00
|
|
|
/* error, so we didn't timeout - wait a bit before retry */
|
|
|
|
sleep(1);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_write(27) != 1) /* ESC */
|
2010-03-25 23:20:59 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* eat the response (might be NA, might be something else) */
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_read(temp, sizeof(temp), SER_TO|SER_D1);
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0; /* failure */
|
|
|
|
}
|
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
/*
|
|
|
|
* all shutdown commands should respond with 'OK' or '*'
|
2011-09-29 18:14:46 +00:00
|
|
|
* apc_read() handles conversion to 'OK' so we care only about that one
|
|
|
|
* ign allows for timeout without assuming an error
|
2011-06-01 20:31:49 +00:00
|
|
|
*/
|
2011-09-29 18:14:46 +00:00
|
|
|
static int sdok(int ign)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
2011-09-29 18:14:46 +00:00
|
|
|
char temp[APC_SBUF];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* older upses on failed commands might just timeout, we cut down
|
|
|
|
* timeout grace though
|
|
|
|
* furthermore, command 'Z' will not reply with anything
|
|
|
|
*/
|
|
|
|
ret = apc_read(temp, sizeof(temp), SER_HA|SER_D1|SER_TO);
|
2013-11-24 15:00:12 +00:00
|
|
|
if (ret < 0)
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: got \"%s\"", __func__, temp);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if ((!ret && ign) || !strcmp(temp, "OK")) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s", __func__, "last shutdown cmd succeeded");
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_HANDLED;
|
2011-06-01 20:31:49 +00:00
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s", __func__, "last shutdown cmd failed");
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_FAILED;
|
2011-06-01 20:31:49 +00:00
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
/* soft hibernate: S - working only when OB, otherwise ignored */
|
2011-09-29 18:14:46 +00:00
|
|
|
static int sdcmd_S(const void *foo)
|
2011-06-01 20:31:49 +00:00
|
|
|
{
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(0);
|
2013-11-24 15:00:12 +00:00
|
|
|
if (!foo)
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: issuing [%s]", __func__, prtchr(APC_CMD_SOFTDOWN));
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_write(APC_CMD_SOFTDOWN) != 1)
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_FAILED;
|
|
|
|
return sdok(0);
|
2011-06-01 20:31:49 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* soft hibernate, hack version for CS 350 & co. */
|
|
|
|
static int sdcmd_CS(const void *foo)
|
2011-06-01 20:31:49 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
|
|
|
useconds_t cshd = 3500000;
|
2011-09-29 18:14:46 +00:00
|
|
|
char temp[APC_SBUF];
|
2022-06-29 10:37:36 +00:00
|
|
|
const char *val;
|
|
|
|
NUT_UNUSED_VARIABLE(foo);
|
|
|
|
|
|
|
|
/* TODO: Catch overflows?
|
|
|
|
* Let compilers complain about (non-)casting on systems
|
|
|
|
* where useconds_t is not a good target for strtod() output
|
|
|
|
*/
|
|
|
|
if ((val = getval("cshdelay")))
|
|
|
|
cshd = (strtod(val, NULL) * 1000000);
|
2011-09-29 18:14:46 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: issuing CS 'hack' [%s+%s] with %2.1f sec delay", __func__, prtchr(APC_CMD_SIMPWF), prtchr(APC_CMD_SOFTDOWN), (double)cshd / 1000000);
|
2011-09-29 18:14:46 +00:00
|
|
|
if (ups_status & APC_STAT_OL) {
|
|
|
|
apc_flush(0);
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: issuing [%s]", __func__, prtchr(APC_CMD_SIMPWF));
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = apc_write(APC_CMD_SIMPWF);
|
2013-11-24 15:00:12 +00:00
|
|
|
if (ret != 1) {
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_FAILED;
|
|
|
|
}
|
2013-11-24 15:00:12 +00:00
|
|
|
/* eat response, allow timeout */
|
|
|
|
ret = apc_read(temp, sizeof(temp), SER_D1|SER_TO);
|
2011-09-29 18:14:46 +00:00
|
|
|
if (ret < 0) {
|
|
|
|
return STAT_INSTCMD_FAILED;
|
|
|
|
}
|
2022-06-29 10:37:36 +00:00
|
|
|
usleep(cshd);
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
2013-11-24 15:00:12 +00:00
|
|
|
/* continue with regular soft hibernate */
|
|
|
|
return sdcmd_S((void *)1);
|
2011-06-01 20:31:49 +00:00
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
/*
|
|
|
|
* hard hibernate: @nnn / @nn
|
2011-09-29 18:14:46 +00:00
|
|
|
* note: works differently for older and new models, see manual page for
|
|
|
|
* thorough explanation
|
2011-06-01 20:31:49 +00:00
|
|
|
*/
|
2011-09-29 18:14:46 +00:00
|
|
|
static int sdcmd_AT(const void *str)
|
2011-06-01 20:31:49 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
|
|
|
size_t cnt, padto, i;
|
2011-09-29 18:14:46 +00:00
|
|
|
const char *awd = str;
|
|
|
|
char temp[APC_SBUF], *ptr;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if (!awd)
|
|
|
|
awd = "000";
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
cnt = strlen(awd);
|
|
|
|
padto = cnt == 2 ? 2 : 3;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
temp[0] = APC_CMD_GRACEDOWN;
|
|
|
|
ptr = temp + 1;
|
|
|
|
for (i = cnt; i < padto ; i++) {
|
|
|
|
*ptr++ = '0';
|
|
|
|
}
|
|
|
|
strcpy(ptr, awd);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: issuing [%s] with %ld minutes of additional wakeup delay",
|
|
|
|
__func__, prtchr(APC_CMD_GRACEDOWN), strtol(awd, NULL, 10)*6);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(0);
|
|
|
|
ret = apc_write_long(temp);
|
2022-06-29 10:37:36 +00:00
|
|
|
/* Range-check: padto is 2 or 3 per above */
|
|
|
|
if (ret != (ssize_t)padto + 1) {
|
|
|
|
upslogx(LOG_ERR,
|
|
|
|
"issuing [%s] with %zu digits failed",
|
|
|
|
prtchr(APC_CMD_GRACEDOWN), padto);
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_FAILED;
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = sdok(0);
|
|
|
|
if (ret == STAT_INSTCMD_HANDLED || padto == 3)
|
2022-06-29 10:37:36 +00:00
|
|
|
return (int)ret;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_ERR,
|
|
|
|
"command [%s] with 2 digits doesn't work - try 3 digits",
|
|
|
|
prtchr(APC_CMD_GRACEDOWN));
|
2011-06-01 20:31:49 +00:00
|
|
|
/*
|
|
|
|
* "tricky" part - we tried @nn variation and it (unsurprisingly)
|
|
|
|
* failed; we have to abort the sequence with something bogus to have
|
|
|
|
* the clean state; newer upses will respond with 'NO', older will be
|
|
|
|
* silent (YMMV);
|
|
|
|
*/
|
2013-11-24 15:00:12 +00:00
|
|
|
apc_write(APC_GOSMART);
|
2011-09-29 18:14:46 +00:00
|
|
|
/* eat response, allow it to timeout */
|
|
|
|
apc_read(temp, sizeof(temp), SER_D1|SER_TO);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_FAILED;
|
2011-06-01 20:31:49 +00:00
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
/* shutdown: K - delayed poweroff */
|
2011-09-29 18:14:46 +00:00
|
|
|
static int sdcmd_K(const void *foo)
|
2011-06-01 20:31:49 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
|
|
|
NUT_UNUSED_VARIABLE(foo);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: issuing [%s]", __func__, prtchr(APC_CMD_SHUTDOWN));
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(0);
|
|
|
|
ret = apc_write_rep(APC_CMD_SHUTDOWN);
|
2013-11-24 15:00:12 +00:00
|
|
|
if (ret != 2)
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_FAILED;
|
|
|
|
|
|
|
|
return sdok(0);
|
2011-06-01 20:31:49 +00:00
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
/* shutdown: Z - immediate poweroff */
|
2011-09-29 18:14:46 +00:00
|
|
|
static int sdcmd_Z(const void *foo)
|
2011-06-01 20:31:49 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
|
|
|
NUT_UNUSED_VARIABLE(foo);
|
2011-06-01 20:31:49 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: issuing [%s]", __func__, prtchr(APC_CMD_OFF));
|
2011-06-01 20:31:49 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(0);
|
|
|
|
ret = apc_write_rep(APC_CMD_OFF);
|
2013-11-24 15:00:12 +00:00
|
|
|
if (ret != 2) {
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_FAILED;
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* note: ups will not reply anything after this command */
|
|
|
|
return sdok(1);
|
|
|
|
}
|
2011-06-01 20:31:49 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
static void upsdrv_shutdown_simple(void)
|
2011-06-01 20:31:49 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
long sdtype = 0;
|
2011-09-29 18:14:46 +00:00
|
|
|
const char *val;
|
2011-06-01 20:31:49 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if ((val = getval("sdtype")))
|
|
|
|
sdtype = strtol(val, NULL, 10);
|
2011-06-01 20:31:49 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: currently: %s, sdtype: %ld", __func__,
|
|
|
|
(ups_status & APC_STAT_OL) ? "on-line" : "on battery", sdtype);
|
2013-11-24 15:00:12 +00:00
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
switch (sdtype) {
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
case 5: /* hard hibernate */
|
|
|
|
sdcmd_AT(getval("awd"));
|
2011-06-01 20:31:49 +00:00
|
|
|
break;
|
|
|
|
case 4: /* special hack for CS 350 and similar models */
|
2011-09-29 18:14:46 +00:00
|
|
|
sdcmd_CS(0);
|
2010-03-25 23:20:59 +00:00
|
|
|
break;
|
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
case 3: /* delayed poweroff */
|
|
|
|
sdcmd_K(0);
|
|
|
|
break;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
case 2: /* instant poweroff */
|
|
|
|
sdcmd_Z(0);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
/*
|
|
|
|
* Send a combined set of shutdown commands which can work
|
|
|
|
* better if the UPS gets power during shutdown process
|
|
|
|
* Specifically it sends both the soft shutdown 'S' and the
|
|
|
|
* hard hibernate '@nnn' commands
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* S works only when OB */
|
2013-11-24 15:00:12 +00:00
|
|
|
if (!(ups_status & APC_STAT_OB) || sdcmd_S(0) != STAT_INSTCMD_HANDLED)
|
|
|
|
sdcmd_AT(getval("awd"));
|
2011-06-01 20:31:49 +00:00
|
|
|
break;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* Send @nnn or S, depending on OB / OL status
|
|
|
|
*/
|
2011-09-29 18:14:46 +00:00
|
|
|
if (ups_status & APC_STAT_OL) /* on line */
|
|
|
|
sdcmd_AT(getval("awd"));
|
2011-06-01 20:31:49 +00:00
|
|
|
else
|
|
|
|
sdcmd_S(0);
|
|
|
|
}
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
static void upsdrv_shutdown_advanced(void)
|
2011-06-01 20:31:49 +00:00
|
|
|
{
|
2011-09-29 18:14:46 +00:00
|
|
|
const void *arg;
|
|
|
|
const char *val;
|
|
|
|
size_t i, len;
|
2011-06-01 20:31:49 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
val = getval("advorder");
|
|
|
|
len = strlen(val);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: currently: %s, advorder: %s", __func__,
|
|
|
|
(ups_status & APC_STAT_OL) ? "on-line" : "on battery", val);
|
2013-11-24 15:00:12 +00:00
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
/*
|
|
|
|
* try each method in the list with a little bit of handling in certain
|
|
|
|
* cases
|
|
|
|
*/
|
2011-09-29 18:14:46 +00:00
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
switch (val[i] - '0') {
|
|
|
|
case SDIDX_AT:
|
|
|
|
arg = getval("awd");
|
2011-06-01 20:31:49 +00:00
|
|
|
break;
|
|
|
|
default:
|
2011-09-29 18:14:46 +00:00
|
|
|
arg = NULL;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
2011-06-01 20:31:49 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if (sdlist[val[i] - '0'](arg) == STAT_INSTCMD_HANDLED)
|
2011-06-01 20:31:49 +00:00
|
|
|
break; /* finish if command succeeded */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* power down the attached load immediately */
|
|
|
|
void upsdrv_shutdown(void)
|
|
|
|
{
|
2013-11-24 15:00:12 +00:00
|
|
|
char temp[APC_LBUF];
|
2011-06-01 20:31:49 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if (!smartmode(1))
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s: %s", __func__, "setting SmartMode failed !");
|
2011-06-01 20:31:49 +00:00
|
|
|
|
|
|
|
/* check the line status */
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_write(APC_STATUS) == 1) {
|
|
|
|
if (apc_read(temp, sizeof(temp), SER_D1) == 1) {
|
2011-09-29 18:14:46 +00:00
|
|
|
ups_status = strtol(temp, 0, 16);
|
2013-11-24 15:00:12 +00:00
|
|
|
} else {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s: %s", __func__, "status read failed, assuming LB+OB");
|
2013-11-24 15:00:12 +00:00
|
|
|
ups_status = APC_STAT_LB | APC_STAT_OB;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
2011-06-01 20:31:49 +00:00
|
|
|
} else {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s: %s", __func__, "status write failed, assuming LB+OB");
|
2011-09-29 18:14:46 +00:00
|
|
|
ups_status = APC_STAT_LB | APC_STAT_OB;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
2011-06-01 20:31:49 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
if (testvar("advorder") && toupper((size_t)*getval("advorder")) != 'N')
|
2011-09-29 18:14:46 +00:00
|
|
|
upsdrv_shutdown_advanced();
|
2011-06-01 20:31:49 +00:00
|
|
|
else
|
2011-09-29 18:14:46 +00:00
|
|
|
upsdrv_shutdown_simple();
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
static int update_info(int all)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
2013-11-24 15:00:12 +00:00
|
|
|
int i;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: starting scan%s", __func__, all ? " (all vars)" : "");
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
for (i = 0; apc_vartab[i].name != NULL; i++) {
|
2013-11-24 15:00:12 +00:00
|
|
|
if (!all && (apc_vartab[i].flags & APC_POLL) == 0)
|
2010-03-25 23:20:59 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!poll_data(&apc_vartab[i])) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s", __func__, "aborting scan");
|
2013-11-24 15:00:12 +00:00
|
|
|
return 0;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s", __func__, "scan completed");
|
2013-11-24 15:00:12 +00:00
|
|
|
return 1;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2011-01-26 09:35:08 +00:00
|
|
|
static int setvar_enum(apc_vartab_t *vt, const char *val)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
int i;
|
|
|
|
ssize_t ret;
|
2011-09-29 18:14:46 +00:00
|
|
|
char orig[APC_LBUF], temp[APC_LBUF];
|
2011-01-26 09:35:08 +00:00
|
|
|
const char *ptr;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(SER_AA);
|
2022-06-29 10:37:36 +00:00
|
|
|
if (apc_write((const unsigned char)vt->cmd) != 1)
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = apc_read(orig, sizeof(orig), SER_AA);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if ((ret < 1) || (!strcmp(orig, "NA")))
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
ptr = convert_data(vt, orig);
|
|
|
|
|
|
|
|
/* suppress redundant changes - easier on the eeprom */
|
|
|
|
if (!strcmp(ptr, val)) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_INFO, "%s: ignoring SET %s='%s' (unchanged value)",
|
|
|
|
__func__, vt->name, val);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
return STAT_SET_HANDLED; /* FUTURE: no change */
|
|
|
|
}
|
|
|
|
|
2015-04-30 13:53:36 +00:00
|
|
|
for (i = 0; i < 32; i++) {
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_write(APC_NEXTVAL) != 1)
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* this should return either OK (if rotated) or NO (if not) */
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = apc_read(temp, sizeof(temp), SER_AA);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if ((ret < 1) || (!strcmp(temp, "NA")))
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* sanity checks */
|
|
|
|
if (!strcmp(temp, "NO"))
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
|
|
|
if (strcmp(temp, "OK"))
|
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* see what it rotated onto */
|
2022-06-29 10:37:36 +00:00
|
|
|
if (apc_write((const unsigned char)vt->cmd) != 1)
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = apc_read(temp, sizeof(temp), SER_AA);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if ((ret < 1) || (!strcmp(temp, "NA")))
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
ptr = convert_data(vt, temp);
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: rotate - got [%s], want [%s]", __func__, ptr, val);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if (!strcmp(ptr, val)) { /* got it */
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_INFO, "%s: SET %s='%s'", __func__, vt->name, val);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* refresh data from the hardware */
|
2011-09-29 18:14:46 +00:00
|
|
|
poll_data(vt);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
return STAT_SET_HANDLED; /* FUTURE: success */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check for wraparound */
|
|
|
|
if (!strcmp(ptr, orig)) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_ERR, "%s: variable %s wrapped", __func__, vt->name);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_ERR, "%s: gave up after 6 tries for %s", __func__, vt->name);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* refresh data from the hardware */
|
2011-09-29 18:14:46 +00:00
|
|
|
poll_data(vt);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2011-01-26 09:35:08 +00:00
|
|
|
static int setvar_string(apc_vartab_t *vt, const char *val)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
size_t i;
|
|
|
|
ssize_t ret;
|
2011-09-29 18:14:46 +00:00
|
|
|
char temp[APC_LBUF], *ptr;
|
|
|
|
|
|
|
|
/* sanitize length */
|
|
|
|
if (strlen(val) > APC_STRLEN) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_ERR, "%s: value (%s) too long", __func__, val);
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(SER_AA);
|
2022-06-29 10:37:36 +00:00
|
|
|
if (apc_write((const unsigned char)vt->cmd) != 1)
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = apc_read(temp, sizeof(temp), SER_AA);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if ((ret < 1) || (!strcmp(temp, "NA")))
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* suppress redundant changes - easier on the eeprom */
|
|
|
|
if (!strcmp(temp, val)) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_INFO, "%s: ignoring SET %s='%s' (unchanged value)",
|
|
|
|
__func__, vt->name, val);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
return STAT_SET_HANDLED; /* FUTURE: no change */
|
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* length sanitized above */
|
|
|
|
temp[0] = APC_NEXTVAL;
|
|
|
|
strcpy(temp + 1, val);
|
|
|
|
ptr = temp + strlen(temp);
|
|
|
|
for (i = strlen(val); i < APC_STRLEN; i++)
|
|
|
|
*ptr++ = '\015'; /* pad with CRs */
|
|
|
|
*ptr = 0;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_write_long(temp) != APC_STRLEN + 1)
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = apc_read(temp, sizeof(temp), SER_AA);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if (ret < 1) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_ERR, "%s: %s", __func__, "short final read");
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(temp, "NO")) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_ERR, "%s: %s", __func__, "got NO at final read");
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* refresh data from the hardware */
|
2011-09-29 18:14:46 +00:00
|
|
|
poll_data(vt);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_INFO, "%s: SET %s='%s'", __func__, vt->name, val);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_SET_HANDLED; /* FUTURE: success */
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int setvar(const char *varname, const char *val)
|
|
|
|
{
|
2011-01-26 09:35:08 +00:00
|
|
|
apc_vartab_t *vt;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
vt = vt_lookup_name(varname);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if (!vt)
|
|
|
|
return STAT_SET_UNKNOWN;
|
|
|
|
|
|
|
|
if ((vt->flags & APC_RW) == 0) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s: [%s] is not writable", __func__, varname);
|
2010-03-25 23:20:59 +00:00
|
|
|
return STAT_SET_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vt->flags & APC_ENUM)
|
|
|
|
return setvar_enum(vt, val);
|
|
|
|
|
|
|
|
if (vt->flags & APC_STRING)
|
|
|
|
return setvar_string(vt, val);
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s: unknown type for [%s]", __func__, varname);
|
2010-03-25 23:20:59 +00:00
|
|
|
return STAT_SET_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* load on */
|
|
|
|
static int do_loadon(void)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(0);
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: issuing [%s]", __func__, prtchr(APC_CMD_ON));
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (apc_write_rep(APC_CMD_ON) != 2)
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/*
|
|
|
|
* ups will not reply anything after this command, but might
|
|
|
|
* generate brief OVER condition (which will be corrected on
|
|
|
|
* the next status update)
|
|
|
|
*/
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: [%s] completed", __func__, prtchr(APC_CMD_ON));
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_HANDLED;
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* actually send the instcmd's char to the ups */
|
|
|
|
static int do_cmd(const apc_cmdtab_t *ct)
|
|
|
|
{
|
2022-06-29 10:37:36 +00:00
|
|
|
ssize_t ret;
|
|
|
|
int c;
|
2011-09-29 18:14:46 +00:00
|
|
|
char temp[APC_LBUF];
|
|
|
|
|
|
|
|
apc_flush(SER_AA);
|
|
|
|
|
|
|
|
if (ct->flags & APC_REPEAT) {
|
2022-06-29 10:37:36 +00:00
|
|
|
ret = apc_write_rep((const unsigned char)ct->cmd);
|
2013-11-24 15:00:12 +00:00
|
|
|
c = 2;
|
2011-09-29 18:14:46 +00:00
|
|
|
} else {
|
2022-06-29 10:37:36 +00:00
|
|
|
ret = apc_write((const unsigned char)ct->cmd);
|
2013-11-24 15:00:12 +00:00
|
|
|
c = 1;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (ret != c) {
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
ret = apc_read(temp, sizeof(temp), SER_AA);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if (ret < 1)
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if (strcmp(temp, "OK")) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s: got [%s] after command [%s]",
|
|
|
|
__func__, temp, ct->name);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_FAILED;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_INFO, "%s: %s completed", __func__, ct->name);
|
2011-09-29 18:14:46 +00:00
|
|
|
return STAT_INSTCMD_HANDLED;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* some commands must be repeated in a window to execute */
|
2011-09-29 18:14:46 +00:00
|
|
|
static int instcmd_chktime(apc_cmdtab_t *ct, const char *ext)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
|
|
|
double elapsed;
|
|
|
|
time_t now;
|
|
|
|
static time_t last = 0;
|
|
|
|
|
|
|
|
time(&now);
|
|
|
|
|
|
|
|
elapsed = difftime(now, last);
|
|
|
|
last = now;
|
|
|
|
|
|
|
|
/* you have to hit this in a small window or it fails */
|
|
|
|
if ((elapsed < MINCMDTIME) || (elapsed > MAXCMDTIME)) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: outside window for [%s %s] (%2.0f)",
|
|
|
|
__func__, ct->name, ext ? ext : "\b", elapsed);
|
2011-09-29 18:14:46 +00:00
|
|
|
return 0;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
return 1;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
static int instcmd(const char *cmd, const char *ext)
|
2010-03-25 23:20:59 +00:00
|
|
|
{
|
2011-09-29 18:14:46 +00:00
|
|
|
int i;
|
|
|
|
apc_cmdtab_t *ct = NULL;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
for (i = 0; apc_cmdtab[i].name != NULL; i++) {
|
2013-11-24 15:00:12 +00:00
|
|
|
/* cmd must match */
|
2011-09-29 18:14:46 +00:00
|
|
|
if (strcasecmp(apc_cmdtab[i].name, cmd))
|
|
|
|
continue;
|
2013-11-24 15:00:12 +00:00
|
|
|
/* if cmd specifies regex, ext must match */
|
|
|
|
if (apc_cmdtab[i].ext) {
|
|
|
|
if (!rexhlp(apc_cmdtab[i].ext, ext))
|
2011-09-29 18:14:46 +00:00
|
|
|
continue;
|
2013-11-24 15:00:12 +00:00
|
|
|
/* if cmd doesn't specify regex, ext must be NULL */
|
|
|
|
} else {
|
|
|
|
if (ext)
|
|
|
|
continue;
|
|
|
|
}
|
2011-09-29 18:14:46 +00:00
|
|
|
ct = &apc_cmdtab[i];
|
|
|
|
break;
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
if (!ct) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s: unknown command [%s %s]", __func__, cmd,
|
2011-09-29 18:14:46 +00:00
|
|
|
ext ? ext : "\b");
|
|
|
|
return STAT_INSTCMD_INVALID;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if (!(ct->flags & APC_PRESENT)) {
|
2022-06-29 10:37:36 +00:00
|
|
|
upslogx(LOG_WARNING, "%s: command [%s %s] recognized, but"
|
|
|
|
" not supported by your UPS model", __func__, cmd,
|
2011-09-29 18:14:46 +00:00
|
|
|
ext ? ext : "\b");
|
|
|
|
return STAT_INSTCMD_INVALID;
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* first verify if the command is "nasty" */
|
|
|
|
if ((ct->flags & APC_NASTY) && !instcmd_chktime(ct, ext))
|
|
|
|
return STAT_INSTCMD_HANDLED; /* future: again */
|
|
|
|
|
|
|
|
/* we're good to go, handle special stuff first, then generic cmd */
|
|
|
|
|
|
|
|
if (!strcasecmp(cmd, "calibrate.start"))
|
2010-03-25 23:20:59 +00:00
|
|
|
return do_cal(1);
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if (!strcasecmp(cmd, "calibrate.stop"))
|
2010-03-25 23:20:59 +00:00
|
|
|
return do_cal(0);
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if (!strcasecmp(cmd, "load.on"))
|
|
|
|
return do_loadon();
|
|
|
|
|
|
|
|
if (!strcasecmp(cmd, "load.off"))
|
|
|
|
return sdcmd_Z(0);
|
|
|
|
|
|
|
|
if (!strcasecmp(cmd, "shutdown.stayoff"))
|
|
|
|
return sdcmd_K(0);
|
|
|
|
|
|
|
|
if (!strcasecmp(cmd, "shutdown.return")) {
|
|
|
|
if (!ext || !*ext)
|
|
|
|
return sdcmd_S(0);
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
if (toupper((size_t)*ext) == 'A')
|
2011-09-29 18:14:46 +00:00
|
|
|
return sdcmd_AT(ext + 3);
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
if (toupper((size_t)*ext) == 'C')
|
2011-09-29 18:14:46 +00:00
|
|
|
return sdcmd_CS(0);
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* nothing special here */
|
|
|
|
return do_cmd(ct);
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* install pointers to functions for msg handlers called from msgparse */
|
|
|
|
static void setuphandlers(void)
|
|
|
|
{
|
|
|
|
upsh.setvar = setvar;
|
|
|
|
upsh.instcmd = instcmd;
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
/* ---- functions that interface with main.c ------------------------------- */
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
void upsdrv_makevartable(void)
|
|
|
|
{
|
2013-11-24 15:00:12 +00:00
|
|
|
addvar(VAR_VALUE, "ttymode", "tty discipline selection");
|
|
|
|
addvar(VAR_VALUE, "cable", "alternate cable (940-0095B) selection");
|
2011-09-29 18:14:46 +00:00
|
|
|
addvar(VAR_VALUE, "awd", "hard hibernate's additional wakeup delay");
|
2013-11-24 15:00:12 +00:00
|
|
|
addvar(VAR_VALUE, "sdtype", "simple shutdown method");
|
|
|
|
addvar(VAR_VALUE, "advorder", "advanced shutdown control");
|
2022-06-29 10:37:36 +00:00
|
|
|
addvar(VAR_VALUE, "cshdelay", "CS hack delay");
|
2013-11-24 15:00:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void upsdrv_help(void)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"\nFor detailed information, please refer to:\n"
|
|
|
|
" - apcsmart(8)\n"
|
|
|
|
" - http://www.networkupstools.org/docs/man/apcsmart.html\n"
|
|
|
|
);
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void upsdrv_initups(void)
|
|
|
|
{
|
2011-09-29 18:14:46 +00:00
|
|
|
char *val;
|
2013-11-24 15:00:12 +00:00
|
|
|
apc_vartab_t *ptr;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* sanitize awd (additional waekup delay of '@' command) */
|
2013-11-24 15:00:12 +00:00
|
|
|
if ((val = getval("awd")) && !rexhlp(APC_AWDFMT, val)) {
|
2011-09-29 18:14:46 +00:00
|
|
|
fatalx(EXIT_FAILURE, "invalid value (%s) for option 'awd'", val);
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* sanitize sdtype */
|
2013-11-24 15:00:12 +00:00
|
|
|
if ((val = getval("sdtype")) && !rexhlp(APC_SDFMT, val)) {
|
2011-09-29 18:14:46 +00:00
|
|
|
fatalx(EXIT_FAILURE, "invalid value (%s) for option 'sdtype'", val);
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
/* sanitize advorder */
|
2013-11-24 15:00:12 +00:00
|
|
|
if ((val = getval("advorder")) && !rexhlp(APC_ADVFMT, val)) {
|
|
|
|
fatalx(EXIT_FAILURE, "invalid value (%s) for option 'advorder'", val);
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
2013-11-24 15:00:12 +00:00
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
/* sanitize cshdelay */
|
|
|
|
if ((val = getval("cshdelay")) && !rexhlp(APC_CSHDFMT, val)) {
|
|
|
|
fatalx(EXIT_FAILURE, "invalid value (%s) for option 'cshdelay'", val);
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
upsfd = extrafd = ser_open(device_path);
|
|
|
|
apc_ser_set();
|
|
|
|
|
|
|
|
/* fill length values */
|
|
|
|
for (ptr = apc_vartab; ptr->name; ptr++)
|
|
|
|
ptr->nlen0 = strlen(ptr->name) + 1;
|
2011-09-29 18:14:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void upsdrv_cleanup(void)
|
|
|
|
{
|
|
|
|
char temp[APC_LBUF];
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (upsfd == -1)
|
|
|
|
return;
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
apc_flush(0);
|
|
|
|
/* try to bring the UPS out of smart mode */
|
|
|
|
apc_write(APC_GODUMB);
|
|
|
|
apc_read(temp, sizeof(temp), SER_TO);
|
|
|
|
ser_close(upsfd, device_path);
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void upsdrv_initinfo(void)
|
|
|
|
{
|
2011-06-01 20:31:49 +00:00
|
|
|
const char *pmod, *pser;
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if (!smartmode(5)) {
|
|
|
|
fatalx(EXIT_FAILURE,
|
|
|
|
"unable to detect an APC Smart protocol UPS on port %s\n"
|
|
|
|
"check the cabling, port name or model name and try again", device_path
|
2010-03-25 23:20:59 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (!getbaseinfo()) {
|
|
|
|
fatalx(EXIT_FAILURE,
|
|
|
|
"Problems with communicating APC UPS on port %s\n", device_path
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2010-03-25 23:20:59 +00:00
|
|
|
/* manufacturer ID - hardcoded in this particular module */
|
|
|
|
dstate_setinfo("ups.mfr", "APC");
|
|
|
|
|
2011-06-01 20:31:49 +00:00
|
|
|
if (!(pmod = dstate_getinfo("ups.model")))
|
|
|
|
pmod = "\"unknown model\"";
|
|
|
|
if (!(pser = dstate_getinfo("ups.serial")))
|
|
|
|
pser = "unknown serial";
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
upsdebugx(1, "detected %s [%s] on %s", pmod, pser, device_path);
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
setuphandlers();
|
2013-11-24 15:00:12 +00:00
|
|
|
/*
|
|
|
|
* seems to be ok so far, it must be set so initial call of
|
|
|
|
* upsdrv_updateinfo() doesn't begin with stale condition
|
|
|
|
*/
|
|
|
|
dstate_dataok();
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void upsdrv_updateinfo(void)
|
|
|
|
{
|
2011-09-29 18:14:46 +00:00
|
|
|
static int last_worked = 0;
|
|
|
|
static time_t last_full = 0;
|
2013-11-24 15:00:12 +00:00
|
|
|
int all;
|
2011-09-29 18:14:46 +00:00
|
|
|
time_t now;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* try to wake up a dead ups once in awhile */
|
2011-09-29 18:14:46 +00:00
|
|
|
if (dstate_is_stale()) {
|
|
|
|
if (!last_worked)
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: %s", __func__, "comm lost");
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
/* reset this so a full update runs when the UPS returns */
|
|
|
|
last_full = 0;
|
|
|
|
|
2011-09-29 18:14:46 +00:00
|
|
|
if (++last_worked < 10)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* become aggressive after a few tries */
|
2022-06-29 10:37:36 +00:00
|
|
|
upsdebugx(1, "%s: nudging ups with 'Y', iteration #%d ...", __func__, last_worked);
|
2011-09-29 18:14:46 +00:00
|
|
|
if (!smartmode(1))
|
|
|
|
return;
|
|
|
|
|
|
|
|
last_worked = 0;
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (!update_status()) {
|
|
|
|
dstate_datastale();
|
2010-03-25 23:20:59 +00:00
|
|
|
return;
|
2013-11-24 15:00:12 +00:00
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
|
|
|
|
time(&now);
|
|
|
|
|
|
|
|
/* refresh all variables hourly */
|
|
|
|
/* does not catch measure-ups II insertion/removal */
|
|
|
|
if (difftime(now, last_full) > 3600) {
|
|
|
|
last_full = now;
|
2013-11-24 15:00:12 +00:00
|
|
|
all = 1;
|
|
|
|
} else
|
|
|
|
all = 0;
|
2010-03-25 23:20:59 +00:00
|
|
|
|
2013-11-24 15:00:12 +00:00
|
|
|
if (update_info(all)) {
|
|
|
|
dstate_dataok();
|
|
|
|
} else {
|
|
|
|
dstate_datastale();
|
|
|
|
}
|
2010-03-25 23:20:59 +00:00
|
|
|
}
|