2014-06-28 06:40:52 +00:00
|
|
|
/** Configuration parser
|
2014-06-05 09:34:32 +00:00
|
|
|
*
|
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-10 19:44:21 +00:00
|
|
|
#include <stdlib.h>
|
2014-06-05 09:34:50 +00:00
|
|
|
#include <netdb.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
2014-06-10 19:44:21 +00:00
|
|
|
#include <grp.h>
|
|
|
|
#include <pwd.h>
|
2014-06-05 09:34:32 +00:00
|
|
|
|
2014-06-25 01:53:35 +00:00
|
|
|
#include "if.h"
|
2014-06-25 01:53:48 +00:00
|
|
|
#include "tc.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-25 01:53:46 +00:00
|
|
|
int config_parse(const char *filename, config_t *cfg, struct settings *set,
|
2014-07-04 15:58:10 +00:00
|
|
|
struct node **nodes, struct path **paths)
|
2014-06-05 09:34:32 +00:00
|
|
|
{
|
2014-07-04 09:44:09 +00:00
|
|
|
config_set_auto_convert(cfg, 1);
|
|
|
|
|
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-25 01:53:32 +00:00
|
|
|
config_parse_global(cfg_root, set);
|
2014-06-10 16:57:40 +00:00
|
|
|
|
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-07-04 15:58:10 +00:00
|
|
|
config_parse_node(cfg_node, nodes);
|
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);
|
2014-06-25 01:53:46 +00:00
|
|
|
config_parse_path(cfg_path, paths, nodes);
|
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
|
|
|
config_setting_lookup_int(cfg, "affinity", &set->affinity);
|
|
|
|
config_setting_lookup_int(cfg, "priority", &set->priority);
|
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,
|
2014-06-25 01:53:46 +00:00
|
|
|
struct path **paths, struct node **nodes)
|
2014-06-05 09:34:32 +00:00
|
|
|
{
|
2014-06-05 09:34:50 +00:00
|
|
|
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-25 01:53:35 +00:00
|
|
|
struct path *path = (struct path *) malloc(sizeof(struct path));
|
|
|
|
if (!path)
|
|
|
|
error("Failed to allocate memory for path");
|
|
|
|
else
|
|
|
|
memset(path, 0, sizeof(struct path));
|
|
|
|
|
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
|
|
|
|
2014-06-25 01:53:46 +00:00
|
|
|
path->in = node_lookup_name(in_str, *nodes);
|
2014-06-25 01:53:35 +00:00
|
|
|
if (!path->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-25 01:53:46 +00:00
|
|
|
path->out = node_lookup_name(out_str, *nodes);
|
2014-06-25 01:53:35 +00:00
|
|
|
if (!path->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
|
|
|
|
2014-06-25 17:50:30 +00:00
|
|
|
/* Optional settings */
|
|
|
|
config_setting_lookup_bool(cfg, "enabled", &enabled);
|
|
|
|
config_setting_lookup_bool(cfg, "reverse", &reverse);
|
|
|
|
config_setting_lookup_float(cfg, "rate", &path->rate);
|
2014-06-25 01:53:35 +00:00
|
|
|
path->cfg = cfg;
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-25 01:53:35 +00:00
|
|
|
if (enabled) {
|
2014-06-25 01:53:32 +00:00
|
|
|
list_add(*paths, path);
|
|
|
|
|
|
|
|
if (reverse) {
|
2014-06-25 01:53:35 +00:00
|
|
|
struct path *path_rev = (struct path *) malloc(sizeof(struct path));
|
|
|
|
if (!path_rev)
|
2014-06-25 01:53:32 +00:00
|
|
|
error("Failed to allocate memory for path");
|
2014-06-25 01:53:35 +00:00
|
|
|
else
|
|
|
|
memcpy(path_rev, path, sizeof(struct path));
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-25 01:53:35 +00:00
|
|
|
path_rev->in = path->out; /* Swap in/out */
|
|
|
|
path_rev->out = path->in;
|
2014-06-25 01:53:48 +00:00
|
|
|
|
2014-06-25 01:53:35 +00:00
|
|
|
list_add(*paths, path_rev);
|
2014-06-25 01:53:32 +00:00
|
|
|
}
|
2014-06-05 09:34:50 +00:00
|
|
|
}
|
2014-06-25 01:53:35 +00:00
|
|
|
else {
|
|
|
|
free(path);
|
2014-06-05 09:34:50 +00:00
|
|
|
warn(" Path is not enabled");
|
2014-06-25 01:53:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2014-06-05 09:34:50 +00:00
|
|
|
}
|
|
|
|
|
2014-07-04 15:58:10 +00:00
|
|
|
int config_parse_node(config_setting_t *cfg, struct node **nodes)
|
2014-06-05 09:34:50 +00:00
|
|
|
{
|
|
|
|
const char *remote_str = NULL;
|
|
|
|
const char *local_str = NULL;
|
|
|
|
|
2014-06-25 01:53:32 +00:00
|
|
|
struct node *node;
|
2014-06-25 01:53:35 +00:00
|
|
|
|
|
|
|
/* Allocate memory */
|
|
|
|
node = (struct node *) malloc(sizeof(struct node));
|
|
|
|
if (!node)
|
|
|
|
error("Failed to allocate memory for node");
|
|
|
|
else
|
|
|
|
memset(node, 0, sizeof(struct node));
|
2014-06-05 09:34:50 +00:00
|
|
|
|
|
|
|
/* Required settings */
|
2014-06-25 01:53:35 +00:00
|
|
|
node->name = config_setting_name(cfg);
|
|
|
|
if (!node->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, "remote", &remote_str))
|
2014-06-25 01:53:35 +00:00
|
|
|
cerror(cfg, "Missing remote address for node '%s'", node->name);
|
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))
|
2014-06-25 01:53:35 +00:00
|
|
|
cerror(cfg, "Missing local address for node '%s'", node->name);
|
2014-06-05 09:34:50 +00:00
|
|
|
|
|
|
|
|
2014-06-25 01:53:42 +00:00
|
|
|
if (resolve_addr(local_str, &node->local, AI_PASSIVE))
|
2014-06-25 01:53:35 +00:00
|
|
|
cerror(cfg, "Failed to resolve local address '%s' of node '%s'", local_str, node->name);
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-25 01:53:35 +00:00
|
|
|
if (resolve_addr(remote_str, &node->remote, 0))
|
|
|
|
cerror(cfg, "Failed to resolve remote address '%s' of node '%s'", remote_str, node->name);
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-25 01:53:48 +00:00
|
|
|
config_setting_t *cfg_netem = config_setting_get_member(cfg, "netem");
|
|
|
|
if (cfg_netem) {
|
|
|
|
node->netem = (struct netem *) malloc(sizeof(struct netem));
|
|
|
|
config_parse_netem(cfg_netem, node->netem);
|
|
|
|
}
|
|
|
|
|
2014-06-25 01:53:35 +00:00
|
|
|
node->cfg = cfg;
|
2014-06-05 09:34:50 +00:00
|
|
|
|
2014-06-25 01:53:32 +00:00
|
|
|
list_add(*nodes, node);
|
|
|
|
|
2014-06-25 01:53:35 +00:00
|
|
|
return 0;
|
2014-06-05 09:34:32 +00:00
|
|
|
}
|
2014-06-25 01:53:48 +00:00
|
|
|
|
|
|
|
int config_parse_netem(config_setting_t *cfg, struct netem *em)
|
|
|
|
{
|
|
|
|
em->valid = 0;
|
|
|
|
|
|
|
|
if (config_setting_lookup_string(cfg, "distribution", &em->distribution))
|
|
|
|
em->valid |= TC_NETEM_DISTR;
|
|
|
|
if (config_setting_lookup_int(cfg, "delay", &em->delay))
|
|
|
|
em->valid |= TC_NETEM_DELAY;
|
|
|
|
if (config_setting_lookup_int(cfg, "jitter", &em->jitter))
|
|
|
|
em->valid |= TC_NETEM_JITTER;
|
|
|
|
if (config_setting_lookup_int(cfg, "loss", &em->loss))
|
|
|
|
em->valid |= TC_NETEM_LOSS;
|
|
|
|
if (config_setting_lookup_int(cfg, "duplicate", &em->duplicate))
|
|
|
|
em->valid |= TC_NETEM_DUPL;
|
|
|
|
if (config_setting_lookup_int(cfg, "corrupt", &em->corrupt))
|
|
|
|
em->valid |= TC_NETEM_CORRUPT;
|
|
|
|
|
2014-07-04 09:44:09 +00:00
|
|
|
/** @todo Check netem config values */
|
2014-06-25 01:53:48 +00:00
|
|
|
|
2014-07-04 09:44:12 +00:00
|
|
|
return CONFIG_TRUE;
|
2014-06-25 01:53:48 +00:00
|
|
|
}
|