| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682 | 
							- /*
 
-  * 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/
 
-  */
 
- #include <stdio.h>
 
- #include <stdlib.h>
 
- #include <stdarg.h>
 
- #include <string.h>
 
- #include <stdint.h>
 
- #include "../version.h"
 
- #include "Constants.hpp"
 
- #include "Node.hpp"
 
- #include "RuntimeEnvironment.hpp"
 
- #include "NetworkController.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"
 
- #include "SelfAwareness.hpp"
 
- #include "Defaults.hpp"
 
- namespace ZeroTier {
 
- /****************************************************************************/
 
- /* Public Node interface (C++, exposed via CAPI bindings)                   */
 
- /****************************************************************************/
 
- Node::Node(
 
- 	uint64_t now,
 
- 	void *uptr,
 
- 	ZT1_DataStoreGetFunction dataStoreGetFunction,
 
- 	ZT1_DataStorePutFunction dataStorePutFunction,
 
- 	ZT1_WirePacketSendFunction wirePacketSendFunction,
 
- 	ZT1_VirtualNetworkFrameFunction virtualNetworkFrameFunction,
 
- 	ZT1_VirtualNetworkConfigFunction virtualNetworkConfigFunction,
 
- 	ZT1_EventCallback eventCallback,
 
- 	const char *overrideRootTopology) :
 
- 	_RR(this),
 
- 	RR(&_RR),
 
- 	_uPtr(uptr),
 
- 	_dataStoreGetFunction(dataStoreGetFunction),
 
- 	_dataStorePutFunction(dataStorePutFunction),
 
- 	_wirePacketSendFunction(wirePacketSendFunction),
 
- 	_virtualNetworkFrameFunction(virtualNetworkFrameFunction),
 
- 	_virtualNetworkConfigFunction(virtualNetworkConfigFunction),
 
- 	_eventCallback(eventCallback),
 
- 	_networks(),
 
- 	_networks_m(),
 
- 	_now(now),
 
- 	_startTimeAfterInactivity(0),
 
- 	_lastPingCheck(0),
 
- 	_lastHousekeepingRun(0),
 
- 	_lastBeacon(0)
 
- {
 
- 	_newestVersionSeen[0] = ZEROTIER_ONE_VERSION_MAJOR;
 
- 	_newestVersionSeen[1] = ZEROTIER_ONE_VERSION_MINOR;
 
- 	_newestVersionSeen[2] = ZEROTIER_ONE_VERSION_REVISION;
 
- 	_online = false;
 
- 	std::string idtmp(dataStoreGet("identity.secret"));
 
- 	if ((!idtmp.length())||(!RR->identity.fromString(idtmp))||(!RR->identity.hasPrivate())) {
 
- 		TRACE("identity.secret not found, generating...");
 
- 		RR->identity.generate();
 
- 		idtmp = RR->identity.toString(true);
 
- 		if (!dataStorePut("identity.secret",idtmp,true))
 
- 			throw std::runtime_error("unable to write identity.secret");
 
- 	}
 
- 	RR->publicIdentityStr = RR->identity.toString(false);
 
- 	RR->secretIdentityStr = RR->identity.toString(true);
 
- 	idtmp = dataStoreGet("identity.public");
 
- 	if (idtmp != RR->publicIdentityStr) {
 
- 		if (!dataStorePut("identity.public",RR->publicIdentityStr,false))
 
- 			throw std::runtime_error("unable to write identity.public");
 
- 	}
 
- 	try {
 
- 		RR->prng = new CMWC4096();
 
- 		RR->sw = new Switch(RR);
 
- 		RR->mc = new Multicaster(RR);
 
- 		RR->antiRec = new AntiRecursion();
 
- 		RR->topology = new Topology(RR);
 
- 		RR->sa = new SelfAwareness(RR);
 
- 	} catch ( ... ) {
 
- 		delete RR->sa;
 
- 		delete RR->topology;
 
- 		delete RR->antiRec;
 
- 		delete RR->mc;
 
- 		delete RR->sw;
 
- 		delete RR->prng;
 
- 		throw;
 
- 	}
 
- 	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","")));
 
- 	postEvent(ZT1_EVENT_UP);
 
- }
 
- Node::~Node()
 
- {
 
- 	Mutex::Lock _l(_networks_m);
 
- 	_networks.clear();
 
- 	delete RR->sa;
 
- 	delete RR->topology;
 
- 	delete RR->antiRec;
 
- 	delete RR->mc;
 
- 	delete RR->sw;
 
- 	delete RR->prng;
 
- }
 
- ZT1_ResultCode Node::processWirePacket(
 
- 	uint64_t now,
 
- 	const struct sockaddr_storage *remoteAddress,
 
- 	const void *packetData,
 
- 	unsigned int packetLength,
 
- 	volatile uint64_t *nextBackgroundTaskDeadline)
 
- {
 
- 	_now = now;
 
- 	RR->sw->onRemotePacket(*(reinterpret_cast<const InetAddress *>(remoteAddress)),packetData,packetLength);
 
- 	return ZT1_RESULT_OK;
 
- }
 
- 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,
 
- 	volatile uint64_t *nextBackgroundTaskDeadline)
 
- {
 
- 	_now = now;
 
- 	SharedPtr<Network> nw(this->network(nwid));
 
- 	if (nw) {
 
- 		RR->sw->onLocalEthernet(nw,MAC(sourceMac),MAC(destMac),etherType,vlanId,frameData,frameLength);
 
- 		return ZT1_RESULT_OK;
 
- 	} else return ZT1_RESULT_ERROR_NETWORK_NOT_FOUND;
 
- }
 
- class _PingPeersThatNeedPing
 
- {
 
- public:
 
- 	_PingPeersThatNeedPing(const RuntimeEnvironment *renv,uint64_t now) :
 
- 		lastReceiveFromUpstream(0),
 
- 		RR(renv),
 
- 		_now(now),
 
- 		_supernodes(RR->topology->supernodeAddresses()) {}
 
- 	uint64_t lastReceiveFromUpstream;
 
- 	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() > lastReceiveFromUpstream)
 
- 				lastReceiveFromUpstream = 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,volatile uint64_t *nextBackgroundTaskDeadline)
 
- {
 
- 	_now = now;
 
- 	Mutex::Lock bl(_backgroundTasksLock);
 
- 	if ((now - _lastPingCheck) >= ZT_PING_CHECK_INVERVAL) {
 
- 		_lastPingCheck = now;
 
- 		// This is used to compute whether we appear to be "online" or not
 
- 		if ((now - _startTimeAfterInactivity) > (ZT_PING_CHECK_INVERVAL * 3))
 
- 			_startTimeAfterInactivity = now;
 
- 		try {
 
- 			_PingPeersThatNeedPing pfunc(RR,now);
 
- 			RR->topology->eachPeer<_PingPeersThatNeedPing &>(pfunc);
 
- 			const uint64_t lastActivityAgo = now - std::max(_startTimeAfterInactivity,pfunc.lastReceiveFromUpstream);
 
- 			bool oldOnline = _online;
 
- 			_online = (lastActivityAgo < ZT_PEER_ACTIVITY_TIMEOUT);
 
- 			if (oldOnline != _online)
 
- 				postEvent(_online ? ZT1_EVENT_ONLINE : ZT1_EVENT_OFFLINE);
 
- 		} 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 - _lastBeacon) >= ZT_BEACON_INTERVAL) {
 
- 			_lastBeacon = now;
 
- 			char beacon[13];
 
- 			void *p = beacon;
 
- 			*(reinterpret_cast<uint32_t *>(p)) = RR->prng->next32();
 
- 			p = beacon + 4;
 
- 			*(reinterpret_cast<uint32_t *>(p)) = RR->prng->next32();
 
- 			RR->identity.address().copyTo(beacon + 8,5);
 
- 			RR->antiRec->logOutgoingZT(beacon,13);
 
- 			putPacket(ZT_DEFAULTS.v4Broadcast,beacon,13);
 
- 		}
 
- 	}
 
- 	if ((now - _lastHousekeepingRun) >= ZT_HOUSEKEEPING_PERIOD) {
 
- 		_lastHousekeepingRun = now;
 
- 		try {
 
- 			RR->topology->clean(now);
 
- 			RR->sa->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;
 
- }
 
- ZT1_ResultCode Node::join(uint64_t nwid)
 
- {
 
- 	Mutex::Lock _l(_networks_m);
 
- 	SharedPtr<Network> &nwe = _networks[nwid];
 
- 	if (!nwe)
 
- 		nwe = SharedPtr<Network>(new Network(RR,nwid));
 
- 	return ZT1_RESULT_OK;
 
- }
 
- ZT1_ResultCode Node::leave(uint64_t nwid)
 
- {
 
- 	Mutex::Lock _l(_networks_m);
 
- 	std::map< uint64_t,SharedPtr<Network> >::iterator nw(_networks.find(nwid));
 
- 	if (nw != _networks.end()) {
 
- 		nw->second->destroy();
 
- 		_networks.erase(nw);
 
- 	}
 
- 	return ZT1_RESULT_OK;
 
- }
 
- ZT1_ResultCode Node::multicastSubscribe(uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi)
 
- {
 
- 	SharedPtr<Network> nw(this->network(nwid));
 
- 	if (nw) {
 
- 		nw->multicastSubscribe(MulticastGroup(MAC(multicastGroup),(uint32_t)(multicastAdi & 0xffffffff)));
 
- 		return ZT1_RESULT_OK;
 
- 	} else return ZT1_RESULT_ERROR_NETWORK_NOT_FOUND;
 
- }
 
- ZT1_ResultCode Node::multicastUnsubscribe(uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi)
 
- {
 
- 	SharedPtr<Network> nw(this->network(nwid));
 
- 	if (nw) {
 
- 		nw->multicastUnsubscribe(MulticastGroup(MAC(multicastGroup),(uint32_t)(multicastAdi & 0xffffffff)));
 
- 		return ZT1_RESULT_OK;
 
- 	} else return ZT1_RESULT_ERROR_NETWORK_NOT_FOUND;
 
- }
 
- uint64_t Node::address() const
 
- {
 
- 	return RR->identity.address().toInt();
 
- }
 
- void Node::status(ZT1_NodeStatus *status) const
 
- {
 
- 	status->address = RR->identity.address().toInt();
 
- 	status->publicIdentity = RR->publicIdentityStr.c_str();
 
- 	status->secretIdentity = RR->secretIdentityStr.c_str();
 
- 	status->online = _online ? 1 : 0;
 
- }
 
- ZT1_PeerList *Node::peers() const
 
- {
 
- 	std::map< Address,SharedPtr<Peer> > peers(RR->topology->allPeers());
 
- 	char *buf = (char *)::malloc(sizeof(ZT1_PeerList) + (sizeof(ZT1_Peer) * peers.size()));
 
- 	if (!buf)
 
- 		return (ZT1_PeerList *)0;
 
- 	ZT1_PeerList *pl = (ZT1_PeerList *)buf;
 
- 	pl->peers = (ZT1_Peer *)(buf + sizeof(ZT1_PeerList));
 
- 	pl->peerCount = 0;
 
- 	for(std::map< Address,SharedPtr<Peer> >::iterator pi(peers.begin());pi!=peers.end();++pi) {
 
- 		ZT1_Peer *p = &(pl->peers[pl->peerCount++]);
 
- 		p->address = pi->second->address().toInt();
 
- 		p->lastUnicastFrame = pi->second->lastUnicastFrame();
 
- 		p->lastMulticastFrame = pi->second->lastMulticastFrame();
 
- 		if (pi->second->remoteVersionKnown()) {
 
- 			p->versionMajor = pi->second->remoteVersionMajor();
 
- 			p->versionMinor = pi->second->remoteVersionMinor();
 
- 			p->versionRev = pi->second->remoteVersionRevision();
 
- 		} else {
 
- 			p->versionMajor = -1;
 
- 			p->versionMinor = -1;
 
- 			p->versionRev = -1;
 
- 		}
 
- 		p->latency = pi->second->latency();
 
- 		p->role = RR->topology->isSupernode(pi->second->address()) ? ZT1_PEER_ROLE_SUPERNODE : ZT1_PEER_ROLE_LEAF;
 
- 		std::vector<Path> paths(pi->second->paths());
 
- 		Path *bestPath = pi->second->getBestPath(_now);
 
- 		p->pathCount = 0;
 
- 		for(std::vector<Path>::iterator path(paths.begin());path!=paths.end();++path) {
 
- 			memcpy(&(p->paths[p->pathCount].address),&(path->address()),sizeof(struct sockaddr_storage));
 
- 			p->paths[p->pathCount].lastSend = path->lastSend();
 
- 			p->paths[p->pathCount].lastReceive = path->lastReceived();
 
- 			p->paths[p->pathCount].fixed = path->fixed() ? 1 : 0;
 
- 			p->paths[p->pathCount].active = path->active(_now) ? 1 : 0;
 
- 			p->paths[p->pathCount].preferred = ((bestPath)&&(*path == *bestPath)) ? 1 : 0;
 
- 			++p->pathCount;
 
- 		}
 
- 	}
 
- 	return pl;
 
- }
 
- ZT1_VirtualNetworkConfig *Node::networkConfig(uint64_t nwid) const
 
- {
 
- 	Mutex::Lock _l(_networks_m);
 
- 	std::map< uint64_t,SharedPtr<Network> >::const_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;
 
- }
 
- ZT1_VirtualNetworkList *Node::networks() const
 
- {
 
- 	Mutex::Lock _l(_networks_m);
 
- 	char *buf = (char *)::malloc(sizeof(ZT1_VirtualNetworkList) + (sizeof(ZT1_VirtualNetworkConfig) * _networks.size()));
 
- 	if (!buf)
 
- 		return (ZT1_VirtualNetworkList *)0;
 
- 	ZT1_VirtualNetworkList *nl = (ZT1_VirtualNetworkList *)buf;
 
- 	nl->networks = (ZT1_VirtualNetworkConfig *)(buf + sizeof(ZT1_VirtualNetworkList));
 
- 	nl->networkCount = 0;
 
- 	for(std::map< uint64_t,SharedPtr<Network> >::const_iterator n(_networks.begin());n!=_networks.end();++n)
 
- 		n->second->externalConfig(&(nl->networks[nl->networkCount++]));
 
- 	return nl;
 
- }
 
- void Node::freeQueryResult(void *qr)
 
- {
 
- 	if (qr)
 
- 		::free(qr);
 
- }
 
- void Node::setNetconfMaster(void *networkControllerInstance)
 
- {
 
- 	RR->localNetworkController = reinterpret_cast<NetworkController *>(networkControllerInstance);
 
- }
 
- /****************************************************************************/
 
- /* Node methods used only within node/                                      */
 
- /****************************************************************************/
 
- std::string Node::dataStoreGet(const char *name)
 
- {
 
- 	char buf[16384];
 
- 	std::string r;
 
- 	unsigned long olen = 0;
 
- 	do {
 
- 		long n = _dataStoreGetFunction(reinterpret_cast<ZT1_Node *>(this),_uPtr,name,buf,sizeof(buf),(unsigned long)r.length(),&olen);
 
- 		if (n <= 0)
 
- 			return std::string();
 
- 		r.append(buf,n);
 
- 	} while (r.length() < olen);
 
- 	return r;
 
- }
 
- void Node::postNewerVersionIfNewer(unsigned int major,unsigned int minor,unsigned int rev)
 
- {
 
- 	if (Utils::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,(const void *)_newestVersionSeen);
 
- 	}
 
- }
 
- #ifdef ZT_TRACE
 
- void Node::postTrace(const char *module,unsigned int line,const char *fmt,...)
 
- {
 
- 	static Mutex traceLock;
 
- 	va_list ap;
 
- 	char tmp1[1024],tmp2[1024],tmp3[256];
 
- 	Mutex::Lock _l(traceLock);
 
- 	time_t now = (time_t)(_now / 1000ULL);
 
- #ifdef __WINDOWS__
 
- 	ctime_s(tmp3,sizeof(tmp3),&now);
 
- 	char *nowstr = tmp3;
 
- #else
 
- 	char *nowstr = ctime_r(&now,tmp3);
 
- #endif
 
- 	unsigned long nowstrlen = (unsigned long)strlen(nowstr);
 
- 	if (nowstr[nowstrlen-1] == '\n')
 
- 		nowstr[--nowstrlen] = (char)0;
 
- 	if (nowstr[nowstrlen-1] == '\r')
 
- 		nowstr[--nowstrlen] = (char)0;
 
- 	va_start(ap,fmt);
 
- 	vsnprintf(tmp2,sizeof(tmp2),fmt,ap);
 
- 	va_end(ap);
 
- 	tmp2[sizeof(tmp2)-1] = (char)0;
 
- 	Utils::snprintf(tmp1,sizeof(tmp1),"[%s] %s:%u %s",nowstr,module,line,tmp2);
 
- 	postEvent(ZT1_EVENT_TRACE,tmp1);
 
- }
 
- #endif // ZT_TRACE
 
- } // namespace ZeroTier
 
- /****************************************************************************/
 
- /* CAPI bindings                                                            */
 
- /****************************************************************************/
 
- extern "C" {
 
- enum ZT1_ResultCode ZT1_Node_new(
 
- 	ZT1_Node **node,
 
- 	void *uptr,
 
- 	uint64_t now,
 
- 	ZT1_DataStoreGetFunction dataStoreGetFunction,
 
- 	ZT1_DataStorePutFunction dataStorePutFunction,
 
- 	ZT1_WirePacketSendFunction wirePacketSendFunction,
 
- 	ZT1_VirtualNetworkFrameFunction virtualNetworkFrameFunction,
 
- 	ZT1_VirtualNetworkConfigFunction virtualNetworkConfigFunction,
 
- 	ZT1_EventCallback eventCallback,
 
- 	const char *overrideRootTopology)
 
- {
 
- 	*node = (ZT1_Node *)0;
 
- 	try {
 
- 		*node = reinterpret_cast<ZT1_Node *>(new ZeroTier::Node(now,uptr,dataStoreGetFunction,dataStorePutFunction,wirePacketSendFunction,virtualNetworkFrameFunction,virtualNetworkConfigFunction,eventCallback,overrideRootTopology));
 
- 		return ZT1_RESULT_OK;
 
- 	} catch (std::bad_alloc &exc) {
 
- 		return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
 
- 	} catch (std::runtime_error &exc) {
 
- 		return ZT1_RESULT_FATAL_ERROR_DATA_STORE_FAILED;
 
- 	} catch ( ... ) {
 
- 		return ZT1_RESULT_FATAL_ERROR_INTERNAL;
 
- 	}
 
- }
 
- void ZT1_Node_delete(ZT1_Node *node)
 
- {
 
- 	try {
 
- 		delete (reinterpret_cast<ZeroTier::Node *>(node));
 
- 	} catch ( ... ) {}
 
- }
 
- enum ZT1_ResultCode ZT1_Node_processWirePacket(
 
- 	ZT1_Node *node,
 
- 	uint64_t now,
 
- 	const struct sockaddr_storage *remoteAddress,
 
- 	const void *packetData,
 
- 	unsigned int packetLength,
 
- 	volatile uint64_t *nextBackgroundTaskDeadline)
 
- {
 
- 	try {
 
- 		return reinterpret_cast<ZeroTier::Node *>(node)->processWirePacket(now,remoteAddress,packetData,packetLength,nextBackgroundTaskDeadline);
 
- 	} catch (std::bad_alloc &exc) {
 
- 		return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
 
- 	} catch ( ... ) {
 
- 		reinterpret_cast<ZeroTier::Node *>(node)->postEvent(ZT1_EVENT_INVALID_PACKET,(const void *)remoteAddress);
 
- 		return ZT1_RESULT_OK;
 
- 	}
 
- }
 
- 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,
 
- 	volatile uint64_t *nextBackgroundTaskDeadline)
 
- {
 
- 	try {
 
- 		return reinterpret_cast<ZeroTier::Node *>(node)->processVirtualNetworkFrame(now,nwid,sourceMac,destMac,etherType,vlanId,frameData,frameLength,nextBackgroundTaskDeadline);
 
- 	} catch (std::bad_alloc &exc) {
 
- 		return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
 
- 	} catch ( ... ) {
 
- 		return ZT1_RESULT_FATAL_ERROR_INTERNAL;
 
- 	}
 
- }
 
- enum ZT1_ResultCode ZT1_Node_processBackgroundTasks(ZT1_Node *node,uint64_t now,volatile uint64_t *nextBackgroundTaskDeadline)
 
- {
 
- 	try {
 
- 		return reinterpret_cast<ZeroTier::Node *>(node)->processBackgroundTasks(now,nextBackgroundTaskDeadline);
 
- 	} catch (std::bad_alloc &exc) {
 
- 		return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
 
- 	} catch ( ... ) {
 
- 		return ZT1_RESULT_FATAL_ERROR_INTERNAL;
 
- 	}
 
- }
 
- 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) {
 
- 		return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
 
- 	} catch ( ... ) {
 
- 		return ZT1_RESULT_FATAL_ERROR_INTERNAL;
 
- 	}
 
- }
 
- 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) {
 
- 		return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
 
- 	} catch ( ... ) {
 
- 		return ZT1_RESULT_FATAL_ERROR_INTERNAL;
 
- 	}
 
- }
 
- 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) {
 
- 		return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
 
- 	} catch ( ... ) {
 
- 		return ZT1_RESULT_FATAL_ERROR_INTERNAL;
 
- 	}
 
- }
 
- 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) {
 
- 		return ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY;
 
- 	} catch ( ... ) {
 
- 		return ZT1_RESULT_FATAL_ERROR_INTERNAL;
 
- 	}
 
- }
 
- uint64_t ZT1_Node_address(ZT1_Node *node)
 
- {
 
- 	return reinterpret_cast<ZeroTier::Node *>(node)->address();
 
- }
 
- 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 {
 
- 		return reinterpret_cast<ZeroTier::Node *>(node)->peers();
 
- 	} 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;
 
- 	}
 
- }
 
- ZT1_VirtualNetworkList *ZT1_Node_networks(ZT1_Node *node)
 
- {
 
- 	try {
 
- 		return reinterpret_cast<ZeroTier::Node *>(node)->networks();
 
- 	} 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 *networkControllerInstance)
 
- {
 
- 	try {
 
- 		reinterpret_cast<ZeroTier::Node *>(node)->setNetconfMaster(networkControllerInstance);
 
- 	} 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) {
 
- 		*featureFlags = (
 
- 			ZT1_FEATURE_FLAG_THREAD_SAFE
 
- 		);
 
- 	}
 
- }
 
- } // extern "C"
 
 
  |