X-Git-Url: http://git.onelab.eu/?p=distributedratelimiting.git;a=blobdiff_plain;f=drl%2Fconfig.c;h=86d1ec4e023baa74a2bd68f989aa5ec4f336772b;hp=8b15cd23b48efdc1412009809e19f3efd79c298b;hb=415f6940d383c7a99d688ecfe3c6376784a3061c;hpb=d12ab8f1cd4ff135d692f7841360af70f0beb57b diff --git a/drl/config.c b/drl/config.c index 8b15cd2..86d1ec4 100644 --- a/drl/config.c +++ b/drl/config.c @@ -79,10 +79,13 @@ int get_eligible_leaves(drl_instance_t *instance) { return ENOMEM; } + memset(leaves, 0, count * sizeof(leaf_t)); for (i = 0; i < count; ++i) { leaves[i].xid = atoi(names[i]->d_name); leaves[i].parent = NULL; + leaves[i].drop_prob = 0.0; + leaves[i].delay = 0; free(names[i]); @@ -103,14 +106,26 @@ static int parse_common(xmlDocPtr doc, xmlNodePtr ident, ident_config *common) { xmlChar *limit; xmlChar *commfabric; xmlChar *branch; + xmlChar *membership; + xmlChar *failure_behavior; xmlChar *accounting; xmlChar *ewma; xmlChar *mainloop_intervals; xmlChar *communication_intervals; xmlChar *independent; + xmlChar *htb_node; + xmlChar *htb_parent; xmlNodePtr fields = ident->children; ident_peer *current = NULL; + /* The struct has been memsetted to 0, this is just to be safe. */ +#ifdef BUILD_ZOOKEEPER + common->zk_host = NULL; +#endif + common->peers = NULL; + common->members = NULL; + common->next = NULL; + /* Make sure no required fields are missing. */ id = xmlGetProp(ident, (const xmlChar *) "id"); if (id == NULL) { @@ -147,7 +162,7 @@ static int parse_common(xmlDocPtr doc, xmlNodePtr ident, ident_config *common) { xmlFree(commfabric); } - /* Only care about branching factor if we're using gossip. */ + /* Only care about branching factor and failure detector if we're using gossip. */ if (common->commfabric == COMM_GOSSIP) { branch = xmlGetProp(ident, (const xmlChar *) "branch"); if (branch == NULL) { @@ -157,6 +172,46 @@ static int parse_common(xmlDocPtr doc, xmlNodePtr ident, ident_config *common) { common->branch = atoi((const char *) branch); xmlFree(branch); } + + membership = xmlGetProp(ident, (const xmlChar *) "membership"); + if (membership == NULL) { + printlog(LOG_CRITICAL, "Ident missing membership protocol selection.\n"); + return EINVAL; + } else { + if (!xmlStrcmp(membership, (const xmlChar *) "SWIM")) { + common->membership = SWIM; + } else if (!xmlStrcmp(membership, (const xmlChar *) "ZOOKEEPER")) { +#ifdef BUILD_ZOOKEEPER + common->membership = ZOOKEEPER; +#else + printlog(LOG_CRITICAL, "Zookeeper requested, but support not compiled into DRL at configure time.\n"); + xmlFree(membership); + return EINVAL; +#endif + } else { + printlog(LOG_CRITICAL, "Unknown/invalid gossip group membership protocol.\n"); + xmlFree(membership); + return EINVAL; + } + xmlFree(membership); + } + + failure_behavior = xmlGetProp(ident, (const xmlChar *) "failure_behavior"); + if (failure_behavior == NULL) { + printlog(LOG_CRITICAL, "Ident missing failure handling behavior.\n"); + return EINVAL; + } else { + if (!xmlStrcmp(failure_behavior, (const xmlChar *) "PANIC")) { + common->failure_behavior = PANIC; + } else if (!xmlStrcmp(failure_behavior, (const xmlChar *) "QUORUM")) { + common->failure_behavior = QUORUM; + } else { + printlog(LOG_CRITICAL, "Unknown/invalid gossip failure behavior policy.\n"); + xmlFree(failure_behavior); + return EINVAL; + } + xmlFree(failure_behavior); + } } accounting = xmlGetProp(ident, (const xmlChar *) "accounting"); @@ -215,6 +270,21 @@ static int parse_common(xmlDocPtr doc, xmlNodePtr ident, ident_config *common) { xmlFree(independent); } + htb_node = xmlGetProp(ident, (const xmlChar *) "htb_node"); + htb_parent = xmlGetProp(ident, (const xmlChar *) "htb_parent"); + if (htb_node == NULL) { + common->htb_node = -1; + } else { + sscanf((const char *)htb_node, "%x", &common->htb_node); + xmlFree(htb_node); + } + if (htb_parent == NULL) { + common->htb_parent = -1; + } else { + sscanf((const char *)htb_parent, "%x", &common->htb_parent); + xmlFree(htb_parent); + } + while (fields != NULL) { if((!xmlStrcmp(fields->name, (const xmlChar *) "peer"))) { xmlChar *ip = xmlNodeListGetString(doc, fields->children, 1); @@ -240,6 +310,16 @@ static int parse_common(xmlDocPtr doc, xmlNodePtr ident, ident_config *common) { current->next = NULL; } xmlFree(ip); + } else if ((!xmlStrcmp(fields->name, (const xmlChar *) "zkhost"))) { + xmlChar *host = xmlNodeListGetString(doc, fields->children, 1); + +#ifdef BUILD_ZOOKEEPER + common->zk_host = strdup((const char *) host); + if (common->zk_host == NULL) { + return ENOMEM; + } +#endif + xmlFree(host); } fields = fields->next; } @@ -249,6 +329,12 @@ static int parse_common(xmlDocPtr doc, xmlNodePtr ident, ident_config *common) { return EINVAL; } +#ifdef BUILD_ZOOKEEPER + if (common->membership == ZOOKEEPER && common->zk_host == NULL) { + printlog(LOG_CRITICAL, "Group membership protocol ZOOKEEPER requires a zkhost field.\n"); + return EINVAL; + } +#endif /* No errors. */ return 0; }