2015-04-01 00:53:34 +00:00
|
|
|
/*
|
|
|
|
* ZeroTier One - Network Virtualization Everywhere
|
|
|
|
* Copyright (C) 2011-2015 ZeroTier, Inc.
|
|
|
|
*
|
|
|
|
* 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/
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ZT_NODE_HPP
|
|
|
|
#define ZT_NODE_HPP
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#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"
|
2015-04-01 00:53:34 +00:00
|
|
|
|
2015-04-08 23:49:21 +00:00
|
|
|
#undef TRACE
|
|
|
|
#ifdef ZT_TRACE
|
|
|
|
#define TRACE(f,...) RR->node->postTrace(__FILE__,__LINE__,f,##__VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define TRACE(f,...) {}
|
|
|
|
#endif
|
|
|
|
|
2015-04-01 00:53:34 +00:00
|
|
|
namespace ZeroTier {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of Node object as defined in CAPI
|
|
|
|
*
|
|
|
|
* The pointer returned by ZT1_Node_new() is an instance of this class.
|
|
|
|
*/
|
|
|
|
class Node
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Node(
|
2015-04-02 02:09:18 +00:00
|
|
|
uint64_t now,
|
2015-04-10 01:14:27 +00:00
|
|
|
void *uptr,
|
2015-04-03 20:14:37 +00:00
|
|
|
ZT1_DataStoreGetFunction dataStoreGetFunction,
|
|
|
|
ZT1_DataStorePutFunction dataStorePutFunction,
|
|
|
|
ZT1_WirePacketSendFunction wirePacketSendFunction,
|
|
|
|
ZT1_VirtualNetworkFrameFunction virtualNetworkFrameFunction,
|
2015-04-06 23:52:52 +00:00
|
|
|
ZT1_VirtualNetworkConfigFunction virtualNetworkConfigFunction,
|
2015-04-08 23:07:47 +00:00
|
|
|
ZT1_EventCallback eventCallback,
|
2015-04-08 02:31:11 +00:00
|
|
|
const char *overrideRootTopology);
|
2015-04-01 00:53:34 +00:00
|
|
|
|
|
|
|
~Node();
|
|
|
|
|
|
|
|
// Public API Functions ----------------------------------------------------
|
|
|
|
|
2015-04-01 21:59:44 +00:00
|
|
|
ZT1_ResultCode processWirePacket(
|
2015-04-01 00:53:34 +00:00
|
|
|
uint64_t now,
|
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-04-01 21:59:44 +00:00
|
|
|
ZT1_ResultCode processVirtualNetworkFrame(
|
|
|
|
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);
|
|
|
|
ZT1_ResultCode processBackgroundTasks(uint64_t now,volatile uint64_t *nextBackgroundTaskDeadline);
|
2015-04-01 00:53:34 +00:00
|
|
|
ZT1_ResultCode join(uint64_t nwid);
|
|
|
|
ZT1_ResultCode leave(uint64_t nwid);
|
2015-04-06 21:55:40 +00:00
|
|
|
ZT1_ResultCode multicastSubscribe(uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi);
|
|
|
|
ZT1_ResultCode multicastUnsubscribe(uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi);
|
2015-04-14 01:43:33 +00:00
|
|
|
uint64_t address() const;
|
2015-04-14 01:12:45 +00:00
|
|
|
void status(ZT1_NodeStatus *status) const;
|
|
|
|
ZT1_PeerList *peers() const;
|
|
|
|
ZT1_VirtualNetworkConfig *networkConfig(uint64_t nwid) const;
|
|
|
|
ZT1_VirtualNetworkList *networks() const;
|
2015-04-01 00:53:34 +00:00
|
|
|
void freeQueryResult(void *qr);
|
2015-07-13 17:03:04 +00:00
|
|
|
int addLocalInterfaceAddress(const struct sockaddr_storage *addr,int metric,ZT1_LocalInterfaceAddressTrust trust);
|
2015-07-06 22:51:04 +00:00
|
|
|
void clearLocalInterfaceAddresses();
|
2015-04-15 22:12:09 +00:00
|
|
|
void setNetconfMaster(void *networkControllerInstance);
|
2015-04-01 00:53:34 +00:00
|
|
|
|
|
|
|
// Internal functions ------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Time as of last call to run()
|
|
|
|
*/
|
|
|
|
inline uint64_t now() const throw() { return _now; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enqueue a ZeroTier message to be sent
|
|
|
|
*
|
|
|
|
* @param addr Destination address
|
|
|
|
* @param data Packet data
|
|
|
|
* @param len Packet length
|
2015-04-03 00:54:56 +00:00
|
|
|
* @return True if packet appears to have been sent
|
2015-04-01 00:53:34 +00:00
|
|
|
*/
|
2015-05-21 22:58:26 +00:00
|
|
|
inline bool putPacket(const InetAddress &addr,const void *data,unsigned int len)
|
2015-04-01 00:53:34 +00:00
|
|
|
{
|
2015-04-06 23:52:52 +00:00
|
|
|
return (_wirePacketSendFunction(
|
|
|
|
reinterpret_cast<ZT1_Node *>(this),
|
2015-04-24 20:35:17 +00:00
|
|
|
_uPtr,
|
2015-04-06 23:52:52 +00:00
|
|
|
reinterpret_cast<const struct sockaddr_storage *>(&addr),
|
|
|
|
data,
|
|
|
|
len) == 0);
|
2015-04-01 00:53:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enqueue a frame to be injected into a tap device (port)
|
|
|
|
*
|
|
|
|
* @param nwid Network ID
|
|
|
|
* @param source Source MAC
|
|
|
|
* @param dest Destination MAC
|
|
|
|
* @param etherType 16-bit ethernet type
|
|
|
|
* @param vlanId VLAN ID or 0 if none
|
|
|
|
* @param data Frame data
|
|
|
|
* @param len Frame length
|
|
|
|
*/
|
|
|
|
inline void putFrame(uint64_t nwid,const MAC &source,const MAC &dest,unsigned int etherType,unsigned int vlanId,const void *data,unsigned int len)
|
|
|
|
{
|
2015-04-06 23:52:52 +00:00
|
|
|
_virtualNetworkFrameFunction(
|
|
|
|
reinterpret_cast<ZT1_Node *>(this),
|
2015-04-24 20:35:17 +00:00
|
|
|
_uPtr,
|
2015-04-06 23:52:52 +00:00
|
|
|
nwid,
|
|
|
|
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);
|
2015-06-20 14:32:48 +00:00
|
|
|
return _network(nwid);
|
2015-04-01 00:53:34 +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);
|
2015-06-26 18:38:31 +00:00
|
|
|
nw.reserve(_networks.size());
|
|
|
|
for(std::vector< std::pair< uint64_t, SharedPtr<Network> > >::const_iterator i=_networks.begin();i!=_networks.end();++i)
|
|
|
|
nw.push_back(i->second);
|
2015-04-07 01:27:24 +00:00
|
|
|
return nw;
|
|
|
|
}
|
|
|
|
|
2015-07-06 22:51:04 +00:00
|
|
|
/**
|
|
|
|
* @return Potential direct paths to me a.k.a. local interface addresses
|
|
|
|
*/
|
2015-07-06 22:05:04 +00:00
|
|
|
inline std::vector<Path> directPaths() const
|
|
|
|
{
|
|
|
|
Mutex::Lock _l(_directPaths_m);
|
|
|
|
return _directPaths;
|
|
|
|
}
|
|
|
|
|
2015-04-24 20:35:17 +00:00
|
|
|
inline bool dataStorePut(const char *name,const void *data,unsigned int len,bool secure) { return (_dataStorePutFunction(reinterpret_cast<ZT1_Node *>(this),_uPtr,name,data,len,(int)secure) == 0); }
|
2015-04-02 02:09:18 +00:00
|
|
|
inline bool dataStorePut(const char *name,const std::string &data,bool secure) { return dataStorePut(name,(const void *)data.data(),(unsigned int)data.length(),secure); }
|
2015-04-24 20:35:17 +00:00
|
|
|
inline void dataStoreDelete(const char *name) { _dataStorePutFunction(reinterpret_cast<ZT1_Node *>(this),_uPtr,name,(const void *)0,0,0); }
|
2015-04-06 21:50:53 +00:00
|
|
|
std::string dataStoreGet(const char *name);
|
2015-04-02 02:09:18 +00:00
|
|
|
|
2015-04-08 23:49:21 +00:00
|
|
|
/**
|
|
|
|
* Post an event to the external user
|
|
|
|
*
|
|
|
|
* @param ev Event type
|
|
|
|
* @param md Meta-data (default: NULL/none)
|
|
|
|
*/
|
2015-04-24 20:35:17 +00:00
|
|
|
inline void postEvent(ZT1_Event ev,const void *md = (const void *)0) { _eventCallback(reinterpret_cast<ZT1_Node *>(this),_uPtr,ev,md); }
|
2015-04-02 02:09:18 +00:00
|
|
|
|
2015-04-08 23:49:21 +00:00
|
|
|
/**
|
|
|
|
* Update virtual network port configuration
|
|
|
|
*
|
|
|
|
* @param nwid Network ID
|
|
|
|
* @param op Configuration operation
|
|
|
|
* @param nc Network configuration
|
|
|
|
*/
|
2015-04-24 20:35:17 +00:00
|
|
|
inline int configureVirtualNetworkPort(uint64_t nwid,ZT1_VirtualNetworkConfigOperation op,const ZT1_VirtualNetworkConfig *nc) { return _virtualNetworkConfigFunction(reinterpret_cast<ZT1_Node *>(this),_uPtr,nwid,op,nc); }
|
2015-04-06 23:52:52 +00:00
|
|
|
|
2015-04-09 00:10:21 +00:00
|
|
|
/**
|
|
|
|
* @return True if we appear to be online
|
|
|
|
*/
|
|
|
|
inline bool online() const throw() { return _online; }
|
|
|
|
|
2015-04-08 23:49:21 +00:00
|
|
|
/**
|
|
|
|
* If this version is newer than the newest we've seen, post a new version seen event
|
|
|
|
*/
|
2015-04-06 21:50:53 +00:00
|
|
|
void postNewerVersionIfNewer(unsigned int major,unsigned int minor,unsigned int rev);
|
2015-04-02 02:09:18 +00:00
|
|
|
|
2015-04-08 23:49:21 +00:00
|
|
|
#ifdef ZT_TRACE
|
|
|
|
void postTrace(const char *module,unsigned int line,const char *fmt,...);
|
|
|
|
#endif
|
|
|
|
|
2015-07-07 17:49:50 +00:00
|
|
|
/**
|
|
|
|
* @return Next 64-bit random number (not for cryptographic use)
|
|
|
|
*/
|
|
|
|
uint64_t prng();
|
|
|
|
|
2015-04-01 00:53:34 +00:00
|
|
|
private:
|
2015-06-20 14:32:48 +00:00
|
|
|
inline SharedPtr<Network> _network(uint64_t nwid) const
|
|
|
|
{
|
2015-06-26 18:38:31 +00:00
|
|
|
// assumes _networks_m is locked
|
|
|
|
for(std::vector< std::pair< uint64_t, SharedPtr<Network> > >::const_iterator i=_networks.begin();i!=_networks.end();++i) {
|
|
|
|
if (i->first == nwid)
|
|
|
|
return i->second;
|
2015-06-20 14:32:48 +00:00
|
|
|
}
|
2015-06-26 18:38:31 +00:00
|
|
|
return SharedPtr<Network>();
|
2015-06-20 14:32:48 +00:00
|
|
|
}
|
|
|
|
|
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
|
2015-04-10 01:14:27 +00:00
|
|
|
|
2015-04-03 20:14:37 +00:00
|
|
|
ZT1_DataStoreGetFunction _dataStoreGetFunction;
|
|
|
|
ZT1_DataStorePutFunction _dataStorePutFunction;
|
|
|
|
ZT1_WirePacketSendFunction _wirePacketSendFunction;
|
|
|
|
ZT1_VirtualNetworkFrameFunction _virtualNetworkFrameFunction;
|
2015-04-06 23:52:52 +00:00
|
|
|
ZT1_VirtualNetworkConfigFunction _virtualNetworkConfigFunction;
|
2015-04-08 23:07:47 +00:00
|
|
|
ZT1_EventCallback _eventCallback;
|
2015-04-01 00:53:34 +00:00
|
|
|
|
2015-06-26 18:38:31 +00:00
|
|
|
std::vector< std::pair< uint64_t, SharedPtr<Network> > > _networks;
|
2015-04-01 00:53:34 +00:00
|
|
|
Mutex _networks_m;
|
|
|
|
|
2015-07-06 22:05:04 +00:00
|
|
|
std::vector<Path> _directPaths;
|
|
|
|
Mutex _directPaths_m;
|
|
|
|
|
2015-04-08 02:31:11 +00:00
|
|
|
Mutex _backgroundTasksLock;
|
|
|
|
|
2015-07-07 17:49:50 +00:00
|
|
|
unsigned int _prngStreamPtr;
|
|
|
|
Salsa20 _prng;
|
|
|
|
uint64_t _prngStream[16]; // repeatedly encrypted with _prng to yield a high-quality non-crypto PRNG stream
|
|
|
|
|
2015-04-08 02:31:11 +00:00
|
|
|
uint64_t _now;
|
|
|
|
uint64_t _lastPingCheck;
|
|
|
|
uint64_t _lastHousekeepingRun;
|
2015-04-06 21:50:53 +00:00
|
|
|
unsigned int _newestVersionSeen[3]; // major, minor, revision
|
2015-04-09 00:10:21 +00:00
|
|
|
bool _online;
|
2015-04-01 00:53:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|