1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
|
/*****************************************************************************\
* $Id: parse_util.c 1125 2009-04-01 20:14:35Z garlick $
*****************************************************************************
* Copyright (C) 2001-2008 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Andrew Uselton <uselton2@llnl.gov>
* UCRL-CODE-2002-008.
*
* This file is part of PowerMan, a remote power management program.
* For details, see <http://www.llnl.gov/linux/powerman/>.
*
* PowerMan 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.
*
* PowerMan 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 PowerMan; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\*****************************************************************************/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
#include <assert.h>
#include <stdio.h>
#include "list.h"
#include "hostlist.h"
#include "xtypes.h"
#include "error.h"
#include "parse_util.h"
#include "xmalloc.h"
#include "xpoll.h"
#include "pluglist.h"
#include "client.h"
#include "powerman.h"
typedef struct {
char *name;
hostlist_t hl;
} alias_t;
static bool conf_use_tcp_wrap = FALSE;
static List conf_listen = NULL; /* list of host:port strings */
static hostlist_t conf_nodes = NULL;
static List conf_aliases = NULL; /* list of alias_t's */
static bool _validate_config(void);
static void _alias_destroy(alias_t *a);
extern int parse_config_file(char *filename); /* yacc/lex parser */
/*
* initialize module
* parse the named config file - on error, exit with a message to stderr
*/
void conf_init(char *filename)
{
struct stat stbuf;
bool valid;
conf_listen = list_create((ListDelF) xfree);
conf_nodes = hostlist_create(NULL);
conf_aliases = list_create((ListDelF) _alias_destroy);
/* validate config file */
if (stat(filename, &stbuf) < 0)
err_exit(TRUE, "%s", filename);
if ((stbuf.st_mode & S_IFMT) != S_IFREG)
err_exit(FALSE, "%s is not a regular file\n", filename);
/*
* Call yacc parser against config file. The parser calls support
* functions below and builds 'dev_devices' (devices.c),
* 'conf_cluster', 'conf_specs' (config.c), and various other
* conf_* attributes (config.c).
*/
parse_config_file(filename);
valid = _validate_config();
if (!valid)
exit(1);
}
/* finalize module */
void conf_fini(void)
{
if (conf_nodes != NULL)
hostlist_destroy(conf_nodes);
}
/*
* Check the config file and exit with error if any problems are found.
*/
static bool _validate_config(void)
{
ListIterator itr;
bool valid = TRUE;
alias_t *a;
/* make sure aliases do not point to bogus node names */
itr = list_iterator_create(conf_aliases);
while ((a = list_next(itr)) != NULL) {
hostlist_iterator_t hitr = hostlist_iterator_create(a->hl);
char *host;
if (hitr == NULL)
err_exit(FALSE, "hostlist_iterator_create failed");
while ((host = hostlist_next(hitr)) != NULL) {
if (!conf_node_exists(host)) {
err(FALSE, "alias '%s' references nonexistant node '%s'",
a->name, host);
valid = FALSE;
free(host);
break;
} else
free(host);
}
hostlist_iterator_destroy(hitr);
}
list_iterator_destroy(itr);
/* make sure there is at least one node defined */
if (hostlist_is_empty(conf_nodes)) {
err(FALSE, "no nodes are defined");
valid = FALSE;
}
/* if no listen ports, add the default */
if (list_count(conf_listen) == 0) {
char *s = xmalloc(strlen(DFLT_HOSTNAME) + strlen(DFLT_PORT) + 2);
sprintf(s, "%s:%s", DFLT_HOSTNAME, DFLT_PORT);
list_append(conf_listen, s);
}
return valid;
}
/*
* Node conf_nodes list.
*/
bool conf_node_exists(char *node)
{
int res;
res = hostlist_find(conf_nodes, node);
return (res == -1 ? FALSE : TRUE);
}
bool conf_addnodes(char *nodelist)
{
hostlist_t hl = hostlist_create(nodelist);
hostlist_iterator_t itr = hostlist_iterator_create(hl);
char *node;
int res = TRUE;
while ((node = hostlist_next(itr))) {
if (conf_node_exists(node)) {
free(node);
res = FALSE;
break;
} else {
hostlist_push(conf_nodes, node);
free(node);
}
}
hostlist_iterator_destroy(itr);
hostlist_destroy(hl);
return res;
}
hostlist_t conf_getnodes(void)
{
return conf_nodes;
}
/*
* Accessor functions for misc. configurable values.
*/
bool conf_get_use_tcp_wrappers(void)
{
return conf_use_tcp_wrap;
}
void conf_set_use_tcp_wrappers(bool val)
{
#if ! HAVE_TCP_WRAPPERS
if (val == TRUE)
err_exit(FALSE, "powerman was not built with tcp_wrapper support");
#endif
conf_use_tcp_wrap = val;
}
List conf_get_listen(void)
{
return conf_listen;
}
void conf_add_listen(char *hostport)
{
list_append(conf_listen, xstrdup(hostport));
}
/*
* Manage a list of nodename aliases.
*/
static int _alias_match(alias_t *a, char *name)
{
return (strcmp(a->name, name) == 0);
}
/* Expand any aliases present in hostlist.
* N.B. Aliases cannot contain other aliases.
*/
void conf_exp_aliases(hostlist_t hl)
{
hostlist_iterator_t itr = NULL;
hostlist_t newhosts = hostlist_create(NULL);
char *host;
/* Put the expansion of any aliases in the hostlist into 'newhosts',
* deleting the original reference from the hostlist.
*/
if (newhosts == NULL)
err_exit(FALSE, "hostlist_create failed");
if ((itr = hostlist_iterator_create(hl)) == NULL)
err_exit(FALSE, "hostlist_iterator_create failed");
while ((host = hostlist_next(itr)) != NULL) {
alias_t *a;
a = list_find_first(conf_aliases, (ListFindF) _alias_match, host);
if (a) {
hostlist_delete_host(hl, host);
hostlist_push_list(newhosts, a->hl);
hostlist_iterator_reset(itr); /* not sure of itr position after
insertion/deletion so reset */
}
free(host);
}
hostlist_iterator_destroy(itr);
/* dump the contents of 'newhosts' into the hostlist */
hostlist_push_list(hl, newhosts);
hostlist_destroy(newhosts);
}
static void _alias_destroy(alias_t *a)
{
if (a->name)
xfree(a->name);
if (a->hl)
hostlist_destroy(a->hl);
xfree(a);
}
static alias_t *_alias_create(char *name, char *hosts)
{
alias_t *a = NULL;
if (!list_find_first(conf_aliases, (ListFindF) _alias_match, name)) {
a = (alias_t *)xmalloc(sizeof(alias_t));
a->name= xstrdup(name);
a->hl = hostlist_create(hosts);
if (a->hl == NULL) {
_alias_destroy(a);
a = NULL;
}
}
return a;
}
/*
* Called from the parser.
*/
bool conf_add_alias(char *name, char *hosts)
{
alias_t *a;
if ((a = _alias_create(name, hosts))) {
list_push(conf_aliases, a);
return TRUE;
}
return FALSE;
}
/*
* vi:tabstop=4 shiftwidth=4 expandtab
*/
|