nut-debian/common/state.c

622 lines
11 KiB
C
Raw Normal View History

2010-03-26 01:20:59 +02:00
/* state.c - Network UPS Tools common state management functions
Copyright (C)
2003 Russell Kroll <rkroll@exploits.org>
2008 Arjen de Korte <adkorte-guest@alioth.debian.org>
2012-06-01 16:55:19 +03:00
2012 Arnaud Quette <arnaud.quette@free.fr>
2010-03-26 01:20:59 +02: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
*/
2022-07-10 10:23:45 +03:00
#include "config.h" /* must be first */
2010-03-26 01:20:59 +02:00
#include <stdio.h>
#include <stdarg.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include "common.h"
#include "state.h"
#include "parseconf.h"
2011-01-26 11:35:08 +02:00
static void val_escape(st_tree_t *node)
2010-03-26 01:20:59 +02:00
{
char etmp[ST_MAX_VALUE_LEN];
/* escape any tricky stuff like \ and " */
pconf_encode(node->raw, etmp, sizeof(etmp));
/* if nothing was escaped, we don't need to do anything else */
if (!strcmp(node->raw, etmp)) {
node->val = node->raw;
return;
}
/* if the escaped value grew, deal with it */
if (node->safesize < (strlen(etmp) + 1)) {
node->safesize = strlen(etmp) + 1;
node->safe = xrealloc(node->safe, node->safesize);
}
snprintf(node->safe, node->safesize, "%s", etmp);
node->val = node->safe;
}
2011-01-26 11:35:08 +02:00
static void st_tree_enum_free(enum_t *list)
2010-03-26 01:20:59 +02:00
{
if (!list) {
return;
}
st_tree_enum_free(list->next);
free(list->val);
free(list);
}
2012-06-01 16:55:19 +03:00
static void st_tree_range_free(range_t *list)
{
if (!list) {
return;
}
st_tree_range_free(list->next);
free(list);
}
2010-03-26 01:20:59 +02:00
/* free all memory associated with a node */
2011-01-26 11:35:08 +02:00
static void st_tree_node_free(st_tree_t *node)
2010-03-26 01:20:59 +02:00
{
free(node->var);
free(node->raw);
free(node->safe);
/* never free node->val, since it's just a pointer to raw or safe */
/* blow away the list of enums */
st_tree_enum_free(node->enum_list);
2012-06-01 16:55:19 +03:00
/* and the list of ranges */
st_tree_range_free(node->range_list);
2010-03-26 01:20:59 +02:00
/* now finally kill the node itself */
free(node);
}
/* add a subtree to another subtree */
2011-01-26 11:35:08 +02:00
static void st_tree_node_add(st_tree_t **nptr, st_tree_t *sptr)
2010-03-26 01:20:59 +02:00
{
if (!sptr) {
return;
}
while (*nptr) {
2011-01-26 11:35:08 +02:00
st_tree_t *node = *nptr;
2010-03-26 01:20:59 +02:00
if (strcasecmp(node->var, sptr->var) > 0) {
nptr = &node->left;
continue;
}
if (strcasecmp(node->var, sptr->var) < 0) {
nptr = &node->right;
continue;
}
upsdebugx(1, "%s: duplicate value (shouldn't happen)", __func__);
return;
}
*nptr = sptr;
}
2022-07-10 10:23:45 +03:00
/* remove a variable from a tree
* except for variables with ST_FLAG_IMMUTABLE
* (for override.* to survive) per issue #737
*/
2011-01-26 11:35:08 +02:00
int state_delinfo(st_tree_t **nptr, const char *var)
2010-03-26 01:20:59 +02:00
{
while (*nptr) {
2011-01-26 11:35:08 +02:00
st_tree_t *node = *nptr;
2010-03-26 01:20:59 +02:00
if (strcasecmp(node->var, var) > 0) {
nptr = &node->left;
continue;
}
if (strcasecmp(node->var, var) < 0) {
nptr = &node->right;
continue;
}
2022-07-10 10:23:45 +03:00
if (node->flags & ST_FLAG_IMMUTABLE) {
upsdebugx(6, "%s: not deleting immutable variable [%s]", __func__, var);
return 0;
}
2010-03-26 01:20:59 +02:00
/* whatever is on the left, hang it off current right */
st_tree_node_add(&node->right, node->left);
/* now point the parent at the old right child */
*nptr = node->right;
st_tree_node_free(node);
return 1;
}
return 0; /* not found */
2022-07-10 10:23:45 +03:00
}
2010-03-26 01:20:59 +02:00
/* interface */
2011-01-26 11:35:08 +02:00
int state_setinfo(st_tree_t **nptr, const char *var, const char *val)
2010-03-26 01:20:59 +02:00
{
while (*nptr) {
2011-01-26 11:35:08 +02:00
st_tree_t *node = *nptr;
2010-03-26 01:20:59 +02:00
if (strcasecmp(node->var, var) > 0) {
nptr = &node->left;
continue;
}
if (strcasecmp(node->var, var) < 0) {
nptr = &node->right;
continue;
}
/* updating an existing entry */
if (!strcasecmp(node->raw, val)) {
return 0; /* no change */
}
/* changes should be ignored */
if (node->flags & ST_FLAG_IMMUTABLE) {
return 0; /* no change */
}
/* expand the buffer if the value grows */
if (node->rawsize < (strlen(val) + 1)) {
node->rawsize = strlen(val) + 1;
node->raw = xrealloc(node->raw, node->rawsize);
}
/* store the literal value for later comparisons */
snprintf(node->raw, node->rawsize, "%s", val);
val_escape(node);
return 1; /* changed */
}
*nptr = xcalloc(1, sizeof(**nptr));
(*nptr)->var = xstrdup(var);
(*nptr)->raw = xstrdup(val);
(*nptr)->rawsize = strlen(val) + 1;
val_escape(*nptr);
return 1; /* added */
}
2011-01-26 11:35:08 +02:00
static int st_tree_enum_add(enum_t **list, const char *enc)
2010-03-26 01:20:59 +02:00
{
2011-01-26 11:35:08 +02:00
enum_t *item;
2010-03-26 01:20:59 +02:00
while (*list) {
if (strcmp((*list)->val, enc)) {
list = &(*list)->next;
continue;
}
2022-07-10 10:23:45 +03:00
2010-03-26 01:20:59 +02:00
return 0; /* duplicate */
}
item = xcalloc(1, sizeof(*item));
item->val = xstrdup(enc);
item->next = *list;
/* now we're done creating it, add it to the list */
*list = item;
return 1; /* added */
}
2011-01-26 11:35:08 +02:00
int state_addenum(st_tree_t *root, const char *var, const char *val)
2010-03-26 01:20:59 +02:00
{
2011-01-26 11:35:08 +02:00
st_tree_t *sttmp;
2010-03-26 01:20:59 +02:00
char enc[ST_MAX_VALUE_LEN];
/* find the tree node for var */
sttmp = state_tree_find(root, var);
if (!sttmp) {
upslogx(LOG_ERR, "state_addenum: base variable (%s) "
"does not exist", var);
return 0; /* failed */
}
/* smooth over any oddities in the enum value */
pconf_encode(val, enc, sizeof(enc));
return st_tree_enum_add(&sttmp->enum_list, enc);
}
2012-06-01 16:55:19 +03:00
static int st_tree_range_add(range_t **list, const int min, const int max)
{
range_t *item;
while (*list) {
if (((*list)->min != min) && ((*list)->max != max)) {
list = &(*list)->next;
continue;
}
return 0; /* duplicate */
}
item = xcalloc(1, sizeof(*item));
item->min = min;
item->max = max;
item->next = *list;
/* now we're done creating it, add it to the list */
*list = item;
return 1; /* added */
}
int state_addrange(st_tree_t *root, const char *var, const int min, const int max)
{
st_tree_t *sttmp;
/* sanity check */
if (min > max) {
upslogx(LOG_ERR, "state_addrange: min is superior to max! (%i, %i)",
min, max);
return 0;
}
/* find the tree node for var */
sttmp = state_tree_find(root, var);
if (!sttmp) {
upslogx(LOG_ERR, "state_addrange: base variable (%s) "
"does not exist", var);
return 0; /* failed */
}
return st_tree_range_add(&sttmp->range_list, min, max);
}
2011-01-26 11:35:08 +02:00
int state_setaux(st_tree_t *root, const char *var, const char *auxs)
2010-03-26 01:20:59 +02:00
{
2011-01-26 11:35:08 +02:00
st_tree_t *sttmp;
2022-07-10 10:23:45 +03:00
long aux;
2010-03-26 01:20:59 +02:00
/* find the tree node for var */
sttmp = state_tree_find(root, var);
if (!sttmp) {
upslogx(LOG_ERR, "state_addenum: base variable (%s) "
"does not exist", var);
return -1; /* failed */
}
aux = strtol(auxs, (char **) NULL, 10);
/* silently ignore matches */
if (sttmp->aux == aux) {
return 0;
}
sttmp->aux = aux;
return 1;
}
2011-01-26 11:35:08 +02:00
const char *state_getinfo(st_tree_t *root, const char *var)
2010-03-26 01:20:59 +02:00
{
2011-01-26 11:35:08 +02:00
st_tree_t *sttmp;
2010-03-26 01:20:59 +02:00
/* find the tree node for var */
sttmp = state_tree_find(root, var);
if (!sttmp) {
return NULL;
}
return sttmp->val;
}
2011-01-26 11:35:08 +02:00
int state_getflags(st_tree_t *root, const char *var)
2010-03-26 01:20:59 +02:00
{
2011-01-26 11:35:08 +02:00
st_tree_t *sttmp;
2010-03-26 01:20:59 +02:00
/* find the tree node for var */
sttmp = state_tree_find(root, var);
if (!sttmp) {
return -1;
}
return sttmp->flags;
}
2022-07-10 10:23:45 +03:00
long state_getaux(st_tree_t *root, const char *var)
2010-03-26 01:20:59 +02:00
{
2011-01-26 11:35:08 +02:00
st_tree_t *sttmp;
2010-03-26 01:20:59 +02:00
/* find the tree node for var */
sttmp = state_tree_find(root, var);
if (!sttmp) {
return -1;
}
return sttmp->aux;
}
2011-01-26 11:35:08 +02:00
const enum_t *state_getenumlist(st_tree_t *root, const char *var)
2010-03-26 01:20:59 +02:00
{
2011-01-26 11:35:08 +02:00
st_tree_t *sttmp;
2010-03-26 01:20:59 +02:00
/* find the tree node for var */
sttmp = state_tree_find(root, var);
if (!sttmp) {
return NULL;
}
return sttmp->enum_list;
}
2012-06-01 16:55:19 +03:00
const range_t *state_getrangelist(st_tree_t *root, const char *var)
{
st_tree_t *sttmp;
/* find the tree node for var */
sttmp = state_tree_find(root, var);
if (!sttmp) {
return NULL;
}
return sttmp->range_list;
}
2022-07-10 10:23:45 +03:00
void state_setflags(st_tree_t *root, const char *var, size_t numflags, char **flag)
{
size_t i;
2011-01-26 11:35:08 +02:00
st_tree_t *sttmp;
2010-03-26 01:20:59 +02:00
/* find the tree node for var */
sttmp = state_tree_find(root, var);
if (!sttmp) {
upslogx(LOG_ERR, "state_setflags: base variable (%s) "
"does not exist", var);
return;
}
sttmp->flags = 0;
for (i = 0; i < numflags; i++) {
if (!strcasecmp(flag[i], "RW")) {
sttmp->flags |= ST_FLAG_RW;
continue;
}
if (!strcasecmp(flag[i], "STRING")) {
sttmp->flags |= ST_FLAG_STRING;
continue;
}
2022-07-10 10:23:45 +03:00
if (!strcasecmp(flag[i], "NUMBER")) {
sttmp->flags |= ST_FLAG_NUMBER;
continue;
}
2010-03-26 01:20:59 +02:00
upsdebugx(2, "Unrecognized flag [%s]", flag[i]);
}
}
2011-01-26 11:35:08 +02:00
int state_addcmd(cmdlist_t **list, const char *cmd)
2010-03-26 01:20:59 +02:00
{
2011-01-26 11:35:08 +02:00
cmdlist_t *item;
2010-03-26 01:20:59 +02:00
while (*list) {
if (strcasecmp((*list)->name, cmd) > 0) {
/* insertion point reached */
break;
}
if (strcasecmp((*list)->name, cmd) < 0) {
list = &(*list)->next;
continue;
}
return 0; /* duplicate */
}
item = xcalloc(1, sizeof(*item));
item->name = xstrdup(cmd);
item->next = *list;
/* now we're done creating it, insert it in the list */
*list = item;
return 1; /* added */
}
2011-01-26 11:35:08 +02:00
void state_infofree(st_tree_t *node)
2010-03-26 01:20:59 +02:00
{
if (!node) {
return;
}
state_infofree(node->left);
state_infofree(node->right);
st_tree_node_free(node);
}
2011-01-26 11:35:08 +02:00
void state_cmdfree(cmdlist_t *list)
2010-03-26 01:20:59 +02:00
{
if (!list) {
return;
}
state_cmdfree(list->next);
free(list->name);
free(list);
}
2011-01-26 11:35:08 +02:00
int state_delcmd(cmdlist_t **list, const char *cmd)
2010-03-26 01:20:59 +02:00
{
while (*list) {
2011-01-26 11:35:08 +02:00
cmdlist_t *item = *list;
2010-03-26 01:20:59 +02:00
if (strcasecmp(item->name, cmd) > 0) {
/* not found */
break;
}
if (strcasecmp(item->name, cmd) < 0) {
list = &item->next;
continue;
}
/* we found it! */
*list = item->next;
free(item->name);
free(item);
return 1; /* deleted */
}
return 0; /* not found */
}
2011-01-26 11:35:08 +02:00
static int st_tree_del_enum(enum_t **list, const char *val)
2010-03-26 01:20:59 +02:00
{
while (*list) {
2011-01-26 11:35:08 +02:00
enum_t *item = *list;
2010-03-26 01:20:59 +02:00
/* if this is not the right value, go on to the next */
if (strcasecmp(item->val, val)) {
list = &item->next;
continue;
}
/* we found it! */
*list = item->next;
free(item->val);
free(item);
return 1; /* deleted */
}
return 0; /* not found */
}
2011-01-26 11:35:08 +02:00
int state_delenum(st_tree_t *root, const char *var, const char *val)
2010-03-26 01:20:59 +02:00
{
2011-01-26 11:35:08 +02:00
st_tree_t *sttmp;
2010-03-26 01:20:59 +02:00
/* find the tree node for var */
sttmp = state_tree_find(root, var);
if (!sttmp) {
return 0;
}
return st_tree_del_enum(&sttmp->enum_list, val);
}
2012-06-01 16:55:19 +03:00
static int st_tree_del_range(range_t **list, const int min, const int max)
{
while (*list) {
range_t *item = *list;
/* if this is not the right value, go on to the next */
if (((*list)->min != min) && ((*list)->max != max)) {
list = &item->next;
continue;
}
/* we found it! */
*list = item->next;
free(item);
return 1; /* deleted */
}
return 0; /* not found */
}
int state_delrange(st_tree_t *root, const char *var, const int min, const int max)
{
st_tree_t *sttmp;
/* find the tree node for var */
sttmp = state_tree_find(root, var);
if (!sttmp) {
return 0;
}
return st_tree_del_range(&sttmp->range_list, min, max);
}
2011-01-26 11:35:08 +02:00
st_tree_t *state_tree_find(st_tree_t *node, const char *var)
2010-03-26 01:20:59 +02:00
{
while (node) {
if (strcasecmp(node->var, var) > 0) {
node = node->left;
continue;
}
if (strcasecmp(node->var, var) < 0) {
node = node->right;
continue;
}
break; /* found */
}
return node;
}