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/
|
|
|
|
*/
|
|
|
|
|
2015-04-01 23:27:14 +00:00
|
|
|
#include "../version.h"
|
|
|
|
|
|
|
|
#include "Constants.hpp"
|
2015-04-01 00:53:34 +00:00
|
|
|
#include "Node.hpp"
|
|
|
|
#include "RuntimeEnvironment.hpp"
|
2015-04-01 01:17:11 +00:00
|
|
|
#include "NetworkConfigMaster.hpp"
|
|
|
|
#include "CMWC4096.hpp"
|
|
|
|
#include "Switch.hpp"
|
|
|
|
#include "Multicaster.hpp"
|
|
|
|
#include "AntiRecursion.hpp"
|
|
|
|
#include "Topology.hpp"
|
|
|
|
#include "Buffer.hpp"
|
|
|
|
#include "Packet.hpp"
|
|
|
|
#include "Address.hpp"
|
|
|
|
#include "Identity.hpp"
|
2015-04-07 03:17:21 +00:00
|
|
|
#include "SelfAwareness.hpp"
|
2015-04-08 02:31:11 +00:00
|
|
|
#include "Defaults.hpp"
|
2015-04-01 00:53:34 +00:00
|
|
|
|
2015-04-01 01:17:11 +00:00
|
|
|
namespace ZeroTier {
|
|
|
|
|
2015-04-06 21:50:53 +00:00
|
|
|
/****************************************************************************/
|
|
|
|
/* Public Node interface (C++, exposed via CAPI bindings) */
|
|
|
|
/****************************************************************************/
|
|
|
|
|
2015-04-01 01:17:11 +00:00
|
|
|
Node::Node(
|
2015-04-02 02:09:18 +00:00
|
|
|
uint64_t now,
|
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 02:31:11 +00:00
|
|
|
ZT1_StatusCallback statusCallback,
|
|
|
|
const char *overrideRootTopology) :
|
2015-04-01 01:17:11 +00:00
|
|
|
RR(new RuntimeEnvironment(this)),
|
|
|
|
_dataStoreGetFunction(dataStoreGetFunction),
|
|
|
|
_dataStorePutFunction(dataStorePutFunction),
|
2015-04-01 21:59:44 +00:00
|
|
|
_wirePacketSendFunction(wirePacketSendFunction),
|
|
|
|
_virtualNetworkFrameFunction(virtualNetworkFrameFunction),
|
2015-04-06 23:52:52 +00:00
|
|
|
_virtualNetworkConfigFunction(virtualNetworkConfigFunction),
|
2015-04-01 01:17:11 +00:00
|
|
|
_statusCallback(statusCallback),
|
|
|
|
_networks(),
|
|
|
|
_networks_m(),
|
2015-04-08 02:31:11 +00:00
|
|
|
_now(now),
|
|
|
|
_startTimeAfterInactivity(0),
|
|
|
|
_lastPingCheck(0),
|
|
|
|
_lastHousekeepingRun(0),
|
|
|
|
_coreDesperation(0)
|
2015-04-01 01:17:11 +00:00
|
|
|
{
|
2015-04-06 21:50:53 +00:00
|
|
|
_newestVersionSeen[0] = ZEROTIER_ONE_VERSION_MAJOR;
|
|
|
|
_newestVersionSeen[1] = ZEROTIER_ONE_VERSION_MINOR;
|
|
|
|
_newestVersionSeen[2] = ZEROTIER_ONE_VERSION_REVISION;
|
|
|
|
|
2015-04-07 23:41:56 +00:00
|
|
|
std::string idtmp(dataStoreGet("identity.secret"));
|
|
|
|
if ((!idtmp.length())||(!RR->identity.fromString(idtmp))||(!RR->identity.hasPrivate())) {
|
|
|
|
RR->identity.generate();
|
|
|
|
idtmp = RR->identity.toString(true);
|
|
|
|
if (!dataStorePut("identity.secret",idtmp,true)) {
|
|
|
|
delete RR;
|
|
|
|
throw std::runtime_error("unable to write identity.secret");
|
|
|
|
}
|
|
|
|
idtmp = RR->identity.toString(false);
|
|
|
|
if (!dataStorePut("identity.public",idtmp,false)) {
|
|
|
|
delete RR;
|
|
|
|
throw std::runtime_error("unable to write identity.public");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-01 01:17:11 +00:00
|
|
|
try {
|
|
|
|
RR->prng = new CMWC4096();
|
|
|
|
RR->sw = new Switch(RR);
|
|
|
|
RR->mc = new Multicaster(RR);
|
2015-04-06 21:55:40 +00:00
|
|
|
RR->antiRec = new AntiRecursion();
|
2015-04-01 01:17:11 +00:00
|
|
|
RR->topology = new Topology(RR);
|
2015-04-07 03:17:21 +00:00
|
|
|
RR->sa = new SelfAwareness(RR);
|
2015-04-01 01:17:11 +00:00
|
|
|
} catch ( ... ) {
|
2015-04-07 03:17:21 +00:00
|
|
|
delete RR->sa;
|
2015-04-01 01:17:11 +00:00
|
|
|
delete RR->topology;
|
|
|
|
delete RR->antiRec;
|
|
|
|
delete RR->mc;
|
|
|
|
delete RR->sw;
|
|
|
|
delete RR->prng;
|
|
|
|
delete RR;
|
|
|
|
throw;
|
|
|
|
}
|
2015-04-07 23:41:56 +00:00
|
|
|
|
2015-04-08 02:31:11 +00:00
|
|
|
Dictionary rt;
|
|
|
|
if (overrideRootTopology) {
|
|
|
|
rt.fromString(std::string(overrideRootTopology));
|
|
|
|
} else {
|
|
|
|
std::string rttmp(dataStoreGet("root-topology"));
|
|
|
|
if (rttmp.length() > 0) {
|
|
|
|
rt.fromString(rttmp);
|
|
|
|
if (!Topology::authenticateRootTopology(rt))
|
|
|
|
rt.clear();
|
|
|
|
}
|
|
|
|
if (!rt.size())
|
|
|
|
rt.fromString(ZT_DEFAULTS.defaultRootTopology);
|
|
|
|
}
|
|
|
|
RR->topology->setSupernodes(Dictionary(rt.get("supernodes","")));
|
|
|
|
|
2015-04-07 23:41:56 +00:00
|
|
|
postEvent(ZT1_EVENT_UP);
|
2015-04-01 01:17:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Node::~Node()
|
|
|
|
{
|
2015-04-07 03:17:21 +00:00
|
|
|
delete RR->sa;
|
2015-04-01 01:17:11 +00:00
|
|
|
delete RR->topology;
|
|
|
|
delete RR->antiRec;
|
|
|
|
delete RR->mc;
|
|
|
|
delete RR->sw;
|
|
|
|
delete RR->prng;
|
|
|
|
delete RR;
|
|
|
|
}
|
|
|
|
|
2015-04-01 23:27:14 +00:00
|
|
|
ZT1_ResultCode Node::processWirePacket(
|
|
|
|
uint64_t now,
|
|
|
|
const struct sockaddr_storage *remoteAddress,
|
2015-04-03 23:52:53 +00:00
|
|
|
unsigned int linkDesperation,
|
2015-04-01 23:27:14 +00:00
|
|
|
const void *packetData,
|
|
|
|
unsigned int packetLength,
|
2015-04-08 02:31:11 +00:00
|
|
|
uint64_t *nextBackgroundTaskDeadline)
|
2015-04-01 23:27:14 +00:00
|
|
|
{
|
2015-04-08 02:31:11 +00:00
|
|
|
if (now >= *nextBackgroundTaskDeadline) {
|
|
|
|
ZT1_ResultCode rc = processBackgroundTasks(now,nextBackgroundTaskDeadline);
|
|
|
|
if (rc != ZT1_RESULT_OK)
|
|
|
|
return rc;
|
|
|
|
} else _now = now;
|
|
|
|
|
|
|
|
RR->sw->onRemotePacket(*(reinterpret_cast<const InetAddress *>(remoteAddress)),linkDesperation,packetData,packetLength);
|
|
|
|
|
|
|
|
return ZT1_RESULT_OK;
|
2015-04-01 23:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ZT1_ResultCode Node::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-08 02:31:11 +00:00
|
|
|
uint64_t *nextBackgroundTaskDeadline)
|
2015-04-01 23:27:14 +00:00
|
|
|
{
|
2015-04-08 02:31:11 +00:00
|
|
|
if (now >= *nextBackgroundTaskDeadline) {
|
|
|
|
ZT1_ResultCode rc = processBackgroundTasks(now,nextBackgroundTaskDeadline);
|
|
|
|
if (rc != ZT1_RESULT_OK)
|
|
|
|
return rc;
|
|
|
|
} else _now = now;
|
|
|
|
|
|
|
|
try {
|
|
|
|
SharedPtr<Network> nw(network(nwid));
|
|
|
|
if (nw)
|
|
|
|
RR->sw->onLocalEthernet(nw,MAC(sourceMac),MAC(destMac),etherType,vlanId,frameData,frameLength);
|
|
|
|
else return ZT1_RESULT_ERROR_NETWORK_NOT_FOUND;
|
|
|
|
} catch ( ... ) {
|
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ZT1_RESULT_OK;
|
2015-04-01 23:27:14 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 02:31:11 +00:00
|
|
|
class _PingPeersThatNeedPing
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
_PingPeersThatNeedPing(const RuntimeEnvironment *renv,uint64_t now) :
|
|
|
|
lastReceiveFromSupernode(0),
|
|
|
|
RR(renv),
|
|
|
|
_now(now),
|
|
|
|
_supernodes(RR->topology->supernodeAddresses()) {}
|
|
|
|
|
|
|
|
uint64_t lastReceiveFromSupernode;
|
|
|
|
|
|
|
|
inline void operator()(Topology &t,const SharedPtr<Peer> &p)
|
|
|
|
{
|
|
|
|
if (std::find(_supernodes.begin(),_supernodes.end(),p->address()) != _supernodes.end()) {
|
|
|
|
p->doPingAndKeepalive(RR,_now);
|
|
|
|
if (p->lastReceive() > lastReceiveFromSupernode)
|
|
|
|
lastReceiveFromSupernode = p->lastReceive();
|
|
|
|
} else if (p->alive(_now)) {
|
|
|
|
p->doPingAndKeepalive(RR,_now);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
const RuntimeEnvironment *RR;
|
|
|
|
uint64_t _now;
|
|
|
|
std::vector<Address> _supernodes;
|
|
|
|
};
|
|
|
|
|
|
|
|
ZT1_ResultCode Node::processBackgroundTasks(uint64_t now,uint64_t *nextBackgroundTaskDeadline)
|
2015-04-01 23:27:14 +00:00
|
|
|
{
|
|
|
|
_now = now;
|
2015-04-08 02:31:11 +00:00
|
|
|
Mutex::Lock bl(_backgroundTasksLock);
|
|
|
|
|
|
|
|
if ((now - _lastPingCheck) >= ZT_PING_CHECK_INVERVAL) {
|
|
|
|
_lastPingCheck = now;
|
|
|
|
|
|
|
|
if ((now - _startTimeAfterInactivity) > (ZT_PING_CHECK_INVERVAL * 3))
|
|
|
|
_startTimeAfterInactivity = now;
|
|
|
|
|
|
|
|
try {
|
|
|
|
_PingPeersThatNeedPing pfunc(RR,now);
|
|
|
|
RR->topology->eachPeer<_PingPeersThatNeedPing &>(pfunc);
|
|
|
|
|
2015-04-08 02:32:26 +00:00
|
|
|
_coreDesperation = (unsigned int)((now - std::max(_startTimeAfterInactivity,pfunc.lastReceiveFromSupernode)) / (ZT_PING_CHECK_INVERVAL * ZT_CORE_DESPERATION_INCREMENT));
|
2015-04-08 02:31:11 +00:00
|
|
|
} catch ( ... ) {
|
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
Mutex::Lock _l(_networks_m);
|
|
|
|
for(std::map< uint64_t,SharedPtr<Network> >::const_iterator n(_networks.begin());n!=_networks.end();++n) {
|
|
|
|
if ((now - n->second->lastConfigUpdate()) >= ZT_NETWORK_AUTOCONF_DELAY)
|
|
|
|
n->second->requestConfiguration();
|
|
|
|
}
|
|
|
|
} catch ( ... ) {
|
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((now - _lastHousekeepingRun) >= ZT_HOUSEKEEPING_PERIOD) {
|
|
|
|
_lastHousekeepingRun = now;
|
|
|
|
|
|
|
|
try {
|
|
|
|
RR->topology->clean(now);
|
|
|
|
} catch ( ... ) {
|
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
RR->mc->clean(now);
|
|
|
|
} catch ( ... ) {
|
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
*nextBackgroundTaskDeadline = now + (uint64_t)std::max(std::min((unsigned long)ZT_PING_CHECK_INVERVAL,RR->sw->doTimerTasks(now)),(unsigned long)ZT_CORE_TIMER_TASK_GRANULARITY);
|
|
|
|
} catch ( ... ) {
|
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ZT1_RESULT_OK;
|
2015-04-01 23:27:14 +00:00
|
|
|
}
|
|
|
|
|
2015-04-01 21:59:44 +00:00
|
|
|
ZT1_ResultCode Node::join(uint64_t nwid)
|
2015-04-01 01:17:11 +00:00
|
|
|
{
|
2015-04-01 23:27:14 +00:00
|
|
|
Mutex::Lock _l(_networks_m);
|
|
|
|
SharedPtr<Network> &nw = _networks[nwid];
|
|
|
|
if (!nw)
|
2015-04-02 02:09:18 +00:00
|
|
|
nw = SharedPtr<Network>(new Network(RR,nwid));
|
2015-04-01 23:27:14 +00:00
|
|
|
return ZT1_RESULT_OK;
|
2015-04-01 01:17:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-01 21:59:44 +00:00
|
|
|
ZT1_ResultCode Node::leave(uint64_t nwid)
|
2015-04-01 01:17:11 +00:00
|
|
|
{
|
2015-04-01 23:27:14 +00:00
|
|
|
Mutex::Lock _l(_networks_m);
|
2015-04-02 02:09:18 +00:00
|
|
|
std::map< uint64_t,SharedPtr<Network> >::iterator nw(_networks.find(nwid));
|
|
|
|
if (nw != _networks.end()) {
|
|
|
|
nw->second->destroy();
|
|
|
|
_networks.erase(nw);
|
|
|
|
}
|
2015-04-01 01:17:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-06 21:55:40 +00:00
|
|
|
ZT1_ResultCode Node::multicastSubscribe(uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi)
|
2015-04-01 21:59:44 +00:00
|
|
|
{
|
2015-04-07 01:27:24 +00:00
|
|
|
Mutex::Lock _l(_networks_m);
|
|
|
|
std::map< uint64_t,SharedPtr<Network> >::iterator nw(_networks.find(nwid));
|
|
|
|
if (nw != _networks.end())
|
2015-04-07 21:11:47 +00:00
|
|
|
nw->second->multicastSubscribe(MulticastGroup(MAC(multicastGroup),(uint32_t)(multicastAdi & 0xffffffff)));
|
2015-04-01 21:59:44 +00:00
|
|
|
}
|
|
|
|
|
2015-04-06 21:55:40 +00:00
|
|
|
ZT1_ResultCode Node::multicastUnsubscribe(uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi)
|
2015-04-01 01:17:11 +00:00
|
|
|
{
|
2015-04-07 01:27:24 +00:00
|
|
|
Mutex::Lock _l(_networks_m);
|
|
|
|
std::map< uint64_t,SharedPtr<Network> >::iterator nw(_networks.find(nwid));
|
|
|
|
if (nw != _networks.end())
|
2015-04-07 21:11:47 +00:00
|
|
|
nw->second->multicastUnsubscribe(MulticastGroup(MAC(multicastGroup),(uint32_t)(multicastAdi & 0xffffffff)));
|
2015-04-01 01:17:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Node::status(ZT1_NodeStatus *status)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ZT1_PeerList *Node::peers()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ZT1_VirtualNetworkConfig *Node::networkConfig(uint64_t nwid)
|
|
|
|
{
|
2015-04-07 01:27:24 +00:00
|
|
|
Mutex::Lock _l(_networks_m);
|
|
|
|
std::map< uint64_t,SharedPtr<Network> >::iterator nw(_networks.find(nwid));
|
|
|
|
if (nw != _networks.end()) {
|
|
|
|
ZT1_VirtualNetworkConfig *nc = (ZT1_VirtualNetworkConfig *)::malloc(sizeof(ZT1_VirtualNetworkConfig));
|
|
|
|
nw->second->externalConfig(nc);
|
|
|
|
return nc;
|
|
|
|
}
|
|
|
|
return (ZT1_VirtualNetworkConfig *)0;
|
2015-04-01 01:17:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-07 01:27:24 +00:00
|
|
|
ZT1_VirtualNetworkList *Node::networks()
|
2015-04-01 01:17:11 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void Node::freeQueryResult(void *qr)
|
|
|
|
{
|
|
|
|
if (qr)
|
|
|
|
::free(qr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Node::setNetconfMaster(void *networkConfigMasterInstance)
|
|
|
|
{
|
|
|
|
RR->netconfMaster = reinterpret_cast<NetworkConfigMaster *>(networkConfigMasterInstance);
|
|
|
|
}
|
|
|
|
|
2015-04-06 21:50:53 +00:00
|
|
|
/****************************************************************************/
|
|
|
|
/* Node methods used only within node/ */
|
|
|
|
/****************************************************************************/
|
|
|
|
|
|
|
|
std::string Node::dataStoreGet(const char *name)
|
|
|
|
{
|
2015-04-07 21:11:47 +00:00
|
|
|
char buf[16384];
|
|
|
|
std::string r;
|
|
|
|
unsigned long olen = 0;
|
|
|
|
do {
|
|
|
|
long n = _dataStoreGetFunction(reinterpret_cast<ZT1_Node *>(this),name,buf,sizeof(buf),r.length(),&olen);
|
|
|
|
if (n <= 0)
|
|
|
|
return std::string();
|
|
|
|
r.append(buf,n);
|
|
|
|
} while (r.length() < olen);
|
|
|
|
return r;
|
2015-04-06 21:50:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Node::postNewerVersionIfNewer(unsigned int major,unsigned int minor,unsigned int rev)
|
|
|
|
{
|
|
|
|
if (Peer::compareVersion(major,minor,rev,_newestVersionSeen[0],_newestVersionSeen[1],_newestVersionSeen[2]) > 0) {
|
|
|
|
_newestVersionSeen[0] = major;
|
|
|
|
_newestVersionSeen[1] = minor;
|
|
|
|
_newestVersionSeen[2] = rev;
|
|
|
|
this->postEvent(ZT1_EVENT_SAW_MORE_RECENT_VERSION);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-01 01:17:11 +00:00
|
|
|
} // namespace ZeroTier
|
2015-04-01 23:27:14 +00:00
|
|
|
|
2015-04-06 21:50:53 +00:00
|
|
|
/****************************************************************************/
|
|
|
|
/* CAPI bindings */
|
|
|
|
/****************************************************************************/
|
|
|
|
|
2015-04-01 23:27:14 +00:00
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
enum ZT1_ResultCode ZT1_Node_new(
|
|
|
|
ZT1_Node **node,
|
2015-04-02 02:09:18 +00:00
|
|
|
uint64_t now,
|
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 02:31:11 +00:00
|
|
|
ZT1_StatusCallback statusCallback,
|
|
|
|
const char *overrideRootTopology)
|
2015-04-01 23:27:14 +00:00
|
|
|
{
|
|
|
|
*node = (ZT1_Node *)0;
|
|
|
|
try {
|
2015-04-08 02:31:11 +00:00
|
|
|
*node = reinterpret_cast<ZT1_Node *>(new ZeroTier::Node(now,dataStoreGetFunction,dataStorePutFunction,wirePacketSendFunction,virtualNetworkFrameFunction,virtualNetworkConfigFunction,statusCallback,overrideRootTopology));
|
2015-04-01 23:27:14 +00:00
|
|
|
return ZT1_RESULT_OK;
|
|
|
|
} catch (std::bad_alloc &exc) {
|
2015-04-06 21:50:53 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch (std::runtime_error &exc) {
|
2015-04-06 21:50:53 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_DATA_STORE_FAILED;
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch ( ... ) {
|
2015-04-06 21:50:53 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
2015-04-01 23:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 21:50:53 +00:00
|
|
|
void ZT1_Node_delete(ZT1_Node *node)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
delete (reinterpret_cast<ZeroTier::Node *>(node));
|
|
|
|
} catch ( ... ) {}
|
|
|
|
}
|
|
|
|
|
2015-04-01 23:27:14 +00:00
|
|
|
enum ZT1_ResultCode ZT1_Node_processWirePacket(
|
|
|
|
ZT1_Node *node,
|
|
|
|
uint64_t now,
|
|
|
|
const struct sockaddr_storage *remoteAddress,
|
2015-04-03 23:52:53 +00:00
|
|
|
unsigned int linkDesperation,
|
2015-04-01 23:27:14 +00:00
|
|
|
const void *packetData,
|
|
|
|
unsigned int packetLength,
|
2015-04-08 02:31:11 +00:00
|
|
|
uint64_t *nextBackgroundTaskDeadline)
|
2015-04-01 23:27:14 +00:00
|
|
|
{
|
|
|
|
try {
|
2015-04-08 02:31:11 +00:00
|
|
|
return reinterpret_cast<ZeroTier::Node *>(node)->processWirePacket(now,remoteAddress,linkDesperation,packetData,packetLength,nextBackgroundTaskDeadline);
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch (std::bad_alloc &exc) {
|
2015-04-06 21:50:53 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch ( ... ) {
|
2015-04-06 21:50:53 +00:00
|
|
|
return ZT1_RESULT_ERROR_PACKET_INVALID;
|
2015-04-01 23:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ZT1_ResultCode ZT1_Node_processVirtualNetworkFrame(
|
|
|
|
ZT1_Node *node,
|
|
|
|
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-08 02:31:11 +00:00
|
|
|
uint64_t *nextBackgroundTaskDeadline)
|
2015-04-01 23:27:14 +00:00
|
|
|
{
|
|
|
|
try {
|
2015-04-08 02:31:11 +00:00
|
|
|
return reinterpret_cast<ZeroTier::Node *>(node)->processVirtualNetworkFrame(now,nwid,sourceMac,destMac,etherType,vlanId,frameData,frameLength,nextBackgroundTaskDeadline);
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch (std::bad_alloc &exc) {
|
2015-04-06 21:55:40 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch ( ... ) {
|
2015-04-06 21:55:40 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
2015-04-01 23:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-08 02:31:11 +00:00
|
|
|
enum ZT1_ResultCode ZT1_Node_processBackgroundTasks(ZT1_Node *node,uint64_t now,uint64_t *nextBackgroundTaskDeadline)
|
2015-04-01 23:27:14 +00:00
|
|
|
{
|
|
|
|
try {
|
2015-04-08 02:31:11 +00:00
|
|
|
return reinterpret_cast<ZeroTier::Node *>(node)->processBackgroundTasks(now,nextBackgroundTaskDeadline);
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch (std::bad_alloc &exc) {
|
2015-04-06 21:55:40 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch ( ... ) {
|
2015-04-06 21:55:40 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
2015-04-01 23:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ZT1_ResultCode ZT1_Node_join(ZT1_Node *node,uint64_t nwid)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
return reinterpret_cast<ZeroTier::Node *>(node)->join(nwid);
|
|
|
|
} catch (std::bad_alloc &exc) {
|
2015-04-06 21:55:40 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch ( ... ) {
|
2015-04-06 21:55:40 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
2015-04-01 23:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ZT1_ResultCode ZT1_Node_leave(ZT1_Node *node,uint64_t nwid)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
return reinterpret_cast<ZeroTier::Node *>(node)->leave(nwid);
|
|
|
|
} catch (std::bad_alloc &exc) {
|
2015-04-06 21:55:40 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch ( ... ) {
|
2015-04-06 21:55:40 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
2015-04-01 23:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ZT1_ResultCode ZT1_Node_multicastSubscribe(ZT1_Node *node,uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
return reinterpret_cast<ZeroTier::Node *>(node)->multicastSubscribe(nwid,multicastGroup,multicastAdi);
|
|
|
|
} catch (std::bad_alloc &exc) {
|
2015-04-06 21:55:40 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch ( ... ) {
|
2015-04-06 21:55:40 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
2015-04-01 23:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ZT1_ResultCode ZT1_Node_multicastUnsubscribe(ZT1_Node *node,uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
return reinterpret_cast<ZeroTier::Node *>(node)->multicastUnsubscribe(nwid,multicastGroup,multicastAdi);
|
|
|
|
} catch (std::bad_alloc &exc) {
|
2015-04-06 21:55:40 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch ( ... ) {
|
2015-04-06 21:55:40 +00:00
|
|
|
return ZT1_RESULT_FATAL_ERROR_INTERNAL;
|
2015-04-01 23:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ZT1_Node_status(ZT1_Node *node,ZT1_NodeStatus *status)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
reinterpret_cast<ZeroTier::Node *>(node)->status(status);
|
|
|
|
} catch ( ... ) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
ZT1_PeerList *ZT1_Node_peers(ZT1_Node *node)
|
|
|
|
{
|
|
|
|
try {
|
2015-04-07 21:11:47 +00:00
|
|
|
return reinterpret_cast<ZeroTier::Node *>(node)->peers();
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch ( ... ) {
|
|
|
|
return (ZT1_PeerList *)0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ZT1_VirtualNetworkConfig *ZT1_Node_networkConfig(ZT1_Node *node,uint64_t nwid)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
return reinterpret_cast<ZeroTier::Node *>(node)->networkConfig(nwid);
|
|
|
|
} catch ( ... ) {
|
|
|
|
return (ZT1_VirtualNetworkConfig *)0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-07 01:27:24 +00:00
|
|
|
ZT1_VirtualNetworkList *ZT1_Node_networks(ZT1_Node *node)
|
2015-04-01 23:27:14 +00:00
|
|
|
{
|
|
|
|
try {
|
2015-04-07 21:11:47 +00:00
|
|
|
return reinterpret_cast<ZeroTier::Node *>(node)->networks();
|
2015-04-01 23:27:14 +00:00
|
|
|
} catch ( ... ) {
|
|
|
|
return (ZT1_VirtualNetworkList *)0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ZT1_Node_freeQueryResult(ZT1_Node *node,void *qr)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
reinterpret_cast<ZeroTier::Node *>(node)->freeQueryResult(qr);
|
|
|
|
} catch ( ... ) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ZT1_Node_setNetconfMaster(ZT1_Node *node,void *networkConfigMasterInstance)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
reinterpret_cast<ZeroTier::Node *>(node)->setNetconfMaster(networkConfigMasterInstance);
|
|
|
|
} catch ( ... ) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ZT1_version(int *major,int *minor,int *revision,unsigned long *featureFlags)
|
|
|
|
{
|
|
|
|
if (major) *major = ZEROTIER_ONE_VERSION_MAJOR;
|
|
|
|
if (minor) *minor = ZEROTIER_ONE_VERSION_MINOR;
|
|
|
|
if (revision) *revision = ZEROTIER_ONE_VERSION_REVISION;
|
|
|
|
if (featureFlags) {
|
2015-04-06 21:55:40 +00:00
|
|
|
*featureFlags = (
|
|
|
|
ZT1_FEATURE_FLAG_THREAD_SAFE
|
2015-04-01 23:27:14 +00:00
|
|
|
#ifdef ZT_OFFICIAL_BUILD
|
2015-04-06 21:55:40 +00:00
|
|
|
| ZT1_FEATURE_FLAG_OFFICIAL
|
2015-04-01 23:27:14 +00:00
|
|
|
#endif
|
2015-04-06 21:55:40 +00:00
|
|
|
);
|
2015-04-01 23:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // extern "C"
|