2015-04-01 00:53: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/
|
2015-04-01 00:53:34 +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.
|
2015-04-01 00:53:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ZT_NODE_HPP
|
|
|
|
#define ZT_NODE_HPP
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <map>
|
2017-02-13 22:27:08 +00:00
|
|
|
#include <vector>
|
2015-04-01 00:53:34 +00:00
|
|
|
|
|
|
|
#include "Constants.hpp"
|
|
|
|
|
|
|
|
#include "../include/ZeroTierOne.h"
|
|
|
|
|
2015-04-30 23:03:44 +00:00
|
|
|
#include "RuntimeEnvironment.hpp"
|
2015-04-01 00:53:34 +00:00
|
|
|
#include "InetAddress.hpp"
|
|
|
|
#include "Mutex.hpp"
|
|
|
|
#include "MAC.hpp"
|
2015-04-01 23:27:14 +00:00
|
|
|
#include "Network.hpp"
|
2015-07-06 22:05:04 +00:00
|
|
|
#include "Path.hpp"
|
2015-07-07 17:49:50 +00:00
|
|
|
#include "Salsa20.hpp"
|
2016-11-10 19:54:47 +00:00
|
|
|
#include "NetworkController.hpp"
|
2017-06-01 14:39:31 +00:00
|
|
|
#include "Hashtable.hpp"
|
2015-04-01 00:53:34 +00:00
|
|
|
|
2016-09-09 15:43:58 +00:00
|
|
|
// Bit mask for "expecting reply" hash
|
|
|
|
#define ZT_EXPECTING_REPLIES_BUCKET_MASK1 255
|
|
|
|
#define ZT_EXPECTING_REPLIES_BUCKET_MASK2 31
|
|
|
|
|
2015-04-01 00:53:34 +00:00
|
|
|
namespace ZeroTier {
|
|
|
|
|
2017-02-13 22:27:08 +00:00
|
|
|
class World;
|
|
|
|
|
2015-04-01 00:53:34 +00:00
|
|
|
/**
|
|
|
|
* Implementation of Node object as defined in CAPI
|
|
|
|
*
|
2015-09-24 23:21:36 +00:00
|
|
|
* The pointer returned by ZT_Node_new() is an instance of this class.
|
2015-04-01 00:53:34 +00:00
|
|
|
*/
|
2016-11-10 19:54:47 +00:00
|
|
|
class Node : public NetworkController::Sender
|
2015-04-01 00:53:34 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-03-28 00:03:17 +00:00
|
|
|
Node(void *uptr,void *tptr,const struct ZT_Node_Callbacks *callbacks,uint64_t now);
|
2016-11-10 19:54:47 +00:00
|
|
|
virtual ~Node();
|
2015-04-01 00:53:34 +00:00
|
|
|
|
2017-01-20 20:00:18 +00:00
|
|
|
// Get rid of alignment warnings on 32-bit Windows and possibly improve performance
|
|
|
|
#ifdef __WINDOWS__
|
|
|
|
void * operator new(size_t i) { return _mm_malloc(i,16); }
|
|
|
|
void operator delete(void* p) { _mm_free(p); }
|
|
|
|
#endif
|
|
|
|
|
2015-04-01 00:53:34 +00:00
|
|
|
// Public API Functions ----------------------------------------------------
|
|
|
|
|
2015-09-24 23:21:36 +00:00
|
|
|
ZT_ResultCode processWirePacket(
|
2017-03-28 00:03:17 +00:00
|
|
|
void *tptr,
|
2015-04-01 00:53:34 +00:00
|
|
|
uint64_t now,
|
2017-07-06 18:45:22 +00:00
|
|
|
int64_t localSocket,
|
2015-04-01 21:59:44 +00:00
|
|
|
const struct sockaddr_storage *remoteAddress,
|
|
|
|
const void *packetData,
|
|
|
|
unsigned int packetLength,
|
2015-04-15 20:09:20 +00:00
|
|
|
volatile uint64_t *nextBackgroundTaskDeadline);
|
2015-09-24 23:21:36 +00:00
|
|
|
ZT_ResultCode processVirtualNetworkFrame(
|
2017-03-28 00:03:17 +00:00
|
|
|
void *tptr,
|
2015-04-01 21:59:44 +00:00
|
|
|
uint64_t now,
|
|
|
|
uint64_t nwid,
|
|
|
|
uint64_t sourceMac,
|
|
|
|
uint64_t destMac,
|
|
|
|
unsigned int etherType,
|
|
|
|
unsigned int vlanId,
|
|
|
|
const void *frameData,
|
|
|
|
unsigned int frameLength,
|
2015-04-15 20:09:20 +00:00
|
|
|
volatile uint64_t *nextBackgroundTaskDeadline);
|
2017-03-28 00:03:17 +00:00
|
|
|
ZT_ResultCode processBackgroundTasks(void *tptr,uint64_t now,volatile uint64_t *nextBackgroundTaskDeadline);
|
|
|
|
ZT_ResultCode join(uint64_t nwid,void *uptr,void *tptr);
|
|
|
|
ZT_ResultCode leave(uint64_t nwid,void **uptr,void *tptr);
|
|
|
|
ZT_ResultCode multicastSubscribe(void *tptr,uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi);
|
2015-09-24 23:21:36 +00:00
|
|
|
ZT_ResultCode multicastUnsubscribe(uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi);
|
2017-03-28 00:03:17 +00:00
|
|
|
ZT_ResultCode orbit(void *tptr,uint64_t moonWorldId,uint64_t moonSeed);
|
|
|
|
ZT_ResultCode deorbit(void *tptr,uint64_t moonWorldId);
|
2015-04-14 01:43:33 +00:00
|
|
|
uint64_t address() const;
|
2015-09-24 23:21:36 +00:00
|
|
|
void status(ZT_NodeStatus *status) const;
|
|
|
|
ZT_PeerList *peers() const;
|
|
|
|
ZT_VirtualNetworkConfig *networkConfig(uint64_t nwid) const;
|
|
|
|
ZT_VirtualNetworkList *networks() const;
|
2015-04-01 00:53:34 +00:00
|
|
|
void freeQueryResult(void *qr);
|
2015-10-29 16:42:15 +00:00
|
|
|
int addLocalInterfaceAddress(const struct sockaddr_storage *addr);
|
2015-07-06 22:51:04 +00:00
|
|
|
void clearLocalInterfaceAddresses();
|
2017-03-28 00:03:17 +00:00
|
|
|
int sendUserMessage(void *tptr,uint64_t dest,uint64_t typeId,const void *data,unsigned int len);
|
2015-04-15 22:12:09 +00:00
|
|
|
void setNetconfMaster(void *networkControllerInstance);
|
2015-04-01 00:53:34 +00:00
|
|
|
|
|
|
|
// Internal functions ------------------------------------------------------
|
|
|
|
|
2017-07-17 21:21:09 +00:00
|
|
|
inline uint64_t now() const { return _now; }
|
2015-04-01 00:53:34 +00:00
|
|
|
|
2017-07-06 18:45:22 +00:00
|
|
|
inline bool putPacket(void *tPtr,const int64_t localSocket,const InetAddress &addr,const void *data,unsigned int len,unsigned int ttl = 0)
|
2015-04-01 00:53:34 +00:00
|
|
|
{
|
2016-11-22 18:54:58 +00:00
|
|
|
return (_cb.wirePacketSendFunction(
|
2015-09-24 23:21:36 +00:00
|
|
|
reinterpret_cast<ZT_Node *>(this),
|
2015-04-24 20:35:17 +00:00
|
|
|
_uPtr,
|
2017-03-28 00:03:17 +00:00
|
|
|
tPtr,
|
2017-07-06 18:45:22 +00:00
|
|
|
localSocket,
|
2015-04-06 23:52:52 +00:00
|
|
|
reinterpret_cast<const struct sockaddr_storage *>(&addr),
|
|
|
|
data,
|
2015-11-09 23:44:13 +00:00
|
|
|
len,
|
|
|
|
ttl) == 0);
|
2015-04-01 00:53:34 +00:00
|
|
|
}
|
|
|
|
|
2017-03-28 00:03:17 +00:00
|
|
|
inline void putFrame(void *tPtr,uint64_t nwid,void **nuptr,const MAC &source,const MAC &dest,unsigned int etherType,unsigned int vlanId,const void *data,unsigned int len)
|
2015-04-01 00:53:34 +00:00
|
|
|
{
|
2016-11-22 18:54:58 +00:00
|
|
|
_cb.virtualNetworkFrameFunction(
|
2015-09-24 23:21:36 +00:00
|
|
|
reinterpret_cast<ZT_Node *>(this),
|
2015-04-24 20:35:17 +00:00
|
|
|
_uPtr,
|
2017-03-28 00:03:17 +00:00
|
|
|
tPtr,
|
2015-04-06 23:52:52 +00:00
|
|
|
nwid,
|
2016-01-12 19:04:35 +00:00
|
|
|
nuptr,
|
2015-04-06 23:52:52 +00:00
|
|
|
source.toInt(),
|
|
|
|
dest.toInt(),
|
|
|
|
etherType,
|
|
|
|
vlanId,
|
|
|
|
data,
|
|
|
|
len);
|
2015-04-01 00:53:34 +00:00
|
|
|
}
|
|
|
|
|
2015-06-20 07:36:51 +00:00
|
|
|
inline SharedPtr<Network> network(uint64_t nwid) const
|
2015-04-01 00:53:34 +00:00
|
|
|
{
|
|
|
|
Mutex::Lock _l(_networks_m);
|
2017-06-01 14:39:31 +00:00
|
|
|
const SharedPtr<Network> *n = _networks.get(nwid);
|
|
|
|
if (n)
|
|
|
|
return *n;
|
|
|
|
return SharedPtr<Network>();
|
2015-04-01 00:53:34 +00:00
|
|
|
}
|
|
|
|
|
2015-10-01 18:11:52 +00:00
|
|
|
inline bool belongsToNetwork(uint64_t nwid) const
|
|
|
|
{
|
|
|
|
Mutex::Lock _l(_networks_m);
|
2017-06-01 14:39:31 +00:00
|
|
|
return _networks.contains(nwid);
|
2015-10-01 18:11:52 +00:00
|
|
|
}
|
|
|
|
|
2015-04-07 01:27:24 +00:00
|
|
|
inline std::vector< SharedPtr<Network> > allNetworks() const
|
|
|
|
{
|
2015-06-26 18:38:31 +00:00
|
|
|
std::vector< SharedPtr<Network> > nw;
|
2015-04-07 01:27:24 +00:00
|
|
|
Mutex::Lock _l(_networks_m);
|
2017-06-01 14:39:31 +00:00
|
|
|
Hashtable< uint64_t,SharedPtr<Network> >::Iterator i(*const_cast< Hashtable< uint64_t,SharedPtr<Network> > * >(&_networks));
|
|
|
|
uint64_t *k = (uint64_t *)0;
|
|
|
|
SharedPtr<Network> *v = (SharedPtr<Network> *)0;
|
|
|
|
while (i.next(k,v))
|
|
|
|
nw.push_back(*v);
|
2015-04-07 01:27:24 +00:00
|
|
|
return nw;
|
|
|
|
}
|
|
|
|
|
2015-10-27 22:00:16 +00:00
|
|
|
inline std::vector<InetAddress> directPaths() const
|
2015-07-06 22:05:04 +00:00
|
|
|
{
|
|
|
|
Mutex::Lock _l(_directPaths_m);
|
|
|
|
return _directPaths;
|
|
|
|
}
|
|
|
|
|
2017-03-28 00:03:17 +00:00
|
|
|
inline void postEvent(void *tPtr,ZT_Event ev,const void *md = (const void *)0) { _cb.eventCallback(reinterpret_cast<ZT_Node *>(this),_uPtr,tPtr,ev,md); }
|
2015-04-02 02:09:18 +00:00
|
|
|
|
2017-03-28 00:03:17 +00:00
|
|
|
inline int configureVirtualNetworkPort(void *tPtr,uint64_t nwid,void **nuptr,ZT_VirtualNetworkConfigOperation op,const ZT_VirtualNetworkConfig *nc) { return _cb.virtualNetworkConfigFunction(reinterpret_cast<ZT_Node *>(this),_uPtr,tPtr,nwid,nuptr,op,nc); }
|
2015-04-06 23:52:52 +00:00
|
|
|
|
2017-07-17 21:21:09 +00:00
|
|
|
inline bool online() const { return _online; }
|
2015-04-09 00:10:21 +00:00
|
|
|
|
2017-07-01 00:32:07 +00:00
|
|
|
inline int stateObjectGet(void *const tPtr,ZT_StateObjectType type,const uint64_t id[2],void *const data,const unsigned int maxlen) { return _cb.stateGetFunction(reinterpret_cast<ZT_Node *>(this),_uPtr,tPtr,type,id,data,maxlen); }
|
|
|
|
inline void stateObjectPut(void *const tPtr,ZT_StateObjectType type,const uint64_t id[2],const void *const data,const unsigned int len) { _cb.statePutFunction(reinterpret_cast<ZT_Node *>(this),_uPtr,tPtr,type,id,data,(int)len); }
|
|
|
|
inline void stateObjectDelete(void *const tPtr,ZT_StateObjectType type,const uint64_t id[2]) { _cb.statePutFunction(reinterpret_cast<ZT_Node *>(this),_uPtr,tPtr,type,id,(const void *)0,-1); }
|
2017-06-01 19:33:05 +00:00
|
|
|
|
2017-07-06 18:45:22 +00:00
|
|
|
bool shouldUsePathForZeroTierTraffic(void *tPtr,const Address &ztaddr,const int64_t localSocket,const InetAddress &remoteAddress);
|
2017-03-28 00:03:17 +00:00
|
|
|
inline bool externalPathLookup(void *tPtr,const Address &ztaddr,int family,InetAddress &addr) { return ( (_cb.pathLookupFunction) ? (_cb.pathLookupFunction(reinterpret_cast<ZT_Node *>(this),_uPtr,tPtr,ztaddr.toInt(),family,reinterpret_cast<struct sockaddr_storage *>(&addr)) != 0) : false ); }
|
2016-11-22 18:54:58 +00:00
|
|
|
|
2015-07-07 17:49:50 +00:00
|
|
|
uint64_t prng();
|
2016-07-12 15:29:50 +00:00
|
|
|
void setTrustedPaths(const struct sockaddr_storage *networks,const uint64_t *ids,unsigned int count);
|
2015-10-06 21:42:51 +00:00
|
|
|
|
2017-02-13 22:27:08 +00:00
|
|
|
World planet() const;
|
|
|
|
std::vector<World> moons() const;
|
|
|
|
|
2017-06-05 19:15:28 +00:00
|
|
|
inline const Identity &identity() const { return _RR.identity; }
|
|
|
|
|
2016-09-09 15:43:58 +00:00
|
|
|
/**
|
|
|
|
* Register that we are expecting a reply to a packet ID
|
|
|
|
*
|
2017-03-01 17:41:37 +00:00
|
|
|
* This only uses the most significant bits of the packet ID, both to save space
|
|
|
|
* and to avoid using the higher bits that can be modified during armor() to
|
|
|
|
* mask against the packet send counter used for QoS detection.
|
|
|
|
*
|
2016-09-09 15:43:58 +00:00
|
|
|
* @param packetId Packet ID to expect reply to
|
|
|
|
*/
|
|
|
|
inline void expectReplyTo(const uint64_t packetId)
|
|
|
|
{
|
2017-03-03 21:49:21 +00:00
|
|
|
const unsigned long pid2 = (unsigned long)(packetId >> 32);
|
|
|
|
const unsigned long bucket = (unsigned long)(pid2 & ZT_EXPECTING_REPLIES_BUCKET_MASK1);
|
|
|
|
_expectingRepliesTo[bucket][_expectingRepliesToBucketPtr[bucket]++ & ZT_EXPECTING_REPLIES_BUCKET_MASK2] = (uint32_t)pid2;
|
2016-09-09 15:43:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-09-27 23:33:37 +00:00
|
|
|
* Check whether a given packet ID is something we are expecting a reply to
|
2016-09-09 15:43:58 +00:00
|
|
|
*
|
2017-03-01 17:41:37 +00:00
|
|
|
* This only uses the most significant bits of the packet ID, both to save space
|
|
|
|
* and to avoid using the higher bits that can be modified during armor() to
|
|
|
|
* mask against the packet send counter used for QoS detection.
|
|
|
|
*
|
2016-09-09 15:43:58 +00:00
|
|
|
* @param packetId Packet ID to check
|
|
|
|
* @return True if we're expecting a reply
|
|
|
|
*/
|
2016-09-27 23:33:37 +00:00
|
|
|
inline bool expectingReplyTo(const uint64_t packetId) const
|
2016-09-09 15:43:58 +00:00
|
|
|
{
|
2017-03-03 21:49:21 +00:00
|
|
|
const uint32_t pid2 = (uint32_t)(packetId >> 32);
|
|
|
|
const unsigned long bucket = (unsigned long)(pid2 & ZT_EXPECTING_REPLIES_BUCKET_MASK1);
|
2016-09-09 15:43:58 +00:00
|
|
|
for(unsigned long i=0;i<=ZT_EXPECTING_REPLIES_BUCKET_MASK2;++i) {
|
2017-03-03 21:49:21 +00:00
|
|
|
if (_expectingRepliesTo[bucket][i] == pid2)
|
2016-09-09 15:43:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-18 20:59:04 +00:00
|
|
|
/**
|
|
|
|
* Check whether we should do potentially expensive identity verification (rate limit)
|
|
|
|
*
|
|
|
|
* @param now Current time
|
|
|
|
* @param from Source address of packet
|
|
|
|
* @return True if within rate limits
|
|
|
|
*/
|
|
|
|
inline bool rateGateIdentityVerification(const uint64_t now,const InetAddress &from)
|
|
|
|
{
|
|
|
|
unsigned long iph = from.rateGateHash();
|
|
|
|
if ((now - _lastIdentityVerification[iph]) >= ZT_IDENTITY_VALIDATION_SOURCE_RATE_LIMIT) {
|
|
|
|
_lastIdentityVerification[iph] = now;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-10 19:54:47 +00:00
|
|
|
virtual void ncSendConfig(uint64_t nwid,uint64_t requestPacketId,const Address &destination,const NetworkConfig &nc,bool sendLegacyFormatConfig);
|
2017-03-06 23:12:28 +00:00
|
|
|
virtual void ncSendRevocation(const Address &destination,const Revocation &rev);
|
2016-11-10 19:54:47 +00:00
|
|
|
virtual void ncSendError(uint64_t nwid,uint64_t requestPacketId,const Address &destination,NetworkController::ErrorCode errorCode);
|
|
|
|
|
2017-07-13 17:51:05 +00:00
|
|
|
inline const Address &remoteTraceTarget() const { return _remoteTraceTarget; }
|
|
|
|
|
2015-04-01 00:53:34 +00:00
|
|
|
private:
|
2015-04-30 23:03:44 +00:00
|
|
|
RuntimeEnvironment _RR;
|
2015-04-01 00:53:34 +00:00
|
|
|
RuntimeEnvironment *RR;
|
2015-04-24 20:35:17 +00:00
|
|
|
void *_uPtr; // _uptr (lower case) is reserved in Visual Studio :P
|
2016-11-22 18:54:58 +00:00
|
|
|
ZT_Node_Callbacks _cb;
|
2015-04-10 01:14:27 +00:00
|
|
|
|
2016-11-18 20:59:04 +00:00
|
|
|
// For tracking packet IDs to filter out OK/ERROR replies to packets we did not send
|
2016-09-09 15:43:58 +00:00
|
|
|
uint8_t _expectingRepliesToBucketPtr[ZT_EXPECTING_REPLIES_BUCKET_MASK1 + 1];
|
2017-03-01 17:41:37 +00:00
|
|
|
uint32_t _expectingRepliesTo[ZT_EXPECTING_REPLIES_BUCKET_MASK1 + 1][ZT_EXPECTING_REPLIES_BUCKET_MASK2 + 1];
|
2016-09-09 15:43:58 +00:00
|
|
|
|
2017-03-01 17:41:37 +00:00
|
|
|
// Time of last identity verification indexed by InetAddress.rateGateHash() -- used in IncomingPacket::_doHELLO() via rateGateIdentityVerification()
|
2016-11-18 20:59:04 +00:00
|
|
|
uint64_t _lastIdentityVerification[16384];
|
|
|
|
|
2017-06-01 14:39:31 +00:00
|
|
|
Hashtable< uint64_t,SharedPtr<Network> > _networks;
|
2015-04-01 00:53:34 +00:00
|
|
|
Mutex _networks_m;
|
|
|
|
|
2015-10-27 22:00:16 +00:00
|
|
|
std::vector<InetAddress> _directPaths;
|
2015-07-06 22:05:04 +00:00
|
|
|
Mutex _directPaths_m;
|
|
|
|
|
2015-04-08 02:31:11 +00:00
|
|
|
Mutex _backgroundTasksLock;
|
|
|
|
|
2017-07-13 17:51:05 +00:00
|
|
|
Address _remoteTraceTarget;
|
2015-04-08 02:31:11 +00:00
|
|
|
uint64_t _now;
|
|
|
|
uint64_t _lastPingCheck;
|
|
|
|
uint64_t _lastHousekeepingRun;
|
2017-04-18 00:54:12 +00:00
|
|
|
volatile uint64_t _prngState[2];
|
2015-04-09 00:10:21 +00:00
|
|
|
bool _online;
|
2015-04-01 00:53:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|