mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-22 22:32:22 +00:00
Restore group announcement on Peer::receive() but centralize packet composition in one place.
This commit is contained in:
parent
a3db7d0728
commit
9405150b11
115
node/Network.cpp
115
node/Network.cpp
@ -141,6 +141,12 @@ void Network::multicastUnsubscribe(const MulticastGroup &mg)
|
|||||||
_myMulticastGroups.swap(nmg);
|
_myMulticastGroups.swap(nmg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Network::tryAnnounceMulticastGroupsTo(const SharedPtr<Peer> &peer)
|
||||||
|
{
|
||||||
|
Mutex::Lock _l(_lock);
|
||||||
|
return _tryAnnounceMulticastGroupsTo(RR->topology->rootAddresses(),_allMulticastGroups(),peer,RR->node->now());
|
||||||
|
}
|
||||||
|
|
||||||
bool Network::applyConfiguration(const SharedPtr<NetworkConfig> &conf)
|
bool Network::applyConfiguration(const SharedPtr<NetworkConfig> &conf)
|
||||||
{
|
{
|
||||||
if (_destroyed) // sanity check
|
if (_destroyed) // sanity check
|
||||||
@ -394,6 +400,63 @@ bool Network::_isAllowed(const SharedPtr<Peer> &peer) const
|
|||||||
return false; // default position on any failure
|
return false; // default position on any failure
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Used in Network::_announceMulticastGroups()
|
||||||
|
class _AnnounceMulticastGroupsToPeersWithActiveDirectPaths
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
_AnnounceMulticastGroupsToPeersWithActiveDirectPaths(const RuntimeEnvironment *renv,Network *nw) :
|
||||||
|
_now(renv->node->now()),
|
||||||
|
RR(renv),
|
||||||
|
_network(nw),
|
||||||
|
_rootAddresses(renv->topology->rootAddresses()),
|
||||||
|
_allMulticastGroups(nw->_allMulticastGroups())
|
||||||
|
{}
|
||||||
|
|
||||||
|
inline void operator()(Topology &t,const SharedPtr<Peer> &p) { _network->_tryAnnounceMulticastGroupsTo(_rootAddresses,_allMulticastGroups,p,_now); }
|
||||||
|
|
||||||
|
private:
|
||||||
|
uint64_t _now;
|
||||||
|
const RuntimeEnvironment *RR;
|
||||||
|
Network *_network;
|
||||||
|
std::vector<Address> _rootAddresses;
|
||||||
|
std::vector<MulticastGroup> _allMulticastGroups;
|
||||||
|
};
|
||||||
|
|
||||||
|
bool Network::_tryAnnounceMulticastGroupsTo(const std::vector<Address> &alwaysAddresses,const std::vector<MulticastGroup> &allMulticastGroups,const SharedPtr<Peer> &peer,uint64_t now) const
|
||||||
|
{
|
||||||
|
if ( ( (peer->hasActiveDirectPath(now)) && ( _isAllowed(peer) || (peer->address() == this->controller()) ) ) || (std::find(alwaysAddresses.begin(),alwaysAddresses.end(),peer->address()) != alwaysAddresses.end()) ) {
|
||||||
|
Packet outp(peer->address(),RR->identity.address(),Packet::VERB_MULTICAST_LIKE);
|
||||||
|
|
||||||
|
for(std::vector<MulticastGroup>::const_iterator mg(allMulticastGroups.begin());mg!=allMulticastGroups.end();++mg) {
|
||||||
|
if ((outp.size() + 18) >= ZT_UDP_DEFAULT_PAYLOAD_MTU) {
|
||||||
|
outp.armor(peer->key(),true);
|
||||||
|
peer->send(RR,outp.data(),outp.size(),now);
|
||||||
|
outp.reset(peer->address(),RR->identity.address(),Packet::VERB_MULTICAST_LIKE);
|
||||||
|
}
|
||||||
|
|
||||||
|
// network ID, MAC, ADI
|
||||||
|
outp.append((uint64_t)_id);
|
||||||
|
mg->mac().appendTo(outp);
|
||||||
|
outp.append((uint32_t)mg->adi());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (outp.size() > ZT_PROTO_MIN_PACKET_LENGTH) {
|
||||||
|
outp.armor(peer->key(),true);
|
||||||
|
peer->send(RR,outp.data(),outp.size(),now);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Network::_announceMulticastGroups()
|
||||||
|
{
|
||||||
|
// Assumes _lock is locked
|
||||||
|
_AnnounceMulticastGroupsToPeersWithActiveDirectPaths afunc(RR,this);
|
||||||
|
RR->topology->eachPeer<_AnnounceMulticastGroupsToPeersWithActiveDirectPaths &>(afunc);
|
||||||
|
}
|
||||||
|
|
||||||
std::vector<MulticastGroup> Network::_allMulticastGroups() const
|
std::vector<MulticastGroup> Network::_allMulticastGroups() const
|
||||||
{
|
{
|
||||||
// Assumes _lock is locked
|
// Assumes _lock is locked
|
||||||
@ -408,56 +471,4 @@ std::vector<MulticastGroup> Network::_allMulticastGroups() const
|
|||||||
return mgs;
|
return mgs;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Used in Network::_announceMulticastGroups()
|
|
||||||
class _AnnounceMulticastGroupsToPeersWithActiveDirectPaths
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
_AnnounceMulticastGroupsToPeersWithActiveDirectPaths(const RuntimeEnvironment *renv,Network *nw) :
|
|
||||||
RR(renv),
|
|
||||||
_now(renv->node->now()),
|
|
||||||
_network(nw),
|
|
||||||
_rootAddresses(renv->topology->rootAddresses()),
|
|
||||||
_allMulticastGroups(nw->_allMulticastGroups())
|
|
||||||
{}
|
|
||||||
|
|
||||||
inline void operator()(Topology &t,const SharedPtr<Peer> &p)
|
|
||||||
{
|
|
||||||
if ( ( (p->hasActiveDirectPath(_now)) && ( (_network->_isAllowed(p)) || (p->address() == _network->controller()) ) ) || (std::find(_rootAddresses.begin(),_rootAddresses.end(),p->address()) != _rootAddresses.end()) ) {
|
|
||||||
Packet outp(p->address(),RR->identity.address(),Packet::VERB_MULTICAST_LIKE);
|
|
||||||
|
|
||||||
for(std::vector<MulticastGroup>::iterator mg(_allMulticastGroups.begin());mg!=_allMulticastGroups.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<Address> _rootAddresses;
|
|
||||||
std::vector<MulticastGroup> _allMulticastGroups;
|
|
||||||
};
|
|
||||||
|
|
||||||
void Network::_announceMulticastGroups()
|
|
||||||
{
|
|
||||||
// Assumes _lock is locked
|
|
||||||
_AnnounceMulticastGroupsToPeersWithActiveDirectPaths afunc(RR,this);
|
|
||||||
RR->topology->eachPeer<_AnnounceMulticastGroupsToPeersWithActiveDirectPaths &>(afunc);
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace ZeroTier
|
} // namespace ZeroTier
|
||||||
|
@ -93,7 +93,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* @return Address of network's controller (most significant 40 bits of ID)
|
* @return Address of network's controller (most significant 40 bits of ID)
|
||||||
*/
|
*/
|
||||||
inline Address controller() throw() { return Address(_id >> 24); }
|
inline Address controller() const throw() { return Address(_id >> 24); }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param nwid Network ID
|
* @param nwid Network ID
|
||||||
@ -140,6 +140,14 @@ public:
|
|||||||
*/
|
*/
|
||||||
void multicastUnsubscribe(const MulticastGroup &mg);
|
void multicastUnsubscribe(const MulticastGroup &mg);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Announce multicast groups to a peer if that peer is authorized on this network
|
||||||
|
*
|
||||||
|
* @param peer Peer to try to announce multicast groups to
|
||||||
|
* @return True if peer was authorized and groups were announced
|
||||||
|
*/
|
||||||
|
bool tryAnnounceMulticastGroupsTo(const SharedPtr<Peer> &peer);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Apply a NetworkConfig to this network
|
* Apply a NetworkConfig to this network
|
||||||
*
|
*
|
||||||
@ -334,6 +342,7 @@ private:
|
|||||||
ZT_VirtualNetworkStatus _status() const;
|
ZT_VirtualNetworkStatus _status() const;
|
||||||
void _externalConfig(ZT_VirtualNetworkConfig *ec) const; // assumes _lock is locked
|
void _externalConfig(ZT_VirtualNetworkConfig *ec) const; // assumes _lock is locked
|
||||||
bool _isAllowed(const SharedPtr<Peer> &peer) const;
|
bool _isAllowed(const SharedPtr<Peer> &peer) const;
|
||||||
|
bool _tryAnnounceMulticastGroupsTo(const std::vector<Address> &rootAddresses,const std::vector<MulticastGroup> &allMulticastGroups,const SharedPtr<Peer> &peer,uint64_t now) const;
|
||||||
void _announceMulticastGroups();
|
void _announceMulticastGroups();
|
||||||
std::vector<MulticastGroup> _allMulticastGroups() const;
|
std::vector<MulticastGroup> _allMulticastGroups() const;
|
||||||
|
|
||||||
|
148
node/Peer.cpp
148
node/Peer.cpp
@ -96,106 +96,86 @@ void Peer::received(
|
|||||||
Packet::Verb inReVerb)
|
Packet::Verb inReVerb)
|
||||||
{
|
{
|
||||||
const uint64_t now = RR->node->now();
|
const uint64_t now = RR->node->now();
|
||||||
Mutex::Lock _l(_lock);
|
bool needMulticastGroupAnnounce = false;
|
||||||
|
|
||||||
_lastReceive = now;
|
{
|
||||||
|
Mutex::Lock _l(_lock);
|
||||||
|
|
||||||
if (!hops) {
|
_lastReceive = now;
|
||||||
bool pathIsConfirmed = false;
|
|
||||||
|
|
||||||
/* Learn new paths from direct (hops == 0) packets */
|
if (!hops) {
|
||||||
{
|
bool pathIsConfirmed = false;
|
||||||
unsigned int np = _numPaths;
|
|
||||||
for(unsigned int p=0;p<np;++p) {
|
/* Learn new paths from direct (hops == 0) packets */
|
||||||
if ((_paths[p].address() == remoteAddr)&&(_paths[p].localAddress() == localAddr)) {
|
{
|
||||||
_paths[p].received(now);
|
unsigned int np = _numPaths;
|
||||||
pathIsConfirmed = true;
|
for(unsigned int p=0;p<np;++p) {
|
||||||
break;
|
if ((_paths[p].address() == remoteAddr)&&(_paths[p].localAddress() == localAddr)) {
|
||||||
|
_paths[p].received(now);
|
||||||
|
pathIsConfirmed = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (!pathIsConfirmed) {
|
if (!pathIsConfirmed) {
|
||||||
if ((verb == Packet::VERB_OK)&&(inReVerb == Packet::VERB_HELLO)) {
|
if ((verb == Packet::VERB_OK)&&(inReVerb == Packet::VERB_HELLO)) {
|
||||||
|
|
||||||
// Learn paths if they've been confirmed via a HELLO
|
// Learn paths if they've been confirmed via a HELLO
|
||||||
RemotePath *slot = (RemotePath *)0;
|
RemotePath *slot = (RemotePath *)0;
|
||||||
if (np < ZT_MAX_PEER_NETWORK_PATHS) {
|
if (np < ZT_MAX_PEER_NETWORK_PATHS) {
|
||||||
// Add new path
|
// Add new path
|
||||||
slot = &(_paths[np++]);
|
slot = &(_paths[np++]);
|
||||||
} else {
|
} else {
|
||||||
// Replace oldest non-fixed path
|
// Replace oldest non-fixed path
|
||||||
uint64_t slotLRmin = 0xffffffffffffffffULL;
|
uint64_t slotLRmin = 0xffffffffffffffffULL;
|
||||||
for(unsigned int p=0;p<ZT_MAX_PEER_NETWORK_PATHS;++p) {
|
for(unsigned int p=0;p<ZT_MAX_PEER_NETWORK_PATHS;++p) {
|
||||||
if ((!_paths[p].fixed())&&(_paths[p].lastReceived() <= slotLRmin)) {
|
if ((!_paths[p].fixed())&&(_paths[p].lastReceived() <= slotLRmin)) {
|
||||||
slotLRmin = _paths[p].lastReceived();
|
slotLRmin = _paths[p].lastReceived();
|
||||||
slot = &(_paths[p]);
|
slot = &(_paths[p]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
if (slot) {
|
||||||
if (slot) {
|
*slot = RemotePath(localAddr,remoteAddr,false);
|
||||||
*slot = RemotePath(localAddr,remoteAddr,false);
|
slot->received(now);
|
||||||
slot->received(now);
|
_numPaths = np;
|
||||||
_numPaths = np;
|
pathIsConfirmed = true;
|
||||||
pathIsConfirmed = true;
|
_sortPaths(now);
|
||||||
_sortPaths(now);
|
}
|
||||||
}
|
|
||||||
|
} else {
|
||||||
} else {
|
|
||||||
|
/* If this path is not known, send a HELLO. We don't learn
|
||||||
/* If this path is not known, send a HELLO. We don't learn
|
* paths without confirming that a bidirectional link is in
|
||||||
* paths without confirming that a bidirectional link is in
|
* fact present, but any packet that decodes and authenticates
|
||||||
* fact present, but any packet that decodes and authenticates
|
* correctly is considered valid. */
|
||||||
* correctly is considered valid. */
|
if ((now - _lastPathConfirmationSent) >= ZT_MIN_PATH_CONFIRMATION_INTERVAL) {
|
||||||
if ((now - _lastPathConfirmationSent) >= ZT_MIN_PATH_CONFIRMATION_INTERVAL) {
|
_lastPathConfirmationSent = now;
|
||||||
_lastPathConfirmationSent = now;
|
TRACE("got %s via unknown path %s(%s), confirming...",Packet::verbString(verb),_id.address().toString().c_str(),remoteAddr.toString().c_str());
|
||||||
TRACE("got %s via unknown path %s(%s), confirming...",Packet::verbString(verb),_id.address().toString().c_str(),remoteAddr.toString().c_str());
|
attemptToContactAt(RR,localAddr,remoteAddr,now);
|
||||||
attemptToContactAt(RR,localAddr,remoteAddr,now);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Announce multicast groups of interest to direct peers if they are
|
|
||||||
* considered authorized members of a given network. Also announce to
|
|
||||||
* root servers and network controllers. */
|
|
||||||
/*
|
|
||||||
if ((pathIsConfirmed)&&((now - _lastAnnouncedTo) >= ((ZT_MULTICAST_LIKE_EXPIRE / 2) - 1000))) {
|
|
||||||
_lastAnnouncedTo = now;
|
|
||||||
|
|
||||||
const bool isRoot = RR->topology->isRoot(_id);
|
|
||||||
|
|
||||||
Packet outp(_id.address(),RR->identity.address(),Packet::VERB_MULTICAST_LIKE);
|
|
||||||
const std::vector< SharedPtr<Network> > networks(RR->node->allNetworks());
|
|
||||||
for(std::vector< SharedPtr<Network> >::const_iterator n(networks.begin());n!=networks.end();++n) {
|
|
||||||
if ( (isRoot) || ((*n)->isAllowed(_id.address())) || (_id.address() == (*n)->controller()) ) {
|
|
||||||
const std::vector<MulticastGroup> mgs((*n)->allMulticastGroups());
|
|
||||||
for(std::vector<MulticastGroup>::const_iterator mg(mgs.begin());mg!=mgs.end();++mg) {
|
|
||||||
if ((outp.size() + 18) > ZT_UDP_DEFAULT_PAYLOAD_MTU) {
|
|
||||||
outp.armor(_key,true);
|
|
||||||
RR->node->putPacket(localAddr,remoteAddr,outp.data(),outp.size());
|
|
||||||
outp.reset(_id.address(),RR->identity.address(),Packet::VERB_MULTICAST_LIKE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// network ID, MAC, ADI
|
|
||||||
outp.append((uint64_t)(*n)->id());
|
|
||||||
mg->mac().appendTo(outp);
|
|
||||||
outp.append((uint32_t)mg->adi());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (outp.size() > ZT_PROTO_MIN_PACKET_LENGTH) {
|
|
||||||
outp.armor(_key,true);
|
|
||||||
RR->node->putPacket(localAddr,remoteAddr,outp.data(),outp.size());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
if ((now - _lastAnnouncedTo) >= ((ZT_MULTICAST_LIKE_EXPIRE / 2) - 1000)) {
|
||||||
|
_lastAnnouncedTo = now;
|
||||||
|
needMulticastGroupAnnounce = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((verb == Packet::VERB_FRAME)||(verb == Packet::VERB_EXT_FRAME))
|
||||||
|
_lastUnicastFrame = now;
|
||||||
|
else if (verb == Packet::VERB_MULTICAST_FRAME)
|
||||||
|
_lastMulticastFrame = now;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((verb == Packet::VERB_FRAME)||(verb == Packet::VERB_EXT_FRAME))
|
if (needMulticastGroupAnnounce) {
|
||||||
_lastUnicastFrame = now;
|
const std::vector< SharedPtr<Network> > networks(RR->node->allNetworks());
|
||||||
else if (verb == Packet::VERB_MULTICAST_FRAME)
|
for(std::vector< SharedPtr<Network> >::const_iterator n(networks.begin());n!=networks.end();++n)
|
||||||
_lastMulticastFrame = now;
|
(*n)->tryAnnounceMulticastGroupsTo(SharedPtr<Peer>(this));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Peer::attemptToContactAt(const RuntimeEnvironment *RR,const InetAddress &localAddr,const InetAddress &atAddress,uint64_t now)
|
void Peer::attemptToContactAt(const RuntimeEnvironment *RR,const InetAddress &localAddr,const InetAddress &atAddress,uint64_t now)
|
||||||
|
Loading…
Reference in New Issue
Block a user