2014-06-05 09:34:32 +00:00
|
|
|
/**
|
|
|
|
* Configuration parser
|
|
|
|
*
|
2014-06-05 09:35:41 +00:00
|
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
2014-06-05 09:34:32 +00:00
|
|
|
* @copyright 2014, Institute for Automation of Complex Power Systems, EONERC
|
|
|
|
*/
|
|
|
|
|
2014-06-05 09:34:50 +00:00
|
|
|
#include <netdb.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
2014-06-05 09:34:32 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2014-06-05 09:34:50 +00:00
|
|
|
#include "cfg.h"
|
2014-06-05 09:35:23 +00:00
|
|
|
#include "node.h"
|
|
|
|
#include "path.h"
|
2014-06-05 09:34:32 +00:00
|
|
|
#include "utils.h"
|
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
int config_parse(const char *filename, config_t *cfg,
|
|
|
|
struct settings *g, struct node **n, struct path **p)
|
2014-06-05 09:34:32 +00:00
|
|
|
{
|
2014-06-10 16:57:40 +00:00
|
|
|
if (!config_read_file(cfg, filename)) {
|
2014-06-05 09:34:50 +00:00
|
|
|
error("Failed to parse configuration: %s in %s:%d",
|
|
|
|
config_error_text(cfg),
|
|
|
|
config_error_file(cfg),
|
|
|
|
config_error_line(cfg)
|
|
|
|
);
|
2014-06-05 09:34:32 +00:00
|
|
|
}
|
|
|
|
|
2014-06-10 18:47:22 +00:00
|
|
|
/* Get and check config sections */
|
2014-06-10 16:57:40 +00:00
|
|
|
config_setting_t *cfg_root = config_root_setting(cfg);
|
|
|
|
if (!cfg_root || !config_setting_is_group(cfg_root))
|
2014-06-10 18:47:22 +00:00
|
|
|
error("Missing global section in config file: %s", filename);
|
2014-06-05 09:34:32 +00:00
|
|
|
|
2014-06-10 16:57:40 +00:00
|
|
|
config_setting_t *cfg_nodes = config_setting_get_member(cfg_root, "nodes");
|
2014-06-05 09:34:50 +00:00
|
|
|
if (!cfg_nodes || !config_setting_is_group(cfg_nodes))
|
2014-06-10 18:47:22 +00:00
|
|
|
error("Missing node section in config file: %s", filename);
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 16:57:40 +00:00
|
|
|
config_setting_t *cfg_paths = config_setting_get_member(cfg_root, "paths");
|
2014-06-05 09:34:50 +00:00
|
|
|
if (!cfg_paths || !config_setting_is_list(cfg_paths))
|
2014-06-10 18:47:22 +00:00
|
|
|
error("Missing path section in config file: %s", filename);
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
/* Parse global settings */
|
2014-06-10 16:57:40 +00:00
|
|
|
config_parse_global(cfg_root, g);
|
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
/* Parse nodes */
|
|
|
|
for (int i = 0; i < config_setting_length(cfg_nodes); i++) {
|
|
|
|
config_setting_t *cfg_node = config_setting_get_elem(cfg_nodes, i);
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
struct node *node = (struct node *) malloc(sizeof(struct node));
|
|
|
|
if (!node)
|
|
|
|
error("Failed to allocate memory for node");
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
if (!config_parse_node(cfg_node, node)) {
|
|
|
|
free(node);
|
|
|
|
cerror(cfg_node, "Failed to parse node");
|
|
|
|
}
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
list_add(*n, node);
|
2014-06-05 09:34:32 +00:00
|
|
|
}
|
|
|
|
|
2014-06-05 09:34:50 +00:00
|
|
|
/* Parse paths */
|
2014-06-10 18:47:25 +00:00
|
|
|
for (int i = 0; i < config_setting_length(cfg_paths); i++) {
|
|
|
|
config_setting_t *cfg_path = config_setting_get_elem(cfg_paths, i);
|
|
|
|
|
|
|
|
struct path *path = (struct path *) malloc(sizeof(struct path));
|
|
|
|
if (!path)
|
|
|
|
error("Failed to allocate memory for path");
|
|
|
|
|
|
|
|
if (!config_parse_path(cfg_path, path, *n)) {
|
|
|
|
free(path);
|
|
|
|
cerror(cfg_path, "Failed to parse path");
|
|
|
|
}
|
|
|
|
|
|
|
|
list_add(*p, path);
|
2014-06-05 09:34:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return CONFIG_TRUE;
|
|
|
|
}
|
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
int config_parse_global(config_setting_t *cfg, struct settings *set)
|
2014-06-05 09:34:32 +00:00
|
|
|
{
|
2014-06-10 18:47:25 +00:00
|
|
|
if (!config_setting_lookup_string(cfg, "name", &set->name))
|
|
|
|
cerror(cfg, "Missing node name");
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
config_setting_lookup_int(cfg, "affinity", &set->affinity);
|
|
|
|
config_setting_lookup_int(cfg, "priority", &set->priority);
|
|
|
|
config_setting_lookup_int(cfg, "protocol", &set->protocol);
|
2014-06-05 09:34:32 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
set->cfg = cfg;
|
2014-06-05 09:35:41 +00:00
|
|
|
|
2014-06-05 09:34:32 +00:00
|
|
|
return CONFIG_TRUE;
|
|
|
|
}
|
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
int config_parse_path(config_setting_t *cfg,
|
|
|
|
struct path *path, struct node *nodes)
|
2014-06-05 09:34:32 +00:00
|
|
|
{
|
2014-06-05 09:34:50 +00:00
|
|
|
struct node *in, *out;
|
|
|
|
const char *in_str = NULL;
|
|
|
|
const char *out_str = NULL;
|
|
|
|
int enabled = 1;
|
|
|
|
int reverse = 0;
|
2014-06-05 09:34:32 +00:00
|
|
|
|
2014-06-05 09:34:50 +00:00
|
|
|
/* Optional settings */
|
2014-06-10 18:47:25 +00:00
|
|
|
config_setting_lookup_bool(cfg, "enabled", &enabled);
|
|
|
|
config_setting_lookup_bool(cfg, "reverse", &reverse);
|
2014-06-05 09:34:32 +00:00
|
|
|
|
2014-06-05 09:34:50 +00:00
|
|
|
/* Required settings */
|
2014-06-10 18:47:25 +00:00
|
|
|
if (!config_setting_lookup_string(cfg, "in", &in_str))
|
|
|
|
cerror(cfg, "Missing input node for path");
|
2014-06-05 09:34:32 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
if (!config_setting_lookup_string(cfg, "out", &out_str))
|
|
|
|
cerror(cfg, "Missing output node for path");
|
2014-06-05 09:34:50 +00:00
|
|
|
|
|
|
|
info("Loading path from '%s' to '%s'", in_str, out_str);
|
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
in = node_lookup_name(in_str, nodes);
|
2014-06-05 09:34:50 +00:00
|
|
|
if (!in)
|
2014-06-10 18:47:25 +00:00
|
|
|
cerror(cfg, "Invalid input node '%s'");
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
out = node_lookup_name(out_str, nodes);
|
2014-06-05 09:34:50 +00:00
|
|
|
if (!out)
|
2014-06-10 18:47:25 +00:00
|
|
|
cerror(cfg, "Invalid output node '%s'", out_str);
|
2014-06-05 09:34:50 +00:00
|
|
|
|
|
|
|
if (enabled) {
|
2014-06-10 18:47:25 +00:00
|
|
|
if (path_create(path, in, out))
|
|
|
|
cerror(cfg, "Failed to parse path");
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
path->cfg = cfg;
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
// TODO
|
|
|
|
/*if (reverse) {
|
|
|
|
if (path_create(path, out, in))
|
2014-06-05 09:34:50 +00:00
|
|
|
cerror(c, "Failed to parse path");
|
2014-06-10 18:47:25 +00:00
|
|
|
}*/
|
2014-06-05 09:34:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
warn(" Path is not enabled");
|
|
|
|
}
|
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
int config_parse_node(config_setting_t *cfg, struct node *node)
|
2014-06-05 09:34:50 +00:00
|
|
|
{
|
|
|
|
const char *name = NULL;
|
|
|
|
const char *type_str = NULL;
|
|
|
|
const char *remote_str = NULL;
|
|
|
|
const char *local_str = NULL;
|
|
|
|
|
2014-06-05 09:35:41 +00:00
|
|
|
struct sockaddr_in local, remote;
|
2014-06-05 09:34:50 +00:00
|
|
|
enum node_type type;
|
|
|
|
|
|
|
|
/* Required settings */
|
2014-06-10 18:47:25 +00:00
|
|
|
name = config_setting_name(cfg);
|
2014-06-05 09:34:50 +00:00
|
|
|
if (!name)
|
2014-06-10 18:47:25 +00:00
|
|
|
cerror(cfg, "Missing node name");
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
if (!config_setting_lookup_string(cfg, "type", &type_str))
|
|
|
|
cerror(cfg, "Missing node type");
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
if (!config_setting_lookup_string(cfg, "remote", &remote_str))
|
|
|
|
cerror(cfg, "Missing node remote address");
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
if (!config_setting_lookup_string(cfg, "local", &local_str))
|
|
|
|
cerror(cfg, "Missing node local address");
|
2014-06-05 09:34:50 +00:00
|
|
|
|
|
|
|
type = node_lookup_type(type_str);
|
|
|
|
if (type == NODE_INVALID)
|
2014-06-10 18:47:25 +00:00
|
|
|
cerror(cfg, "Invalid node type '%s'", type);
|
2014-06-05 09:34:50 +00:00
|
|
|
|
|
|
|
info("Loading %s node '%s'", type_str, name);
|
|
|
|
|
2014-06-05 09:35:33 +00:00
|
|
|
if (resolve_addr(local_str, &local, 0))
|
2014-06-10 18:47:25 +00:00
|
|
|
cerror(cfg, "Failed to resolve local address '%s' of node '%s'", local_str, name);
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-05 09:35:33 +00:00
|
|
|
if (resolve_addr(remote_str, &remote, 0))
|
2014-06-10 18:47:25 +00:00
|
|
|
cerror(cfg, "Failed to resolve remote address '%s' of node '%s'", remote_str, name);
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
if (node_create(node, name, type, local, remote))
|
|
|
|
cerror(cfg, "Failed to parse node");
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-10 18:47:25 +00:00
|
|
|
node->cfg = cfg;
|
2014-06-05 09:34:32 +00:00
|
|
|
}
|