OneService.cpp 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595
  1. /*
  2. * ZeroTier One - Network Virtualization Everywhere
  3. * Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * --
  19. *
  20. * You can be released from the requirements of the license by purchasing
  21. * a commercial license. Buying such a license is mandatory as soon as you
  22. * develop commercial closed-source software that incorporates or links
  23. * directly against ZeroTier software without disclosing the source code
  24. * of your own application.
  25. */
  26. #include <stdio.h>
  27. #include <stdlib.h>
  28. #include <string.h>
  29. #include <stdint.h>
  30. #include <string>
  31. #include <map>
  32. #include <vector>
  33. #include <algorithm>
  34. #include <list>
  35. #include "../version.h"
  36. #include "../include/ZeroTierOne.h"
  37. #include "../node/Constants.hpp"
  38. #include "../node/Mutex.hpp"
  39. #include "../node/Node.hpp"
  40. #include "../node/Utils.hpp"
  41. #include "../node/InetAddress.hpp"
  42. #include "../node/MAC.hpp"
  43. #include "../node/Identity.hpp"
  44. #include "../node/World.hpp"
  45. #include "../node/Salsa20.hpp"
  46. #include "../node/Poly1305.hpp"
  47. #include "../node/SHA512.hpp"
  48. #include "../osdep/Phy.hpp"
  49. #include "../osdep/Thread.hpp"
  50. #include "../osdep/OSUtils.hpp"
  51. #include "../osdep/Http.hpp"
  52. #include "../osdep/PortMapper.hpp"
  53. #include "../osdep/Binder.hpp"
  54. #include "../osdep/ManagedRoute.hpp"
  55. #include "OneService.hpp"
  56. #include "SoftwareUpdater.hpp"
  57. #ifdef __WINDOWS__
  58. #include <WinSock2.h>
  59. #include <Windows.h>
  60. #include <ShlObj.h>
  61. #include <netioapi.h>
  62. #include <iphlpapi.h>
  63. #else
  64. #include <sys/types.h>
  65. #include <sys/socket.h>
  66. #include <sys/wait.h>
  67. #include <unistd.h>
  68. #include <ifaddrs.h>
  69. #endif
  70. #ifdef ZT_USE_SYSTEM_HTTP_PARSER
  71. #include <http_parser.h>
  72. #else
  73. #include "../ext/http-parser/http_parser.h"
  74. #endif
  75. #include "../ext/json/json.hpp"
  76. using json = nlohmann::json;
  77. #include "../controller/EmbeddedNetworkController.hpp"
  78. #ifdef ZT_USE_TEST_TAP
  79. #include "../osdep/TestEthernetTap.hpp"
  80. namespace ZeroTier { typedef TestEthernetTap EthernetTap; }
  81. #else
  82. #ifdef ZT_SDK
  83. #include "../controller/EmbeddedNetworkController.hpp"
  84. #include "../node/Node.hpp"
  85. // Use the virtual netcon endpoint instead of a tun/tap port driver
  86. #include "../include/VirtualTap.h"
  87. namespace ZeroTier { typedef VirtualTap EthernetTap; }
  88. #else
  89. #ifdef __APPLE__
  90. #include "../osdep/OSXEthernetTap.hpp"
  91. namespace ZeroTier { typedef OSXEthernetTap EthernetTap; }
  92. #endif // __APPLE__
  93. #ifdef __LINUX__
  94. #include "../osdep/LinuxEthernetTap.hpp"
  95. namespace ZeroTier { typedef LinuxEthernetTap EthernetTap; }
  96. #endif // __LINUX__
  97. #ifdef __WINDOWS__
  98. #include "../osdep/WindowsEthernetTap.hpp"
  99. namespace ZeroTier { typedef WindowsEthernetTap EthernetTap; }
  100. #endif // __WINDOWS__
  101. #ifdef __FreeBSD__
  102. #include "../osdep/BSDEthernetTap.hpp"
  103. namespace ZeroTier { typedef BSDEthernetTap EthernetTap; }
  104. #endif // __FreeBSD__
  105. #ifdef __NetBSD__
  106. #include "../osdep/NetBSDEthernetTap.hpp"
  107. namespace ZeroTier { typedef NetBSDEthernetTap EthernetTap; }
  108. #endif // __NetBSD__
  109. #ifdef __OpenBSD__
  110. #include "../osdep/BSDEthernetTap.hpp"
  111. namespace ZeroTier { typedef BSDEthernetTap EthernetTap; }
  112. #endif // __OpenBSD__
  113. #endif // ZT_SERVICE_NETCON
  114. #endif // ZT_USE_TEST_TAP
  115. // Sanity limits for HTTP
  116. #define ZT_MAX_HTTP_MESSAGE_SIZE (1024 * 1024 * 64)
  117. #define ZT_MAX_HTTP_CONNECTIONS 65536
  118. // Interface metric for ZeroTier taps -- this ensures that if we are on WiFi and also
  119. // bridged via ZeroTier to the same LAN traffic will (if the OS is sane) prefer WiFi.
  120. #define ZT_IF_METRIC 5000
  121. // How often to check for new multicast subscriptions on a tap device
  122. #define ZT_TAP_CHECK_MULTICAST_INTERVAL 5000
  123. // TCP fallback relay (run by ZeroTier, Inc. -- this will eventually go away)
  124. #define ZT_TCP_FALLBACK_RELAY "204.80.128.1/443"
  125. // Frequency at which we re-resolve the TCP fallback relay
  126. #define ZT_TCP_FALLBACK_RERESOLVE_DELAY 86400000
  127. // Attempt to engage TCP fallback after this many ms of no reply to packets sent to global-scope IPs
  128. #define ZT_TCP_FALLBACK_AFTER 60000
  129. // How often to check for local interface addresses
  130. #define ZT_LOCAL_INTERFACE_CHECK_INTERVAL 60000
  131. // Maximum write buffer size for outgoing TCP connections (sanity limit)
  132. #define ZT_TCP_MAX_WRITEQ_SIZE 33554432
  133. // TCP activity timeout
  134. #define ZT_TCP_ACTIVITY_TIMEOUT 60000
  135. namespace ZeroTier {
  136. namespace {
  137. // Fake TLS hello for TCP tunnel outgoing connections (TUNNELED mode)
  138. static const char ZT_TCP_TUNNEL_HELLO[9] = { 0x17,0x03,0x03,0x00,0x04,(char)ZEROTIER_ONE_VERSION_MAJOR,(char)ZEROTIER_ONE_VERSION_MINOR,(char)((ZEROTIER_ONE_VERSION_REVISION >> 8) & 0xff),(char)(ZEROTIER_ONE_VERSION_REVISION & 0xff) };
  139. static std::string _trimString(const std::string &s)
  140. {
  141. unsigned long end = (unsigned long)s.length();
  142. while (end) {
  143. char c = s[end - 1];
  144. if ((c == ' ')||(c == '\r')||(c == '\n')||(!c)||(c == '\t'))
  145. --end;
  146. else break;
  147. }
  148. unsigned long start = 0;
  149. while (start < end) {
  150. char c = s[start];
  151. if ((c == ' ')||(c == '\r')||(c == '\n')||(!c)||(c == '\t'))
  152. ++start;
  153. else break;
  154. }
  155. return s.substr(start,end - start);
  156. }
  157. static void _networkToJson(nlohmann::json &nj,const ZT_VirtualNetworkConfig *nc,const std::string &portDeviceName,const OneService::NetworkSettings &localSettings)
  158. {
  159. char tmp[256];
  160. const char *nstatus = "",*ntype = "";
  161. switch(nc->status) {
  162. case ZT_NETWORK_STATUS_REQUESTING_CONFIGURATION: nstatus = "REQUESTING_CONFIGURATION"; break;
  163. case ZT_NETWORK_STATUS_OK: nstatus = "OK"; break;
  164. case ZT_NETWORK_STATUS_ACCESS_DENIED: nstatus = "ACCESS_DENIED"; break;
  165. case ZT_NETWORK_STATUS_NOT_FOUND: nstatus = "NOT_FOUND"; break;
  166. case ZT_NETWORK_STATUS_PORT_ERROR: nstatus = "PORT_ERROR"; break;
  167. case ZT_NETWORK_STATUS_CLIENT_TOO_OLD: nstatus = "CLIENT_TOO_OLD"; break;
  168. }
  169. switch(nc->type) {
  170. case ZT_NETWORK_TYPE_PRIVATE: ntype = "PRIVATE"; break;
  171. case ZT_NETWORK_TYPE_PUBLIC: ntype = "PUBLIC"; break;
  172. }
  173. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.16llx",nc->nwid);
  174. nj["id"] = tmp;
  175. nj["nwid"] = tmp;
  176. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.2x:%.2x:%.2x:%.2x:%.2x:%.2x",(unsigned int)((nc->mac >> 40) & 0xff),(unsigned int)((nc->mac >> 32) & 0xff),(unsigned int)((nc->mac >> 24) & 0xff),(unsigned int)((nc->mac >> 16) & 0xff),(unsigned int)((nc->mac >> 8) & 0xff),(unsigned int)(nc->mac & 0xff));
  177. nj["mac"] = tmp;
  178. nj["name"] = nc->name;
  179. nj["status"] = nstatus;
  180. nj["type"] = ntype;
  181. nj["mtu"] = nc->mtu;
  182. nj["dhcp"] = (bool)(nc->dhcp != 0);
  183. nj["bridge"] = (bool)(nc->bridge != 0);
  184. nj["broadcastEnabled"] = (bool)(nc->broadcastEnabled != 0);
  185. nj["portError"] = nc->portError;
  186. nj["netconfRevision"] = nc->netconfRevision;
  187. nj["portDeviceName"] = portDeviceName;
  188. nj["allowManaged"] = localSettings.allowManaged;
  189. nj["allowGlobal"] = localSettings.allowGlobal;
  190. nj["allowDefault"] = localSettings.allowDefault;
  191. nlohmann::json aa = nlohmann::json::array();
  192. for(unsigned int i=0;i<nc->assignedAddressCount;++i) {
  193. aa.push_back(reinterpret_cast<const InetAddress *>(&(nc->assignedAddresses[i]))->toString(tmp));
  194. }
  195. nj["assignedAddresses"] = aa;
  196. nlohmann::json ra = nlohmann::json::array();
  197. for(unsigned int i=0;i<nc->routeCount;++i) {
  198. nlohmann::json rj;
  199. rj["target"] = reinterpret_cast<const InetAddress *>(&(nc->routes[i].target))->toString(tmp);
  200. if (nc->routes[i].via.ss_family == nc->routes[i].target.ss_family)
  201. rj["via"] = reinterpret_cast<const InetAddress *>(&(nc->routes[i].via))->toIpString(tmp);
  202. else rj["via"] = nlohmann::json();
  203. rj["flags"] = (int)nc->routes[i].flags;
  204. rj["metric"] = (int)nc->routes[i].metric;
  205. ra.push_back(rj);
  206. }
  207. nj["routes"] = ra;
  208. }
  209. static void _peerToJson(nlohmann::json &pj,const ZT_Peer *peer)
  210. {
  211. char tmp[256];
  212. const char *prole = "";
  213. switch(peer->role) {
  214. case ZT_PEER_ROLE_LEAF: prole = "LEAF"; break;
  215. case ZT_PEER_ROLE_MOON: prole = "MOON"; break;
  216. case ZT_PEER_ROLE_PLANET: prole = "PLANET"; break;
  217. }
  218. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.10llx",peer->address);
  219. pj["address"] = tmp;
  220. pj["versionMajor"] = peer->versionMajor;
  221. pj["versionMinor"] = peer->versionMinor;
  222. pj["versionRev"] = peer->versionRev;
  223. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%d.%d.%d",peer->versionMajor,peer->versionMinor,peer->versionRev);
  224. pj["version"] = tmp;
  225. pj["latency"] = peer->latency;
  226. pj["role"] = prole;
  227. nlohmann::json pa = nlohmann::json::array();
  228. for(unsigned int i=0;i<peer->pathCount;++i) {
  229. int64_t lastSend = peer->paths[i].lastSend;
  230. int64_t lastReceive = peer->paths[i].lastReceive;
  231. nlohmann::json j;
  232. j["address"] = reinterpret_cast<const InetAddress *>(&(peer->paths[i].address))->toString(tmp);
  233. j["lastSend"] = (lastSend < 0) ? 0 : lastSend;
  234. j["lastReceive"] = (lastReceive < 0) ? 0 : lastReceive;
  235. j["trustedPathId"] = peer->paths[i].trustedPathId;
  236. j["active"] = (bool)(peer->paths[i].expired == 0);
  237. j["expired"] = (bool)(peer->paths[i].expired != 0);
  238. j["preferred"] = (bool)(peer->paths[i].preferred != 0);
  239. pa.push_back(j);
  240. }
  241. pj["paths"] = pa;
  242. }
  243. static void _moonToJson(nlohmann::json &mj,const World &world)
  244. {
  245. char tmp[4096];
  246. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.16llx",world.id());
  247. mj["id"] = tmp;
  248. mj["timestamp"] = world.timestamp();
  249. mj["signature"] = Utils::hex(world.signature().data,ZT_C25519_SIGNATURE_LEN,tmp);
  250. mj["updatesMustBeSignedBy"] = Utils::hex(world.updatesMustBeSignedBy().data,ZT_C25519_PUBLIC_KEY_LEN,tmp);
  251. nlohmann::json ra = nlohmann::json::array();
  252. for(std::vector<World::Root>::const_iterator r(world.roots().begin());r!=world.roots().end();++r) {
  253. nlohmann::json rj;
  254. rj["identity"] = r->identity.toString(false,tmp);
  255. nlohmann::json eps = nlohmann::json::array();
  256. for(std::vector<InetAddress>::const_iterator a(r->stableEndpoints.begin());a!=r->stableEndpoints.end();++a)
  257. eps.push_back(a->toString(tmp));
  258. rj["stableEndpoints"] = eps;
  259. ra.push_back(rj);
  260. }
  261. mj["roots"] = ra;
  262. mj["waiting"] = false;
  263. }
  264. class OneServiceImpl;
  265. static int SnodeVirtualNetworkConfigFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t nwid,void **nuptr,enum ZT_VirtualNetworkConfigOperation op,const ZT_VirtualNetworkConfig *nwconf);
  266. static void SnodeEventCallback(ZT_Node *node,void *uptr,void *tptr,enum ZT_Event event,const void *metaData);
  267. static void SnodeStatePutFunction(ZT_Node *node,void *uptr,void *tptr,enum ZT_StateObjectType type,const uint64_t id[2],const void *data,int len);
  268. static int SnodeStateGetFunction(ZT_Node *node,void *uptr,void *tptr,enum ZT_StateObjectType type,const uint64_t id[2],void *data,unsigned int maxlen);
  269. static int SnodeWirePacketSendFunction(ZT_Node *node,void *uptr,void *tptr,int64_t localSocket,const struct sockaddr_storage *addr,const void *data,unsigned int len,unsigned int ttl);
  270. static void SnodeVirtualNetworkFrameFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t nwid,void **nuptr,uint64_t sourceMac,uint64_t destMac,unsigned int etherType,unsigned int vlanId,const void *data,unsigned int len);
  271. static int SnodePathCheckFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t ztaddr,int64_t localSocket,const struct sockaddr_storage *remoteAddr);
  272. static int SnodePathLookupFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t ztaddr,int family,struct sockaddr_storage *result);
  273. static void StapFrameHandler(void *uptr,void *tptr,uint64_t nwid,const MAC &from,const MAC &to,unsigned int etherType,unsigned int vlanId,const void *data,unsigned int len);
  274. static int ShttpOnMessageBegin(http_parser *parser);
  275. static int ShttpOnUrl(http_parser *parser,const char *ptr,size_t length);
  276. #if (HTTP_PARSER_VERSION_MAJOR >= 2) && (HTTP_PARSER_VERSION_MINOR >= 2)
  277. static int ShttpOnStatus(http_parser *parser,const char *ptr,size_t length);
  278. #else
  279. static int ShttpOnStatus(http_parser *parser);
  280. #endif
  281. static int ShttpOnHeaderField(http_parser *parser,const char *ptr,size_t length);
  282. static int ShttpOnValue(http_parser *parser,const char *ptr,size_t length);
  283. static int ShttpOnHeadersComplete(http_parser *parser);
  284. static int ShttpOnBody(http_parser *parser,const char *ptr,size_t length);
  285. static int ShttpOnMessageComplete(http_parser *parser);
  286. #if (HTTP_PARSER_VERSION_MAJOR >= 2) && (HTTP_PARSER_VERSION_MINOR >= 1)
  287. static const struct http_parser_settings HTTP_PARSER_SETTINGS = {
  288. ShttpOnMessageBegin,
  289. ShttpOnUrl,
  290. ShttpOnStatus,
  291. ShttpOnHeaderField,
  292. ShttpOnValue,
  293. ShttpOnHeadersComplete,
  294. ShttpOnBody,
  295. ShttpOnMessageComplete
  296. };
  297. #else
  298. static const struct http_parser_settings HTTP_PARSER_SETTINGS = {
  299. ShttpOnMessageBegin,
  300. ShttpOnUrl,
  301. ShttpOnHeaderField,
  302. ShttpOnValue,
  303. ShttpOnHeadersComplete,
  304. ShttpOnBody,
  305. ShttpOnMessageComplete
  306. };
  307. #endif
  308. /**
  309. * A TCP connection and related state and buffers
  310. */
  311. struct TcpConnection
  312. {
  313. enum {
  314. TCP_UNCATEGORIZED_INCOMING, // uncategorized incoming connection
  315. TCP_HTTP_INCOMING,
  316. TCP_HTTP_OUTGOING,
  317. TCP_TUNNEL_OUTGOING // TUNNELED mode proxy outbound connection
  318. } type;
  319. OneServiceImpl *parent;
  320. PhySocket *sock;
  321. InetAddress remoteAddr;
  322. uint64_t lastReceive;
  323. // Used for inbound HTTP connections
  324. http_parser parser;
  325. unsigned long messageSize;
  326. std::string currentHeaderField;
  327. std::string currentHeaderValue;
  328. std::string url;
  329. std::string status;
  330. std::map< std::string,std::string > headers;
  331. std::string readq;
  332. std::string writeq;
  333. Mutex writeq_m;
  334. };
  335. class OneServiceImpl : public OneService
  336. {
  337. public:
  338. // begin member variables --------------------------------------------------
  339. const std::string _homePath;
  340. std::string _authToken;
  341. std::string _controllerDbPath;
  342. const std::string _networksPath;
  343. const std::string _moonsPath;
  344. EmbeddedNetworkController *_controller;
  345. Phy<OneServiceImpl *> _phy;
  346. Node *_node;
  347. SoftwareUpdater *_updater;
  348. PhySocket *_localControlSocket4;
  349. PhySocket *_localControlSocket6;
  350. bool _updateAutoApply;
  351. bool _allowTcpFallbackRelay;
  352. unsigned int _primaryPort;
  353. volatile unsigned int _udpPortPickerCounter;
  354. // Local configuration and memo-ized information from it
  355. json _localConfig;
  356. Hashtable< uint64_t,std::vector<InetAddress> > _v4Hints;
  357. Hashtable< uint64_t,std::vector<InetAddress> > _v6Hints;
  358. Hashtable< uint64_t,std::vector<InetAddress> > _v4Blacklists;
  359. Hashtable< uint64_t,std::vector<InetAddress> > _v6Blacklists;
  360. std::vector< InetAddress > _globalV4Blacklist;
  361. std::vector< InetAddress > _globalV6Blacklist;
  362. std::vector< InetAddress > _allowManagementFrom;
  363. std::vector< std::string > _interfacePrefixBlacklist;
  364. Mutex _localConfig_m;
  365. /*
  366. * To attempt to handle NAT/gateway craziness we use three local UDP ports:
  367. *
  368. * [0] is the normal/default port, usually 9993
  369. * [1] is a port dervied from our ZeroTier address
  370. * [2] is a port computed from the normal/default for use with uPnP/NAT-PMP mappings
  371. *
  372. * [2] exists because on some gateways trying to do regular NAT-t interferes
  373. * destructively with uPnP port mapping behavior in very weird buggy ways.
  374. * It's only used if uPnP/NAT-PMP is enabled in this build.
  375. */
  376. unsigned int _ports[3];
  377. Binder _binder;
  378. // Time we last received a packet from a global address
  379. uint64_t _lastDirectReceiveFromGlobal;
  380. #ifdef ZT_TCP_FALLBACK_RELAY
  381. uint64_t _lastSendToGlobalV4;
  382. #endif
  383. // Last potential sleep/wake event
  384. uint64_t _lastRestart;
  385. // Deadline for the next background task service function
  386. volatile int64_t _nextBackgroundTaskDeadline;
  387. // Configured networks
  388. struct NetworkState
  389. {
  390. NetworkState() :
  391. tap((EthernetTap *)0)
  392. {
  393. // Real defaults are in network 'up' code in network event handler
  394. settings.allowManaged = true;
  395. settings.allowGlobal = false;
  396. settings.allowDefault = false;
  397. }
  398. EthernetTap *tap;
  399. ZT_VirtualNetworkConfig config; // memcpy() of raw config from core
  400. std::vector<InetAddress> managedIps;
  401. std::list< SharedPtr<ManagedRoute> > managedRoutes;
  402. NetworkSettings settings;
  403. };
  404. std::map<uint64_t,NetworkState> _nets;
  405. Mutex _nets_m;
  406. // Active TCP/IP connections
  407. std::vector< TcpConnection * > _tcpConnections;
  408. Mutex _tcpConnections_m;
  409. TcpConnection *_tcpFallbackTunnel;
  410. // Termination status information
  411. ReasonForTermination _termReason;
  412. std::string _fatalErrorMessage;
  413. Mutex _termReason_m;
  414. // uPnP/NAT-PMP port mapper if enabled
  415. bool _portMappingEnabled; // local.conf settings
  416. #ifdef ZT_USE_MINIUPNPC
  417. PortMapper *_portMapper;
  418. #endif
  419. // Set to false to force service to stop
  420. volatile bool _run;
  421. Mutex _run_m;
  422. // end member variables ----------------------------------------------------
  423. OneServiceImpl(const char *hp,unsigned int port) :
  424. _homePath((hp) ? hp : ".")
  425. ,_controllerDbPath(_homePath + ZT_PATH_SEPARATOR_S "controller.d")
  426. ,_networksPath(_homePath + ZT_PATH_SEPARATOR_S "networks.d")
  427. ,_moonsPath(_homePath + ZT_PATH_SEPARATOR_S "moons.d")
  428. ,_controller((EmbeddedNetworkController *)0)
  429. ,_phy(this,false,true)
  430. ,_node((Node *)0)
  431. ,_updater((SoftwareUpdater *)0)
  432. ,_localControlSocket4((PhySocket *)0)
  433. ,_localControlSocket6((PhySocket *)0)
  434. ,_updateAutoApply(false)
  435. ,_primaryPort(port)
  436. ,_udpPortPickerCounter(0)
  437. ,_lastDirectReceiveFromGlobal(0)
  438. #ifdef ZT_TCP_FALLBACK_RELAY
  439. ,_lastSendToGlobalV4(0)
  440. #endif
  441. ,_lastRestart(0)
  442. ,_nextBackgroundTaskDeadline(0)
  443. ,_tcpFallbackTunnel((TcpConnection *)0)
  444. ,_termReason(ONE_STILL_RUNNING)
  445. ,_portMappingEnabled(true)
  446. #ifdef ZT_USE_MINIUPNPC
  447. ,_portMapper((PortMapper *)0)
  448. #endif
  449. ,_run(true)
  450. {
  451. _ports[0] = 0;
  452. _ports[1] = 0;
  453. _ports[2] = 0;
  454. }
  455. virtual ~OneServiceImpl()
  456. {
  457. _binder.closeAll(_phy);
  458. _phy.close(_localControlSocket4);
  459. _phy.close(_localControlSocket6);
  460. #ifdef ZT_USE_MINIUPNPC
  461. delete _portMapper;
  462. #endif
  463. delete _controller;
  464. }
  465. virtual ReasonForTermination run()
  466. {
  467. try {
  468. {
  469. const std::string authTokenPath(_homePath + ZT_PATH_SEPARATOR_S "authtoken.secret");
  470. if (!OSUtils::readFile(authTokenPath.c_str(),_authToken)) {
  471. unsigned char foo[24];
  472. Utils::getSecureRandom(foo,sizeof(foo));
  473. _authToken = "";
  474. for(unsigned int i=0;i<sizeof(foo);++i)
  475. _authToken.push_back("abcdefghijklmnopqrstuvwxyz0123456789"[(unsigned long)foo[i] % 36]);
  476. if (!OSUtils::writeFile(authTokenPath.c_str(),_authToken)) {
  477. Mutex::Lock _l(_termReason_m);
  478. _termReason = ONE_UNRECOVERABLE_ERROR;
  479. _fatalErrorMessage = "authtoken.secret could not be written";
  480. return _termReason;
  481. } else {
  482. OSUtils::lockDownFile(authTokenPath.c_str(),false);
  483. }
  484. }
  485. _authToken = _trimString(_authToken);
  486. }
  487. {
  488. struct ZT_Node_Callbacks cb;
  489. cb.version = 0;
  490. cb.stateGetFunction = SnodeStateGetFunction;
  491. cb.statePutFunction = SnodeStatePutFunction;
  492. cb.wirePacketSendFunction = SnodeWirePacketSendFunction;
  493. cb.virtualNetworkFrameFunction = SnodeVirtualNetworkFrameFunction;
  494. cb.virtualNetworkConfigFunction = SnodeVirtualNetworkConfigFunction;
  495. cb.eventCallback = SnodeEventCallback;
  496. cb.pathCheckFunction = SnodePathCheckFunction;
  497. cb.pathLookupFunction = SnodePathLookupFunction;
  498. _node = new Node(this,(void *)0,&cb,OSUtils::now());
  499. }
  500. // Read local configuration
  501. std::vector<InetAddress> explicitBind;
  502. {
  503. std::map<InetAddress,ZT_PhysicalPathConfiguration> ppc;
  504. // LEGACY: support old "trustedpaths" flat file
  505. FILE *trustpaths = fopen((_homePath + ZT_PATH_SEPARATOR_S "trustedpaths").c_str(),"r");
  506. if (trustpaths) {
  507. fprintf(stderr,"WARNING: 'trustedpaths' flat file format is deprecated in favor of path definitions in local.conf" ZT_EOL_S);
  508. char buf[1024];
  509. while (fgets(buf,sizeof(buf),trustpaths)) {
  510. int fno = 0;
  511. char *saveptr = (char *)0;
  512. uint64_t trustedPathId = 0;
  513. InetAddress trustedPathNetwork;
  514. for(char *f=Utils::stok(buf,"=\r\n \t",&saveptr);(f);f=Utils::stok((char *)0,"=\r\n \t",&saveptr)) {
  515. if (fno == 0) {
  516. trustedPathId = Utils::hexStrToU64(f);
  517. } else if (fno == 1) {
  518. trustedPathNetwork = InetAddress(f);
  519. } else break;
  520. ++fno;
  521. }
  522. if ( (trustedPathId != 0) && ((trustedPathNetwork.ss_family == AF_INET)||(trustedPathNetwork.ss_family == AF_INET6)) && (trustedPathNetwork.netmaskBits() > 0) ) {
  523. ppc[trustedPathNetwork].trustedPathId = trustedPathId;
  524. ppc[trustedPathNetwork].mtu = 0; // use default
  525. }
  526. }
  527. fclose(trustpaths);
  528. }
  529. // Read local config file
  530. Mutex::Lock _l2(_localConfig_m);
  531. std::string lcbuf;
  532. if (OSUtils::readFile((_homePath + ZT_PATH_SEPARATOR_S "local.conf").c_str(),lcbuf)) {
  533. try {
  534. _localConfig = OSUtils::jsonParse(lcbuf);
  535. if (!_localConfig.is_object()) {
  536. fprintf(stderr,"WARNING: unable to parse local.conf (root element is not a JSON object)" ZT_EOL_S);
  537. }
  538. } catch ( ... ) {
  539. fprintf(stderr,"WARNING: unable to parse local.conf (invalid JSON)" ZT_EOL_S);
  540. }
  541. }
  542. // Get any trusted paths in local.conf (we'll parse the rest of physical[] elsewhere)
  543. json &physical = _localConfig["physical"];
  544. if (physical.is_object()) {
  545. for(json::iterator phy(physical.begin());phy!=physical.end();++phy) {
  546. InetAddress net(OSUtils::jsonString(phy.key(),"").c_str());
  547. if (net) {
  548. if (phy.value().is_object()) {
  549. uint64_t tpid;
  550. if ((tpid = OSUtils::jsonInt(phy.value()["trustedPathId"],0ULL)) != 0ULL) {
  551. if ((net.ss_family == AF_INET)||(net.ss_family == AF_INET6))
  552. ppc[net].trustedPathId = tpid;
  553. }
  554. ppc[net].mtu = (int)OSUtils::jsonInt(phy.value()["mtu"],0ULL); // 0 means use default
  555. }
  556. }
  557. }
  558. }
  559. json &settings = _localConfig["settings"];
  560. if (settings.is_object()) {
  561. // Allow controller DB path to be put somewhere else
  562. const std::string cdbp(OSUtils::jsonString(settings["controllerDbPath"],""));
  563. if (cdbp.length() > 0)
  564. _controllerDbPath = cdbp;
  565. // Bind to wildcard instead of to specific interfaces (disables full tunnel capability)
  566. json &bind = settings["bind"];
  567. if (bind.is_array()) {
  568. for(unsigned long i=0;i<bind.size();++i) {
  569. const std::string ips(OSUtils::jsonString(bind[i],""));
  570. if (ips.length() > 0) {
  571. InetAddress ip(ips.c_str());
  572. if ((ip.ss_family == AF_INET)||(ip.ss_family == AF_INET6))
  573. explicitBind.push_back(ip);
  574. }
  575. }
  576. }
  577. }
  578. // Set trusted paths if there are any
  579. if (ppc.size() > 0) {
  580. for(std::map<InetAddress,ZT_PhysicalPathConfiguration>::iterator i(ppc.begin());i!=ppc.end();++i)
  581. _node->setPhysicalPathConfiguration(reinterpret_cast<const struct sockaddr_storage *>(&(i->first)),&(i->second));
  582. }
  583. }
  584. // Apply other runtime configuration from local.conf
  585. applyLocalConfig();
  586. // Make sure we can use the primary port, and hunt for one if configured to do so
  587. const int portTrials = (_primaryPort == 0) ? 256 : 1; // if port is 0, pick random
  588. for(int k=0;k<portTrials;++k) {
  589. if (_primaryPort == 0) {
  590. unsigned int randp = 0;
  591. Utils::getSecureRandom(&randp,sizeof(randp));
  592. _primaryPort = 20000 + (randp % 45500);
  593. }
  594. if (_trialBind(_primaryPort)) {
  595. _ports[0] = _primaryPort;
  596. } else {
  597. _primaryPort = 0;
  598. }
  599. }
  600. if (_ports[0] == 0) {
  601. Mutex::Lock _l(_termReason_m);
  602. _termReason = ONE_UNRECOVERABLE_ERROR;
  603. _fatalErrorMessage = "cannot bind to local control interface port";
  604. return _termReason;
  605. }
  606. // Bind TCP control socket to 127.0.0.1 and ::1 as well for loopback TCP control socket queries
  607. {
  608. struct sockaddr_in lo4;
  609. memset(&lo4,0,sizeof(lo4));
  610. lo4.sin_family = AF_INET;
  611. lo4.sin_addr.s_addr = Utils::hton((uint32_t)0x7f000001);
  612. lo4.sin_port = Utils::hton((uint16_t)_ports[0]);
  613. _localControlSocket4 = _phy.tcpListen((const struct sockaddr *)&lo4);
  614. struct sockaddr_in6 lo6;
  615. memset(&lo6,0,sizeof(lo6));
  616. lo6.sin6_family = AF_INET6;
  617. lo6.sin6_addr.s6_addr[15] = 1;
  618. lo6.sin6_port = lo4.sin_port;
  619. _localControlSocket6 = _phy.tcpListen((const struct sockaddr *)&lo6);
  620. }
  621. // Save primary port to a file so CLIs and GUIs can learn it easily
  622. char portstr[64];
  623. OSUtils::ztsnprintf(portstr,sizeof(portstr),"%u",_ports[0]);
  624. OSUtils::writeFile((_homePath + ZT_PATH_SEPARATOR_S "zerotier-one.port").c_str(),std::string(portstr));
  625. // Attempt to bind to a secondary port chosen from our ZeroTier address.
  626. // This exists because there are buggy NATs out there that fail if more
  627. // than one device behind the same NAT tries to use the same internal
  628. // private address port number. Buggy NATs are a running theme.
  629. _ports[1] = 20000 + ((unsigned int)_node->address() % 45500);
  630. for(int i=0;;++i) {
  631. if (i > 1000) {
  632. _ports[1] = 0;
  633. break;
  634. } else if (++_ports[1] >= 65536) {
  635. _ports[1] = 20000;
  636. }
  637. if (_trialBind(_ports[1]))
  638. break;
  639. }
  640. #ifdef ZT_USE_MINIUPNPC
  641. if (_portMappingEnabled) {
  642. // If we're running uPnP/NAT-PMP, bind a *third* port for that. We can't
  643. // use the other two ports for that because some NATs do really funky
  644. // stuff with ports that are explicitly mapped that breaks things.
  645. if (_ports[1]) {
  646. _ports[2] = _ports[1];
  647. for(int i=0;;++i) {
  648. if (i > 1000) {
  649. _ports[2] = 0;
  650. break;
  651. } else if (++_ports[2] >= 65536) {
  652. _ports[2] = 20000;
  653. }
  654. if (_trialBind(_ports[2]))
  655. break;
  656. }
  657. if (_ports[2]) {
  658. char uniqueName[64];
  659. OSUtils::ztsnprintf(uniqueName,sizeof(uniqueName),"ZeroTier/%.10llx@%u",_node->address(),_ports[2]);
  660. _portMapper = new PortMapper(_ports[2],uniqueName);
  661. }
  662. }
  663. }
  664. #endif
  665. // Delete legacy iddb.d if present (cleanup)
  666. OSUtils::rmDashRf((_homePath + ZT_PATH_SEPARATOR_S "iddb.d").c_str());
  667. // Network controller is now enabled by default for desktop and server
  668. _controller = new EmbeddedNetworkController(_node,_controllerDbPath.c_str());
  669. _node->setNetconfMaster((void *)_controller);
  670. // Join existing networks in networks.d
  671. {
  672. std::vector<std::string> networksDotD(OSUtils::listDirectory((_homePath + ZT_PATH_SEPARATOR_S "networks.d").c_str()));
  673. for(std::vector<std::string>::iterator f(networksDotD.begin());f!=networksDotD.end();++f) {
  674. std::size_t dot = f->find_last_of('.');
  675. if ((dot == 16)&&(f->substr(16) == ".conf"))
  676. _node->join(Utils::hexStrToU64(f->substr(0,dot).c_str()),(void *)0,(void *)0);
  677. }
  678. }
  679. // Orbit existing moons in moons.d
  680. {
  681. std::vector<std::string> moonsDotD(OSUtils::listDirectory((_homePath + ZT_PATH_SEPARATOR_S "moons.d").c_str()));
  682. for(std::vector<std::string>::iterator f(moonsDotD.begin());f!=moonsDotD.end();++f) {
  683. std::size_t dot = f->find_last_of('.');
  684. if ((dot == 16)&&(f->substr(16) == ".moon"))
  685. _node->orbit((void *)0,Utils::hexStrToU64(f->substr(0,dot).c_str()),0);
  686. }
  687. }
  688. // Main I/O loop
  689. _nextBackgroundTaskDeadline = 0;
  690. int64_t clockShouldBe = OSUtils::now();
  691. _lastRestart = clockShouldBe;
  692. int64_t lastTapMulticastGroupCheck = 0;
  693. int64_t lastBindRefresh = 0;
  694. int64_t lastUpdateCheck = clockShouldBe;
  695. int64_t lastCleanedPeersDb = 0;
  696. int64_t lastLocalInterfaceAddressCheck = (clockShouldBe - ZT_LOCAL_INTERFACE_CHECK_INTERVAL) + 15000; // do this in 15s to give portmapper time to configure and other things time to settle
  697. for(;;) {
  698. _run_m.lock();
  699. if (!_run) {
  700. _run_m.unlock();
  701. _termReason_m.lock();
  702. _termReason = ONE_NORMAL_TERMINATION;
  703. _termReason_m.unlock();
  704. break;
  705. } else {
  706. _run_m.unlock();
  707. }
  708. const int64_t now = OSUtils::now();
  709. // Attempt to detect sleep/wake events by detecting delay overruns
  710. bool restarted = false;
  711. if ((now > clockShouldBe)&&((now - clockShouldBe) > 10000)) {
  712. _lastRestart = now;
  713. restarted = true;
  714. }
  715. // Check for updates (if enabled)
  716. if ((_updater)&&((now - lastUpdateCheck) > 10000)) {
  717. lastUpdateCheck = now;
  718. if (_updater->check(now) && _updateAutoApply)
  719. _updater->apply();
  720. }
  721. // Refresh bindings in case device's interfaces have changed, and also sync routes to update any shadow routes (e.g. shadow default)
  722. if (((now - lastBindRefresh) >= ZT_BINDER_REFRESH_PERIOD)||(restarted)) {
  723. lastBindRefresh = now;
  724. unsigned int p[3];
  725. unsigned int pc = 0;
  726. for(int i=0;i<3;++i) {
  727. if (_ports[i])
  728. p[pc++] = _ports[i];
  729. }
  730. _binder.refresh(_phy,p,pc,explicitBind,*this);
  731. {
  732. Mutex::Lock _l(_nets_m);
  733. for(std::map<uint64_t,NetworkState>::iterator n(_nets.begin());n!=_nets.end();++n) {
  734. if (n->second.tap)
  735. syncManagedStuff(n->second,false,true);
  736. }
  737. }
  738. }
  739. // Run background task processor in core if it's time to do so
  740. int64_t dl = _nextBackgroundTaskDeadline;
  741. if (dl <= now) {
  742. _node->processBackgroundTasks((void *)0,now,&_nextBackgroundTaskDeadline);
  743. dl = _nextBackgroundTaskDeadline;
  744. }
  745. // Close TCP fallback tunnel if we have direct UDP
  746. if ((_tcpFallbackTunnel)&&((now - _lastDirectReceiveFromGlobal) < (ZT_TCP_FALLBACK_AFTER / 2)))
  747. _phy.close(_tcpFallbackTunnel->sock);
  748. // Sync multicast group memberships
  749. if ((now - lastTapMulticastGroupCheck) >= ZT_TAP_CHECK_MULTICAST_INTERVAL) {
  750. lastTapMulticastGroupCheck = now;
  751. std::vector< std::pair< uint64_t,std::pair< std::vector<MulticastGroup>,std::vector<MulticastGroup> > > > mgChanges;
  752. {
  753. Mutex::Lock _l(_nets_m);
  754. mgChanges.reserve(_nets.size() + 1);
  755. for(std::map<uint64_t,NetworkState>::const_iterator n(_nets.begin());n!=_nets.end();++n) {
  756. if (n->second.tap) {
  757. mgChanges.push_back(std::pair< uint64_t,std::pair< std::vector<MulticastGroup>,std::vector<MulticastGroup> > >(n->first,std::pair< std::vector<MulticastGroup>,std::vector<MulticastGroup> >()));
  758. n->second.tap->scanMulticastGroups(mgChanges.back().second.first,mgChanges.back().second.second);
  759. }
  760. }
  761. }
  762. for(std::vector< std::pair< uint64_t,std::pair< std::vector<MulticastGroup>,std::vector<MulticastGroup> > > >::iterator c(mgChanges.begin());c!=mgChanges.end();++c) {
  763. for(std::vector<MulticastGroup>::iterator m(c->second.first.begin());m!=c->second.first.end();++m)
  764. _node->multicastSubscribe((void *)0,c->first,m->mac().toInt(),m->adi());
  765. for(std::vector<MulticastGroup>::iterator m(c->second.second.begin());m!=c->second.second.end();++m)
  766. _node->multicastUnsubscribe(c->first,m->mac().toInt(),m->adi());
  767. }
  768. }
  769. // Sync information about physical network interfaces
  770. if ((now - lastLocalInterfaceAddressCheck) >= ZT_LOCAL_INTERFACE_CHECK_INTERVAL) {
  771. lastLocalInterfaceAddressCheck = now;
  772. _node->clearLocalInterfaceAddresses();
  773. #ifdef ZT_USE_MINIUPNPC
  774. if (_portMapper) {
  775. std::vector<InetAddress> mappedAddresses(_portMapper->get());
  776. for(std::vector<InetAddress>::const_iterator ext(mappedAddresses.begin());ext!=mappedAddresses.end();++ext)
  777. _node->addLocalInterfaceAddress(reinterpret_cast<const struct sockaddr_storage *>(&(*ext)));
  778. }
  779. #endif
  780. std::vector<InetAddress> boundAddrs(_binder.allBoundLocalInterfaceAddresses());
  781. for(std::vector<InetAddress>::const_iterator i(boundAddrs.begin());i!=boundAddrs.end();++i)
  782. _node->addLocalInterfaceAddress(reinterpret_cast<const struct sockaddr_storage *>(&(*i)));
  783. }
  784. // Clean peers.d periodically
  785. if ((now - lastCleanedPeersDb) >= 3600000) {
  786. lastCleanedPeersDb = now;
  787. OSUtils::cleanDirectory((_homePath + ZT_PATH_SEPARATOR_S "peers.d").c_str(),now - 2592000000LL); // delete older than 30 days
  788. }
  789. const unsigned long delay = (dl > now) ? (unsigned long)(dl - now) : 100;
  790. clockShouldBe = now + (uint64_t)delay;
  791. _phy.poll(delay);
  792. }
  793. } catch (std::exception &e) {
  794. Mutex::Lock _l(_termReason_m);
  795. _termReason = ONE_UNRECOVERABLE_ERROR;
  796. _fatalErrorMessage = std::string("unexpected exception in main thread: ")+e.what();
  797. } catch ( ... ) {
  798. Mutex::Lock _l(_termReason_m);
  799. _termReason = ONE_UNRECOVERABLE_ERROR;
  800. _fatalErrorMessage = "unexpected exception in main thread: unknown exception";
  801. }
  802. try {
  803. Mutex::Lock _l(_tcpConnections_m);
  804. while (!_tcpConnections.empty())
  805. _phy.close((*_tcpConnections.begin())->sock);
  806. } catch ( ... ) {}
  807. {
  808. Mutex::Lock _l(_nets_m);
  809. for(std::map<uint64_t,NetworkState>::iterator n(_nets.begin());n!=_nets.end();++n)
  810. delete n->second.tap;
  811. _nets.clear();
  812. }
  813. delete _updater;
  814. _updater = (SoftwareUpdater *)0;
  815. delete _node;
  816. _node = (Node *)0;
  817. return _termReason;
  818. }
  819. virtual ReasonForTermination reasonForTermination() const
  820. {
  821. Mutex::Lock _l(_termReason_m);
  822. return _termReason;
  823. }
  824. virtual std::string fatalErrorMessage() const
  825. {
  826. Mutex::Lock _l(_termReason_m);
  827. return _fatalErrorMessage;
  828. }
  829. virtual std::string portDeviceName(uint64_t nwid) const
  830. {
  831. Mutex::Lock _l(_nets_m);
  832. std::map<uint64_t,NetworkState>::const_iterator n(_nets.find(nwid));
  833. if ((n != _nets.end())&&(n->second.tap))
  834. return n->second.tap->deviceName();
  835. else return std::string();
  836. }
  837. #ifdef ZT_SDK
  838. virtual void leave(const uint64_t hp)
  839. {
  840. _node->leave(hp, NULL, NULL);
  841. }
  842. virtual void join(const uint64_t hp)
  843. {
  844. _node->join(hp, NULL, NULL);
  845. }
  846. virtual std::string givenHomePath()
  847. {
  848. return _homePath;
  849. }
  850. std::vector<ZT_VirtualNetworkRoute> *getRoutes(uint64_t nwid)
  851. {
  852. Mutex::Lock _l(_nets_m);
  853. NetworkState &n = _nets[nwid];
  854. std::vector<ZT_VirtualNetworkRoute> *routes = new std::vector<ZT_VirtualNetworkRoute>();
  855. for(int i=0; i<ZT_MAX_NETWORK_ROUTES; i++) {
  856. routes->push_back(n.config.routes[i]);
  857. }
  858. return routes;
  859. }
  860. virtual Node *getNode()
  861. {
  862. return _node;
  863. }
  864. virtual void removeNets()
  865. {
  866. Mutex::Lock _l(_nets_m);
  867. std::map<uint64_t,NetworkState>::iterator i;
  868. for(i = _nets.begin(); i != _nets.end(); i++)
  869. delete i->second.tap;
  870. }
  871. #endif // ZT_SDK
  872. virtual void terminate()
  873. {
  874. _run_m.lock();
  875. _run = false;
  876. _run_m.unlock();
  877. _phy.whack();
  878. }
  879. virtual bool getNetworkSettings(const uint64_t nwid,NetworkSettings &settings) const
  880. {
  881. Mutex::Lock _l(_nets_m);
  882. std::map<uint64_t,NetworkState>::const_iterator n(_nets.find(nwid));
  883. if (n == _nets.end())
  884. return false;
  885. settings = n->second.settings;
  886. return true;
  887. }
  888. virtual bool setNetworkSettings(const uint64_t nwid,const NetworkSettings &settings)
  889. {
  890. Mutex::Lock _l(_nets_m);
  891. std::map<uint64_t,NetworkState>::iterator n(_nets.find(nwid));
  892. if (n == _nets.end())
  893. return false;
  894. n->second.settings = settings;
  895. char nlcpath[4096];
  896. OSUtils::ztsnprintf(nlcpath,sizeof(nlcpath),"%s" ZT_PATH_SEPARATOR_S "%.16llx.local.conf",_networksPath.c_str(),nwid);
  897. FILE *out = fopen(nlcpath,"w");
  898. if (out) {
  899. fprintf(out,"allowManaged=%d\n",(int)n->second.settings.allowManaged);
  900. fprintf(out,"allowGlobal=%d\n",(int)n->second.settings.allowGlobal);
  901. fprintf(out,"allowDefault=%d\n",(int)n->second.settings.allowDefault);
  902. fclose(out);
  903. }
  904. if (n->second.tap)
  905. syncManagedStuff(n->second,true,true);
  906. return true;
  907. }
  908. // =========================================================================
  909. // Internal implementation methods for control plane, route setup, etc.
  910. // =========================================================================
  911. inline unsigned int handleControlPlaneHttpRequest(
  912. const InetAddress &fromAddress,
  913. unsigned int httpMethod,
  914. const std::string &path,
  915. const std::map<std::string,std::string> &headers,
  916. const std::string &body,
  917. std::string &responseBody,
  918. std::string &responseContentType)
  919. {
  920. char tmp[256];
  921. unsigned int scode = 404;
  922. json res;
  923. std::vector<std::string> ps(OSUtils::split(path.c_str(),"/","",""));
  924. std::map<std::string,std::string> urlArgs;
  925. /* Note: this is kind of restricted in what it'll take. It does not support
  926. * URL encoding, and /'s in URL args will screw it up. But the only URL args
  927. * it really uses in ?jsonp=funcionName, and otherwise it just takes simple
  928. * paths to simply-named resources. */
  929. if (ps.size() > 0) {
  930. std::size_t qpos = ps[ps.size() - 1].find('?');
  931. if (qpos != std::string::npos) {
  932. std::string args(ps[ps.size() - 1].substr(qpos + 1));
  933. ps[ps.size() - 1] = ps[ps.size() - 1].substr(0,qpos);
  934. std::vector<std::string> asplit(OSUtils::split(args.c_str(),"&","",""));
  935. for(std::vector<std::string>::iterator a(asplit.begin());a!=asplit.end();++a) {
  936. std::size_t eqpos = a->find('=');
  937. if (eqpos == std::string::npos)
  938. urlArgs[*a] = "";
  939. else urlArgs[a->substr(0,eqpos)] = a->substr(eqpos + 1);
  940. }
  941. }
  942. } else {
  943. return 404;
  944. }
  945. bool isAuth = false;
  946. {
  947. std::map<std::string,std::string>::const_iterator ah(headers.find("x-zt1-auth"));
  948. if ((ah != headers.end())&&(_authToken == ah->second)) {
  949. isAuth = true;
  950. } else {
  951. ah = urlArgs.find("auth");
  952. if ((ah != urlArgs.end())&&(_authToken == ah->second))
  953. isAuth = true;
  954. }
  955. }
  956. #ifdef __SYNOLOGY__
  957. // Authenticate via Synology's built-in cgi script
  958. if (!isAuth) {
  959. /*
  960. fprintf(stderr, "path = %s\n", path.c_str());
  961. fprintf(stderr, "headers.size=%d\n", headers.size());
  962. std::map<std::string, std::string>::const_iterator it(headers.begin());
  963. while(it != headers.end()) {
  964. fprintf(stderr,"header[%s] = %s\n", (it->first).c_str(), (it->second).c_str());
  965. it++;
  966. }
  967. */
  968. // parse out url args
  969. int synotoken_pos = path.find("SynoToken");
  970. int argpos = path.find("?");
  971. if(synotoken_pos != std::string::npos && argpos != std::string::npos) {
  972. std::string cookie = path.substr(argpos+1, synotoken_pos-(argpos+1));
  973. std::string synotoken = path.substr(synotoken_pos);
  974. std::string cookie_val = cookie.substr(cookie.find("=")+1);
  975. std::string synotoken_val = synotoken.substr(synotoken.find("=")+1);
  976. // Set necessary env for auth script
  977. std::map<std::string,std::string>::const_iterator ah2(headers.find("x-forwarded-for"));
  978. setenv("HTTP_COOKIE", cookie_val.c_str(), true);
  979. setenv("HTTP_X_SYNO_TOKEN", synotoken_val.c_str(), true);
  980. setenv("REMOTE_ADDR", ah2->second.c_str(),true);
  981. //fprintf(stderr, "HTTP_COOKIE: %s\n",std::getenv ("HTTP_COOKIE"));
  982. //fprintf(stderr, "HTTP_X_SYNO_TOKEN: %s\n",std::getenv ("HTTP_X_SYNO_TOKEN"));
  983. //fprintf(stderr, "REMOTE_ADDR: %s\n",std::getenv ("REMOTE_ADDR"));
  984. // check synology web auth
  985. char user[256], buf[1024];
  986. FILE *fp = NULL;
  987. bzero(user, 256);
  988. fp = popen("/usr/syno/synoman/webman/modules/authenticate.cgi", "r");
  989. if(!fp)
  990. isAuth = false;
  991. else {
  992. bzero(buf, sizeof(buf));
  993. fread(buf, 1024, 1, fp);
  994. if(strlen(buf) > 0) {
  995. snprintf(user, 256, "%s", buf);
  996. isAuth = true;
  997. }
  998. }
  999. pclose(fp);
  1000. }
  1001. }
  1002. #endif
  1003. if (httpMethod == HTTP_GET) {
  1004. if (isAuth) {
  1005. if (ps[0] == "status") {
  1006. ZT_NodeStatus status;
  1007. _node->status(&status);
  1008. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.10llx",status.address);
  1009. res["address"] = tmp;
  1010. res["publicIdentity"] = status.publicIdentity;
  1011. res["online"] = (bool)(status.online != 0);
  1012. res["tcpFallbackActive"] = (_tcpFallbackTunnel != (TcpConnection *)0);
  1013. res["versionMajor"] = ZEROTIER_ONE_VERSION_MAJOR;
  1014. res["versionMinor"] = ZEROTIER_ONE_VERSION_MINOR;
  1015. res["versionRev"] = ZEROTIER_ONE_VERSION_REVISION;
  1016. res["versionBuild"] = ZEROTIER_ONE_VERSION_BUILD;
  1017. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%d.%d.%d",ZEROTIER_ONE_VERSION_MAJOR,ZEROTIER_ONE_VERSION_MINOR,ZEROTIER_ONE_VERSION_REVISION);
  1018. res["version"] = tmp;
  1019. res["clock"] = OSUtils::now();
  1020. {
  1021. Mutex::Lock _l(_localConfig_m);
  1022. res["config"] = _localConfig;
  1023. }
  1024. json &settings = res["config"]["settings"];
  1025. settings["primaryPort"] = OSUtils::jsonInt(settings["primaryPort"],(uint64_t)_primaryPort) & 0xffff;
  1026. settings["allowTcpFallbackRelay"] = OSUtils::jsonBool(settings["allowTcpFallbackRelay"],_allowTcpFallbackRelay);
  1027. #ifdef ZT_USE_MINIUPNPC
  1028. settings["portMappingEnabled"] = OSUtils::jsonBool(settings["portMappingEnabled"],true);
  1029. #else
  1030. settings["portMappingEnabled"] = false; // not supported in build
  1031. #endif
  1032. #ifndef ZT_SDK
  1033. settings["softwareUpdate"] = OSUtils::jsonString(settings["softwareUpdate"],ZT_SOFTWARE_UPDATE_DEFAULT);
  1034. settings["softwareUpdateChannel"] = OSUtils::jsonString(settings["softwareUpdateChannel"],ZT_SOFTWARE_UPDATE_DEFAULT_CHANNEL);
  1035. #endif
  1036. const World planet(_node->planet());
  1037. res["planetWorldId"] = planet.id();
  1038. res["planetWorldTimestamp"] = planet.timestamp();
  1039. scode = 200;
  1040. } else if (ps[0] == "moon") {
  1041. std::vector<World> moons(_node->moons());
  1042. if (ps.size() == 1) {
  1043. // Return [array] of all moons
  1044. res = json::array();
  1045. for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
  1046. json mj;
  1047. _moonToJson(mj,*m);
  1048. res.push_back(mj);
  1049. }
  1050. scode = 200;
  1051. } else {
  1052. // Return a single moon by ID
  1053. const uint64_t id = Utils::hexStrToU64(ps[1].c_str());
  1054. for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
  1055. if (m->id() == id) {
  1056. _moonToJson(res,*m);
  1057. scode = 200;
  1058. break;
  1059. }
  1060. }
  1061. }
  1062. } else if (ps[0] == "network") {
  1063. ZT_VirtualNetworkList *nws = _node->networks();
  1064. if (nws) {
  1065. if (ps.size() == 1) {
  1066. // Return [array] of all networks
  1067. res = nlohmann::json::array();
  1068. for(unsigned long i=0;i<nws->networkCount;++i) {
  1069. OneService::NetworkSettings localSettings;
  1070. getNetworkSettings(nws->networks[i].nwid,localSettings);
  1071. nlohmann::json nj;
  1072. _networkToJson(nj,&(nws->networks[i]),portDeviceName(nws->networks[i].nwid),localSettings);
  1073. res.push_back(nj);
  1074. }
  1075. scode = 200;
  1076. } else if (ps.size() == 2) {
  1077. // Return a single network by ID or 404 if not found
  1078. const uint64_t wantnw = Utils::hexStrToU64(ps[1].c_str());
  1079. for(unsigned long i=0;i<nws->networkCount;++i) {
  1080. if (nws->networks[i].nwid == wantnw) {
  1081. OneService::NetworkSettings localSettings;
  1082. getNetworkSettings(nws->networks[i].nwid,localSettings);
  1083. _networkToJson(res,&(nws->networks[i]),portDeviceName(nws->networks[i].nwid),localSettings);
  1084. scode = 200;
  1085. break;
  1086. }
  1087. }
  1088. } else scode = 404;
  1089. _node->freeQueryResult((void *)nws);
  1090. } else scode = 500;
  1091. } else if (ps[0] == "peer") {
  1092. ZT_PeerList *pl = _node->peers();
  1093. if (pl) {
  1094. if (ps.size() == 1) {
  1095. // Return [array] of all peers
  1096. res = nlohmann::json::array();
  1097. for(unsigned long i=0;i<pl->peerCount;++i) {
  1098. nlohmann::json pj;
  1099. _peerToJson(pj,&(pl->peers[i]));
  1100. res.push_back(pj);
  1101. }
  1102. scode = 200;
  1103. } else if (ps.size() == 2) {
  1104. // Return a single peer by ID or 404 if not found
  1105. uint64_t wantp = Utils::hexStrToU64(ps[1].c_str());
  1106. for(unsigned long i=0;i<pl->peerCount;++i) {
  1107. if (pl->peers[i].address == wantp) {
  1108. _peerToJson(res,&(pl->peers[i]));
  1109. scode = 200;
  1110. break;
  1111. }
  1112. }
  1113. } else scode = 404;
  1114. _node->freeQueryResult((void *)pl);
  1115. } else scode = 500;
  1116. } else {
  1117. if (_controller) {
  1118. scode = _controller->handleControlPlaneHttpGET(std::vector<std::string>(ps.begin()+1,ps.end()),urlArgs,headers,body,responseBody,responseContentType);
  1119. } else scode = 404;
  1120. }
  1121. } else scode = 401; // isAuth == false
  1122. } else if ((httpMethod == HTTP_POST)||(httpMethod == HTTP_PUT)) {
  1123. if (isAuth) {
  1124. if (ps[0] == "moon") {
  1125. if (ps.size() == 2) {
  1126. uint64_t seed = 0;
  1127. try {
  1128. json j(OSUtils::jsonParse(body));
  1129. if (j.is_object()) {
  1130. seed = Utils::hexStrToU64(OSUtils::jsonString(j["seed"],"0").c_str());
  1131. }
  1132. } catch ( ... ) {
  1133. // discard invalid JSON
  1134. }
  1135. std::vector<World> moons(_node->moons());
  1136. const uint64_t id = Utils::hexStrToU64(ps[1].c_str());
  1137. for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
  1138. if (m->id() == id) {
  1139. _moonToJson(res,*m);
  1140. scode = 200;
  1141. break;
  1142. }
  1143. }
  1144. if ((scode != 200)&&(seed != 0)) {
  1145. char tmp[64];
  1146. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.16llx",id);
  1147. res["id"] = tmp;
  1148. res["roots"] = json::array();
  1149. res["timestamp"] = 0;
  1150. res["signature"] = json();
  1151. res["updatesMustBeSignedBy"] = json();
  1152. res["waiting"] = true;
  1153. _node->orbit((void *)0,id,seed);
  1154. scode = 200;
  1155. }
  1156. } else scode = 404;
  1157. } else if (ps[0] == "network") {
  1158. if (ps.size() == 2) {
  1159. uint64_t wantnw = Utils::hexStrToU64(ps[1].c_str());
  1160. _node->join(wantnw,(void *)0,(void *)0); // does nothing if we are a member
  1161. ZT_VirtualNetworkList *nws = _node->networks();
  1162. if (nws) {
  1163. for(unsigned long i=0;i<nws->networkCount;++i) {
  1164. if (nws->networks[i].nwid == wantnw) {
  1165. OneService::NetworkSettings localSettings;
  1166. getNetworkSettings(nws->networks[i].nwid,localSettings);
  1167. try {
  1168. json j(OSUtils::jsonParse(body));
  1169. if (j.is_object()) {
  1170. json &allowManaged = j["allowManaged"];
  1171. if (allowManaged.is_boolean()) localSettings.allowManaged = (bool)allowManaged;
  1172. json &allowGlobal = j["allowGlobal"];
  1173. if (allowGlobal.is_boolean()) localSettings.allowGlobal = (bool)allowGlobal;
  1174. json &allowDefault = j["allowDefault"];
  1175. if (allowDefault.is_boolean()) localSettings.allowDefault = (bool)allowDefault;
  1176. }
  1177. } catch ( ... ) {
  1178. // discard invalid JSON
  1179. }
  1180. setNetworkSettings(nws->networks[i].nwid,localSettings);
  1181. _networkToJson(res,&(nws->networks[i]),portDeviceName(nws->networks[i].nwid),localSettings);
  1182. scode = 200;
  1183. break;
  1184. }
  1185. }
  1186. _node->freeQueryResult((void *)nws);
  1187. } else scode = 500;
  1188. } else scode = 404;
  1189. } else {
  1190. if (_controller)
  1191. scode = _controller->handleControlPlaneHttpPOST(std::vector<std::string>(ps.begin()+1,ps.end()),urlArgs,headers,body,responseBody,responseContentType);
  1192. else scode = 404;
  1193. }
  1194. } else scode = 401; // isAuth == false
  1195. } else if (httpMethod == HTTP_DELETE) {
  1196. if (isAuth) {
  1197. if (ps[0] == "moon") {
  1198. if (ps.size() == 2) {
  1199. _node->deorbit((void *)0,Utils::hexStrToU64(ps[1].c_str()));
  1200. res["result"] = true;
  1201. scode = 200;
  1202. } // else 404
  1203. } else if (ps[0] == "network") {
  1204. ZT_VirtualNetworkList *nws = _node->networks();
  1205. if (nws) {
  1206. if (ps.size() == 2) {
  1207. uint64_t wantnw = Utils::hexStrToU64(ps[1].c_str());
  1208. for(unsigned long i=0;i<nws->networkCount;++i) {
  1209. if (nws->networks[i].nwid == wantnw) {
  1210. _node->leave(wantnw,(void **)0,(void *)0);
  1211. res["result"] = true;
  1212. scode = 200;
  1213. break;
  1214. }
  1215. }
  1216. } // else 404
  1217. _node->freeQueryResult((void *)nws);
  1218. } else scode = 500;
  1219. } else {
  1220. if (_controller)
  1221. scode = _controller->handleControlPlaneHttpDELETE(std::vector<std::string>(ps.begin()+1,ps.end()),urlArgs,headers,body,responseBody,responseContentType);
  1222. else scode = 404;
  1223. }
  1224. } else scode = 401; // isAuth = false
  1225. } else {
  1226. scode = 400;
  1227. }
  1228. if (responseBody.length() == 0) {
  1229. if ((res.is_object())||(res.is_array()))
  1230. responseBody = OSUtils::jsonDump(res);
  1231. else responseBody = "{}";
  1232. responseContentType = "application/json";
  1233. }
  1234. // Wrap result in jsonp function call if the user included a jsonp= url argument.
  1235. // Also double-check isAuth since forbidding this without auth feels safer.
  1236. std::map<std::string,std::string>::const_iterator jsonp(urlArgs.find("jsonp"));
  1237. if ((isAuth)&&(jsonp != urlArgs.end())&&(responseContentType == "application/json")) {
  1238. if (responseBody.length() > 0)
  1239. responseBody = jsonp->second + "(" + responseBody + ");";
  1240. else responseBody = jsonp->second + "(null);";
  1241. responseContentType = "application/javascript";
  1242. }
  1243. return scode;
  1244. }
  1245. // Must be called after _localConfig is read or modified
  1246. void applyLocalConfig()
  1247. {
  1248. Mutex::Lock _l(_localConfig_m);
  1249. json lc(_localConfig);
  1250. _v4Hints.clear();
  1251. _v6Hints.clear();
  1252. _v4Blacklists.clear();
  1253. _v6Blacklists.clear();
  1254. json &virt = lc["virtual"];
  1255. if (virt.is_object()) {
  1256. for(json::iterator v(virt.begin());v!=virt.end();++v) {
  1257. const std::string nstr = v.key();
  1258. if ((nstr.length() == ZT_ADDRESS_LENGTH_HEX)&&(v.value().is_object())) {
  1259. const Address ztaddr(Utils::hexStrToU64(nstr.c_str()));
  1260. if (ztaddr) {
  1261. const uint64_t ztaddr2 = ztaddr.toInt();
  1262. std::vector<InetAddress> &v4h = _v4Hints[ztaddr2];
  1263. std::vector<InetAddress> &v6h = _v6Hints[ztaddr2];
  1264. std::vector<InetAddress> &v4b = _v4Blacklists[ztaddr2];
  1265. std::vector<InetAddress> &v6b = _v6Blacklists[ztaddr2];
  1266. json &tryAddrs = v.value()["try"];
  1267. if (tryAddrs.is_array()) {
  1268. for(unsigned long i=0;i<tryAddrs.size();++i) {
  1269. const InetAddress ip(OSUtils::jsonString(tryAddrs[i],"").c_str());
  1270. if (ip.ss_family == AF_INET)
  1271. v4h.push_back(ip);
  1272. else if (ip.ss_family == AF_INET6)
  1273. v6h.push_back(ip);
  1274. }
  1275. }
  1276. json &blAddrs = v.value()["blacklist"];
  1277. if (blAddrs.is_array()) {
  1278. for(unsigned long i=0;i<blAddrs.size();++i) {
  1279. const InetAddress ip(OSUtils::jsonString(blAddrs[i],"").c_str());
  1280. if (ip.ss_family == AF_INET)
  1281. v4b.push_back(ip);
  1282. else if (ip.ss_family == AF_INET6)
  1283. v6b.push_back(ip);
  1284. }
  1285. }
  1286. if (v4h.empty()) _v4Hints.erase(ztaddr2);
  1287. if (v6h.empty()) _v6Hints.erase(ztaddr2);
  1288. if (v4b.empty()) _v4Blacklists.erase(ztaddr2);
  1289. if (v6b.empty()) _v6Blacklists.erase(ztaddr2);
  1290. }
  1291. }
  1292. }
  1293. }
  1294. _globalV4Blacklist.clear();
  1295. _globalV6Blacklist.clear();
  1296. json &physical = lc["physical"];
  1297. if (physical.is_object()) {
  1298. for(json::iterator phy(physical.begin());phy!=physical.end();++phy) {
  1299. const InetAddress net(OSUtils::jsonString(phy.key(),"").c_str());
  1300. if ((net)&&(net.netmaskBits() > 0)) {
  1301. if (phy.value().is_object()) {
  1302. if (OSUtils::jsonBool(phy.value()["blacklist"],false)) {
  1303. if (net.ss_family == AF_INET)
  1304. _globalV4Blacklist.push_back(net);
  1305. else if (net.ss_family == AF_INET6)
  1306. _globalV6Blacklist.push_back(net);
  1307. }
  1308. }
  1309. }
  1310. }
  1311. }
  1312. _allowManagementFrom.clear();
  1313. _interfacePrefixBlacklist.clear();
  1314. json &settings = lc["settings"];
  1315. _primaryPort = (unsigned int)OSUtils::jsonInt(settings["primaryPort"],(uint64_t)_primaryPort) & 0xffff;
  1316. _allowTcpFallbackRelay = OSUtils::jsonBool(settings["allowTcpFallbackRelay"],true);
  1317. _portMappingEnabled = OSUtils::jsonBool(settings["portMappingEnabled"],true);
  1318. #ifndef ZT_SDK
  1319. const std::string up(OSUtils::jsonString(settings["softwareUpdate"],ZT_SOFTWARE_UPDATE_DEFAULT));
  1320. const bool udist = OSUtils::jsonBool(settings["softwareUpdateDist"],false);
  1321. if (((up == "apply")||(up == "download"))||(udist)) {
  1322. if (!_updater)
  1323. _updater = new SoftwareUpdater(*_node,_homePath);
  1324. _updateAutoApply = (up == "apply");
  1325. _updater->setUpdateDistribution(udist);
  1326. _updater->setChannel(OSUtils::jsonString(settings["softwareUpdateChannel"],ZT_SOFTWARE_UPDATE_DEFAULT_CHANNEL));
  1327. } else {
  1328. delete _updater;
  1329. _updater = (SoftwareUpdater *)0;
  1330. _updateAutoApply = false;
  1331. }
  1332. #endif
  1333. json &ignoreIfs = settings["interfacePrefixBlacklist"];
  1334. if (ignoreIfs.is_array()) {
  1335. for(unsigned long i=0;i<ignoreIfs.size();++i) {
  1336. const std::string tmp(OSUtils::jsonString(ignoreIfs[i],""));
  1337. if (tmp.length() > 0)
  1338. _interfacePrefixBlacklist.push_back(tmp);
  1339. }
  1340. }
  1341. json &amf = settings["allowManagementFrom"];
  1342. if (amf.is_array()) {
  1343. for(unsigned long i=0;i<amf.size();++i) {
  1344. const InetAddress nw(OSUtils::jsonString(amf[i],"").c_str());
  1345. if (nw)
  1346. _allowManagementFrom.push_back(nw);
  1347. }
  1348. }
  1349. }
  1350. // Checks if a managed IP or route target is allowed
  1351. bool checkIfManagedIsAllowed(const NetworkState &n,const InetAddress &target)
  1352. {
  1353. if (!n.settings.allowManaged)
  1354. return false;
  1355. if (n.settings.allowManagedWhitelist.size() > 0) {
  1356. bool allowed = false;
  1357. for (InetAddress addr : n.settings.allowManagedWhitelist) {
  1358. if (addr.containsAddress(target) && addr.netmaskBits() <= target.netmaskBits()) {
  1359. allowed = true;
  1360. break;
  1361. }
  1362. }
  1363. if (!allowed) return false;
  1364. }
  1365. if (target.isDefaultRoute())
  1366. return n.settings.allowDefault;
  1367. switch(target.ipScope()) {
  1368. case InetAddress::IP_SCOPE_NONE:
  1369. case InetAddress::IP_SCOPE_MULTICAST:
  1370. case InetAddress::IP_SCOPE_LOOPBACK:
  1371. case InetAddress::IP_SCOPE_LINK_LOCAL:
  1372. return false;
  1373. case InetAddress::IP_SCOPE_GLOBAL:
  1374. return n.settings.allowGlobal;
  1375. default:
  1376. return true;
  1377. }
  1378. }
  1379. // Match only an IP from a vector of IPs -- used in syncManagedStuff()
  1380. bool matchIpOnly(const std::vector<InetAddress> &ips,const InetAddress &ip) const
  1381. {
  1382. for(std::vector<InetAddress>::const_iterator i(ips.begin());i!=ips.end();++i) {
  1383. if (i->ipsEqual(ip))
  1384. return true;
  1385. }
  1386. return false;
  1387. }
  1388. // Apply or update managed IPs for a configured network (be sure n.tap exists)
  1389. void syncManagedStuff(NetworkState &n,bool syncIps,bool syncRoutes)
  1390. {
  1391. char ipbuf[64];
  1392. // assumes _nets_m is locked
  1393. if (syncIps) {
  1394. std::vector<InetAddress> newManagedIps;
  1395. newManagedIps.reserve(n.config.assignedAddressCount);
  1396. for(unsigned int i=0;i<n.config.assignedAddressCount;++i) {
  1397. const InetAddress *ii = reinterpret_cast<const InetAddress *>(&(n.config.assignedAddresses[i]));
  1398. if (checkIfManagedIsAllowed(n,*ii))
  1399. newManagedIps.push_back(*ii);
  1400. }
  1401. std::sort(newManagedIps.begin(),newManagedIps.end());
  1402. newManagedIps.erase(std::unique(newManagedIps.begin(),newManagedIps.end()),newManagedIps.end());
  1403. for(std::vector<InetAddress>::iterator ip(n.managedIps.begin());ip!=n.managedIps.end();++ip) {
  1404. if (std::find(newManagedIps.begin(),newManagedIps.end(),*ip) == newManagedIps.end()) {
  1405. if (!n.tap->removeIp(*ip))
  1406. fprintf(stderr,"ERROR: unable to remove ip address %s" ZT_EOL_S, ip->toString(ipbuf));
  1407. }
  1408. }
  1409. #ifdef __SYNOLOGY__
  1410. if (!n.tap->addIpSyn(newManagedIps))
  1411. fprintf(stderr,"ERROR: unable to add ip addresses to ifcfg" ZT_EOL_S);
  1412. #else
  1413. for(std::vector<InetAddress>::iterator ip(newManagedIps.begin());ip!=newManagedIps.end();++ip) {
  1414. if (std::find(n.managedIps.begin(),n.managedIps.end(),*ip) == n.managedIps.end()) {
  1415. if (!n.tap->addIp(*ip))
  1416. fprintf(stderr,"ERROR: unable to add ip address %s" ZT_EOL_S, ip->toString(ipbuf));
  1417. }
  1418. }
  1419. #endif
  1420. n.managedIps.swap(newManagedIps);
  1421. }
  1422. if (syncRoutes) {
  1423. char tapdev[64];
  1424. #if defined(__WINDOWS__) && !defined(ZT_SDK)
  1425. OSUtils::ztsnprintf(tapdev,sizeof(tapdev),"%.16llx",(unsigned long long)n.tap->luid().Value);
  1426. #else
  1427. Utils::scopy(tapdev,sizeof(tapdev),n.tap->deviceName().c_str());
  1428. #endif
  1429. std::vector<InetAddress> myIps(n.tap->ips());
  1430. // Nuke applied routes that are no longer in n.config.routes[] and/or are not allowed
  1431. for(std::list< SharedPtr<ManagedRoute> >::iterator mr(n.managedRoutes.begin());mr!=n.managedRoutes.end();) {
  1432. bool haveRoute = false;
  1433. if ( (checkIfManagedIsAllowed(n,(*mr)->target())) && (((*mr)->via().ss_family != (*mr)->target().ss_family)||(!matchIpOnly(myIps,(*mr)->via()))) ) {
  1434. for(unsigned int i=0;i<n.config.routeCount;++i) {
  1435. const InetAddress *const target = reinterpret_cast<const InetAddress *>(&(n.config.routes[i].target));
  1436. const InetAddress *const via = reinterpret_cast<const InetAddress *>(&(n.config.routes[i].via));
  1437. if ( ((*mr)->target() == *target) && ( ((via->ss_family == target->ss_family)&&((*mr)->via().ipsEqual(*via))) || (strcmp(tapdev,(*mr)->device())==0) ) ) {
  1438. haveRoute = true;
  1439. break;
  1440. }
  1441. }
  1442. }
  1443. if (haveRoute) {
  1444. ++mr;
  1445. } else {
  1446. n.managedRoutes.erase(mr++);
  1447. }
  1448. }
  1449. // Apply routes in n.config.routes[] that we haven't applied yet, and sync those we have in case shadow routes need to change
  1450. for(unsigned int i=0;i<n.config.routeCount;++i) {
  1451. const InetAddress *const target = reinterpret_cast<const InetAddress *>(&(n.config.routes[i].target));
  1452. const InetAddress *const via = reinterpret_cast<const InetAddress *>(&(n.config.routes[i].via));
  1453. if ( (!checkIfManagedIsAllowed(n,*target)) || ((via->ss_family == target->ss_family)&&(matchIpOnly(myIps,*via))) )
  1454. continue;
  1455. bool haveRoute = false;
  1456. // Ignore routes implied by local managed IPs since adding the IP adds the route
  1457. for(std::vector<InetAddress>::iterator ip(n.managedIps.begin());ip!=n.managedIps.end();++ip) {
  1458. if ((target->netmaskBits() == ip->netmaskBits())&&(target->containsAddress(*ip))) {
  1459. haveRoute = true;
  1460. break;
  1461. }
  1462. }
  1463. if (haveRoute)
  1464. continue;
  1465. // If we've already applied this route, just sync it and continue
  1466. for(std::list< SharedPtr<ManagedRoute> >::iterator mr(n.managedRoutes.begin());mr!=n.managedRoutes.end();++mr) {
  1467. if ( ((*mr)->target() == *target) && ( ((via->ss_family == target->ss_family)&&((*mr)->via().ipsEqual(*via))) || (tapdev == (*mr)->device()) ) ) {
  1468. haveRoute = true;
  1469. (*mr)->sync();
  1470. break;
  1471. }
  1472. }
  1473. if (haveRoute)
  1474. continue;
  1475. // Add and apply new routes
  1476. n.managedRoutes.push_back(SharedPtr<ManagedRoute>(new ManagedRoute(*target,*via,tapdev)));
  1477. if (!n.managedRoutes.back()->sync())
  1478. n.managedRoutes.pop_back();
  1479. }
  1480. }
  1481. }
  1482. // =========================================================================
  1483. // Handlers for Node and Phy<> callbacks
  1484. // =========================================================================
  1485. inline void phyOnDatagram(PhySocket *sock,void **uptr,const struct sockaddr *localAddr,const struct sockaddr *from,void *data,unsigned long len)
  1486. {
  1487. if ((len >= 16)&&(reinterpret_cast<const InetAddress *>(from)->ipScope() == InetAddress::IP_SCOPE_GLOBAL))
  1488. _lastDirectReceiveFromGlobal = OSUtils::now();
  1489. const ZT_ResultCode rc = _node->processWirePacket(
  1490. (void *)0,
  1491. OSUtils::now(),
  1492. reinterpret_cast<int64_t>(sock),
  1493. reinterpret_cast<const struct sockaddr_storage *>(from), // Phy<> uses sockaddr_storage, so it'll always be that big
  1494. data,
  1495. len,
  1496. &_nextBackgroundTaskDeadline);
  1497. if (ZT_ResultCode_isFatal(rc)) {
  1498. char tmp[256];
  1499. OSUtils::ztsnprintf(tmp,sizeof(tmp),"fatal error code from processWirePacket: %d",(int)rc);
  1500. Mutex::Lock _l(_termReason_m);
  1501. _termReason = ONE_UNRECOVERABLE_ERROR;
  1502. _fatalErrorMessage = tmp;
  1503. this->terminate();
  1504. }
  1505. }
  1506. inline void phyOnTcpConnect(PhySocket *sock,void **uptr,bool success)
  1507. {
  1508. if (!success) {
  1509. phyOnTcpClose(sock,uptr);
  1510. return;
  1511. }
  1512. TcpConnection *const tc = reinterpret_cast<TcpConnection *>(*uptr);
  1513. if (!tc) { // sanity check
  1514. _phy.close(sock,true);
  1515. return;
  1516. }
  1517. tc->sock = sock;
  1518. if (tc->type == TcpConnection::TCP_TUNNEL_OUTGOING) {
  1519. if (_tcpFallbackTunnel)
  1520. _phy.close(_tcpFallbackTunnel->sock);
  1521. _tcpFallbackTunnel = tc;
  1522. _phy.streamSend(sock,ZT_TCP_TUNNEL_HELLO,sizeof(ZT_TCP_TUNNEL_HELLO));
  1523. } else {
  1524. _phy.close(sock,true);
  1525. }
  1526. }
  1527. inline void phyOnTcpAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN,const struct sockaddr *from)
  1528. {
  1529. if (!from) {
  1530. _phy.close(sockN,false);
  1531. return;
  1532. } else {
  1533. TcpConnection *tc = new TcpConnection();
  1534. {
  1535. Mutex::Lock _l(_tcpConnections_m);
  1536. _tcpConnections.push_back(tc);
  1537. }
  1538. tc->type = TcpConnection::TCP_UNCATEGORIZED_INCOMING;
  1539. tc->parent = this;
  1540. tc->sock = sockN;
  1541. tc->remoteAddr = from;
  1542. tc->lastReceive = OSUtils::now();
  1543. http_parser_init(&(tc->parser),HTTP_REQUEST);
  1544. tc->parser.data = (void *)tc;
  1545. tc->messageSize = 0;
  1546. *uptrN = (void *)tc;
  1547. }
  1548. }
  1549. void phyOnTcpClose(PhySocket *sock,void **uptr)
  1550. {
  1551. TcpConnection *tc = (TcpConnection *)*uptr;
  1552. if (tc) {
  1553. if (tc == _tcpFallbackTunnel) {
  1554. _tcpFallbackTunnel = (TcpConnection *)0;
  1555. }
  1556. {
  1557. Mutex::Lock _l(_tcpConnections_m);
  1558. _tcpConnections.erase(std::remove(_tcpConnections.begin(),_tcpConnections.end(),tc),_tcpConnections.end());
  1559. }
  1560. delete tc;
  1561. }
  1562. }
  1563. void phyOnTcpData(PhySocket *sock,void **uptr,void *data,unsigned long len)
  1564. {
  1565. try {
  1566. if (!len) return; // sanity check, should never happen
  1567. TcpConnection *tc = reinterpret_cast<TcpConnection *>(*uptr);
  1568. tc->lastReceive = OSUtils::now();
  1569. switch(tc->type) {
  1570. case TcpConnection::TCP_UNCATEGORIZED_INCOMING:
  1571. switch(reinterpret_cast<uint8_t *>(data)[0]) {
  1572. // HTTP: GET, PUT, POST, HEAD, DELETE
  1573. case 'G':
  1574. case 'P':
  1575. case 'D':
  1576. case 'H': {
  1577. // This is only allowed from IPs permitted to access the management
  1578. // backplane, which is just 127.0.0.1/::1 unless otherwise configured.
  1579. bool allow;
  1580. {
  1581. Mutex::Lock _l(_localConfig_m);
  1582. if (_allowManagementFrom.size() == 0) {
  1583. allow = (tc->remoteAddr.ipScope() == InetAddress::IP_SCOPE_LOOPBACK);
  1584. } else {
  1585. allow = false;
  1586. for(std::vector<InetAddress>::const_iterator i(_allowManagementFrom.begin());i!=_allowManagementFrom.end();++i) {
  1587. if (i->containsAddress(tc->remoteAddr)) {
  1588. allow = true;
  1589. break;
  1590. }
  1591. }
  1592. }
  1593. }
  1594. if (allow) {
  1595. tc->type = TcpConnection::TCP_HTTP_INCOMING;
  1596. phyOnTcpData(sock,uptr,data,len);
  1597. } else {
  1598. _phy.close(sock);
  1599. }
  1600. } break;
  1601. // Drop unknown protocols
  1602. default:
  1603. _phy.close(sock);
  1604. break;
  1605. }
  1606. return;
  1607. case TcpConnection::TCP_HTTP_INCOMING:
  1608. case TcpConnection::TCP_HTTP_OUTGOING:
  1609. http_parser_execute(&(tc->parser),&HTTP_PARSER_SETTINGS,(const char *)data,len);
  1610. if ((tc->parser.upgrade)||(tc->parser.http_errno != HPE_OK))
  1611. _phy.close(sock);
  1612. return;
  1613. case TcpConnection::TCP_TUNNEL_OUTGOING:
  1614. tc->readq.append((const char *)data,len);
  1615. while (tc->readq.length() >= 5) {
  1616. const char *data = tc->readq.data();
  1617. const unsigned long mlen = ( ((((unsigned long)data[3]) & 0xff) << 8) | (((unsigned long)data[4]) & 0xff) );
  1618. if (tc->readq.length() >= (mlen + 5)) {
  1619. InetAddress from;
  1620. unsigned long plen = mlen; // payload length, modified if there's an IP header
  1621. data += 5; // skip forward past pseudo-TLS junk and mlen
  1622. if (plen == 4) {
  1623. // Hello message, which isn't sent by proxy and would be ignored by client
  1624. } else if (plen) {
  1625. // Messages should contain IPv4 or IPv6 source IP address data
  1626. switch(data[0]) {
  1627. case 4: // IPv4
  1628. if (plen >= 7) {
  1629. from.set((const void *)(data + 1),4,((((unsigned int)data[5]) & 0xff) << 8) | (((unsigned int)data[6]) & 0xff));
  1630. data += 7; // type + 4 byte IP + 2 byte port
  1631. plen -= 7;
  1632. } else {
  1633. _phy.close(sock);
  1634. return;
  1635. }
  1636. break;
  1637. case 6: // IPv6
  1638. if (plen >= 19) {
  1639. from.set((const void *)(data + 1),16,((((unsigned int)data[17]) & 0xff) << 8) | (((unsigned int)data[18]) & 0xff));
  1640. data += 19; // type + 16 byte IP + 2 byte port
  1641. plen -= 19;
  1642. } else {
  1643. _phy.close(sock);
  1644. return;
  1645. }
  1646. break;
  1647. case 0: // none/omitted
  1648. ++data;
  1649. --plen;
  1650. break;
  1651. default: // invalid address type
  1652. _phy.close(sock);
  1653. return;
  1654. }
  1655. if (from) {
  1656. InetAddress fakeTcpLocalInterfaceAddress((uint32_t)0xffffffff,0xffff);
  1657. const ZT_ResultCode rc = _node->processWirePacket(
  1658. (void *)0,
  1659. OSUtils::now(),
  1660. -1,
  1661. reinterpret_cast<struct sockaddr_storage *>(&from),
  1662. data,
  1663. plen,
  1664. &_nextBackgroundTaskDeadline);
  1665. if (ZT_ResultCode_isFatal(rc)) {
  1666. char tmp[256];
  1667. OSUtils::ztsnprintf(tmp,sizeof(tmp),"fatal error code from processWirePacket: %d",(int)rc);
  1668. Mutex::Lock _l(_termReason_m);
  1669. _termReason = ONE_UNRECOVERABLE_ERROR;
  1670. _fatalErrorMessage = tmp;
  1671. this->terminate();
  1672. _phy.close(sock);
  1673. return;
  1674. }
  1675. }
  1676. }
  1677. if (tc->readq.length() > (mlen + 5))
  1678. tc->readq.erase(tc->readq.begin(),tc->readq.begin() + (mlen + 5));
  1679. else tc->readq.clear();
  1680. } else break;
  1681. }
  1682. return;
  1683. }
  1684. } catch ( ... ) {
  1685. _phy.close(sock);
  1686. }
  1687. }
  1688. inline void phyOnTcpWritable(PhySocket *sock,void **uptr)
  1689. {
  1690. TcpConnection *tc = reinterpret_cast<TcpConnection *>(*uptr);
  1691. bool closeit = false;
  1692. {
  1693. Mutex::Lock _l(tc->writeq_m);
  1694. if (tc->writeq.length() > 0) {
  1695. long sent = (long)_phy.streamSend(sock,tc->writeq.data(),(unsigned long)tc->writeq.length(),true);
  1696. if (sent > 0) {
  1697. if ((unsigned long)sent >= (unsigned long)tc->writeq.length()) {
  1698. tc->writeq.clear();
  1699. _phy.setNotifyWritable(sock,false);
  1700. if (tc->type == TcpConnection::TCP_HTTP_INCOMING)
  1701. closeit = true; // HTTP keep alive not supported
  1702. } else {
  1703. tc->writeq.erase(tc->writeq.begin(),tc->writeq.begin() + sent);
  1704. }
  1705. }
  1706. } else {
  1707. _phy.setNotifyWritable(sock,false);
  1708. }
  1709. }
  1710. if (closeit)
  1711. _phy.close(sock);
  1712. }
  1713. inline void phyOnFileDescriptorActivity(PhySocket *sock,void **uptr,bool readable,bool writable) {}
  1714. inline void phyOnUnixAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN) {}
  1715. inline void phyOnUnixClose(PhySocket *sock,void **uptr) {}
  1716. inline void phyOnUnixData(PhySocket *sock,void **uptr,void *data,unsigned long len) {}
  1717. inline void phyOnUnixWritable(PhySocket *sock,void **uptr,bool lwip_invoked) {}
  1718. inline int nodeVirtualNetworkConfigFunction(uint64_t nwid,void **nuptr,enum ZT_VirtualNetworkConfigOperation op,const ZT_VirtualNetworkConfig *nwc)
  1719. {
  1720. Mutex::Lock _l(_nets_m);
  1721. NetworkState &n = _nets[nwid];
  1722. switch(op) {
  1723. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_UP:
  1724. if (!n.tap) {
  1725. try {
  1726. char friendlyName[128];
  1727. OSUtils::ztsnprintf(friendlyName,sizeof(friendlyName),"ZeroTier One [%.16llx]",nwid);
  1728. n.tap = new EthernetTap(
  1729. _homePath.c_str(),
  1730. MAC(nwc->mac),
  1731. nwc->mtu,
  1732. (unsigned int)ZT_IF_METRIC,
  1733. nwid,
  1734. friendlyName,
  1735. StapFrameHandler,
  1736. (void *)this);
  1737. *nuptr = (void *)&n;
  1738. char nlcpath[256];
  1739. OSUtils::ztsnprintf(nlcpath,sizeof(nlcpath),"%s" ZT_PATH_SEPARATOR_S "networks.d" ZT_PATH_SEPARATOR_S "%.16llx.local.conf",_homePath.c_str(),nwid);
  1740. std::string nlcbuf;
  1741. if (OSUtils::readFile(nlcpath,nlcbuf)) {
  1742. Dictionary<4096> nc;
  1743. nc.load(nlcbuf.c_str());
  1744. Buffer<1024> allowManaged;
  1745. if (nc.get("allowManaged", allowManaged) && allowManaged.size() != 0) {
  1746. std::string addresses (allowManaged.begin(), allowManaged.size());
  1747. if (allowManaged.size() <= 5) { // untidy parsing for backward compatibility
  1748. if (allowManaged[0] == '1' || allowManaged[0] == 't' || allowManaged[0] == 'T') {
  1749. n.settings.allowManaged = true;
  1750. } else {
  1751. n.settings.allowManaged = false;
  1752. }
  1753. } else {
  1754. // this should be a list of IP addresses
  1755. n.settings.allowManaged = true;
  1756. size_t pos = 0;
  1757. while (true) {
  1758. size_t nextPos = addresses.find(',', pos);
  1759. std::string address = addresses.substr(pos, (nextPos == std::string::npos ? addresses.size() : nextPos) - pos);
  1760. n.settings.allowManagedWhitelist.push_back(InetAddress(address.c_str()));
  1761. if (nextPos == std::string::npos) break;
  1762. pos = nextPos + 1;
  1763. }
  1764. }
  1765. } else {
  1766. n.settings.allowManaged = true;
  1767. }
  1768. n.settings.allowGlobal = nc.getB("allowGlobal", false);
  1769. n.settings.allowDefault = nc.getB("allowDefault", false);
  1770. }
  1771. } catch (std::exception &exc) {
  1772. #ifdef __WINDOWS__
  1773. FILE *tapFailLog = fopen((_homePath + ZT_PATH_SEPARATOR_S"port_error_log.txt").c_str(),"a");
  1774. if (tapFailLog) {
  1775. fprintf(tapFailLog,"%.16llx: %s" ZT_EOL_S,(unsigned long long)nwid,exc.what());
  1776. fclose(tapFailLog);
  1777. }
  1778. #else
  1779. fprintf(stderr,"ERROR: unable to configure virtual network port: %s" ZT_EOL_S,exc.what());
  1780. #endif
  1781. _nets.erase(nwid);
  1782. return -999;
  1783. } catch ( ... ) {
  1784. return -999; // tap init failed
  1785. }
  1786. }
  1787. // After setting up tap, fall through to CONFIG_UPDATE since we also want to do this...
  1788. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_CONFIG_UPDATE:
  1789. ZT_FAST_MEMCPY(&(n.config),nwc,sizeof(ZT_VirtualNetworkConfig));
  1790. if (n.tap) { // sanity check
  1791. #if defined(__WINDOWS__) && !defined(ZT_SDK)
  1792. // wait for up to 5 seconds for the WindowsEthernetTap to actually be initialized
  1793. //
  1794. // without WindowsEthernetTap::isInitialized() returning true, the won't actually
  1795. // be online yet and setting managed routes on it will fail.
  1796. const int MAX_SLEEP_COUNT = 500;
  1797. for (int i = 0; !n.tap->isInitialized() && i < MAX_SLEEP_COUNT; i++) {
  1798. Sleep(10);
  1799. }
  1800. #endif
  1801. syncManagedStuff(n,true,true);
  1802. n.tap->setMtu(nwc->mtu);
  1803. } else {
  1804. _nets.erase(nwid);
  1805. return -999; // tap init failed
  1806. }
  1807. break;
  1808. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DOWN:
  1809. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY:
  1810. if (n.tap) { // sanity check
  1811. #if defined(__WINDOWS__) && !defined(ZT_SDK)
  1812. std::string winInstanceId(n.tap->instanceId());
  1813. #endif
  1814. *nuptr = (void *)0;
  1815. delete n.tap;
  1816. _nets.erase(nwid);
  1817. #if defined(__WINDOWS__) && !defined(ZT_SDK)
  1818. if ((op == ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY)&&(winInstanceId.length() > 0))
  1819. WindowsEthernetTap::deletePersistentTapDevice(winInstanceId.c_str());
  1820. #endif
  1821. if (op == ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY) {
  1822. char nlcpath[256];
  1823. OSUtils::ztsnprintf(nlcpath,sizeof(nlcpath),"%s" ZT_PATH_SEPARATOR_S "networks.d" ZT_PATH_SEPARATOR_S "%.16llx.local.conf",_homePath.c_str(),nwid);
  1824. OSUtils::rm(nlcpath);
  1825. }
  1826. } else {
  1827. _nets.erase(nwid);
  1828. }
  1829. break;
  1830. }
  1831. return 0;
  1832. }
  1833. inline void nodeEventCallback(enum ZT_Event event,const void *metaData)
  1834. {
  1835. switch(event) {
  1836. case ZT_EVENT_FATAL_ERROR_IDENTITY_COLLISION: {
  1837. Mutex::Lock _l(_termReason_m);
  1838. _termReason = ONE_IDENTITY_COLLISION;
  1839. _fatalErrorMessage = "identity/address collision";
  1840. this->terminate();
  1841. } break;
  1842. case ZT_EVENT_TRACE: {
  1843. if (metaData) {
  1844. ::fprintf(stderr,"%s" ZT_EOL_S,(const char *)metaData);
  1845. ::fflush(stderr);
  1846. }
  1847. } break;
  1848. case ZT_EVENT_USER_MESSAGE: {
  1849. const ZT_UserMessage *um = reinterpret_cast<const ZT_UserMessage *>(metaData);
  1850. if ((um->typeId == ZT_SOFTWARE_UPDATE_USER_MESSAGE_TYPE)&&(_updater)) {
  1851. _updater->handleSoftwareUpdateUserMessage(um->origin,um->data,um->length);
  1852. }
  1853. } break;
  1854. case ZT_EVENT_REMOTE_TRACE: {
  1855. const ZT_RemoteTrace *rt = reinterpret_cast<const ZT_RemoteTrace *>(metaData);
  1856. if ((rt)&&(rt->len > 0)&&(rt->len <= ZT_MAX_REMOTE_TRACE_SIZE)&&(rt->data))
  1857. _controller->handleRemoteTrace(*rt);
  1858. }
  1859. default:
  1860. break;
  1861. }
  1862. }
  1863. inline void nodeStatePutFunction(enum ZT_StateObjectType type,const uint64_t id[2],const void *data,int len)
  1864. {
  1865. char p[1024];
  1866. FILE *f;
  1867. bool secure = false;
  1868. char dirname[1024];
  1869. dirname[0] = 0;
  1870. switch(type) {
  1871. case ZT_STATE_OBJECT_IDENTITY_PUBLIC:
  1872. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.public",_homePath.c_str());
  1873. break;
  1874. case ZT_STATE_OBJECT_IDENTITY_SECRET:
  1875. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.secret",_homePath.c_str());
  1876. secure = true;
  1877. break;
  1878. case ZT_STATE_OBJECT_PLANET:
  1879. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "planet",_homePath.c_str());
  1880. break;
  1881. case ZT_STATE_OBJECT_MOON:
  1882. OSUtils::ztsnprintf(dirname,sizeof(dirname),"%s" ZT_PATH_SEPARATOR_S "moons.d",_homePath.c_str());
  1883. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "%.16llx.moon",dirname,(unsigned long long)id[0]);
  1884. break;
  1885. case ZT_STATE_OBJECT_NETWORK_CONFIG:
  1886. OSUtils::ztsnprintf(dirname,sizeof(dirname),"%s" ZT_PATH_SEPARATOR_S "networks.d",_homePath.c_str());
  1887. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "%.16llx.conf",dirname,(unsigned long long)id[0]);
  1888. secure = true;
  1889. break;
  1890. case ZT_STATE_OBJECT_PEER:
  1891. OSUtils::ztsnprintf(dirname,sizeof(dirname),"%s" ZT_PATH_SEPARATOR_S "peers.d",_homePath.c_str());
  1892. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "%.10llx.peer",dirname,(unsigned long long)id[0]);
  1893. break;
  1894. default:
  1895. return;
  1896. }
  1897. if (len >= 0) {
  1898. // Check to see if we've already written this first. This reduces
  1899. // redundant writes and I/O overhead on most platforms and has
  1900. // little effect on others.
  1901. f = fopen(p,"rb");
  1902. if (f) {
  1903. char buf[65535];
  1904. long l = (long)fread(buf,1,sizeof(buf),f);
  1905. fclose(f);
  1906. if ((l == (long)len)&&(memcmp(data,buf,l) == 0))
  1907. return;
  1908. }
  1909. f = fopen(p,"wb");
  1910. if ((!f)&&(dirname[0])) { // create subdirectory if it does not exist
  1911. OSUtils::mkdir(dirname);
  1912. f = fopen(p,"wb");
  1913. }
  1914. if (f) {
  1915. if (fwrite(data,len,1,f) != 1)
  1916. fprintf(stderr,"WARNING: unable to write to file: %s (I/O error)" ZT_EOL_S,p);
  1917. fclose(f);
  1918. if (secure)
  1919. OSUtils::lockDownFile(p,false);
  1920. } else {
  1921. fprintf(stderr,"WARNING: unable to write to file: %s (unable to open)" ZT_EOL_S,p);
  1922. }
  1923. } else {
  1924. OSUtils::rm(p);
  1925. }
  1926. }
  1927. inline int nodeStateGetFunction(enum ZT_StateObjectType type,const uint64_t id[2],void *data,unsigned int maxlen)
  1928. {
  1929. char p[4096];
  1930. switch(type) {
  1931. case ZT_STATE_OBJECT_IDENTITY_PUBLIC:
  1932. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.public",_homePath.c_str());
  1933. break;
  1934. case ZT_STATE_OBJECT_IDENTITY_SECRET:
  1935. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.secret",_homePath.c_str());
  1936. break;
  1937. case ZT_STATE_OBJECT_PLANET:
  1938. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "planet",_homePath.c_str());
  1939. break;
  1940. case ZT_STATE_OBJECT_MOON:
  1941. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "moons.d" ZT_PATH_SEPARATOR_S "%.16llx.moon",_homePath.c_str(),(unsigned long long)id[0]);
  1942. break;
  1943. case ZT_STATE_OBJECT_NETWORK_CONFIG:
  1944. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "networks.d" ZT_PATH_SEPARATOR_S "%.16llx.conf",_homePath.c_str(),(unsigned long long)id[0]);
  1945. break;
  1946. case ZT_STATE_OBJECT_PEER:
  1947. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "peers.d" ZT_PATH_SEPARATOR_S "%.10llx.peer",_homePath.c_str(),(unsigned long long)id[0]);
  1948. break;
  1949. default:
  1950. return -1;
  1951. }
  1952. FILE *f = fopen(p,"rb");
  1953. if (f) {
  1954. int n = (int)fread(data,1,maxlen,f);
  1955. fclose(f);
  1956. if (n >= 0)
  1957. return n;
  1958. }
  1959. return -1;
  1960. }
  1961. inline int nodeWirePacketSendFunction(const int64_t localSocket,const struct sockaddr_storage *addr,const void *data,unsigned int len,unsigned int ttl)
  1962. {
  1963. #ifdef ZT_TCP_FALLBACK_RELAY
  1964. if(_allowTcpFallbackRelay) {
  1965. if (addr->ss_family == AF_INET) {
  1966. // TCP fallback tunnel support, currently IPv4 only
  1967. if ((len >= 16)&&(reinterpret_cast<const InetAddress *>(addr)->ipScope() == InetAddress::IP_SCOPE_GLOBAL)) {
  1968. // Engage TCP tunnel fallback if we haven't received anything valid from a global
  1969. // IP address in ZT_TCP_FALLBACK_AFTER milliseconds. If we do start getting
  1970. // valid direct traffic we'll stop using it and close the socket after a while.
  1971. const int64_t now = OSUtils::now();
  1972. if (((now - _lastDirectReceiveFromGlobal) > ZT_TCP_FALLBACK_AFTER)&&((now - _lastRestart) > ZT_TCP_FALLBACK_AFTER)) {
  1973. if (_tcpFallbackTunnel) {
  1974. bool flushNow = false;
  1975. {
  1976. Mutex::Lock _l(_tcpFallbackTunnel->writeq_m);
  1977. if (_tcpFallbackTunnel->writeq.size() < (1024 * 64)) {
  1978. if (_tcpFallbackTunnel->writeq.length() == 0) {
  1979. _phy.setNotifyWritable(_tcpFallbackTunnel->sock,true);
  1980. flushNow = true;
  1981. }
  1982. const unsigned long mlen = len + 7;
  1983. _tcpFallbackTunnel->writeq.push_back((char)0x17);
  1984. _tcpFallbackTunnel->writeq.push_back((char)0x03);
  1985. _tcpFallbackTunnel->writeq.push_back((char)0x03); // fake TLS 1.2 header
  1986. _tcpFallbackTunnel->writeq.push_back((char)((mlen >> 8) & 0xff));
  1987. _tcpFallbackTunnel->writeq.push_back((char)(mlen & 0xff));
  1988. _tcpFallbackTunnel->writeq.push_back((char)4); // IPv4
  1989. _tcpFallbackTunnel->writeq.append(reinterpret_cast<const char *>(reinterpret_cast<const void *>(&(reinterpret_cast<const struct sockaddr_in *>(addr)->sin_addr.s_addr))),4);
  1990. _tcpFallbackTunnel->writeq.append(reinterpret_cast<const char *>(reinterpret_cast<const void *>(&(reinterpret_cast<const struct sockaddr_in *>(addr)->sin_port))),2);
  1991. _tcpFallbackTunnel->writeq.append((const char *)data,len);
  1992. }
  1993. }
  1994. if (flushNow) {
  1995. void *tmpptr = (void *)_tcpFallbackTunnel;
  1996. phyOnTcpWritable(_tcpFallbackTunnel->sock,&tmpptr);
  1997. }
  1998. } else if (((now - _lastSendToGlobalV4) < ZT_TCP_FALLBACK_AFTER)&&((now - _lastSendToGlobalV4) > (ZT_PING_CHECK_INVERVAL / 2))) {
  1999. const InetAddress addr(ZT_TCP_FALLBACK_RELAY);
  2000. TcpConnection *tc = new TcpConnection();
  2001. {
  2002. Mutex::Lock _l(_tcpConnections_m);
  2003. _tcpConnections.push_back(tc);
  2004. }
  2005. tc->type = TcpConnection::TCP_TUNNEL_OUTGOING;
  2006. tc->remoteAddr = addr;
  2007. tc->lastReceive = OSUtils::now();
  2008. tc->parent = this;
  2009. tc->sock = (PhySocket *)0; // set in connect handler
  2010. tc->messageSize = 0;
  2011. bool connected = false;
  2012. _phy.tcpConnect(reinterpret_cast<const struct sockaddr *>(&addr),connected,(void *)tc,true);
  2013. }
  2014. }
  2015. _lastSendToGlobalV4 = now;
  2016. }
  2017. }
  2018. }
  2019. #endif // ZT_TCP_FALLBACK_RELAY
  2020. // Even when relaying we still send via UDP. This way if UDP starts
  2021. // working we can instantly "fail forward" to it and stop using TCP
  2022. // proxy fallback, which is slow.
  2023. if ((localSocket != -1)&&(localSocket != 0)&&(_binder.isUdpSocketValid((PhySocket *)((uintptr_t)localSocket)))) {
  2024. if ((ttl)&&(addr->ss_family == AF_INET)) _phy.setIp4UdpTtl((PhySocket *)((uintptr_t)localSocket),ttl);
  2025. const bool r = _phy.udpSend((PhySocket *)((uintptr_t)localSocket),(const struct sockaddr *)addr,data,len);
  2026. if ((ttl)&&(addr->ss_family == AF_INET)) _phy.setIp4UdpTtl((PhySocket *)((uintptr_t)localSocket),255);
  2027. return ((r) ? 0 : -1);
  2028. } else {
  2029. return ((_binder.udpSendAll(_phy,addr,data,len,ttl)) ? 0 : -1);
  2030. }
  2031. }
  2032. inline void nodeVirtualNetworkFrameFunction(uint64_t nwid,void **nuptr,uint64_t sourceMac,uint64_t destMac,unsigned int etherType,unsigned int vlanId,const void *data,unsigned int len)
  2033. {
  2034. NetworkState *n = reinterpret_cast<NetworkState *>(*nuptr);
  2035. if ((!n)||(!n->tap))
  2036. return;
  2037. n->tap->put(MAC(sourceMac),MAC(destMac),etherType,data,len);
  2038. }
  2039. inline int nodePathCheckFunction(uint64_t ztaddr,const int64_t localSocket,const struct sockaddr_storage *remoteAddr)
  2040. {
  2041. // Make sure we're not trying to do ZeroTier-over-ZeroTier
  2042. {
  2043. Mutex::Lock _l(_nets_m);
  2044. for(std::map<uint64_t,NetworkState>::const_iterator n(_nets.begin());n!=_nets.end();++n) {
  2045. if (n->second.tap) {
  2046. std::vector<InetAddress> ips(n->second.tap->ips());
  2047. for(std::vector<InetAddress>::const_iterator i(ips.begin());i!=ips.end();++i) {
  2048. if (i->containsAddress(*(reinterpret_cast<const InetAddress *>(remoteAddr)))) {
  2049. return 0;
  2050. }
  2051. }
  2052. }
  2053. }
  2054. }
  2055. /* Note: I do not think we need to scan for overlap with managed routes
  2056. * because of the "route forking" and interface binding that we do. This
  2057. * ensures (we hope) that ZeroTier traffic will still take the physical
  2058. * path even if its managed routes override this for other traffic. Will
  2059. * revisit if we see recursion problems. */
  2060. // Check blacklists
  2061. const Hashtable< uint64_t,std::vector<InetAddress> > *blh = (const Hashtable< uint64_t,std::vector<InetAddress> > *)0;
  2062. const std::vector<InetAddress> *gbl = (const std::vector<InetAddress> *)0;
  2063. if (remoteAddr->ss_family == AF_INET) {
  2064. blh = &_v4Blacklists;
  2065. gbl = &_globalV4Blacklist;
  2066. } else if (remoteAddr->ss_family == AF_INET6) {
  2067. blh = &_v6Blacklists;
  2068. gbl = &_globalV6Blacklist;
  2069. }
  2070. if (blh) {
  2071. Mutex::Lock _l(_localConfig_m);
  2072. const std::vector<InetAddress> *l = blh->get(ztaddr);
  2073. if (l) {
  2074. for(std::vector<InetAddress>::const_iterator a(l->begin());a!=l->end();++a) {
  2075. if (a->containsAddress(*reinterpret_cast<const InetAddress *>(remoteAddr)))
  2076. return 0;
  2077. }
  2078. }
  2079. }
  2080. if (gbl) {
  2081. for(std::vector<InetAddress>::const_iterator a(gbl->begin());a!=gbl->end();++a) {
  2082. if (a->containsAddress(*reinterpret_cast<const InetAddress *>(remoteAddr)))
  2083. return 0;
  2084. }
  2085. }
  2086. return 1;
  2087. }
  2088. inline int nodePathLookupFunction(uint64_t ztaddr,int family,struct sockaddr_storage *result)
  2089. {
  2090. const Hashtable< uint64_t,std::vector<InetAddress> > *lh = (const Hashtable< uint64_t,std::vector<InetAddress> > *)0;
  2091. if (family < 0)
  2092. lh = (_node->prng() & 1) ? &_v4Hints : &_v6Hints;
  2093. else if (family == AF_INET)
  2094. lh = &_v4Hints;
  2095. else if (family == AF_INET6)
  2096. lh = &_v6Hints;
  2097. else return 0;
  2098. const std::vector<InetAddress> *l = lh->get(ztaddr);
  2099. if ((l)&&(l->size() > 0)) {
  2100. ZT_FAST_MEMCPY(result,&((*l)[(unsigned long)_node->prng() % l->size()]),sizeof(struct sockaddr_storage));
  2101. return 1;
  2102. } else return 0;
  2103. }
  2104. inline void tapFrameHandler(uint64_t nwid,const MAC &from,const MAC &to,unsigned int etherType,unsigned int vlanId,const void *data,unsigned int len)
  2105. {
  2106. _node->processVirtualNetworkFrame((void *)0,OSUtils::now(),nwid,from.toInt(),to.toInt(),etherType,vlanId,data,len,&_nextBackgroundTaskDeadline);
  2107. }
  2108. inline void onHttpRequestToServer(TcpConnection *tc)
  2109. {
  2110. char tmpn[4096];
  2111. std::string data;
  2112. std::string contentType("text/plain"); // default if not changed in handleRequest()
  2113. unsigned int scode = 404;
  2114. // Note that we check allowed IP ranges when HTTP connections are first detected in
  2115. // phyOnTcpData(). If we made it here the source IP is okay.
  2116. try {
  2117. scode = handleControlPlaneHttpRequest(tc->remoteAddr,tc->parser.method,tc->url,tc->headers,tc->readq,data,contentType);
  2118. } catch (std::exception &exc) {
  2119. fprintf(stderr,"WARNING: unexpected exception processing control HTTP request: %s" ZT_EOL_S,exc.what());
  2120. scode = 500;
  2121. } catch ( ... ) {
  2122. fprintf(stderr,"WARNING: unexpected exception processing control HTTP request: unknown exception" ZT_EOL_S);
  2123. scode = 500;
  2124. }
  2125. const char *scodestr;
  2126. switch(scode) {
  2127. case 200: scodestr = "OK"; break;
  2128. case 400: scodestr = "Bad Request"; break;
  2129. case 401: scodestr = "Unauthorized"; break;
  2130. case 403: scodestr = "Forbidden"; break;
  2131. case 404: scodestr = "Not Found"; break;
  2132. case 500: scodestr = "Internal Server Error"; break;
  2133. case 501: scodestr = "Not Implemented"; break;
  2134. case 503: scodestr = "Service Unavailable"; break;
  2135. default: scodestr = "Error"; break;
  2136. }
  2137. OSUtils::ztsnprintf(tmpn,sizeof(tmpn),"HTTP/1.1 %.3u %s\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: %s\r\nContent-Length: %lu\r\nConnection: close\r\n\r\n",
  2138. scode,
  2139. scodestr,
  2140. contentType.c_str(),
  2141. (unsigned long)data.length());
  2142. {
  2143. Mutex::Lock _l(tc->writeq_m);
  2144. tc->writeq = tmpn;
  2145. if (tc->parser.method != HTTP_HEAD)
  2146. tc->writeq.append(data);
  2147. }
  2148. _phy.setNotifyWritable(tc->sock,true);
  2149. }
  2150. inline void onHttpResponseFromClient(TcpConnection *tc)
  2151. {
  2152. _phy.close(tc->sock);
  2153. }
  2154. bool shouldBindInterface(const char *ifname,const InetAddress &ifaddr)
  2155. {
  2156. #if defined(__linux__) || defined(linux) || defined(__LINUX__) || defined(__linux)
  2157. if ((ifname[0] == 'l')&&(ifname[1] == 'o')) return false; // loopback
  2158. if ((ifname[0] == 'z')&&(ifname[1] == 't')) return false; // sanity check: zt#
  2159. if ((ifname[0] == 't')&&(ifname[1] == 'u')&&(ifname[2] == 'n')) return false; // tun# is probably an OpenVPN tunnel or similar
  2160. if ((ifname[0] == 't')&&(ifname[1] == 'a')&&(ifname[2] == 'p')) return false; // tap# is probably an OpenVPN tunnel or similar
  2161. #endif
  2162. #ifdef __APPLE__
  2163. if ((ifname[0] == 'l')&&(ifname[1] == 'o')) return false; // loopback
  2164. if ((ifname[0] == 'z')&&(ifname[1] == 't')) return false; // sanity check: zt#
  2165. if ((ifname[0] == 't')&&(ifname[1] == 'u')&&(ifname[2] == 'n')) return false; // tun# is probably an OpenVPN tunnel or similar
  2166. if ((ifname[0] == 't')&&(ifname[1] == 'a')&&(ifname[2] == 'p')) return false; // tap# is probably an OpenVPN tunnel or similar
  2167. if ((ifname[0] == 'u')&&(ifname[1] == 't')&&(ifname[2] == 'u')&&(ifname[3] == 'n')) return false; // ... as is utun#
  2168. #endif
  2169. {
  2170. Mutex::Lock _l(_localConfig_m);
  2171. for(std::vector<std::string>::const_iterator p(_interfacePrefixBlacklist.begin());p!=_interfacePrefixBlacklist.end();++p) {
  2172. if (!strncmp(p->c_str(),ifname,p->length()))
  2173. return false;
  2174. }
  2175. }
  2176. {
  2177. // Check global blacklists
  2178. const std::vector<InetAddress> *gbl = (const std::vector<InetAddress> *)0;
  2179. if (ifaddr.ss_family == AF_INET) {
  2180. gbl = &_globalV4Blacklist;
  2181. } else if (ifaddr.ss_family == AF_INET6) {
  2182. gbl = &_globalV6Blacklist;
  2183. }
  2184. if (gbl) {
  2185. Mutex::Lock _l(_localConfig_m);
  2186. for(std::vector<InetAddress>::const_iterator a(gbl->begin());a!=gbl->end();++a) {
  2187. if (a->containsAddress(ifaddr))
  2188. return false;
  2189. }
  2190. }
  2191. }
  2192. {
  2193. Mutex::Lock _l(_nets_m);
  2194. for(std::map<uint64_t,NetworkState>::const_iterator n(_nets.begin());n!=_nets.end();++n) {
  2195. if (n->second.tap) {
  2196. std::vector<InetAddress> ips(n->second.tap->ips());
  2197. for(std::vector<InetAddress>::const_iterator i(ips.begin());i!=ips.end();++i) {
  2198. if (i->ipsEqual(ifaddr))
  2199. return false;
  2200. }
  2201. }
  2202. }
  2203. }
  2204. return true;
  2205. }
  2206. bool _trialBind(unsigned int port)
  2207. {
  2208. struct sockaddr_in in4;
  2209. struct sockaddr_in6 in6;
  2210. PhySocket *tb;
  2211. memset(&in4,0,sizeof(in4));
  2212. in4.sin_family = AF_INET;
  2213. in4.sin_port = Utils::hton((uint16_t)port);
  2214. tb = _phy.udpBind(reinterpret_cast<const struct sockaddr *>(&in4),(void *)0,0);
  2215. if (tb) {
  2216. _phy.close(tb,false);
  2217. tb = _phy.tcpListen(reinterpret_cast<const struct sockaddr *>(&in4),(void *)0);
  2218. if (tb) {
  2219. _phy.close(tb,false);
  2220. return true;
  2221. }
  2222. }
  2223. memset(&in6,0,sizeof(in6));
  2224. in6.sin6_family = AF_INET6;
  2225. in6.sin6_port = Utils::hton((uint16_t)port);
  2226. tb = _phy.udpBind(reinterpret_cast<const struct sockaddr *>(&in6),(void *)0,0);
  2227. if (tb) {
  2228. _phy.close(tb,false);
  2229. tb = _phy.tcpListen(reinterpret_cast<const struct sockaddr *>(&in6),(void *)0);
  2230. if (tb) {
  2231. _phy.close(tb,false);
  2232. return true;
  2233. }
  2234. }
  2235. return false;
  2236. }
  2237. };
  2238. static int SnodeVirtualNetworkConfigFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t nwid,void **nuptr,enum ZT_VirtualNetworkConfigOperation op,const ZT_VirtualNetworkConfig *nwconf)
  2239. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodeVirtualNetworkConfigFunction(nwid,nuptr,op,nwconf); }
  2240. static void SnodeEventCallback(ZT_Node *node,void *uptr,void *tptr,enum ZT_Event event,const void *metaData)
  2241. { reinterpret_cast<OneServiceImpl *>(uptr)->nodeEventCallback(event,metaData); }
  2242. static void SnodeStatePutFunction(ZT_Node *node,void *uptr,void *tptr,enum ZT_StateObjectType type,const uint64_t id[2],const void *data,int len)
  2243. { reinterpret_cast<OneServiceImpl *>(uptr)->nodeStatePutFunction(type,id,data,len); }
  2244. static int SnodeStateGetFunction(ZT_Node *node,void *uptr,void *tptr,enum ZT_StateObjectType type,const uint64_t id[2],void *data,unsigned int maxlen)
  2245. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodeStateGetFunction(type,id,data,maxlen); }
  2246. static int SnodeWirePacketSendFunction(ZT_Node *node,void *uptr,void *tptr,int64_t localSocket,const struct sockaddr_storage *addr,const void *data,unsigned int len,unsigned int ttl)
  2247. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodeWirePacketSendFunction(localSocket,addr,data,len,ttl); }
  2248. static void SnodeVirtualNetworkFrameFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t nwid,void **nuptr,uint64_t sourceMac,uint64_t destMac,unsigned int etherType,unsigned int vlanId,const void *data,unsigned int len)
  2249. { reinterpret_cast<OneServiceImpl *>(uptr)->nodeVirtualNetworkFrameFunction(nwid,nuptr,sourceMac,destMac,etherType,vlanId,data,len); }
  2250. static int SnodePathCheckFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t ztaddr,int64_t localSocket,const struct sockaddr_storage *remoteAddr)
  2251. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodePathCheckFunction(ztaddr,localSocket,remoteAddr); }
  2252. static int SnodePathLookupFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t ztaddr,int family,struct sockaddr_storage *result)
  2253. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodePathLookupFunction(ztaddr,family,result); }
  2254. static void StapFrameHandler(void *uptr,void *tptr,uint64_t nwid,const MAC &from,const MAC &to,unsigned int etherType,unsigned int vlanId,const void *data,unsigned int len)
  2255. { reinterpret_cast<OneServiceImpl *>(uptr)->tapFrameHandler(nwid,from,to,etherType,vlanId,data,len); }
  2256. static int ShttpOnMessageBegin(http_parser *parser)
  2257. {
  2258. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2259. tc->currentHeaderField = "";
  2260. tc->currentHeaderValue = "";
  2261. tc->messageSize = 0;
  2262. tc->url.clear();
  2263. tc->status.clear();
  2264. tc->headers.clear();
  2265. tc->readq.clear();
  2266. return 0;
  2267. }
  2268. static int ShttpOnUrl(http_parser *parser,const char *ptr,size_t length)
  2269. {
  2270. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2271. tc->messageSize += (unsigned long)length;
  2272. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  2273. return -1;
  2274. tc->url.append(ptr,length);
  2275. return 0;
  2276. }
  2277. #if (HTTP_PARSER_VERSION_MAJOR >= 2) && (HTTP_PARSER_VERSION_MINOR >= 2)
  2278. static int ShttpOnStatus(http_parser *parser,const char *ptr,size_t length)
  2279. #else
  2280. static int ShttpOnStatus(http_parser *parser)
  2281. #endif
  2282. { return 0; }
  2283. static int ShttpOnHeaderField(http_parser *parser,const char *ptr,size_t length)
  2284. {
  2285. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2286. tc->messageSize += (unsigned long)length;
  2287. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  2288. return -1;
  2289. if ((tc->currentHeaderField.length())&&(tc->currentHeaderValue.length())) {
  2290. tc->headers[tc->currentHeaderField] = tc->currentHeaderValue;
  2291. tc->currentHeaderField = "";
  2292. tc->currentHeaderValue = "";
  2293. }
  2294. for(size_t i=0;i<length;++i)
  2295. tc->currentHeaderField.push_back(OSUtils::toLower(ptr[i]));
  2296. return 0;
  2297. }
  2298. static int ShttpOnValue(http_parser *parser,const char *ptr,size_t length)
  2299. {
  2300. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2301. tc->messageSize += (unsigned long)length;
  2302. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  2303. return -1;
  2304. tc->currentHeaderValue.append(ptr,length);
  2305. return 0;
  2306. }
  2307. static int ShttpOnHeadersComplete(http_parser *parser)
  2308. {
  2309. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2310. if ((tc->currentHeaderField.length())&&(tc->currentHeaderValue.length()))
  2311. tc->headers[tc->currentHeaderField] = tc->currentHeaderValue;
  2312. return 0;
  2313. }
  2314. static int ShttpOnBody(http_parser *parser,const char *ptr,size_t length)
  2315. {
  2316. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2317. tc->messageSize += (unsigned long)length;
  2318. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  2319. return -1;
  2320. tc->readq.append(ptr,length);
  2321. return 0;
  2322. }
  2323. static int ShttpOnMessageComplete(http_parser *parser)
  2324. {
  2325. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2326. if (tc->type == TcpConnection::TCP_HTTP_INCOMING) {
  2327. tc->parent->onHttpRequestToServer(tc);
  2328. } else {
  2329. tc->parent->onHttpResponseFromClient(tc);
  2330. }
  2331. return 0;
  2332. }
  2333. } // anonymous namespace
  2334. std::string OneService::platformDefaultHomePath()
  2335. {
  2336. return OSUtils::platformDefaultHomePath();
  2337. }
  2338. OneService *OneService::newInstance(const char *hp,unsigned int port) { return new OneServiceImpl(hp,port); }
  2339. OneService::~OneService() {}
  2340. } // namespace ZeroTier