2013-07-04 20:56:19 +00:00
|
|
|
/*
|
2015-02-17 21:11:34 +00:00
|
|
|
* ZeroTier One - Network Virtualization Everywhere
|
2017-04-28 03:47:25 +00:00
|
|
|
* Copyright (C) 2011-2017 ZeroTier, Inc. https://www.zerotier.com/
|
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/>.
|
2017-04-28 03:47:25 +00:00
|
|
|
*
|
|
|
|
* --
|
|
|
|
*
|
|
|
|
* You can be released from the requirements of the license by purchasing
|
|
|
|
* a commercial license. Buying such a license is mandatory as soon as you
|
|
|
|
* develop commercial closed-source software that incorporates or links
|
|
|
|
* directly against ZeroTier software without disclosing the source code
|
|
|
|
* of your own application.
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
|
|
|
|
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"
|
2015-07-28 00:02:43 +00:00
|
|
|
#include "SelfAwareness.hpp"
|
2015-10-27 16:36:48 +00:00
|
|
|
#include "Packet.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
namespace ZeroTier {
|
|
|
|
|
2016-01-06 00:41:54 +00:00
|
|
|
Peer::Peer(const RuntimeEnvironment *renv,const Identity &myIdentity,const Identity &peerIdentity) :
|
2017-02-04 21:17:00 +00:00
|
|
|
RR(renv),
|
2014-06-30 18:31:04 +00:00
|
|
|
_lastReceive(0),
|
2016-11-10 00:04:08 +00:00
|
|
|
_lastNontrivialReceive(0),
|
2016-11-22 22:23:13 +00:00
|
|
|
_lastTriedMemorizedPath(0),
|
2015-10-16 17:28:09 +00:00
|
|
|
_lastDirectPathPushSent(0),
|
2015-10-28 01:18:26 +00:00
|
|
|
_lastDirectPathPushReceive(0),
|
2016-09-09 18:36:10 +00:00
|
|
|
_lastCredentialRequestSent(0),
|
|
|
|
_lastWhoisRequestReceived(0),
|
|
|
|
_lastEchoRequestReceived(0),
|
2016-09-12 22:19:21 +00:00
|
|
|
_lastComRequestReceived(0),
|
2016-09-27 20:49:43 +00:00
|
|
|
_lastComRequestSent(0),
|
2016-09-13 17:13:23 +00:00
|
|
|
_lastCredentialsReceived(0),
|
2016-09-13 21:27:18 +00:00
|
|
|
_lastTrustEstablishedPacketReceived(0),
|
2015-10-16 17:58:59 +00:00
|
|
|
_vProto(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),
|
2015-10-01 18:11:52 +00:00
|
|
|
_latency(0),
|
2016-09-13 17:13:23 +00:00
|
|
|
_directPathPushCutoffCount(0),
|
|
|
|
_credentialsCutoffCount(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(
|
2017-03-28 00:03:17 +00:00
|
|
|
void *tPtr,
|
2016-09-02 18:51:33 +00:00
|
|
|
const SharedPtr<Path> &path,
|
2016-09-07 22:15:52 +00:00
|
|
|
const unsigned int hops,
|
|
|
|
const uint64_t packetId,
|
|
|
|
const Packet::Verb verb,
|
|
|
|
const uint64_t inRePacketId,
|
|
|
|
const Packet::Verb inReVerb,
|
2016-09-07 22:24:53 +00:00
|
|
|
const bool trustEstablished)
|
2013-07-04 20:56:19 +00:00
|
|
|
{
|
2016-09-02 18:51:33 +00:00
|
|
|
const uint64_t now = RR->node->now();
|
|
|
|
|
2017-07-01 00:32:07 +00:00
|
|
|
/*
|
2015-10-27 00:58:51 +00:00
|
|
|
#ifdef ZT_ENABLE_CLUSTER
|
2017-04-15 00:53:32 +00:00
|
|
|
bool isClusterSuboptimalPath = false;
|
2015-10-27 21:37:38 +00:00
|
|
|
if ((RR->cluster)&&(hops == 0)) {
|
|
|
|
// Note: findBetterEndpoint() is first since we still want to check
|
|
|
|
// for a better endpoint even if we don't actually send a redirect.
|
2015-11-03 19:18:45 +00:00
|
|
|
InetAddress redirectTo;
|
2016-09-02 18:51:33 +00:00
|
|
|
if ( (verb != Packet::VERB_OK) && (verb != Packet::VERB_ERROR) && (verb != Packet::VERB_RENDEZVOUS) && (verb != Packet::VERB_PUSH_DIRECT_PATHS) && (RR->cluster->findBetterEndpoint(redirectTo,_id.address(),path->address(),false)) ) {
|
2015-10-27 22:57:26 +00:00
|
|
|
if (_vProto >= 5) {
|
|
|
|
// For newer peers we can send a more idiomatic verb: PUSH_DIRECT_PATHS.
|
|
|
|
Packet outp(_id.address(),RR->identity.address(),Packet::VERB_PUSH_DIRECT_PATHS);
|
|
|
|
outp.append((uint16_t)1); // count == 1
|
2016-04-18 23:44:23 +00:00
|
|
|
outp.append((uint8_t)ZT_PUSH_DIRECT_PATHS_FLAG_CLUSTER_REDIRECT); // flags: cluster redirect
|
2015-10-27 22:57:26 +00:00
|
|
|
outp.append((uint16_t)0); // no extensions
|
|
|
|
if (redirectTo.ss_family == AF_INET) {
|
|
|
|
outp.append((uint8_t)4);
|
|
|
|
outp.append((uint8_t)6);
|
|
|
|
outp.append(redirectTo.rawIpData(),4);
|
2015-10-27 16:53:43 +00:00
|
|
|
} else {
|
2015-10-27 22:57:26 +00:00
|
|
|
outp.append((uint8_t)6);
|
|
|
|
outp.append((uint8_t)18);
|
|
|
|
outp.append(redirectTo.rawIpData(),16);
|
|
|
|
}
|
|
|
|
outp.append((uint16_t)redirectTo.port());
|
2017-03-01 18:22:57 +00:00
|
|
|
outp.armor(_key,true,path->nextOutgoingCounter());
|
2017-03-28 00:33:25 +00:00
|
|
|
path->send(RR,tPtr,outp.data(),outp.size(),now);
|
2015-10-27 22:57:26 +00:00
|
|
|
} else {
|
|
|
|
// For older peers we use RENDEZVOUS to coax them into contacting us elsewhere.
|
|
|
|
Packet outp(_id.address(),RR->identity.address(),Packet::VERB_RENDEZVOUS);
|
|
|
|
outp.append((uint8_t)0); // no flags
|
|
|
|
RR->identity.address().appendTo(outp);
|
|
|
|
outp.append((uint16_t)redirectTo.port());
|
|
|
|
if (redirectTo.ss_family == AF_INET) {
|
|
|
|
outp.append((uint8_t)4);
|
|
|
|
outp.append(redirectTo.rawIpData(),4);
|
|
|
|
} else {
|
|
|
|
outp.append((uint8_t)16);
|
|
|
|
outp.append(redirectTo.rawIpData(),16);
|
2015-10-27 16:53:43 +00:00
|
|
|
}
|
2017-03-01 18:22:57 +00:00
|
|
|
outp.armor(_key,true,path->nextOutgoingCounter());
|
2017-03-28 00:33:25 +00:00
|
|
|
path->send(RR,tPtr,outp.data(),outp.size(),now);
|
2015-10-27 16:36:48 +00:00
|
|
|
}
|
2017-04-17 17:12:13 +00:00
|
|
|
isClusterSuboptimalPath = true;
|
2015-10-27 16:36:48 +00:00
|
|
|
}
|
2015-10-27 00:58:51 +00:00
|
|
|
}
|
|
|
|
#endif
|
2017-07-01 00:32:07 +00:00
|
|
|
*/
|
2015-10-27 00:58:51 +00:00
|
|
|
|
2016-01-12 20:12:25 +00:00
|
|
|
_lastReceive = now;
|
2016-11-10 00:04:08 +00:00
|
|
|
switch (verb) {
|
|
|
|
case Packet::VERB_FRAME:
|
|
|
|
case Packet::VERB_EXT_FRAME:
|
|
|
|
case Packet::VERB_NETWORK_CONFIG_REQUEST:
|
|
|
|
case Packet::VERB_NETWORK_CONFIG:
|
|
|
|
case Packet::VERB_MULTICAST_FRAME:
|
|
|
|
_lastNontrivialReceive = now;
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
2016-01-12 20:12:25 +00:00
|
|
|
|
2016-09-13 21:27:18 +00:00
|
|
|
if (trustEstablished) {
|
|
|
|
_lastTrustEstablishedPacketReceived = now;
|
|
|
|
path->trustedPacketReceived(now);
|
|
|
|
}
|
|
|
|
|
2017-03-02 00:33:34 +00:00
|
|
|
if (_vProto >= 9)
|
|
|
|
path->updateLinkQuality((unsigned int)(packetId & 7));
|
2017-03-01 22:36:52 +00:00
|
|
|
|
2017-03-02 00:33:34 +00:00
|
|
|
if (hops == 0) {
|
2017-07-06 17:25:36 +00:00
|
|
|
// If this is a direct packet (no hops), update existing paths or learn new ones
|
2017-04-15 00:53:32 +00:00
|
|
|
bool pathAlreadyKnown = false;
|
2017-07-01 00:32:07 +00:00
|
|
|
|
2016-09-02 18:51:33 +00:00
|
|
|
{
|
|
|
|
Mutex::Lock _l(_paths_m);
|
2017-04-15 00:53:32 +00:00
|
|
|
if ((path->address().ss_family == AF_INET)&&(_v4Path.p)) {
|
|
|
|
const struct sockaddr_in *const r = reinterpret_cast<const struct sockaddr_in *>(&(path->address()));
|
|
|
|
const struct sockaddr_in *const l = reinterpret_cast<const struct sockaddr_in *>(&(_v4Path.p->address()));
|
2017-07-06 18:45:22 +00:00
|
|
|
if ((r->sin_addr.s_addr == l->sin_addr.s_addr)&&(r->sin_port == l->sin_port)&&(path->localSocket() == _v4Path.p->localSocket())) {
|
2017-04-15 00:53:32 +00:00
|
|
|
_v4Path.lr = now;
|
|
|
|
pathAlreadyKnown = true;
|
|
|
|
}
|
|
|
|
} else if ((path->address().ss_family == AF_INET6)&&(_v6Path.p)) {
|
|
|
|
const struct sockaddr_in6 *const r = reinterpret_cast<const struct sockaddr_in6 *>(&(path->address()));
|
|
|
|
const struct sockaddr_in6 *const l = reinterpret_cast<const struct sockaddr_in6 *>(&(_v6Path.p->address()));
|
2017-07-06 18:45:22 +00:00
|
|
|
if ((!memcmp(r->sin6_addr.s6_addr,l->sin6_addr.s6_addr,16))&&(r->sin6_port == l->sin6_port)&&(path->localSocket() == _v6Path.p->localSocket())) {
|
2017-04-15 00:53:32 +00:00
|
|
|
_v6Path.lr = now;
|
|
|
|
pathAlreadyKnown = true;
|
2016-09-02 18:51:33 +00:00
|
|
|
}
|
2015-10-27 00:58:51 +00:00
|
|
|
}
|
2016-01-12 20:12:25 +00:00
|
|
|
}
|
2015-10-01 18:11:52 +00:00
|
|
|
|
2017-07-06 18:45:22 +00:00
|
|
|
if ( (!pathAlreadyKnown) && (RR->node->shouldUsePathForZeroTierTraffic(tPtr,_id.address(),path->localSocket(),path->address())) ) {
|
2017-04-17 16:14:21 +00:00
|
|
|
Mutex::Lock _l(_paths_m);
|
|
|
|
_PeerPath *potentialNewPeerPath = (_PeerPath *)0;
|
|
|
|
if (path->address().ss_family == AF_INET) {
|
2017-07-06 19:33:00 +00:00
|
|
|
if ( ( (!_v4Path.p) || (!_v4Path.p->alive(now)) || (path->preferenceRank() >= _v4Path.p->preferenceRank()) ) && ( (now - _v4Path.sticky) > ZT_PEER_PATH_EXPIRATION ) ) {
|
2017-04-17 16:14:21 +00:00
|
|
|
potentialNewPeerPath = &_v4Path;
|
|
|
|
}
|
|
|
|
} else if (path->address().ss_family == AF_INET6) {
|
2017-07-06 19:33:00 +00:00
|
|
|
if ( ( (!_v6Path.p) || (!_v6Path.p->alive(now)) || (path->preferenceRank() >= _v6Path.p->preferenceRank()) ) && ( (now - _v6Path.sticky) > ZT_PEER_PATH_EXPIRATION ) ) {
|
2017-04-17 16:14:21 +00:00
|
|
|
potentialNewPeerPath = &_v6Path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (potentialNewPeerPath) {
|
|
|
|
if (verb == Packet::VERB_OK) {
|
|
|
|
potentialNewPeerPath->lr = now;
|
|
|
|
potentialNewPeerPath->p = path;
|
|
|
|
} else {
|
|
|
|
TRACE("got %s via unknown path %s(%s), confirming...",Packet::verbString(verb),_id.address().toString().c_str(),path->address().toString().c_str());
|
2017-07-06 18:45:22 +00:00
|
|
|
attemptToContactAt(tPtr,path->localSocket(),path->address(),now,true,path->nextOutgoingCounter());
|
2017-04-17 16:14:21 +00:00
|
|
|
path->sent(now);
|
2017-04-15 00:53:32 +00:00
|
|
|
}
|
2014-03-21 21:31:10 +00:00
|
|
|
}
|
2014-03-21 03:07:35 +00:00
|
|
|
}
|
2017-02-16 17:44:04 +00:00
|
|
|
} else if (this->trustEstablished(now)) {
|
2016-09-05 22:47:22 +00:00
|
|
|
// Send PUSH_DIRECT_PATHS if hops>0 (relayed) and we have a trust relationship (common network membership)
|
2017-07-01 00:32:07 +00:00
|
|
|
if ((now - _lastDirectPathPushSent) >= ZT_DIRECT_PATH_PUSH_INTERVAL) {
|
2016-09-09 18:36:10 +00:00
|
|
|
_lastDirectPathPushSent = now;
|
|
|
|
|
|
|
|
std::vector<InetAddress> pathsToPush;
|
|
|
|
|
|
|
|
std::vector<InetAddress> dps(RR->node->directPaths());
|
|
|
|
for(std::vector<InetAddress>::const_iterator i(dps.begin());i!=dps.end();++i)
|
|
|
|
pathsToPush.push_back(*i);
|
|
|
|
|
|
|
|
std::vector<InetAddress> sym(RR->sa->getSymmetricNatPredictions());
|
|
|
|
for(unsigned long i=0,added=0;i<sym.size();++i) {
|
|
|
|
InetAddress tmp(sym[(unsigned long)RR->node->prng() % sym.size()]);
|
|
|
|
if (std::find(pathsToPush.begin(),pathsToPush.end(),tmp) == pathsToPush.end()) {
|
|
|
|
pathsToPush.push_back(tmp);
|
|
|
|
if (++added >= ZT_PUSH_DIRECT_PATHS_MAX_PER_SCOPE_AND_FAMILY)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pathsToPush.size() > 0) {
|
|
|
|
#ifdef ZT_TRACE
|
|
|
|
std::string ps;
|
|
|
|
for(std::vector<InetAddress>::const_iterator p(pathsToPush.begin());p!=pathsToPush.end();++p) {
|
|
|
|
if (ps.length() > 0)
|
|
|
|
ps.push_back(',');
|
|
|
|
ps.append(p->toString());
|
|
|
|
}
|
|
|
|
TRACE("pushing %u direct paths to %s: %s",(unsigned int)pathsToPush.size(),_id.address().toString().c_str(),ps.c_str());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
std::vector<InetAddress>::const_iterator p(pathsToPush.begin());
|
|
|
|
while (p != pathsToPush.end()) {
|
|
|
|
Packet outp(_id.address(),RR->identity.address(),Packet::VERB_PUSH_DIRECT_PATHS);
|
|
|
|
outp.addSize(2); // leave room for count
|
|
|
|
|
|
|
|
unsigned int count = 0;
|
|
|
|
while ((p != pathsToPush.end())&&((outp.size() + 24) < 1200)) {
|
|
|
|
uint8_t addressType = 4;
|
|
|
|
switch(p->ss_family) {
|
|
|
|
case AF_INET:
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
addressType = 6;
|
|
|
|
break;
|
|
|
|
default: // we currently only push IP addresses
|
|
|
|
++p;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
outp.append((uint8_t)0); // no flags
|
|
|
|
outp.append((uint16_t)0); // no extensions
|
|
|
|
outp.append(addressType);
|
|
|
|
outp.append((uint8_t)((addressType == 4) ? 6 : 18));
|
|
|
|
outp.append(p->rawIpData(),((addressType == 4) ? 4 : 16));
|
|
|
|
outp.append((uint16_t)p->port());
|
|
|
|
|
|
|
|
++count;
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count) {
|
|
|
|
outp.setAt(ZT_PACKET_IDX_PAYLOAD,(uint16_t)count);
|
2017-03-01 18:22:57 +00:00
|
|
|
outp.armor(_key,true,path->nextOutgoingCounter());
|
2017-03-28 00:03:17 +00:00
|
|
|
path->send(RR,tPtr,outp.data(),outp.size(),now);
|
2016-09-09 18:36:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-12 20:12:25 +00:00
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
2017-04-15 00:53:32 +00:00
|
|
|
bool Peer::sendDirect(void *tPtr,const void *data,unsigned int len,uint64_t now,bool force)
|
2016-09-02 18:51:33 +00:00
|
|
|
{
|
|
|
|
Mutex::Lock _l(_paths_m);
|
|
|
|
|
2017-04-15 00:53:32 +00:00
|
|
|
uint64_t v6lr = 0;
|
|
|
|
if ( ((now - _v6Path.lr) < ZT_PEER_PATH_EXPIRATION) && (_v6Path.p) )
|
|
|
|
v6lr = _v6Path.p->lastIn();
|
|
|
|
uint64_t v4lr = 0;
|
|
|
|
if ( ((now - _v4Path.lr) < ZT_PEER_PATH_EXPIRATION) && (_v4Path.p) )
|
|
|
|
v4lr = _v4Path.p->lastIn();
|
|
|
|
|
|
|
|
if ( (v6lr > v4lr) && ((now - v6lr) < ZT_PATH_ALIVE_TIMEOUT) ) {
|
|
|
|
return _v6Path.p->send(RR,tPtr,data,len,now);
|
|
|
|
} else if ((now - v4lr) < ZT_PATH_ALIVE_TIMEOUT) {
|
|
|
|
return _v4Path.p->send(RR,tPtr,data,len,now);
|
|
|
|
} else if (force) {
|
|
|
|
if (v6lr > v4lr) {
|
|
|
|
return _v6Path.p->send(RR,tPtr,data,len,now);
|
|
|
|
} else if (v4lr) {
|
|
|
|
return _v4Path.p->send(RR,tPtr,data,len,now);
|
2016-09-02 18:51:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-15 00:53:32 +00:00
|
|
|
return false;
|
2016-09-02 18:51:33 +00:00
|
|
|
}
|
|
|
|
|
2016-09-07 18:13:17 +00:00
|
|
|
SharedPtr<Path> Peer::getBestPath(uint64_t now,bool includeExpired)
|
2016-09-02 18:51:33 +00:00
|
|
|
{
|
|
|
|
Mutex::Lock _l(_paths_m);
|
|
|
|
|
2017-04-15 00:53:32 +00:00
|
|
|
uint64_t v6lr = 0;
|
|
|
|
if ( ( includeExpired || ((now - _v6Path.lr) < ZT_PEER_PATH_EXPIRATION) ) && (_v6Path.p) )
|
|
|
|
v6lr = _v6Path.p->lastIn();
|
|
|
|
uint64_t v4lr = 0;
|
|
|
|
if ( ( includeExpired || ((now - _v4Path.lr) < ZT_PEER_PATH_EXPIRATION) ) && (_v4Path.p) )
|
|
|
|
v4lr = _v4Path.p->lastIn();
|
|
|
|
|
|
|
|
if (v6lr > v4lr) {
|
|
|
|
return _v6Path.p;
|
|
|
|
} else if (v4lr) {
|
|
|
|
return _v4Path.p;
|
2016-09-02 18:51:33 +00:00
|
|
|
}
|
|
|
|
|
2017-04-15 00:53:32 +00:00
|
|
|
return SharedPtr<Path>();
|
2016-09-02 18:51:33 +00:00
|
|
|
}
|
|
|
|
|
2017-07-06 18:45:22 +00:00
|
|
|
void Peer::sendHELLO(void *tPtr,const int64_t localSocket,const InetAddress &atAddress,uint64_t now,unsigned int counter)
|
2015-04-07 19:22:33 +00:00
|
|
|
{
|
|
|
|
Packet outp(_id.address(),RR->identity.address(),Packet::VERB_HELLO);
|
2017-01-27 21:50:56 +00:00
|
|
|
|
2015-04-07 19:22:33 +00:00
|
|
|
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);
|
2015-10-07 17:30:47 +00:00
|
|
|
atAddress.serialize(outp);
|
2017-01-27 21:50:56 +00:00
|
|
|
|
2017-01-27 21:27:52 +00:00
|
|
|
outp.append((uint64_t)RR->topology->planetWorldId());
|
|
|
|
outp.append((uint64_t)RR->topology->planetWorldTimestamp());
|
2017-01-27 21:50:56 +00:00
|
|
|
|
2017-02-06 00:19:03 +00:00
|
|
|
const unsigned int startCryptedPortionAt = outp.size();
|
|
|
|
|
2017-01-27 21:50:56 +00:00
|
|
|
std::vector<World> moons(RR->topology->moons());
|
2017-02-13 17:46:34 +00:00
|
|
|
std::vector<uint64_t> moonsWanted(RR->topology->moonsWanted());
|
|
|
|
outp.append((uint16_t)(moons.size() + moonsWanted.size()));
|
2017-01-27 21:50:56 +00:00
|
|
|
for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
|
|
|
|
outp.append((uint8_t)m->type());
|
|
|
|
outp.append((uint64_t)m->id());
|
|
|
|
outp.append((uint64_t)m->timestamp());
|
|
|
|
}
|
2017-02-13 17:46:34 +00:00
|
|
|
for(std::vector<uint64_t>::const_iterator m(moonsWanted.begin());m!=moonsWanted.end();++m) {
|
|
|
|
outp.append((uint8_t)World::TYPE_MOON);
|
|
|
|
outp.append(*m);
|
|
|
|
outp.append((uint64_t)0);
|
|
|
|
}
|
2017-01-27 21:50:56 +00:00
|
|
|
|
2017-02-04 21:17:00 +00:00
|
|
|
const unsigned int corSizeAt = outp.size();
|
|
|
|
outp.addSize(2);
|
|
|
|
RR->topology->appendCertificateOfRepresentation(outp);
|
2017-02-06 00:19:03 +00:00
|
|
|
outp.setAt(corSizeAt,(uint16_t)(outp.size() - (corSizeAt + 2)));
|
|
|
|
|
|
|
|
outp.cryptField(_key,startCryptedPortionAt,outp.size() - startCryptedPortionAt);
|
2017-02-04 21:17:00 +00:00
|
|
|
|
2016-09-09 15:43:58 +00:00
|
|
|
RR->node->expectReplyTo(outp.packetId());
|
2017-01-27 23:27:26 +00:00
|
|
|
|
|
|
|
if (atAddress) {
|
2017-03-01 18:22:57 +00:00
|
|
|
outp.armor(_key,false,counter); // false == don't encrypt full payload, but add MAC
|
2017-07-06 18:45:22 +00:00
|
|
|
RR->node->putPacket(tPtr,localSocket,atAddress,outp.data(),outp.size());
|
2017-01-27 23:27:26 +00:00
|
|
|
} else {
|
2017-03-28 00:03:17 +00:00
|
|
|
RR->sw->send(tPtr,outp,false); // false == don't encrypt full payload, but add MAC
|
2017-01-27 23:27:26 +00:00
|
|
|
}
|
2015-04-07 19:22:33 +00:00
|
|
|
}
|
|
|
|
|
2017-07-06 18:45:22 +00:00
|
|
|
void Peer::attemptToContactAt(void *tPtr,const int64_t localSocket,const InetAddress &atAddress,uint64_t now,bool sendFullHello,unsigned int counter)
|
2016-09-07 19:01:03 +00:00
|
|
|
{
|
2017-02-06 00:19:03 +00:00
|
|
|
if ( (!sendFullHello) && (_vProto >= 5) && (!((_vMajor == 1)&&(_vMinor == 1)&&(_vRevision == 0))) ) {
|
2016-09-07 19:01:03 +00:00
|
|
|
Packet outp(_id.address(),RR->identity.address(),Packet::VERB_ECHO);
|
2016-09-09 15:43:58 +00:00
|
|
|
RR->node->expectReplyTo(outp.packetId());
|
2017-03-01 18:22:57 +00:00
|
|
|
outp.armor(_key,true,counter);
|
2017-07-06 18:45:22 +00:00
|
|
|
RR->node->putPacket(tPtr,localSocket,atAddress,outp.data(),outp.size());
|
2016-09-07 19:01:03 +00:00
|
|
|
} else {
|
2017-07-06 18:45:22 +00:00
|
|
|
sendHELLO(tPtr,localSocket,atAddress,now,counter);
|
2016-09-07 19:01:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-28 00:03:17 +00:00
|
|
|
void Peer::tryMemorizedPath(void *tPtr,uint64_t now)
|
2016-11-22 22:23:13 +00:00
|
|
|
{
|
|
|
|
if ((now - _lastTriedMemorizedPath) >= ZT_TRY_MEMORIZED_PATH_INTERVAL) {
|
|
|
|
_lastTriedMemorizedPath = now;
|
|
|
|
InetAddress mp;
|
2017-03-28 00:03:17 +00:00
|
|
|
if (RR->node->externalPathLookup(tPtr,_id.address(),-1,mp))
|
|
|
|
attemptToContactAt(tPtr,InetAddress(),mp,now,true,0);
|
2016-11-22 22:23:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-28 00:03:17 +00:00
|
|
|
bool Peer::doPingAndKeepalive(void *tPtr,uint64_t now,int inetAddressFamily)
|
2015-04-08 02:31:11 +00:00
|
|
|
{
|
2016-09-02 18:51:33 +00:00
|
|
|
Mutex::Lock _l(_paths_m);
|
2016-09-02 20:33:56 +00:00
|
|
|
|
2017-04-15 00:53:32 +00:00
|
|
|
if (inetAddressFamily < 0) {
|
|
|
|
uint64_t v6lr = 0;
|
|
|
|
if ( ((now - _v6Path.lr) < ZT_PEER_PATH_EXPIRATION) && (_v6Path.p) )
|
|
|
|
v6lr = _v6Path.p->lastIn();
|
|
|
|
uint64_t v4lr = 0;
|
|
|
|
if ( ((now - _v4Path.lr) < ZT_PEER_PATH_EXPIRATION) && (_v4Path.p) )
|
|
|
|
v4lr = _v4Path.p->lastIn();
|
|
|
|
|
|
|
|
if (v6lr > v4lr) {
|
|
|
|
if ( ((now - _v6Path.lr) >= ZT_PEER_PING_PERIOD) || (_v6Path.p->needsHeartbeat(now)) ) {
|
2017-07-06 18:45:22 +00:00
|
|
|
attemptToContactAt(tPtr,_v6Path.p->localSocket(),_v6Path.p->address(),now,false,_v6Path.p->nextOutgoingCounter());
|
2017-04-15 00:53:32 +00:00
|
|
|
_v6Path.p->sent(now);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if (v4lr) {
|
|
|
|
if ( ((now - _v4Path.lr) >= ZT_PEER_PING_PERIOD) || (_v4Path.p->needsHeartbeat(now)) ) {
|
2017-07-06 18:45:22 +00:00
|
|
|
attemptToContactAt(tPtr,_v4Path.p->localSocket(),_v4Path.p->address(),now,false,_v4Path.p->nextOutgoingCounter());
|
2017-04-15 00:53:32 +00:00
|
|
|
_v4Path.p->sent(now);
|
|
|
|
return true;
|
2016-09-03 22:39:05 +00:00
|
|
|
}
|
2016-09-02 20:33:56 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-04-15 00:53:32 +00:00
|
|
|
if ( (inetAddressFamily == AF_INET) && ((now - _v4Path.lr) < ZT_PEER_PATH_EXPIRATION) ) {
|
|
|
|
if ( ((now - _v4Path.lr) >= ZT_PEER_PING_PERIOD) || (_v4Path.p->needsHeartbeat(now)) ) {
|
2017-07-06 18:45:22 +00:00
|
|
|
attemptToContactAt(tPtr,_v4Path.p->localSocket(),_v4Path.p->address(),now,false,_v4Path.p->nextOutgoingCounter());
|
2017-04-15 00:53:32 +00:00
|
|
|
_v4Path.p->sent(now);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if ( (inetAddressFamily == AF_INET6) && ((now - _v6Path.lr) < ZT_PEER_PATH_EXPIRATION) ) {
|
|
|
|
if ( ((now - _v6Path.lr) >= ZT_PEER_PING_PERIOD) || (_v6Path.p->needsHeartbeat(now)) ) {
|
2017-07-06 18:45:22 +00:00
|
|
|
attemptToContactAt(tPtr,_v6Path.p->localSocket(),_v6Path.p->address(),now,false,_v6Path.p->nextOutgoingCounter());
|
2017-04-15 00:53:32 +00:00
|
|
|
_v6Path.p->sent(now);
|
|
|
|
return true;
|
2014-04-09 23:00:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-02 18:51:33 +00:00
|
|
|
|
2017-04-15 00:53:32 +00:00
|
|
|
return false;
|
2014-04-09 23:00:25 +00:00
|
|
|
}
|
|
|
|
|
2017-07-06 19:33:00 +00:00
|
|
|
void Peer::redirect(void *tPtr,const int64_t localSocket,const InetAddress &remoteAddress,const uint64_t now)
|
|
|
|
{
|
|
|
|
Mutex::Lock _l(_paths_m);
|
|
|
|
SharedPtr<Path> p(RR->topology->getPath(localSocket,remoteAddress));
|
|
|
|
attemptToContactAt(tPtr,localSocket,remoteAddress,now,true,p->nextOutgoingCounter());
|
|
|
|
if (remoteAddress.ss_family == AF_INET) {
|
|
|
|
_v4Path.p = p;
|
|
|
|
_v4Path.sticky = now;
|
|
|
|
} else if (remoteAddress.ss_family == AF_INET6) {
|
|
|
|
_v6Path.p = p;
|
|
|
|
_v6Path.sticky = now;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
} // namespace ZeroTier
|