2013-07-04 20:56:19 +00:00
|
|
|
/*
|
|
|
|
* ZeroTier One - Global Peer to Peer Ethernet
|
2014-02-16 20:40:22 +00:00
|
|
|
* Copyright (C) 2011-2014 ZeroTier Networks LLC
|
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/
|
|
|
|
*/
|
|
|
|
|
2013-12-07 00:49:20 +00:00
|
|
|
#ifndef ZT_PEER_HPP
|
|
|
|
#define ZT_PEER_HPP
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-08-13 01:25:36 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-03-21 01:49:33 +00:00
|
|
|
#include <vector>
|
2013-07-04 20:56:19 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <utility>
|
|
|
|
#include <stdexcept>
|
2013-08-13 01:25:36 +00:00
|
|
|
|
2013-10-05 14:19:12 +00:00
|
|
|
#include "Constants.hpp"
|
2014-03-21 01:49:33 +00:00
|
|
|
#include "Path.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
#include "Address.hpp"
|
|
|
|
#include "Utils.hpp"
|
|
|
|
#include "Identity.hpp"
|
|
|
|
#include "Logger.hpp"
|
|
|
|
#include "RuntimeEnvironment.hpp"
|
|
|
|
#include "InetAddress.hpp"
|
|
|
|
#include "Packet.hpp"
|
|
|
|
#include "SharedPtr.hpp"
|
2014-03-21 03:07:35 +00:00
|
|
|
#include "Socket.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
#include "AtomicCounter.hpp"
|
|
|
|
#include "NonCopyable.hpp"
|
|
|
|
#include "Mutex.hpp"
|
|
|
|
|
2014-03-21 03:07:35 +00:00
|
|
|
#define ZT_PEER_SERIALIZATION_VERSION 8
|
2013-12-24 18:39:29 +00:00
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
namespace ZeroTier {
|
|
|
|
|
|
|
|
/**
|
2014-03-21 01:49:33 +00:00
|
|
|
* Peer on P2P Network
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
|
|
|
class Peer : NonCopyable
|
|
|
|
{
|
|
|
|
friend class SharedPtr<Peer>;
|
|
|
|
|
|
|
|
public:
|
2014-03-21 03:07:35 +00:00
|
|
|
/**
|
|
|
|
* Construct an uninitialized peer (used with deserialize())
|
|
|
|
*/
|
2013-07-04 20:56:19 +00:00
|
|
|
Peer();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a new peer
|
|
|
|
*
|
|
|
|
* @param myIdentity Identity of THIS node (for key agreement)
|
|
|
|
* @param peerIdentity Identity of peer
|
|
|
|
* @throws std::runtime_error Key agreement with peer's identity failed
|
|
|
|
*/
|
|
|
|
Peer(const Identity &myIdentity,const Identity &peerIdentity)
|
|
|
|
throw(std::runtime_error);
|
|
|
|
|
2013-10-21 14:29:44 +00:00
|
|
|
/**
|
|
|
|
* @return Time peer record was last used in any way
|
|
|
|
*/
|
2014-03-21 03:07:35 +00:00
|
|
|
inline uint64_t lastUsed() const
|
|
|
|
throw()
|
|
|
|
{
|
|
|
|
return _lastUsed;
|
|
|
|
}
|
2013-10-21 14:29:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param now New time of last use
|
|
|
|
*/
|
2014-03-21 21:18:35 +00:00
|
|
|
inline void use(uint64_t now)
|
2014-03-21 03:07:35 +00:00
|
|
|
throw()
|
|
|
|
{
|
|
|
|
_lastUsed = now;
|
|
|
|
}
|
2013-10-21 14:29:44 +00:00
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
/**
|
|
|
|
* @return This peer's ZT address (short for identity().address())
|
|
|
|
*/
|
|
|
|
inline const Address &address() const throw() { return _id.address(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return This peer's identity
|
|
|
|
*/
|
|
|
|
inline const Identity &identity() const throw() { return _id; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Must be called on authenticated packet receive from this peer
|
|
|
|
*
|
|
|
|
* @param _r Runtime environment
|
2014-03-21 03:07:35 +00:00
|
|
|
* @param fromSock Socket from which packet was received
|
2013-07-13 18:28:26 +00:00
|
|
|
* @param remoteAddr Internet address of sender
|
2013-07-04 20:56:19 +00:00
|
|
|
* @param hops ZeroTier (not IP) hops
|
2013-12-24 18:39:29 +00:00
|
|
|
* @param packetId Packet ID
|
2013-07-04 20:56:19 +00:00
|
|
|
* @param verb Packet verb
|
2013-12-24 18:39:29 +00:00
|
|
|
* @param inRePacketId Packet ID in reply to (for OK/ERROR, 0 otherwise)
|
|
|
|
* @param inReVerb Verb in reply to (for OK/ERROR, VERB_NOP otherwise)
|
2013-07-04 20:56:19 +00:00
|
|
|
* @param now Current time
|
|
|
|
*/
|
2014-03-21 21:18:35 +00:00
|
|
|
void receive(
|
2013-12-24 18:39:29 +00:00
|
|
|
const RuntimeEnvironment *_r,
|
2014-03-21 03:07:35 +00:00
|
|
|
const SharedPtr<Socket> &fromSock,
|
2013-12-24 18:39:29 +00:00
|
|
|
const InetAddress &remoteAddr,
|
|
|
|
unsigned int hops,
|
|
|
|
uint64_t packetId,
|
|
|
|
Packet::Verb verb,
|
|
|
|
uint64_t inRePacketId,
|
|
|
|
Packet::Verb inReVerb,
|
|
|
|
uint64_t now);
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
/**
|
2014-03-21 01:49:33 +00:00
|
|
|
* Send a packet to this peer using the most recently active direct path
|
|
|
|
*
|
|
|
|
* This does not relay. It returns false if there are no available active
|
|
|
|
* paths.
|
|
|
|
*
|
2013-07-04 20:56:19 +00:00
|
|
|
* @param _r Runtime environment
|
|
|
|
* @param data Data to send
|
|
|
|
* @param len Length of packet
|
|
|
|
* @param now Current time
|
2014-03-21 01:49:33 +00:00
|
|
|
* @return True if packet appears to have been sent, false if no path or other error
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2014-03-18 21:33:57 +00:00
|
|
|
bool send(const RuntimeEnvironment *_r,const void *data,unsigned int len,uint64_t now);
|
2013-07-13 18:28:26 +00:00
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
/**
|
2014-03-21 03:07:35 +00:00
|
|
|
* Send firewall opener to all UDP paths
|
2013-07-04 20:56:19 +00:00
|
|
|
*
|
|
|
|
* @param _r Runtime environment
|
|
|
|
* @param now Current time
|
|
|
|
* @return True if send appears successful for at least one address type
|
|
|
|
*/
|
|
|
|
bool sendFirewallOpener(const RuntimeEnvironment *_r,uint64_t now);
|
|
|
|
|
2013-10-02 20:12:10 +00:00
|
|
|
/**
|
2014-03-21 03:07:35 +00:00
|
|
|
* Send HELLO to a peer via all direct paths available
|
2014-03-21 01:49:33 +00:00
|
|
|
*
|
|
|
|
* This begins attempting to use TCP paths if no ping response has been
|
|
|
|
* received from any UDP path in more than ZT_TCP_FALLBACK_AFTER.
|
2013-10-02 20:12:10 +00:00
|
|
|
*
|
|
|
|
* @param _r Runtime environment
|
|
|
|
* @param now Current time
|
2014-03-21 03:07:35 +00:00
|
|
|
* @param firstSinceReset If true, this is the first ping sent since a network reset
|
2013-10-02 20:12:10 +00:00
|
|
|
* @return True if send appears successful for at least one address type
|
|
|
|
*/
|
2014-03-21 03:07:35 +00:00
|
|
|
bool sendPing(const RuntimeEnvironment *_r,uint64_t now,bool firstSinceReset);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return All known direct paths to this peer
|
|
|
|
*/
|
|
|
|
std::vector<Path> paths() const
|
|
|
|
{
|
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
return _paths;
|
|
|
|
}
|
2013-10-02 20:12:10 +00:00
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
/**
|
2014-03-21 03:07:35 +00:00
|
|
|
* @return Last successfully sent firewall opener for any path
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2013-10-02 17:50:42 +00:00
|
|
|
inline uint64_t lastFirewallOpener() const
|
2013-07-04 20:56:19 +00:00
|
|
|
throw()
|
|
|
|
{
|
2014-03-21 03:07:35 +00:00
|
|
|
uint64_t x = 0;
|
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
for(std::vector<Path>::const_iterator p(_paths.begin());p!=_paths.end();++p) {
|
|
|
|
uint64_t l = p->lastFirewallOpener();
|
|
|
|
if (l > x)
|
|
|
|
x = l;
|
|
|
|
}
|
|
|
|
return x;
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-03-21 03:07:35 +00:00
|
|
|
* @return Time of last direct packet receive for any path
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2013-10-02 17:50:42 +00:00
|
|
|
inline uint64_t lastDirectReceive() const
|
2013-07-04 20:56:19 +00:00
|
|
|
throw()
|
|
|
|
{
|
2014-03-21 03:07:35 +00:00
|
|
|
uint64_t x = 0;
|
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
for(std::vector<Path>::const_iterator p(_paths.begin());p!=_paths.end();++p) {
|
2014-03-21 20:46:55 +00:00
|
|
|
uint64_t l = p->lastReceived();
|
2014-03-21 03:07:35 +00:00
|
|
|
if (l > x)
|
|
|
|
x = l;
|
|
|
|
}
|
|
|
|
return x;
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-03-21 03:07:35 +00:00
|
|
|
* @return Time of last direct packet send for any path
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2013-10-02 17:50:42 +00:00
|
|
|
inline uint64_t lastDirectSend() const
|
2013-07-04 20:56:19 +00:00
|
|
|
throw()
|
|
|
|
{
|
2014-03-21 03:07:35 +00:00
|
|
|
uint64_t x = 0;
|
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
for(std::vector<Path>::const_iterator p(_paths.begin());p!=_paths.end();++p) {
|
|
|
|
uint64_t l = p->lastSend();
|
|
|
|
if (l > x)
|
|
|
|
x = l;
|
|
|
|
}
|
|
|
|
return x;
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-09-24 21:35:05 +00:00
|
|
|
* @return Time of most recent unicast frame received
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2013-10-02 17:50:42 +00:00
|
|
|
inline uint64_t lastUnicastFrame() const
|
2013-07-04 20:56:19 +00:00
|
|
|
throw()
|
|
|
|
{
|
2013-07-13 18:28:26 +00:00
|
|
|
return _lastUnicastFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-09-24 21:35:05 +00:00
|
|
|
* @return Time of most recent multicast frame received
|
2013-07-13 18:28:26 +00:00
|
|
|
*/
|
2013-10-02 17:50:42 +00:00
|
|
|
inline uint64_t lastMulticastFrame() const
|
2013-07-13 18:28:26 +00:00
|
|
|
throw()
|
|
|
|
{
|
|
|
|
return _lastMulticastFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Time of most recent frame of any kind (unicast or multicast)
|
|
|
|
*/
|
2013-10-02 17:50:42 +00:00
|
|
|
inline uint64_t lastFrame() const
|
2013-07-13 18:28:26 +00:00
|
|
|
throw()
|
|
|
|
{
|
|
|
|
return std::max(_lastUnicastFrame,_lastMulticastFrame);
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
2013-10-01 20:01:36 +00:00
|
|
|
/**
|
|
|
|
* @return Time we last announced state TO this peer, such as multicast LIKEs
|
|
|
|
*/
|
2013-10-02 17:50:42 +00:00
|
|
|
inline uint64_t lastAnnouncedTo() const
|
2013-10-01 20:01:36 +00:00
|
|
|
throw()
|
|
|
|
{
|
|
|
|
return _lastAnnouncedTo;
|
|
|
|
}
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
/**
|
2013-12-31 19:03:45 +00:00
|
|
|
* @return Current latency or 0 if unknown (max: 65535)
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2013-12-31 19:03:45 +00:00
|
|
|
inline unsigned int latency() const
|
|
|
|
throw()
|
|
|
|
{
|
2014-02-03 18:46:37 +00:00
|
|
|
unsigned int l = _latency;
|
|
|
|
return std::min(l,(unsigned int)65535);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update latency with a new direct measurment
|
|
|
|
*
|
|
|
|
* @param l Direct latency measurment in ms
|
|
|
|
*/
|
|
|
|
inline void addDirectLatencyMeasurment(unsigned int l)
|
|
|
|
throw()
|
|
|
|
{
|
|
|
|
if (l > 65535) l = 65535;
|
|
|
|
unsigned int ol = _latency;
|
|
|
|
if ((ol > 0)&&(ol < 10000))
|
|
|
|
_latency = (ol + l) / 2;
|
|
|
|
else _latency = l;
|
2013-12-31 19:03:45 +00:00
|
|
|
}
|
2013-07-11 22:15:51 +00:00
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
/**
|
|
|
|
* @return True if this peer has at least one direct IP address path
|
|
|
|
*/
|
2014-03-21 01:49:33 +00:00
|
|
|
inline bool hasDirectPath() const
|
|
|
|
throw()
|
|
|
|
{
|
2014-03-21 03:07:35 +00:00
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
return (!_paths.empty());
|
2014-03-21 01:49:33 +00:00
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param now Current time
|
2014-01-30 22:23:52 +00:00
|
|
|
* @return True if this peer has at least one active or fixed direct path
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2014-03-21 01:49:33 +00:00
|
|
|
inline bool hasActiveDirectPath(uint64_t now) const
|
2013-07-06 18:58:34 +00:00
|
|
|
throw()
|
|
|
|
{
|
2014-03-21 03:07:35 +00:00
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
for(std::vector<Path>::const_iterator p(_paths.begin());p!=_paths.end();++p) {
|
|
|
|
if (p->active(now))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2013-07-06 18:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-03-21 01:49:33 +00:00
|
|
|
* Add a path (if we don't already have it)
|
|
|
|
*
|
|
|
|
* @param p New path to add
|
2013-07-06 18:58:34 +00:00
|
|
|
*/
|
2014-03-21 03:07:35 +00:00
|
|
|
inline void addPath(const Path &newp)
|
2013-07-06 18:58:34 +00:00
|
|
|
{
|
2014-03-21 03:07:35 +00:00
|
|
|
Mutex::Lock _l(_lock);
|
2014-03-21 20:46:55 +00:00
|
|
|
for(std::vector<Path>::iterator p(_paths.begin());p!=_paths.end();++p) {
|
2014-03-21 03:07:35 +00:00
|
|
|
if (*p == newp) {
|
|
|
|
p->setFixed(newp.fixed());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_paths.push_back(newp);
|
2013-07-06 18:58:34 +00:00
|
|
|
}
|
|
|
|
|
2014-01-29 00:12:24 +00:00
|
|
|
/**
|
2014-03-21 01:49:33 +00:00
|
|
|
* Clear paths
|
2014-01-29 00:12:24 +00:00
|
|
|
*
|
2014-03-21 01:49:33 +00:00
|
|
|
* @param fixedToo If true, clear fixed paths as well as learned ones
|
2014-01-29 00:12:24 +00:00
|
|
|
*/
|
2014-03-21 01:49:33 +00:00
|
|
|
inline void clearPaths(bool fixedToo)
|
2014-01-29 00:12:24 +00:00
|
|
|
{
|
2014-03-21 03:07:35 +00:00
|
|
|
std::vector<Path> npv;
|
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
if (!fixedToo) {
|
|
|
|
for(std::vector<Path>::const_iterator p(_paths.begin());p!=_paths.end();++p) {
|
|
|
|
if (p->fixed())
|
|
|
|
npv.push_back(*p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_paths = npv;
|
2014-01-29 00:12:24 +00:00
|
|
|
}
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
/**
|
2013-12-24 18:39:29 +00:00
|
|
|
* @return 256-bit secret symmetric encryption key
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2013-12-24 18:39:29 +00:00
|
|
|
inline const unsigned char *key() const throw() { return _key; }
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-07-12 02:06:25 +00:00
|
|
|
/**
|
2014-02-03 18:46:37 +00:00
|
|
|
* Set the currently known remote version of this peer's client
|
2013-07-12 02:06:25 +00:00
|
|
|
*
|
|
|
|
* @param vmaj Major version
|
|
|
|
* @param vmin Minor version
|
|
|
|
* @param vrev Revision
|
|
|
|
*/
|
|
|
|
inline void setRemoteVersion(unsigned int vmaj,unsigned int vmin,unsigned int vrev)
|
|
|
|
{
|
|
|
|
_vMajor = vmaj;
|
|
|
|
_vMinor = vmin;
|
|
|
|
_vRevision = vrev;
|
|
|
|
}
|
|
|
|
|
2013-08-06 15:50:56 +00:00
|
|
|
/**
|
|
|
|
* @return Remote version in string form or '?' if unknown
|
|
|
|
*/
|
|
|
|
inline std::string remoteVersion() const
|
|
|
|
{
|
|
|
|
if ((_vMajor)||(_vMinor)||(_vRevision)) {
|
|
|
|
char tmp[32];
|
2013-08-30 21:05:43 +00:00
|
|
|
Utils::snprintf(tmp,sizeof(tmp),"%u.%u.%u",_vMajor,_vMinor,_vRevision);
|
2013-08-06 15:50:56 +00:00
|
|
|
return std::string(tmp);
|
|
|
|
}
|
|
|
|
return std::string("?");
|
|
|
|
}
|
|
|
|
|
2013-12-24 18:39:29 +00:00
|
|
|
/**
|
|
|
|
* @return True if this Peer is initialized with something
|
|
|
|
*/
|
|
|
|
inline operator bool() const throw() { return (_id); }
|
|
|
|
|
2014-03-21 20:46:55 +00:00
|
|
|
/**
|
|
|
|
* @param now Current time
|
|
|
|
* @param v4 Result parameter to receive active IPv4 address, if any
|
|
|
|
* @param v6 Result parameter to receive active IPv6 address, if any
|
|
|
|
*/
|
|
|
|
inline void getActiveUdpPathAddresses(uint64_t now,InetAddress &v4,InetAddress &v6) const
|
|
|
|
{
|
|
|
|
bool gotV4 = false,gotV6 = false;
|
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
for(std::vector<Path>::const_iterator p(_paths.begin());p!=_paths.end();++p) {
|
|
|
|
if (!gotV4) {
|
|
|
|
if ((!p->tcp())&&(p->address().isV4())&&(p->active(now))) {
|
|
|
|
gotV4 = true;
|
|
|
|
v4 = p->address();
|
|
|
|
}
|
|
|
|
} else if (!gotV6) {
|
|
|
|
if ((!p->tcp())&&(p->address().isV6())&&(p->active(now))) {
|
|
|
|
gotV6 = true;
|
|
|
|
v6 = p->address();
|
|
|
|
}
|
|
|
|
} else break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-24 18:39:29 +00:00
|
|
|
/**
|
|
|
|
* Find a common set of addresses by which two peers can link, if any
|
|
|
|
*
|
|
|
|
* @param a Peer A
|
|
|
|
* @param b Peer B
|
|
|
|
* @param now Current time
|
2014-03-21 20:46:55 +00:00
|
|
|
* @return Pair: B's address (to send to A), A's address (to send to B)
|
2013-12-24 18:39:29 +00:00
|
|
|
*/
|
|
|
|
static inline std::pair<InetAddress,InetAddress> findCommonGround(const Peer &a,const Peer &b,uint64_t now)
|
|
|
|
throw()
|
|
|
|
{
|
2014-03-21 20:46:55 +00:00
|
|
|
std::pair<InetAddress,InetAddress> v4,v6;
|
|
|
|
b.getActiveUdpPathAddresses(now,v4.first,v6.first);
|
|
|
|
a.getActiveUdpPathAddresses(now,v4.second,v6.second);
|
|
|
|
if ((v6.first)&&(v6.second))
|
|
|
|
return v6;
|
|
|
|
if ((v4.first)&&(v4.second))
|
|
|
|
return v4;
|
2013-12-24 18:39:29 +00:00
|
|
|
return std::pair<InetAddress,InetAddress>();
|
|
|
|
}
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
template<unsigned int C>
|
2014-03-21 03:07:35 +00:00
|
|
|
inline void serialize(Buffer<C> &b) const
|
2013-07-04 20:56:19 +00:00
|
|
|
{
|
2014-03-21 03:07:35 +00:00
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
|
2013-12-24 18:39:29 +00:00
|
|
|
b.append((unsigned char)ZT_PEER_SERIALIZATION_VERSION);
|
2013-07-04 20:56:19 +00:00
|
|
|
_id.serialize(b,false);
|
2014-03-21 03:07:35 +00:00
|
|
|
b.append(_key,sizeof(_key));
|
2013-10-21 14:29:44 +00:00
|
|
|
b.append(_lastUsed);
|
2013-07-13 18:28:26 +00:00
|
|
|
b.append(_lastUnicastFrame);
|
|
|
|
b.append(_lastMulticastFrame);
|
2013-10-01 20:01:36 +00:00
|
|
|
b.append(_lastAnnouncedTo);
|
|
|
|
b.append((uint16_t)_vMajor);
|
|
|
|
b.append((uint16_t)_vMinor);
|
|
|
|
b.append((uint16_t)_vRevision);
|
2013-12-24 18:39:29 +00:00
|
|
|
b.append((uint16_t)_latency);
|
2014-03-21 03:07:35 +00:00
|
|
|
b.append((uint16_t)_paths.size());
|
|
|
|
for(std::vector<Path>::const_iterator p(_paths.begin());p!=_paths.end();++p)
|
|
|
|
p->serialize(b);
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
template<unsigned int C>
|
|
|
|
inline unsigned int deserialize(const Buffer<C> &b,unsigned int startAt = 0)
|
|
|
|
{
|
|
|
|
unsigned int p = startAt;
|
|
|
|
|
2013-12-24 18:39:29 +00:00
|
|
|
if (b[p++] != ZT_PEER_SERIALIZATION_VERSION)
|
2013-07-04 20:56:19 +00:00
|
|
|
throw std::invalid_argument("Peer: deserialize(): version mismatch");
|
|
|
|
|
2014-03-21 03:07:35 +00:00
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
p += _id.deserialize(b,p);
|
2014-03-21 03:07:35 +00:00
|
|
|
memcpy(_key,b.field(p,sizeof(_key)),sizeof(_key)); p += sizeof(_key);
|
2013-10-21 14:29:44 +00:00
|
|
|
_lastUsed = b.template at<uint64_t>(p); p += sizeof(uint64_t);
|
2013-07-13 18:28:26 +00:00
|
|
|
_lastUnicastFrame = b.template at<uint64_t>(p); p += sizeof(uint64_t);
|
|
|
|
_lastMulticastFrame = b.template at<uint64_t>(p); p += sizeof(uint64_t);
|
2013-10-01 20:01:36 +00:00
|
|
|
_lastAnnouncedTo = b.template at<uint64_t>(p); p += sizeof(uint64_t);
|
|
|
|
_vMajor = b.template at<uint16_t>(p); p += sizeof(uint16_t);
|
|
|
|
_vMinor = b.template at<uint16_t>(p); p += sizeof(uint16_t);
|
|
|
|
_vRevision = b.template at<uint16_t>(p); p += sizeof(uint16_t);
|
2013-12-24 18:39:29 +00:00
|
|
|
_latency = b.template at<uint16_t>(p); p += sizeof(uint16_t);
|
2014-03-21 03:07:35 +00:00
|
|
|
unsigned int npaths = (unsigned int)b.template at<uint16_t>(p); p += sizeof(uint16_t);
|
|
|
|
_paths.clear();
|
|
|
|
for(unsigned int i=0;i<npaths;++i) {
|
|
|
|
_paths.push_back(Path());
|
|
|
|
p += _paths.back().deserialize(b,p);
|
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
return (p - startAt);
|
|
|
|
}
|
2014-01-29 00:12:24 +00:00
|
|
|
|
2013-12-24 18:39:29 +00:00
|
|
|
private:
|
2013-10-05 14:19:12 +00:00
|
|
|
unsigned char _key[ZT_PEER_SECRET_KEY_LENGTH];
|
2013-07-04 20:56:19 +00:00
|
|
|
Identity _id;
|
|
|
|
|
2014-03-21 01:49:33 +00:00
|
|
|
std::vector<Path> _paths;
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-12-31 19:03:45 +00:00
|
|
|
volatile uint64_t _lastUsed;
|
|
|
|
volatile uint64_t _lastUnicastFrame;
|
|
|
|
volatile uint64_t _lastMulticastFrame;
|
|
|
|
volatile uint64_t _lastAnnouncedTo;
|
2014-03-21 03:07:35 +00:00
|
|
|
volatile unsigned int _vMajor;
|
|
|
|
volatile unsigned int _vMinor;
|
|
|
|
volatile unsigned int _vRevision;
|
2013-12-31 19:03:45 +00:00
|
|
|
volatile unsigned int _latency;
|
2013-07-13 18:28:26 +00:00
|
|
|
|
2014-03-21 03:07:35 +00:00
|
|
|
Mutex _lock;
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
AtomicCounter __refCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
2013-07-13 18:28:26 +00:00
|
|
|
// Add a swap() for shared ptr's to peers to speed up peer sorts
|
|
|
|
namespace std {
|
|
|
|
template<>
|
|
|
|
inline void swap(ZeroTier::SharedPtr<ZeroTier::Peer> &a,ZeroTier::SharedPtr<ZeroTier::Peer> &b)
|
|
|
|
{
|
|
|
|
a.swap(b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
#endif
|