2013-07-04 20:56:19 +00:00
|
|
|
/*
|
2015-02-17 21:11:34 +00:00
|
|
|
* ZeroTier One - Network Virtualization Everywhere
|
|
|
|
* Copyright (C) 2011-2015 ZeroTier, Inc.
|
2013-07-04 20:56:19 +00:00
|
|
|
*
|
|
|
|
* 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/
|
|
|
|
*/
|
|
|
|
|
2015-04-07 19:22:33 +00:00
|
|
|
#include "../version.h"
|
|
|
|
|
2014-08-05 21:05:50 +00:00
|
|
|
#include "Constants.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
#include "Peer.hpp"
|
2015-04-03 00:54:56 +00:00
|
|
|
#include "Node.hpp"
|
2013-10-01 20:01:36 +00:00
|
|
|
#include "Switch.hpp"
|
2014-09-30 15:38:03 +00:00
|
|
|
#include "Network.hpp"
|
2014-04-10 21:22:25 +00:00
|
|
|
#include "AntiRecursion.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-12-24 18:39:29 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
namespace ZeroTier {
|
|
|
|
|
|
|
|
Peer::Peer(const Identity &myIdentity,const Identity &peerIdentity)
|
|
|
|
throw(std::runtime_error) :
|
2013-10-21 14:29:44 +00:00
|
|
|
_lastUsed(0),
|
2014-06-30 18:31:04 +00:00
|
|
|
_lastReceive(0),
|
2013-07-13 18:28:26 +00:00
|
|
|
_lastUnicastFrame(0),
|
|
|
|
_lastMulticastFrame(0),
|
2014-10-13 21:12:51 +00:00
|
|
|
_lastAnnouncedTo(0),
|
2013-07-12 02:06:25 +00:00
|
|
|
_vMajor(0),
|
|
|
|
_vMinor(0),
|
2014-02-03 18:46:37 +00:00
|
|
|
_vRevision(0),
|
2015-04-03 00:54:56 +00:00
|
|
|
_id(peerIdentity),
|
2014-10-21 17:42:04 +00:00
|
|
|
_numPaths(0),
|
2015-04-03 00:54:56 +00:00
|
|
|
_latency(0)
|
2013-07-04 20:56:19 +00:00
|
|
|
{
|
2013-10-05 14:19:12 +00:00
|
|
|
if (!myIdentity.agree(peerIdentity,_key,ZT_PEER_SECRET_KEY_LENGTH))
|
2013-07-04 20:56:19 +00:00
|
|
|
throw std::runtime_error("new peer identity key agreement failed");
|
|
|
|
}
|
|
|
|
|
2014-10-21 17:42:04 +00:00
|
|
|
void Peer::received(
|
2014-09-24 20:53:03 +00:00
|
|
|
const RuntimeEnvironment *RR,
|
2013-12-24 18:39:29 +00:00
|
|
|
const InetAddress &remoteAddr,
|
2015-04-07 01:56:08 +00:00
|
|
|
int linkDesperation,
|
2013-12-24 18:39:29 +00:00
|
|
|
unsigned int hops,
|
|
|
|
uint64_t packetId,
|
|
|
|
Packet::Verb verb,
|
|
|
|
uint64_t inRePacketId,
|
2015-04-03 00:54:56 +00:00
|
|
|
Packet::Verb inReVerb)
|
2013-07-04 20:56:19 +00:00
|
|
|
{
|
2015-04-03 00:54:56 +00:00
|
|
|
const uint64_t now = RR->node->now();
|
2014-06-30 18:31:04 +00:00
|
|
|
_lastReceive = now;
|
|
|
|
|
2014-04-01 05:23:55 +00:00
|
|
|
if (!hops) {
|
2015-04-07 19:22:33 +00:00
|
|
|
bool pathIsConfirmed = false;
|
|
|
|
|
2015-04-03 00:54:56 +00:00
|
|
|
/* Learn new paths from direct (hops == 0) packets */
|
2014-03-21 21:31:10 +00:00
|
|
|
{
|
2015-04-03 00:54:56 +00:00
|
|
|
unsigned int np = _numPaths;
|
|
|
|
for(unsigned int p=0;p<np;++p) {
|
|
|
|
if (_paths[p].address() == remoteAddr) {
|
|
|
|
_paths[p].received(now,linkDesperation);
|
2015-04-07 19:22:33 +00:00
|
|
|
pathIsConfirmed = true;
|
2014-03-21 21:31:10 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-03-21 03:07:35 +00:00
|
|
|
}
|
|
|
|
|
2015-04-07 19:22:33 +00:00
|
|
|
if (!pathIsConfirmed) {
|
|
|
|
if ((verb == Packet::VERB_OK)&&(inReVerb == Packet::VERB_HELLO)) {
|
|
|
|
// Learn paths if they've been confirmed via a HELLO
|
|
|
|
Path *slot = (Path *)0;
|
2015-04-09 01:45:21 +00:00
|
|
|
if (np < ZT1_MAX_PEER_NETWORK_PATHS) {
|
2015-04-07 19:22:33 +00:00
|
|
|
// Add new path
|
|
|
|
slot = &(_paths[np++]);
|
|
|
|
} else {
|
|
|
|
// Replace oldest non-fixed path
|
|
|
|
uint64_t slotLRmin = 0xffffffffffffffffULL;
|
2015-04-09 01:45:21 +00:00
|
|
|
for(unsigned int p=0;p<ZT1_MAX_PEER_NETWORK_PATHS;++p) {
|
2015-04-07 19:22:33 +00:00
|
|
|
if ((!_paths[p].fixed())&&(_paths[p].lastReceived() <= slotLRmin)) {
|
|
|
|
slotLRmin = _paths[p].lastReceived();
|
|
|
|
slot = &(_paths[p]);
|
|
|
|
}
|
2015-04-03 00:54:56 +00:00
|
|
|
}
|
2014-10-21 17:42:04 +00:00
|
|
|
}
|
2015-04-07 19:22:33 +00:00
|
|
|
if (slot) {
|
|
|
|
slot->init(remoteAddr,false);
|
|
|
|
slot->received(now,linkDesperation);
|
|
|
|
_numPaths = np;
|
|
|
|
pathIsConfirmed = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* If this path is not known, send a HELLO. We don't learn
|
|
|
|
* paths without confirming that a bidirectional link is in
|
|
|
|
* fact present, but any packet that decodes and authenticates
|
|
|
|
* correctly is considered valid. */
|
|
|
|
attemptToContactAt(RR,remoteAddr,linkDesperation,now);
|
2014-04-01 05:23:55 +00:00
|
|
|
}
|
2014-03-21 21:31:10 +00:00
|
|
|
}
|
2014-03-21 03:07:35 +00:00
|
|
|
}
|
2013-12-31 09:22:32 +00:00
|
|
|
|
2014-10-04 01:27:42 +00:00
|
|
|
/* Announce multicast groups of interest to direct peers if they are
|
|
|
|
* considered authorized members of a given network. Also announce to
|
2015-04-07 01:27:24 +00:00
|
|
|
* supernodes and network controllers. */
|
2015-04-07 19:22:33 +00:00
|
|
|
if ((pathIsConfirmed)&&((now - _lastAnnouncedTo) >= ((ZT_MULTICAST_LIKE_EXPIRE / 2) - 1000))) {
|
2014-10-13 21:12:51 +00:00
|
|
|
_lastAnnouncedTo = now;
|
2014-09-30 15:38:03 +00:00
|
|
|
|
2015-04-07 01:27:24 +00:00
|
|
|
const bool isSupernode = RR->topology->isSupernode(_id.address());
|
2014-10-21 17:42:04 +00:00
|
|
|
|
2014-09-30 15:38:03 +00:00
|
|
|
Packet outp(_id.address(),RR->identity.address(),Packet::VERB_MULTICAST_LIKE);
|
2015-04-07 01:27:24 +00:00
|
|
|
const std::vector< SharedPtr<Network> > networks(RR->node->allNetworks());
|
|
|
|
for(std::vector< SharedPtr<Network> >::const_iterator n(networks.begin());n!=networks.end();++n) {
|
|
|
|
if ( (isSupernode) || ((*n)->isAllowed(_id.address())) ) {
|
|
|
|
const std::vector<MulticastGroup> mgs((*n)->allMulticastGroups());
|
|
|
|
for(std::vector<MulticastGroup>::const_iterator mg(mgs.begin());mg!=mgs.end();++mg) {
|
2014-09-30 15:38:03 +00:00
|
|
|
if ((outp.size() + 18) > ZT_UDP_DEFAULT_PAYLOAD_MTU) {
|
|
|
|
outp.armor(_key,true);
|
2015-04-07 01:56:08 +00:00
|
|
|
RR->node->putPacket(remoteAddr,outp.data(),outp.size(),linkDesperation);
|
2014-09-30 15:38:03 +00:00
|
|
|
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);
|
2015-04-07 01:56:08 +00:00
|
|
|
RR->node->putPacket(remoteAddr,outp.data(),outp.size(),linkDesperation);
|
2014-09-30 15:38:03 +00:00
|
|
|
}
|
2014-01-30 22:23:52 +00:00
|
|
|
}
|
2013-07-13 18:28:26 +00:00
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2014-06-11 04:41:34 +00:00
|
|
|
if ((verb == Packet::VERB_FRAME)||(verb == Packet::VERB_EXT_FRAME))
|
2013-07-13 18:28:26 +00:00
|
|
|
_lastUnicastFrame = now;
|
2015-04-03 00:54:56 +00:00
|
|
|
else if (verb == Packet::VERB_MULTICAST_FRAME)
|
2013-07-13 18:28:26 +00:00
|
|
|
_lastMulticastFrame = now;
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
2015-04-07 19:22:33 +00:00
|
|
|
void Peer::attemptToContactAt(const RuntimeEnvironment *RR,const InetAddress &atAddress,unsigned int linkDesperation,uint64_t now)
|
|
|
|
{
|
|
|
|
Packet outp(_id.address(),RR->identity.address(),Packet::VERB_HELLO);
|
|
|
|
outp.append((unsigned char)ZT_PROTO_VERSION);
|
|
|
|
outp.append((unsigned char)ZEROTIER_ONE_VERSION_MAJOR);
|
|
|
|
outp.append((unsigned char)ZEROTIER_ONE_VERSION_MINOR);
|
|
|
|
outp.append((uint16_t)ZEROTIER_ONE_VERSION_REVISION);
|
|
|
|
outp.append(now);
|
|
|
|
|
|
|
|
RR->identity.serialize(outp,false);
|
|
|
|
|
|
|
|
switch(atAddress.ss_family) {
|
|
|
|
case AF_INET:
|
|
|
|
outp.append((unsigned char)ZT_PROTO_DEST_ADDRESS_TYPE_IPV4);
|
|
|
|
outp.append(atAddress.rawIpData(),4);
|
|
|
|
outp.append((uint16_t)atAddress.port());
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
outp.append((unsigned char)ZT_PROTO_DEST_ADDRESS_TYPE_IPV6);
|
|
|
|
outp.append(atAddress.rawIpData(),16);
|
|
|
|
outp.append((uint16_t)atAddress.port());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
outp.append((unsigned char)ZT_PROTO_DEST_ADDRESS_TYPE_NONE);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
outp.armor(_key,false); // HELLO is sent in the clear
|
|
|
|
RR->node->putPacket(atAddress,outp.data(),outp.size(),linkDesperation);
|
|
|
|
}
|
|
|
|
|
2015-04-08 02:31:11 +00:00
|
|
|
void Peer::doPingAndKeepalive(const RuntimeEnvironment *RR,uint64_t now)
|
|
|
|
{
|
|
|
|
Path *const bestPath = getBestPath(now);
|
|
|
|
if ((bestPath)&&(bestPath->active(now))) {
|
2015-04-08 21:58:23 +00:00
|
|
|
const unsigned int desp = std::max(RR->node->coreDesperation(),bestPath->lastReceiveDesperation());
|
2015-04-08 02:31:11 +00:00
|
|
|
if ((now - bestPath->lastReceived()) >= ZT_PEER_DIRECT_PING_DELAY) {
|
2015-04-08 21:58:23 +00:00
|
|
|
attemptToContactAt(RR,bestPath->address(),desp,now);
|
2015-04-08 02:31:11 +00:00
|
|
|
bestPath->sent(now);
|
|
|
|
} else if ((now - bestPath->lastSend()) >= ZT_NAT_KEEPALIVE_DELAY) {
|
|
|
|
// We only do keepalive if desperation is zero right now, since higher
|
|
|
|
// desperation paths involve things like tunneling that do not need it.
|
2015-04-08 21:58:23 +00:00
|
|
|
if (desp == 0) {
|
|
|
|
RR->node->putPacket(bestPath->address(),"",0,0);
|
2015-04-08 02:31:11 +00:00
|
|
|
bestPath->sent(now);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-21 17:42:04 +00:00
|
|
|
void Peer::addPath(const Path &newp)
|
|
|
|
{
|
|
|
|
unsigned int np = _numPaths;
|
2015-04-03 00:54:56 +00:00
|
|
|
|
2014-10-21 17:42:04 +00:00
|
|
|
for(unsigned int p=0;p<np;++p) {
|
2015-04-03 00:54:56 +00:00
|
|
|
if (_paths[p].address() == newp.address()) {
|
2014-10-21 17:42:04 +00:00
|
|
|
_paths[p].setFixed(newp.fixed());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-04-03 00:54:56 +00:00
|
|
|
|
|
|
|
Path *slot = (Path *)0;
|
2015-04-09 01:45:21 +00:00
|
|
|
if (np < ZT1_MAX_PEER_NETWORK_PATHS) {
|
2015-04-03 00:54:56 +00:00
|
|
|
// Add new path
|
|
|
|
slot = &(_paths[np++]);
|
|
|
|
} else {
|
|
|
|
// Replace oldest non-fixed path
|
|
|
|
uint64_t slotLRmin = 0xffffffffffffffffULL;
|
2015-04-09 01:45:21 +00:00
|
|
|
for(unsigned int p=0;p<ZT1_MAX_PEER_NETWORK_PATHS;++p) {
|
2015-04-03 00:54:56 +00:00
|
|
|
if ((!_paths[p].fixed())&&(_paths[p].lastReceived() <= slotLRmin)) {
|
|
|
|
slotLRmin = _paths[p].lastReceived();
|
|
|
|
slot = &(_paths[p]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (slot) {
|
|
|
|
*slot = newp;
|
|
|
|
_numPaths = np;
|
2014-10-21 17:42:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Peer::clearPaths(bool fixedToo)
|
|
|
|
{
|
|
|
|
if (fixedToo) {
|
|
|
|
_numPaths = 0;
|
|
|
|
} else {
|
|
|
|
unsigned int np = _numPaths;
|
|
|
|
unsigned int x = 0;
|
|
|
|
unsigned int y = 0;
|
|
|
|
while (x < np) {
|
|
|
|
if (_paths[x].fixed())
|
|
|
|
_paths[y++] = _paths[x];
|
|
|
|
++x;
|
|
|
|
}
|
|
|
|
_numPaths = y;
|
2014-04-04 00:12:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-07 18:56:10 +00:00
|
|
|
void Peer::resetWithinScope(const RuntimeEnvironment *RR,InetAddress::IpScope scope,uint64_t now)
|
|
|
|
{
|
|
|
|
unsigned int np = _numPaths;
|
|
|
|
unsigned int x = 0;
|
|
|
|
unsigned int y = 0;
|
|
|
|
while (x < np) {
|
|
|
|
if (_paths[x].address().ipScope() == scope) {
|
|
|
|
if (_paths[x].fixed()) {
|
2015-04-08 21:58:23 +00:00
|
|
|
attemptToContactAt(RR,_paths[x].address(),_paths[x].lastReceiveDesperation(),now);
|
2015-04-07 18:56:10 +00:00
|
|
|
_paths[y++] = _paths[x]; // keep fixed paths
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_paths[y++] = _paths[x]; // keep paths not in this scope
|
|
|
|
}
|
|
|
|
++x;
|
|
|
|
}
|
|
|
|
_numPaths = y;
|
|
|
|
|
|
|
|
if ((y < np)&&(alive(now))) {
|
|
|
|
// Try to re-establish direct connectivity to this peer if it's alive
|
|
|
|
// and we have forgotten paths to it.
|
|
|
|
Packet outp(_id.address(),RR->identity.address(),Packet::VERB_NOP);
|
|
|
|
RR->sw->send(outp,true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-03 00:54:56 +00:00
|
|
|
void Peer::getBestActiveAddresses(uint64_t now,InetAddress &v4,InetAddress &v6) const
|
2014-04-09 23:00:25 +00:00
|
|
|
{
|
|
|
|
uint64_t bestV4 = 0,bestV6 = 0;
|
2014-10-21 17:42:04 +00:00
|
|
|
for(unsigned int p=0,np=_numPaths;p<np;++p) {
|
2015-04-03 00:54:56 +00:00
|
|
|
if (_paths[p].active(now)) {
|
2014-10-21 17:42:04 +00:00
|
|
|
uint64_t lr = _paths[p].lastReceived();
|
2014-04-09 23:00:25 +00:00
|
|
|
if (lr) {
|
2014-10-21 17:42:04 +00:00
|
|
|
if (_paths[p].address().isV4()) {
|
2014-04-09 23:00:25 +00:00
|
|
|
if (lr >= bestV4) {
|
|
|
|
bestV4 = lr;
|
2014-10-21 17:42:04 +00:00
|
|
|
v4 = _paths[p].address();
|
2014-04-09 23:00:25 +00:00
|
|
|
}
|
2014-10-21 17:42:04 +00:00
|
|
|
} else if (_paths[p].address().isV6()) {
|
2014-04-09 23:00:25 +00:00
|
|
|
if (lr >= bestV6) {
|
|
|
|
bestV6 = lr;
|
2014-10-21 17:42:04 +00:00
|
|
|
v6 = _paths[p].address();
|
2014-04-09 23:00:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
} // namespace ZeroTier
|