From 3afc629ac59c3b55d0b438098c130c714ff64396 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Fri, 5 Sep 2014 14:56:11 -0700 Subject: [PATCH] Bit of network config parser cleanup. --- node/NetworkConfig.cpp | 45 ++++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 21 deletions(-) diff --git a/node/NetworkConfig.cpp b/node/NetworkConfig.cpp index 284cc47a6..c78dd995f 100644 --- a/node/NetworkConfig.cpp +++ b/node/NetworkConfig.cpp @@ -82,57 +82,60 @@ void NetworkConfig::_fromDictionary(const Dictionary &d) _nwid = Utils::hexStrToU64(d.get(ZT_NETWORKCONFIG_DICT_KEY_NETWORK_ID).c_str()); if (!_nwid) throw std::invalid_argument("configuration contains zero network ID"); + _timestamp = Utils::hexStrToU64(d.get(ZT_NETWORKCONFIG_DICT_KEY_TIMESTAMP).c_str()); _issuedTo = Address(d.get(ZT_NETWORKCONFIG_DICT_KEY_ISSUED_TO)); _multicastPrefixBits = Utils::hexStrToUInt(d.get(ZT_NETWORKCONFIG_DICT_KEY_MULTICAST_PREFIX_BITS,zero).c_str()); + if (!_multicastPrefixBits) + _multicastPrefixBits = ZT_DEFAULT_MULTICAST_PREFIX_BITS; _multicastDepth = Utils::hexStrToUInt(d.get(ZT_NETWORKCONFIG_DICT_KEY_MULTICAST_DEPTH,zero).c_str()); + if (!_multicastDepth) + _multicastDepth = ZT_DEFAULT_MULTICAST_DEPTH; _allowPassiveBridging = (Utils::hexStrToUInt(d.get(ZT_NETWORKCONFIG_DICT_KEY_ALLOW_PASSIVE_BRIDGING,zero).c_str()) != 0); _private = (Utils::hexStrToUInt(d.get(ZT_NETWORKCONFIG_DICT_KEY_PRIVATE,one).c_str()) != 0); _enableBroadcast = (Utils::hexStrToUInt(d.get(ZT_NETWORKCONFIG_DICT_KEY_ENABLE_BROADCAST,one).c_str()) != 0); _name = d.get(ZT_NETWORKCONFIG_DICT_KEY_NAME); _description = d.get(ZT_NETWORKCONFIG_DICT_KEY_DESC,std::string()); - if (!_multicastPrefixBits) - _multicastPrefixBits = ZT_DEFAULT_MULTICAST_PREFIX_BITS; - if (!_multicastDepth) - _multicastDepth = ZT_DEFAULT_MULTICAST_DEPTH; - std::string ipAddrs(d.get(ZT_NETWORKCONFIG_DICT_KEY_IPV4_STATIC,std::string())); - std::string v6s(d.get(ZT_NETWORKCONFIG_DICT_KEY_IPV6_STATIC,std::string())); - if (v6s.length()) { - if (ipAddrs.length()) - ipAddrs.push_back(','); - ipAddrs.append(v6s); + { + std::string v6s(d.get(ZT_NETWORKCONFIG_DICT_KEY_IPV6_STATIC,std::string())); + if (v6s.length()) { + if (ipAddrs.length()) + ipAddrs.push_back(','); + ipAddrs.append(v6s); + } } - std::vector ipAddrs2(Utils::split(ipAddrs.c_str(),",","","")); - for(std::vector::const_iterator ipstr(ipAddrs2.begin());ipstr!=ipAddrs2.end();++ipstr) { + + std::vector ipAddrsSplit(Utils::split(ipAddrs.c_str(),",","","")); + for(std::vector::const_iterator ipstr(ipAddrsSplit.begin());ipstr!=ipAddrsSplit.end();++ipstr) { InetAddress addr(*ipstr); switch(addr.type()) { case InetAddress::TYPE_IPV4: if ((!addr.netmaskBits())||(addr.netmaskBits() > 32)) - throw std::invalid_argument("static IP address fields contain one or more invalid IP/netmask entries"); + continue; break; case InetAddress::TYPE_IPV6: if ((!addr.netmaskBits())||(addr.netmaskBits() > 128)) - throw std::invalid_argument("static IP address fields contain one or more invalid IP/netmask entries"); + continue; break; - default: - throw std::invalid_argument("static IP address fields contain one or more invalid IP/netmask entries"); + default: // ignore unrecognized address types or junk/empty fields + continue; } _staticIps.insert(addr); } - std::vector ab(Utils::split(d.get(ZT_NETWORKCONFIG_DICT_KEY_ACTIVE_BRIDGES,"").c_str(),",","","")); - for(std::vector::const_iterator a(ab.begin());a!=ab.end();++a) { - if (a->length() == ZT_ADDRESS_LENGTH_HEX) { + std::vector activeBridgesSplit(Utils::split(d.get(ZT_NETWORKCONFIG_DICT_KEY_ACTIVE_BRIDGES,"").c_str(),",","","")); + for(std::vector::const_iterator a(activeBridgesSplit.begin());a!=activeBridgesSplit.end();++a) { + if (a->length() == ZT_ADDRESS_LENGTH_HEX) { // ignore empty or garbage fields Address tmp(*a); if (!tmp.isReserved()) _activeBridges.insert(tmp); } } - Dictionary mr(d.get(ZT_NETWORKCONFIG_DICT_KEY_MULTICAST_RATES,std::string())); - for(Dictionary::const_iterator i(mr.begin());i!=mr.end();++i) { + Dictionary multicastRateEntries(d.get(ZT_NETWORKCONFIG_DICT_KEY_MULTICAST_RATES,std::string())); + for(Dictionary::const_iterator i(multicastRateEntries.begin());i!=multicastRateEntries.end();++i) { std::vector params(Utils::split(i->second.c_str(),",","","")); if (params.size() >= 3) _multicastRates[MulticastGroup(i->first)] = MulticastRate(Utils::hexStrToUInt(params[0].c_str()),Utils::hexStrToUInt(params[1].c_str()),Utils::hexStrToUInt(params[2].c_str()));