/* * ZeroTier One - Network Virtualization Everywhere * Copyright (C) 2011-2015 ZeroTier, Inc. * * This program 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 3 of the License, or * (at your option) any later version. * * This program 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 this program. If not, see . * * -- * * ZeroTier may be used and distributed under the terms of the GPLv3, which * are available at: http://www.gnu.org/licenses/gpl-3.0.html * * If you would like to embed ZeroTier into a commercial application or * redistribute it in a modified binary form, please contact ZeroTier Networks * LLC. Start here: http://www.zerotier.com/ */ #include #include #include #include #include "Constants.hpp" #include "Network.hpp" #include "RuntimeEnvironment.hpp" #include "Switch.hpp" #include "Packet.hpp" #include "Buffer.hpp" #include "NetworkConfigMaster.hpp" namespace ZeroTier { const ZeroTier::MulticastGroup Network::BROADCAST(ZeroTier::MAC(0xff),0); Network::Network(const RuntimeEnvironment *renv,uint64_t nwid) : RR(renv), _id(nwid), _mac(renv->identity.address(),nwid), _enabled(true), _lastConfigUpdate(0), _destroyed(false), _netconfFailure(NETCONF_FAILURE_NONE) { char confn[128],mcdbn[128]; Utils::snprintf(confn,sizeof(confn),"networks.d/%.16llx.conf",_id); Utils::snprintf(mcdbn,sizeof(mcdbn),"networks.d/%.16llx.mcerts",_id); if (_id == ZT_TEST_NETWORK_ID) { applyConfiguration(NetworkConfig::createTestNetworkConfig(RR->identity.address())); // Save a one-byte CR to persist membership in the test network RR->node->dataStorePut(confn,"\n",1,false); } else { bool gotConf = false; try { std::string conf(RR->node->dataStoreGet(confn)); if (conf.length()) { setConfiguration(Dictionary(conf),false); gotConf = true; } } catch ( ... ) {} // ignore invalids, we'll re-request if (!gotConf) { // Save a one-byte CR to persist membership while we request a real netconf RR->node->dataStorePut(confn,"\n",1,false); } try { std::string mcdb(RR->node->dataStoreGet(mcdbn)); if (mcdb.length() > 6) { const char *p = mcdb.data(); const char *e = p + mcdb.length(); if (!memcmp("ZTMCD0",p,6)) { p += 6; Mutex::Lock _l(_lock); while (p != e) { CertificateOfMembership com; com.deserialize2(p,e); if (!com) break; _membershipCertificates.insert(std::pair< Address,CertificateOfMembership >(com.issuedTo(),com)); } } } } catch ( ... ) {} // ignore invalid MCDB, we'll re-learn from peers } requestConfiguration(); } Network::~Network() { if (_destroyed) { char n[128]; Utils::snprintf(n,sizeof(n),"networks.d/%.16llx.conf",_id); RR->node->dataStoreDelete(n); Utils::snprintf(n,sizeof(n),"networks.d/%.16llx.mcerts",_id); RR->node->dataStoreDelete(n); } else { clean(); _dumpMembershipCerts(); } } // Function object used by rescanMulticastGroups() class AnnounceMulticastGroupsToPeersWithActiveDirectPaths { public: AnnounceMulticastGroupsToPeersWithActiveDirectPaths(const RuntimeEnvironment *renv,Network *nw) : RR(renv), _now(Utils::now()), _network(nw), _supernodeAddresses(renv->topology->supernodeAddresses()) {} inline void operator()(Topology &t,const SharedPtr &p) { if ( ( (p->hasActiveDirectPath(_now)) && (_network->isAllowed(p->address())) ) || (std::find(_supernodeAddresses.begin(),_supernodeAddresses.end(),p->address()) != _supernodeAddresses.end()) ) { Packet outp(p->address(),RR->identity.address(),Packet::VERB_MULTICAST_LIKE); std::set mgs(_network->multicastGroups()); for(std::set::iterator mg(mgs.begin());mg!=mgs.end();++mg) { if ((outp.size() + 18) > ZT_UDP_DEFAULT_PAYLOAD_MTU) { outp.armor(p->key(),true); p->send(RR,outp.data(),outp.size(),_now); outp.reset(p->address(),RR->identity.address(),Packet::VERB_MULTICAST_LIKE); } // network ID, MAC, ADI outp.append((uint64_t)_network->id()); mg->mac().appendTo(outp); outp.append((uint32_t)mg->adi()); } if (outp.size() > ZT_PROTO_MIN_PACKET_LENGTH) { outp.armor(p->key(),true); p->send(RR,outp.data(),outp.size(),_now); } } } private: const RuntimeEnvironment *RR; uint64_t _now; Network *_network; std::vector
_supernodeAddresses; }; bool Network::applyConfiguration(const SharedPtr &conf) { Mutex::Lock _l(_lock); if (_destroyed) return false; try { if ((conf->networkId() == _id)&&(conf->issuedTo() == RR->identity.address())) { _config = conf; _lastConfigUpdate = RR->node->now(); _netconfFailure = NETCONF_FAILURE_NONE; return true; } else { LOG("ignored invalid configuration for network %.16llx (configuration contains mismatched network ID or issued-to address)",(unsigned long long)_id); } } catch (std::exception &exc) { LOG("ignored invalid configuration for network %.16llx (%s)",(unsigned long long)_id,exc.what()); } catch ( ... ) { LOG("ignored invalid configuration for network %.16llx (unknown exception)",(unsigned long long)_id); } return false; } int Network::setConfiguration(const Dictionary &conf,bool saveToDisk) { try { SharedPtr newConfig(new NetworkConfig(conf)); // throws if invalid { Mutex::Lock _l(_lock); if ((_config)&&(*_config == *newConfig)) return 1; // OK config, but duplicate of what we already have } if (applyConfiguration(newConfig)) { if (saveToDisk) { char n[128]; Utils::snprintf(n,sizeof(n),"networks.d/%.16llx.conf",_id); RR->node->dataStorePut(n,conf.toString(),true); } return 2; // OK and configuration has changed } } catch ( ... ) { LOG("ignored invalid configuration for network %.16llx (dictionary decode failed)",(unsigned long long)_id); } return 0; } void Network::requestConfiguration() { if (_id == ZT_TEST_NETWORK_ID) // pseudo-network-ID, no netconf master return; if (controller() == RR->identity.address()) { if (RR->netconfMaster) { SharedPtr nconf(config2()); Dictionary newconf; switch(RR->netconfMaster->doNetworkConfigRequest(InetAddress(),RR->identity,_id,Dictionary(),(nconf) ? nconf->revision() : (uint64_t)0,newconf)) { case NetworkConfigMaster::NETCONF_QUERY_OK: this->setConfiguration(newconf,true); return; case NetworkConfigMaster::NETCONF_QUERY_OBJECT_NOT_FOUND: this->setNotFound(); return; case NetworkConfigMaster::NETCONF_QUERY_ACCESS_DENIED: this->setAccessDenied(); return; default: return; } } else { this->setNotFound(); return; } } TRACE("requesting netconf for network %.16llx from netconf master %s",(unsigned long long)_id,controller().toString().c_str()); Packet outp(controller(),RR->identity.address(),Packet::VERB_NETWORK_CONFIG_REQUEST); outp.append((uint64_t)_id); outp.append((uint16_t)0); // no meta-data { Mutex::Lock _l(_lock); if (_config) outp.append((uint64_t)_config->revision()); else outp.append((uint64_t)0); } RR->sw->send(outp,true); } void Network::addMembershipCertificate(const CertificateOfMembership &cert,bool forceAccept) { if (!cert) // sanity check return; Mutex::Lock _l(_lock); CertificateOfMembership &old = _membershipCertificates[cert.issuedTo()]; // Nothing to do if the cert hasn't changed -- we get duplicates due to zealous cert pushing if (old == cert) return; // Check signature, log and return if cert is invalid if (!forceAccept) { if (cert.signedBy() != controller()) { LOG("rejected network membership certificate for %.16llx signed by %s: signer not a controller of this network",(unsigned long long)_id,cert.signedBy().toString().c_str()); return; } SharedPtr signer(RR->topology->getPeer(cert.signedBy())); if (!signer) { // This would be rather odd, since this is our netconf master... could happen // if we get packets before we've gotten config. RR->sw->requestWhois(cert.signedBy()); return; } if (!cert.verify(signer->identity())) { LOG("rejected network membership certificate for %.16llx signed by %s: signature check failed",(unsigned long long)_id,cert.signedBy().toString().c_str()); return; } } // If we made it past authentication, update cert if (cert.revision() != old.revision()) old = cert; } bool Network::peerNeedsOurMembershipCertificate(const Address &to,uint64_t now) { Mutex::Lock _l(_lock); if ((_config)&&(!_config->isPublic())&&(_config->com())) { uint64_t &lastPushed = _lastPushedMembershipCertificate[to]; if ((now - lastPushed) > (ZT_NETWORK_AUTOCONF_DELAY / 2)) { lastPushed = now; return true; } } return false; } bool Network::isAllowed(const Address &peer) const { try { Mutex::Lock _l(_lock); if (!_config) return false; if (_config->isPublic()) return true; std::map::const_iterator pc(_membershipCertificates.find(peer)); if (pc == _membershipCertificates.end()) return false; // no certificate on file return _config->com().agreesWith(pc->second); // is other cert valid against ours? } catch (std::exception &exc) { TRACE("isAllowed() check failed for peer %s: unexpected exception: %s",peer.toString().c_str(),exc.what()); } catch ( ... ) { TRACE("isAllowed() check failed for peer %s: unexpected exception: unknown exception",peer.toString().c_str()); } return false; // default position on any failure } void Network::clean() { uint64_t now = Utils::now(); Mutex::Lock _l(_lock); if (_destroyed) return; if ((_config)&&(_config->isPublic())) { // Open (public) networks do not track certs or cert pushes at all. _membershipCertificates.clear(); _lastPushedMembershipCertificate.clear(); } else if (_config) { // Clean certificates that are no longer valid from the cache. for(std::map::iterator c=(_membershipCertificates.begin());c!=_membershipCertificates.end();) { if (_config->com().agreesWith(c->second)) ++c; else _membershipCertificates.erase(c++); } // Clean entries from the last pushed tracking map if they're so old as // to be no longer relevant. uint64_t forgetIfBefore = now - (ZT_PEER_ACTIVITY_TIMEOUT * 16); // arbitrary reasonable cutoff for(std::map::iterator lp(_lastPushedMembershipCertificate.begin());lp!=_lastPushedMembershipCertificate.end();) { if (lp->second < forgetIfBefore) _lastPushedMembershipCertificate.erase(lp++); else ++lp; } } // Clean learned multicast groups if we haven't heard from them in a while for(std::map::iterator mg(_multicastGroupsBehindMe.begin());mg!=_multicastGroupsBehindMe.end();) { if ((now - mg->second) > (ZT_MULTICAST_LIKE_EXPIRE * 2)) _multicastGroupsBehindMe.erase(mg++); else ++mg; } } Network::Status Network::status() const { Mutex::Lock _l(_lock); switch(_netconfFailure) { case NETCONF_FAILURE_ACCESS_DENIED: return NETWORK_ACCESS_DENIED; case NETCONF_FAILURE_NOT_FOUND: return NETWORK_NOT_FOUND; case NETCONF_FAILURE_NONE: return ((_lastConfigUpdate > 0) ? ((_tap) ? NETWORK_OK : NETWORK_INITIALIZING) : NETWORK_WAITING_FOR_FIRST_AUTOCONF); //case NETCONF_FAILURE_INIT_FAILED: default: return NETWORK_INITIALIZATION_FAILED; } } void Network::learnBridgeRoute(const MAC &mac,const Address &addr) { Mutex::Lock _l(_lock); _remoteBridgeRoutes[mac] = addr; // If _remoteBridgeRoutes exceeds sanity limit, trim worst offenders until below -- denial of service circuit breaker while (_remoteBridgeRoutes.size() > ZT_MAX_BRIDGE_ROUTES) { std::map counts; Address maxAddr; unsigned long maxCount = 0; for(std::map::iterator br(_remoteBridgeRoutes.begin());br!=_remoteBridgeRoutes.end();++br) { unsigned long c = ++counts[br->second]; if (c > maxCount) { maxCount = c; maxAddr = br->second; } } for(std::map::iterator br(_remoteBridgeRoutes.begin());br!=_remoteBridgeRoutes.end();) { if (br->second == maxAddr) _remoteBridgeRoutes.erase(br++); else ++br; } } } void Network::setEnabled(bool enabled) { Mutex::Lock _l(_lock); _enabled = enabled; if (_tap) _tap->setEnabled(enabled); } void Network::destroy() { Mutex::Lock _l(_lock); _enabled = false; _destroyed = true; if (_setupThread) Thread::join(_setupThread); _setupThread = Thread(); if (_tap) RR->tapFactory->close(_tap,true); _tap = (EthernetTap *)0; } void Network::_dumpMembershipCerts() { char n[128]; std::string buf("ZTMCD0"); Utils::snprintf(n,sizeof(n),"networks.d/%.16llx.mcerts",_id); Mutex::Lock _l(_lock); if ((!_config)||(_config.isPublic())||(_membershipCertificates.size() == 0)) { RR->node->dataStoreDelete(n); return; } for(std::map::iterator c(_membershipCertificates.begin());c!=_membershipCertificates.end();++c) c->second.serialize2(buf); RR->node->dataStorePut(n,buf,true); } } // namespace ZeroTier