OneService.cpp 87 KB

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