ZeroTierOne/node/Multicaster.cpp

173 lines
6.6 KiB
C++
Raw Normal View History

/*
* ZeroTier One - Global Peer to Peer Ethernet
* Copyright (C) 2011-2014 ZeroTier Networks LLC
*
* 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 <http://www.gnu.org/licenses/>.
*
* --
*
* 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 <algorithm>
#include "Constants.hpp"
2014-09-25 22:57:43 +00:00
#include "SharedPtr.hpp"
#include "Multicaster.hpp"
#include "Topology.hpp"
2014-09-25 22:08:29 +00:00
#include "Switch.hpp"
#include "Packet.hpp"
2014-09-25 22:57:43 +00:00
#include "Peer.hpp"
2014-09-25 22:08:29 +00:00
#include "RuntimeEnvironment.hpp"
namespace ZeroTier {
2014-09-26 05:08:52 +00:00
Multicaster::Multicaster()
{
}
Multicaster::~Multicaster()
{
}
2014-09-26 05:08:52 +00:00
void Multicaster::send(const RuntimeEnvironment *RR,uint64_t nwid,unsigned int limit,uint64_t now,const MulticastGroup &mg,const MAC &src,unsigned int etherType,const void *data,unsigned int len)
2014-09-22 20:18:24 +00:00
{
Mutex::Lock _l(_groups_m);
2014-09-25 22:08:29 +00:00
MulticastGroupStatus &gs = _groups[mg];
2014-09-22 20:18:24 +00:00
2014-09-25 22:08:29 +00:00
if (gs.members.size() >= limit) {
// If we already have enough members, just send and we're done -- no need for TX queue
OutboundMulticast out;
2014-09-24 20:45:58 +00:00
2014-09-25 22:57:43 +00:00
out.init(now,RR->identity.address(),nwid,ZT_MULTICAST_DEFAULT_IMPLICIT_GATHER,src,mg,etherType,data,len);
unsigned int count = 0;
2014-09-26 05:08:52 +00:00
for(std::vector<MulticastGroupMember>::const_reverse_iterator m(gs.members.rbegin());m!=gs.members.rend();++m) {
2014-09-25 22:08:29 +00:00
out.sendOnly(*(RR->sw),m->address);
2014-09-25 22:57:43 +00:00
if (++count >= limit)
break;
}
2014-09-22 20:18:24 +00:00
} else {
2014-09-25 22:08:29 +00:00
// If we don't already have enough members, send to the ones we have and then gather (if allowed within gather rate limit delay)
gs.txQueue.push_back(OutboundMulticast());
OutboundMulticast &out = gs.txQueue.back();
2014-09-25 22:57:43 +00:00
out.init(now,RR->identity.address(),nwid,ZT_MULTICAST_DEFAULT_IMPLICIT_GATHER,src,mg,etherType,data,len);
2014-09-26 05:08:52 +00:00
for(std::vector<MulticastGroupMember>::const_reverse_iterator m(gs.members.rbegin());m!=gs.members.rend();++m)
2014-09-25 22:08:29 +00:00
out.sendAndLog(*(RR->sw),m->address);
2014-09-25 22:57:43 +00:00
if ((now - gs.lastExplicitGather) >= ZT_MULTICAST_GATHER_DELAY) {
gs.lastExplicitGather = now;
// Explicitly gather -- right now we only do this from supernodes since they
// know all multicast group memberships. In the future this might be more
// distributed somehow.
SharedPtr<Peer> sn(RR->topology->getBestSupernode());
if (sn) {
Packet outp(sn->address(),RR->identity.address(),Packet::VERB_MULTICAST_GATHER);
outp.append(nwid);
outp.append((char)0); // TODO: include network membership cert
mg.mac().appendTo(outp);
outp.append((uint32_t)mg.adi());
outp.append((uint32_t)((limit - (unsigned int)gs.members.size()) + 1)); // +1 just means we'll have an extra in the queue if available
outp.armor(sn->key(),true);
sn->send(RR,outp.data(),outp.size(),now);
}
}
2014-09-22 20:18:24 +00:00
}
}
2014-09-25 22:57:43 +00:00
void Multicaster::clean(const RuntimeEnvironment *RR,uint64_t now,unsigned int limit)
2014-09-22 20:18:24 +00:00
{
Mutex::Lock _l(_groups_m);
2014-09-22 20:18:24 +00:00
for(std::map< MulticastGroup,MulticastGroupStatus >::iterator mm(_groups.begin());mm!=_groups.end();) {
2014-09-25 22:08:29 +00:00
// Remove expired outgoing multicasts from multicast TX queue
for(std::list<OutboundMulticast>::iterator tx(mm->second.txQueue.begin());tx!=mm->second.txQueue.end();) {
2014-09-25 22:57:43 +00:00
if ((tx->expired(now))||(tx->sentToCount() >= limit))
2014-09-25 22:08:29 +00:00
mm->second.txQueue.erase(tx++);
else ++tx;
}
// Remove expired members from membership list, and update rank
// so that remaining members can be sorted in ascending order of
// transmit priority.
2014-09-22 20:18:24 +00:00
std::vector<MulticastGroupMember>::iterator reader(mm->second.members.begin());
std::vector<MulticastGroupMember>::iterator writer(mm->second.members.begin());
unsigned int count = 0;
while (reader != mm->second.members.end()) {
if ((now - reader->timestamp) < ZT_MULTICAST_LIKE_EXPIRE) {
*writer = *reader;
2014-09-22 20:18:24 +00:00
/* We rank in ascending order of most recent relevant activity. For peers we've learned
* about by direct LIKEs, we do this in order of their own activity. For indirectly
* acquired peers we do this minus a constant to place these categorically below directly
* learned peers. For peers with no active Peer record, we use the time we last learned
* about them minus one day (a large constant) to put these at the bottom of the list.
* List is sorted in ascending order of rank and multicasts are sent last-to-first. */
if (writer->learnedFrom) {
2014-09-26 05:08:52 +00:00
SharedPtr<Peer> p(RR->topology->getPeer(writer->learnedFrom));
if (p)
writer->rank = p->lastUnicastFrame() - ZT_MULTICAST_LIKE_EXPIRE;
else writer->rank = writer->timestamp - (86400000 + ZT_MULTICAST_LIKE_EXPIRE);
} else {
2014-09-26 05:08:52 +00:00
SharedPtr<Peer> p(RR->topology->getPeer(writer->address));
if (p)
writer->rank = p->lastUnicastFrame();
else writer->rank = writer->timestamp - 86400000;
}
++writer;
++count;
}
++reader;
}
if (count) {
2014-09-25 22:08:29 +00:00
// There are remaining members, so re-sort them by rank and resize the vector
2014-09-22 20:18:24 +00:00
std::sort(mm->second.members.begin(),writer); // sorts in ascending order of rank
mm->second.members.resize(count); // trim off the ones we cut, after writer
++mm;
2014-09-25 22:08:29 +00:00
} else if (mm->second.txQueue.empty()) {
// There are no remaining members and no pending multicasts, so erase the entry
_groups.erase(mm++);
} else ++mm;
}
}
2014-09-25 22:57:43 +00:00
void Multicaster::_add(const RuntimeEnvironment *RR,uint64_t now,MulticastGroupStatus &gs,const Address &learnedFrom,const Address &member)
2014-09-25 22:08:29 +00:00
{
// assumes _groups_m is locked
2014-09-26 05:08:52 +00:00
// Update timestamp and learnedFrom if existing
2014-09-25 22:57:43 +00:00
for(std::vector<MulticastGroupMember>::iterator m(gs.members.begin());m!=gs.members.end();++m) {
if (m->address == member) {
if (m->learnedFrom)
m->learnedFrom = learnedFrom; // only update with indirect learnedFrom if we've never directly learned from this peer
m->timestamp = now;
return;
}
}
2014-09-26 05:08:52 +00:00
// If not existing, add to end of list (highest priority) -- these will
// be resorted on next clean(). In the future we might want to insert
// this somewhere else but we'll try this for now.
2014-09-25 22:57:43 +00:00
gs.members.push_back(MulticastGroupMember(member,learnedFrom,now));
}
} // namespace ZeroTier