OneService.cpp 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511
  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. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.16llx",nc->nwid);
  170. nj["id"] = tmp;
  171. nj["nwid"] = tmp;
  172. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.2x:%.2x:%.2x:%.2x:%.2x:%.2x",(unsigned int)((nc->mac >> 40) & 0xff),(unsigned int)((nc->mac >> 32) & 0xff),(unsigned int)((nc->mac >> 24) & 0xff),(unsigned int)((nc->mac >> 16) & 0xff),(unsigned int)((nc->mac >> 8) & 0xff),(unsigned int)(nc->mac & 0xff));
  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(tmp));
  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(tmp);
  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(tmp);
  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. OSUtils::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. OSUtils::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(tmp);
  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[4096];
  241. OSUtils::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(),tmp);
  245. mj["updatesMustBeSignedBy"] = Utils::hex(world.updatesMustBeSignedBy().data,(unsigned int)world.updatesMustBeSignedBy().size(),tmp);
  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,tmp);
  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(tmp));
  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. uint64_t 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(),"").c_str());
  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. // Allow controller DB path to be put somewhere else
  558. json &settings = _localConfig["settings"];
  559. if (settings.is_object()) {
  560. const std::string cdbp(OSUtils::jsonString(settings["controllerDbPath"],""));
  561. if (cdbp.length() > 0)
  562. _controllerDbPath = cdbp;
  563. }
  564. // Set trusted paths if there are any
  565. if (trustedPathCount)
  566. _node->setTrustedPaths(reinterpret_cast<const struct sockaddr_storage *>(trustedPathNetworks),trustedPathIds,trustedPathCount);
  567. }
  568. // Apply other runtime configuration from local.conf
  569. applyLocalConfig();
  570. // Make sure we can use the primary port, and hunt for one if configured to do so
  571. const int portTrials = (_primaryPort == 0) ? 256 : 1; // if port is 0, pick random
  572. for(int k=0;k<portTrials;++k) {
  573. if (_primaryPort == 0) {
  574. unsigned int randp = 0;
  575. Utils::getSecureRandom(&randp,sizeof(randp));
  576. _primaryPort = 20000 + (randp % 45500);
  577. }
  578. if (_trialBind(_primaryPort)) {
  579. _ports[0] = _primaryPort;
  580. } else {
  581. _primaryPort = 0;
  582. }
  583. }
  584. if (_ports[0] == 0) {
  585. Mutex::Lock _l(_termReason_m);
  586. _termReason = ONE_UNRECOVERABLE_ERROR;
  587. _fatalErrorMessage = "cannot bind to local control interface port";
  588. return _termReason;
  589. }
  590. // Bind TCP control socket to 127.0.0.1 and ::1 as well for loopback TCP control socket queries
  591. {
  592. struct sockaddr_in lo4;
  593. memset(&lo4,0,sizeof(lo4));
  594. lo4.sin_family = AF_INET;
  595. lo4.sin_addr.s_addr = Utils::hton((uint32_t)0x7f000001);
  596. lo4.sin_port = Utils::hton((uint16_t)_ports[0]);
  597. _localControlSocket4 = _phy.tcpListen((const struct sockaddr *)&lo4);
  598. struct sockaddr_in6 lo6;
  599. memset(&lo6,0,sizeof(lo6));
  600. lo6.sin6_family = AF_INET6;
  601. lo6.sin6_addr.s6_addr[15] = 1;
  602. lo6.sin6_port = lo4.sin_port;
  603. _localControlSocket6 = _phy.tcpListen((const struct sockaddr *)&lo6);
  604. }
  605. // Save primary port to a file so CLIs and GUIs can learn it easily
  606. char portstr[64];
  607. OSUtils::ztsnprintf(portstr,sizeof(portstr),"%u",_ports[0]);
  608. OSUtils::writeFile((_homePath + ZT_PATH_SEPARATOR_S "zerotier-one.port").c_str(),std::string(portstr));
  609. // Attempt to bind to a secondary port chosen from our ZeroTier address.
  610. // This exists because there are buggy NATs out there that fail if more
  611. // than one device behind the same NAT tries to use the same internal
  612. // private address port number. Buggy NATs are a running theme.
  613. _ports[1] = 20000 + ((unsigned int)_node->address() % 45500);
  614. for(int i=0;;++i) {
  615. if (i > 1000) {
  616. _ports[1] = 0;
  617. break;
  618. } else if (++_ports[1] >= 65536) {
  619. _ports[1] = 20000;
  620. }
  621. if (_trialBind(_ports[1]))
  622. break;
  623. }
  624. #ifdef ZT_USE_MINIUPNPC
  625. if (_portMappingEnabled) {
  626. // If we're running uPnP/NAT-PMP, bind a *third* port for that. We can't
  627. // use the other two ports for that because some NATs do really funky
  628. // stuff with ports that are explicitly mapped that breaks things.
  629. if (_ports[1]) {
  630. _ports[2] = _ports[1];
  631. for(int i=0;;++i) {
  632. if (i > 1000) {
  633. _ports[2] = 0;
  634. break;
  635. } else if (++_ports[2] >= 65536) {
  636. _ports[2] = 20000;
  637. }
  638. if (_trialBind(_ports[2]))
  639. break;
  640. }
  641. if (_ports[2]) {
  642. char uniqueName[64];
  643. OSUtils::ztsnprintf(uniqueName,sizeof(uniqueName),"ZeroTier/%.10llx@%u",_node->address(),_ports[2]);
  644. _portMapper = new PortMapper(_ports[2],uniqueName);
  645. }
  646. }
  647. }
  648. #endif
  649. // Delete legacy iddb.d if present (cleanup)
  650. OSUtils::rmDashRf((_homePath + ZT_PATH_SEPARATOR_S "iddb.d").c_str());
  651. // Network controller is now enabled by default for desktop and server
  652. _controller = new EmbeddedNetworkController(_node,_controllerDbPath.c_str());
  653. _node->setNetconfMaster((void *)_controller);
  654. // Join existing networks in networks.d
  655. {
  656. std::vector<std::string> networksDotD(OSUtils::listDirectory((_homePath + ZT_PATH_SEPARATOR_S "networks.d").c_str()));
  657. for(std::vector<std::string>::iterator f(networksDotD.begin());f!=networksDotD.end();++f) {
  658. std::size_t dot = f->find_last_of('.');
  659. if ((dot == 16)&&(f->substr(16) == ".conf"))
  660. _node->join(Utils::hexStrToU64(f->substr(0,dot).c_str()),(void *)0,(void *)0);
  661. }
  662. }
  663. // Orbit existing moons in moons.d
  664. {
  665. std::vector<std::string> moonsDotD(OSUtils::listDirectory((_homePath + ZT_PATH_SEPARATOR_S "moons.d").c_str()));
  666. for(std::vector<std::string>::iterator f(moonsDotD.begin());f!=moonsDotD.end();++f) {
  667. std::size_t dot = f->find_last_of('.');
  668. if ((dot == 16)&&(f->substr(16) == ".moon"))
  669. _node->orbit((void *)0,Utils::hexStrToU64(f->substr(0,dot).c_str()),0);
  670. }
  671. }
  672. // Main I/O loop
  673. _nextBackgroundTaskDeadline = 0;
  674. uint64_t clockShouldBe = OSUtils::now();
  675. _lastRestart = clockShouldBe;
  676. uint64_t lastTapMulticastGroupCheck = 0;
  677. uint64_t lastBindRefresh = 0;
  678. uint64_t lastUpdateCheck = clockShouldBe;
  679. 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
  680. for(;;) {
  681. _run_m.lock();
  682. if (!_run) {
  683. _run_m.unlock();
  684. _termReason_m.lock();
  685. _termReason = ONE_NORMAL_TERMINATION;
  686. _termReason_m.unlock();
  687. break;
  688. } else {
  689. _run_m.unlock();
  690. }
  691. const uint64_t now = OSUtils::now();
  692. // Attempt to detect sleep/wake events by detecting delay overruns
  693. bool restarted = false;
  694. if ((now > clockShouldBe)&&((now - clockShouldBe) > 10000)) {
  695. _lastRestart = now;
  696. restarted = true;
  697. }
  698. // Check for updates (if enabled)
  699. if ((_updater)&&((now - lastUpdateCheck) > 10000)) {
  700. lastUpdateCheck = now;
  701. if (_updater->check(now) && _updateAutoApply)
  702. _updater->apply();
  703. }
  704. // Refresh bindings in case device's interfaces have changed, and also sync routes to update any shadow routes (e.g. shadow default)
  705. if (((now - lastBindRefresh) >= ZT_BINDER_REFRESH_PERIOD)||(restarted)) {
  706. lastBindRefresh = now;
  707. unsigned int p[3];
  708. unsigned int pc = 0;
  709. for(int i=0;i<3;++i) {
  710. if (_ports[i])
  711. p[pc++] = _ports[i];
  712. }
  713. _binder.refresh(_phy,p,pc,*this);
  714. {
  715. Mutex::Lock _l(_nets_m);
  716. for(std::map<uint64_t,NetworkState>::iterator n(_nets.begin());n!=_nets.end();++n) {
  717. if (n->second.tap)
  718. syncManagedStuff(n->second,false,true);
  719. }
  720. }
  721. }
  722. // Run background task processor in core if it's time to do so
  723. uint64_t dl = _nextBackgroundTaskDeadline;
  724. if (dl <= now) {
  725. _node->processBackgroundTasks((void *)0,now,&_nextBackgroundTaskDeadline);
  726. dl = _nextBackgroundTaskDeadline;
  727. }
  728. // Close TCP fallback tunnel if we have direct UDP
  729. if ((_tcpFallbackTunnel)&&((now - _lastDirectReceiveFromGlobal) < (ZT_TCP_FALLBACK_AFTER / 2)))
  730. _phy.close(_tcpFallbackTunnel->sock);
  731. // Sync multicast group memberships
  732. if ((now - lastTapMulticastGroupCheck) >= ZT_TAP_CHECK_MULTICAST_INTERVAL) {
  733. lastTapMulticastGroupCheck = now;
  734. Mutex::Lock _l(_nets_m);
  735. for(std::map<uint64_t,NetworkState>::const_iterator n(_nets.begin());n!=_nets.end();++n) {
  736. if (n->second.tap) {
  737. std::vector<MulticastGroup> added,removed;
  738. n->second.tap->scanMulticastGroups(added,removed);
  739. for(std::vector<MulticastGroup>::iterator m(added.begin());m!=added.end();++m)
  740. _node->multicastSubscribe((void *)0,n->first,m->mac().toInt(),m->adi());
  741. for(std::vector<MulticastGroup>::iterator m(removed.begin());m!=removed.end();++m)
  742. _node->multicastUnsubscribe(n->first,m->mac().toInt(),m->adi());
  743. }
  744. }
  745. }
  746. // Sync information about physical network interfaces
  747. if ((now - lastLocalInterfaceAddressCheck) >= ZT_LOCAL_INTERFACE_CHECK_INTERVAL) {
  748. lastLocalInterfaceAddressCheck = now;
  749. _node->clearLocalInterfaceAddresses();
  750. #ifdef ZT_USE_MINIUPNPC
  751. if (_portMapper) {
  752. std::vector<InetAddress> mappedAddresses(_portMapper->get());
  753. for(std::vector<InetAddress>::const_iterator ext(mappedAddresses.begin());ext!=mappedAddresses.end();++ext)
  754. _node->addLocalInterfaceAddress(reinterpret_cast<const struct sockaddr_storage *>(&(*ext)));
  755. }
  756. #endif
  757. std::vector<InetAddress> boundAddrs(_binder.allBoundLocalInterfaceAddresses());
  758. for(std::vector<InetAddress>::const_iterator i(boundAddrs.begin());i!=boundAddrs.end();++i)
  759. _node->addLocalInterfaceAddress(reinterpret_cast<const struct sockaddr_storage *>(&(*i)));
  760. }
  761. const unsigned long delay = (dl > now) ? (unsigned long)(dl - now) : 100;
  762. clockShouldBe = now + (uint64_t)delay;
  763. _phy.poll(delay);
  764. }
  765. } catch ( ... ) {
  766. Mutex::Lock _l(_termReason_m);
  767. _termReason = ONE_UNRECOVERABLE_ERROR;
  768. _fatalErrorMessage = "unexpected exception in main thread";
  769. }
  770. try {
  771. Mutex::Lock _l(_tcpConnections_m);
  772. while (!_tcpConnections.empty())
  773. _phy.close((*_tcpConnections.begin())->sock);
  774. } catch ( ... ) {}
  775. {
  776. Mutex::Lock _l(_nets_m);
  777. for(std::map<uint64_t,NetworkState>::iterator n(_nets.begin());n!=_nets.end();++n)
  778. delete n->second.tap;
  779. _nets.clear();
  780. }
  781. delete _updater;
  782. _updater = (SoftwareUpdater *)0;
  783. delete _node;
  784. _node = (Node *)0;
  785. return _termReason;
  786. }
  787. virtual ReasonForTermination reasonForTermination() const
  788. {
  789. Mutex::Lock _l(_termReason_m);
  790. return _termReason;
  791. }
  792. virtual std::string fatalErrorMessage() const
  793. {
  794. Mutex::Lock _l(_termReason_m);
  795. return _fatalErrorMessage;
  796. }
  797. virtual std::string portDeviceName(uint64_t nwid) const
  798. {
  799. Mutex::Lock _l(_nets_m);
  800. std::map<uint64_t,NetworkState>::const_iterator n(_nets.find(nwid));
  801. if ((n != _nets.end())&&(n->second.tap))
  802. return n->second.tap->deviceName();
  803. else return std::string();
  804. }
  805. #ifdef ZT_SDK
  806. virtual void leave(const char *hp)
  807. {
  808. _node->leave(Utils::hexStrToU64(hp),NULL,NULL);
  809. }
  810. virtual void join(const char *hp)
  811. {
  812. _node->join(Utils::hexStrToU64(hp),NULL,NULL);
  813. }
  814. virtual std::string givenHomePath()
  815. {
  816. return _homePath;
  817. }
  818. std::vector<ZT_VirtualNetworkRoute> *getRoutes(uint64_t nwid)
  819. {
  820. Mutex::Lock _l(_nets_m);
  821. NetworkState &n = _nets[nwid];
  822. std::vector<ZT_VirtualNetworkRoute> *routes = new std::vector<ZT_VirtualNetworkRoute>();
  823. for(int i=0; i<ZT_MAX_NETWORK_ROUTES; i++) {
  824. routes->push_back(n.config.routes[i]);
  825. }
  826. return routes;
  827. }
  828. virtual Node *getNode()
  829. {
  830. return _node;
  831. }
  832. virtual void removeNets()
  833. {
  834. Mutex::Lock _l(_nets_m);
  835. std::map<uint64_t,NetworkState>::iterator i;
  836. for(i = _nets.begin(); i != _nets.end(); i++)
  837. delete i->second.tap;
  838. }
  839. #endif // ZT_SDK
  840. virtual void terminate()
  841. {
  842. _run_m.lock();
  843. _run = false;
  844. _run_m.unlock();
  845. _phy.whack();
  846. }
  847. virtual bool getNetworkSettings(const uint64_t nwid,NetworkSettings &settings) const
  848. {
  849. Mutex::Lock _l(_nets_m);
  850. std::map<uint64_t,NetworkState>::const_iterator n(_nets.find(nwid));
  851. if (n == _nets.end())
  852. return false;
  853. settings = n->second.settings;
  854. return true;
  855. }
  856. virtual bool setNetworkSettings(const uint64_t nwid,const NetworkSettings &settings)
  857. {
  858. Mutex::Lock _l(_nets_m);
  859. std::map<uint64_t,NetworkState>::iterator n(_nets.find(nwid));
  860. if (n == _nets.end())
  861. return false;
  862. n->second.settings = settings;
  863. char nlcpath[4096];
  864. OSUtils::ztsnprintf(nlcpath,sizeof(nlcpath),"%s" ZT_PATH_SEPARATOR_S "%.16llx.local.conf",_networksPath.c_str(),nwid);
  865. FILE *out = fopen(nlcpath,"w");
  866. if (out) {
  867. fprintf(out,"allowManaged=%d\n",(int)n->second.settings.allowManaged);
  868. fprintf(out,"allowGlobal=%d\n",(int)n->second.settings.allowGlobal);
  869. fprintf(out,"allowDefault=%d\n",(int)n->second.settings.allowDefault);
  870. fclose(out);
  871. }
  872. if (n->second.tap)
  873. syncManagedStuff(n->second,true,true);
  874. return true;
  875. }
  876. // =========================================================================
  877. // Internal implementation methods for control plane, route setup, etc.
  878. // =========================================================================
  879. inline unsigned int handleControlPlaneHttpRequest(
  880. const InetAddress &fromAddress,
  881. unsigned int httpMethod,
  882. const std::string &path,
  883. const std::map<std::string,std::string> &headers,
  884. const std::string &body,
  885. std::string &responseBody,
  886. std::string &responseContentType)
  887. {
  888. char tmp[256];
  889. unsigned int scode = 404;
  890. json res;
  891. std::vector<std::string> ps(OSUtils::split(path.c_str(),"/","",""));
  892. std::map<std::string,std::string> urlArgs;
  893. /* Note: this is kind of restricted in what it'll take. It does not support
  894. * URL encoding, and /'s in URL args will screw it up. But the only URL args
  895. * it really uses in ?jsonp=funcionName, and otherwise it just takes simple
  896. * paths to simply-named resources. */
  897. if (ps.size() > 0) {
  898. std::size_t qpos = ps[ps.size() - 1].find('?');
  899. if (qpos != std::string::npos) {
  900. std::string args(ps[ps.size() - 1].substr(qpos + 1));
  901. ps[ps.size() - 1] = ps[ps.size() - 1].substr(0,qpos);
  902. std::vector<std::string> asplit(OSUtils::split(args.c_str(),"&","",""));
  903. for(std::vector<std::string>::iterator a(asplit.begin());a!=asplit.end();++a) {
  904. std::size_t eqpos = a->find('=');
  905. if (eqpos == std::string::npos)
  906. urlArgs[*a] = "";
  907. else urlArgs[a->substr(0,eqpos)] = a->substr(eqpos + 1);
  908. }
  909. }
  910. }
  911. bool isAuth = false;
  912. {
  913. std::map<std::string,std::string>::const_iterator ah(headers.find("x-zt1-auth"));
  914. if ((ah != headers.end())&&(_authToken == ah->second)) {
  915. isAuth = true;
  916. } else {
  917. ah = urlArgs.find("auth");
  918. if ((ah != urlArgs.end())&&(_authToken == ah->second))
  919. isAuth = true;
  920. }
  921. }
  922. #ifdef __SYNOLOGY__
  923. // Authenticate via Synology's built-in cgi script
  924. if (!isAuth) {
  925. /*
  926. fprintf(stderr, "path = %s\n", path.c_str());
  927. fprintf(stderr, "headers.size=%d\n", headers.size());
  928. std::map<std::string, std::string>::const_iterator it(headers.begin());
  929. while(it != headers.end()) {
  930. fprintf(stderr,"header[%s] = %s\n", (it->first).c_str(), (it->second).c_str());
  931. it++;
  932. }
  933. */
  934. // parse out url args
  935. int synotoken_pos = path.find("SynoToken");
  936. int argpos = path.find("?");
  937. if(synotoken_pos != std::string::npos && argpos != std::string::npos) {
  938. std::string cookie = path.substr(argpos+1, synotoken_pos-(argpos+1));
  939. std::string synotoken = path.substr(synotoken_pos);
  940. std::string cookie_val = cookie.substr(cookie.find("=")+1);
  941. std::string synotoken_val = synotoken.substr(synotoken.find("=")+1);
  942. // Set necessary env for auth script
  943. std::map<std::string,std::string>::const_iterator ah2(headers.find("x-forwarded-for"));
  944. setenv("HTTP_COOKIE", cookie_val.c_str(), true);
  945. setenv("HTTP_X_SYNO_TOKEN", synotoken_val.c_str(), true);
  946. setenv("REMOTE_ADDR", ah2->second.c_str(),true);
  947. //fprintf(stderr, "HTTP_COOKIE: %s\n",std::getenv ("HTTP_COOKIE"));
  948. //fprintf(stderr, "HTTP_X_SYNO_TOKEN: %s\n",std::getenv ("HTTP_X_SYNO_TOKEN"));
  949. //fprintf(stderr, "REMOTE_ADDR: %s\n",std::getenv ("REMOTE_ADDR"));
  950. // check synology web auth
  951. char user[256], buf[1024];
  952. FILE *fp = NULL;
  953. bzero(user, 256);
  954. fp = popen("/usr/syno/synoman/webman/modules/authenticate.cgi", "r");
  955. if(!fp)
  956. isAuth = false;
  957. else {
  958. bzero(buf, sizeof(buf));
  959. fread(buf, 1024, 1, fp);
  960. if(strlen(buf) > 0) {
  961. snprintf(user, 256, "%s", buf);
  962. isAuth = true;
  963. }
  964. }
  965. pclose(fp);
  966. }
  967. }
  968. #endif
  969. if (httpMethod == HTTP_GET) {
  970. if (isAuth) {
  971. if (ps[0] == "status") {
  972. ZT_NodeStatus status;
  973. _node->status(&status);
  974. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.10llx",status.address);
  975. res["address"] = tmp;
  976. res["publicIdentity"] = status.publicIdentity;
  977. res["online"] = (bool)(status.online != 0);
  978. res["tcpFallbackActive"] = (_tcpFallbackTunnel != (TcpConnection *)0);
  979. res["versionMajor"] = ZEROTIER_ONE_VERSION_MAJOR;
  980. res["versionMinor"] = ZEROTIER_ONE_VERSION_MINOR;
  981. res["versionRev"] = ZEROTIER_ONE_VERSION_REVISION;
  982. res["versionBuild"] = ZEROTIER_ONE_VERSION_BUILD;
  983. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%d.%d.%d",ZEROTIER_ONE_VERSION_MAJOR,ZEROTIER_ONE_VERSION_MINOR,ZEROTIER_ONE_VERSION_REVISION);
  984. res["version"] = tmp;
  985. res["clock"] = OSUtils::now();
  986. {
  987. Mutex::Lock _l(_localConfig_m);
  988. res["config"] = _localConfig;
  989. }
  990. json &settings = res["config"]["settings"];
  991. settings["primaryPort"] = OSUtils::jsonInt(settings["primaryPort"],(uint64_t)_primaryPort) & 0xffff;
  992. #ifdef ZT_USE_MINIUPNPC
  993. settings["portMappingEnabled"] = OSUtils::jsonBool(settings["portMappingEnabled"],true);
  994. #else
  995. settings["portMappingEnabled"] = false; // not supported in build
  996. #endif
  997. #ifndef ZT_SDK
  998. settings["softwareUpdate"] = OSUtils::jsonString(settings["softwareUpdate"],ZT_SOFTWARE_UPDATE_DEFAULT);
  999. settings["softwareUpdateChannel"] = OSUtils::jsonString(settings["softwareUpdateChannel"],ZT_SOFTWARE_UPDATE_DEFAULT_CHANNEL);
  1000. #endif
  1001. const World planet(_node->planet());
  1002. res["planetWorldId"] = planet.id();
  1003. res["planetWorldTimestamp"] = planet.timestamp();
  1004. scode = 200;
  1005. } else if (ps[0] == "moon") {
  1006. std::vector<World> moons(_node->moons());
  1007. if (ps.size() == 1) {
  1008. // Return [array] of all moons
  1009. res = json::array();
  1010. for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
  1011. json mj;
  1012. _moonToJson(mj,*m);
  1013. res.push_back(mj);
  1014. }
  1015. scode = 200;
  1016. } else {
  1017. // Return a single moon by ID
  1018. const uint64_t id = Utils::hexStrToU64(ps[1].c_str());
  1019. for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
  1020. if (m->id() == id) {
  1021. _moonToJson(res,*m);
  1022. scode = 200;
  1023. break;
  1024. }
  1025. }
  1026. }
  1027. } else if (ps[0] == "network") {
  1028. ZT_VirtualNetworkList *nws = _node->networks();
  1029. if (nws) {
  1030. if (ps.size() == 1) {
  1031. // Return [array] of all networks
  1032. res = nlohmann::json::array();
  1033. for(unsigned long i=0;i<nws->networkCount;++i) {
  1034. OneService::NetworkSettings localSettings;
  1035. getNetworkSettings(nws->networks[i].nwid,localSettings);
  1036. nlohmann::json nj;
  1037. _networkToJson(nj,&(nws->networks[i]),portDeviceName(nws->networks[i].nwid),localSettings);
  1038. res.push_back(nj);
  1039. }
  1040. scode = 200;
  1041. } else if (ps.size() == 2) {
  1042. // Return a single network by ID or 404 if not found
  1043. const uint64_t wantnw = Utils::hexStrToU64(ps[1].c_str());
  1044. for(unsigned long i=0;i<nws->networkCount;++i) {
  1045. if (nws->networks[i].nwid == wantnw) {
  1046. OneService::NetworkSettings localSettings;
  1047. getNetworkSettings(nws->networks[i].nwid,localSettings);
  1048. _networkToJson(res,&(nws->networks[i]),portDeviceName(nws->networks[i].nwid),localSettings);
  1049. scode = 200;
  1050. break;
  1051. }
  1052. }
  1053. } else scode = 404;
  1054. _node->freeQueryResult((void *)nws);
  1055. } else scode = 500;
  1056. } else if (ps[0] == "peer") {
  1057. ZT_PeerList *pl = _node->peers();
  1058. if (pl) {
  1059. if (ps.size() == 1) {
  1060. // Return [array] of all peers
  1061. res = nlohmann::json::array();
  1062. for(unsigned long i=0;i<pl->peerCount;++i) {
  1063. nlohmann::json pj;
  1064. _peerToJson(pj,&(pl->peers[i]));
  1065. res.push_back(pj);
  1066. }
  1067. scode = 200;
  1068. } else if (ps.size() == 2) {
  1069. // Return a single peer by ID or 404 if not found
  1070. uint64_t wantp = Utils::hexStrToU64(ps[1].c_str());
  1071. for(unsigned long i=0;i<pl->peerCount;++i) {
  1072. if (pl->peers[i].address == wantp) {
  1073. _peerToJson(res,&(pl->peers[i]));
  1074. scode = 200;
  1075. break;
  1076. }
  1077. }
  1078. } else scode = 404;
  1079. _node->freeQueryResult((void *)pl);
  1080. } else scode = 500;
  1081. } else {
  1082. if (_controller) {
  1083. scode = _controller->handleControlPlaneHttpGET(std::vector<std::string>(ps.begin()+1,ps.end()),urlArgs,headers,body,responseBody,responseContentType);
  1084. } else scode = 404;
  1085. }
  1086. } else scode = 401; // isAuth == false
  1087. } else if ((httpMethod == HTTP_POST)||(httpMethod == HTTP_PUT)) {
  1088. if (isAuth) {
  1089. if (ps[0] == "moon") {
  1090. if (ps.size() == 2) {
  1091. uint64_t seed = 0;
  1092. try {
  1093. json j(OSUtils::jsonParse(body));
  1094. if (j.is_object()) {
  1095. seed = Utils::hexStrToU64(OSUtils::jsonString(j["seed"],"0").c_str());
  1096. }
  1097. } catch ( ... ) {
  1098. // discard invalid JSON
  1099. }
  1100. std::vector<World> moons(_node->moons());
  1101. const uint64_t id = Utils::hexStrToU64(ps[1].c_str());
  1102. for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
  1103. if (m->id() == id) {
  1104. _moonToJson(res,*m);
  1105. scode = 200;
  1106. break;
  1107. }
  1108. }
  1109. if ((scode != 200)&&(seed != 0)) {
  1110. char tmp[64];
  1111. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.16llx",id);
  1112. res["id"] = tmp;
  1113. res["roots"] = json::array();
  1114. res["timestamp"] = 0;
  1115. res["signature"] = json();
  1116. res["updatesMustBeSignedBy"] = json();
  1117. res["waiting"] = true;
  1118. _node->orbit((void *)0,id,seed);
  1119. scode = 200;
  1120. }
  1121. } else scode = 404;
  1122. } else if (ps[0] == "network") {
  1123. if (ps.size() == 2) {
  1124. uint64_t wantnw = Utils::hexStrToU64(ps[1].c_str());
  1125. _node->join(wantnw,(void *)0,(void *)0); // does nothing if we are a member
  1126. ZT_VirtualNetworkList *nws = _node->networks();
  1127. if (nws) {
  1128. for(unsigned long i=0;i<nws->networkCount;++i) {
  1129. if (nws->networks[i].nwid == wantnw) {
  1130. OneService::NetworkSettings localSettings;
  1131. getNetworkSettings(nws->networks[i].nwid,localSettings);
  1132. try {
  1133. json j(OSUtils::jsonParse(body));
  1134. if (j.is_object()) {
  1135. json &allowManaged = j["allowManaged"];
  1136. if (allowManaged.is_boolean()) localSettings.allowManaged = (bool)allowManaged;
  1137. json &allowGlobal = j["allowGlobal"];
  1138. if (allowGlobal.is_boolean()) localSettings.allowGlobal = (bool)allowGlobal;
  1139. json &allowDefault = j["allowDefault"];
  1140. if (allowDefault.is_boolean()) localSettings.allowDefault = (bool)allowDefault;
  1141. }
  1142. } catch ( ... ) {
  1143. // discard invalid JSON
  1144. }
  1145. setNetworkSettings(nws->networks[i].nwid,localSettings);
  1146. _networkToJson(res,&(nws->networks[i]),portDeviceName(nws->networks[i].nwid),localSettings);
  1147. scode = 200;
  1148. break;
  1149. }
  1150. }
  1151. _node->freeQueryResult((void *)nws);
  1152. } else scode = 500;
  1153. } else scode = 404;
  1154. } else {
  1155. if (_controller)
  1156. scode = _controller->handleControlPlaneHttpPOST(std::vector<std::string>(ps.begin()+1,ps.end()),urlArgs,headers,body,responseBody,responseContentType);
  1157. else scode = 404;
  1158. }
  1159. } else scode = 401; // isAuth == false
  1160. } else if (httpMethod == HTTP_DELETE) {
  1161. if (isAuth) {
  1162. if (ps[0] == "moon") {
  1163. if (ps.size() == 2) {
  1164. _node->deorbit((void *)0,Utils::hexStrToU64(ps[1].c_str()));
  1165. res["result"] = true;
  1166. scode = 200;
  1167. } // else 404
  1168. } else if (ps[0] == "network") {
  1169. ZT_VirtualNetworkList *nws = _node->networks();
  1170. if (nws) {
  1171. if (ps.size() == 2) {
  1172. uint64_t wantnw = Utils::hexStrToU64(ps[1].c_str());
  1173. for(unsigned long i=0;i<nws->networkCount;++i) {
  1174. if (nws->networks[i].nwid == wantnw) {
  1175. _node->leave(wantnw,(void **)0,(void *)0);
  1176. res["result"] = true;
  1177. scode = 200;
  1178. break;
  1179. }
  1180. }
  1181. } // else 404
  1182. _node->freeQueryResult((void *)nws);
  1183. } else scode = 500;
  1184. } else {
  1185. if (_controller)
  1186. scode = _controller->handleControlPlaneHttpDELETE(std::vector<std::string>(ps.begin()+1,ps.end()),urlArgs,headers,body,responseBody,responseContentType);
  1187. else scode = 404;
  1188. }
  1189. } else scode = 401; // isAuth = false
  1190. } else {
  1191. scode = 400;
  1192. }
  1193. if (responseBody.length() == 0) {
  1194. if ((res.is_object())||(res.is_array()))
  1195. responseBody = OSUtils::jsonDump(res);
  1196. else responseBody = "{}";
  1197. responseContentType = "application/json";
  1198. }
  1199. // Wrap result in jsonp function call if the user included a jsonp= url argument.
  1200. // Also double-check isAuth since forbidding this without auth feels safer.
  1201. std::map<std::string,std::string>::const_iterator jsonp(urlArgs.find("jsonp"));
  1202. if ((isAuth)&&(jsonp != urlArgs.end())&&(responseContentType == "application/json")) {
  1203. if (responseBody.length() > 0)
  1204. responseBody = jsonp->second + "(" + responseBody + ");";
  1205. else responseBody = jsonp->second + "(null);";
  1206. responseContentType = "application/javascript";
  1207. }
  1208. return scode;
  1209. }
  1210. // Must be called after _localConfig is read or modified
  1211. void applyLocalConfig()
  1212. {
  1213. Mutex::Lock _l(_localConfig_m);
  1214. json lc(_localConfig);
  1215. _v4Hints.clear();
  1216. _v6Hints.clear();
  1217. _v4Blacklists.clear();
  1218. _v6Blacklists.clear();
  1219. json &virt = lc["virtual"];
  1220. if (virt.is_object()) {
  1221. for(json::iterator v(virt.begin());v!=virt.end();++v) {
  1222. const std::string nstr = v.key();
  1223. if ((nstr.length() == ZT_ADDRESS_LENGTH_HEX)&&(v.value().is_object())) {
  1224. const Address ztaddr(Utils::hexStrToU64(nstr.c_str()));
  1225. if (ztaddr) {
  1226. const uint64_t ztaddr2 = ztaddr.toInt();
  1227. std::vector<InetAddress> &v4h = _v4Hints[ztaddr2];
  1228. std::vector<InetAddress> &v6h = _v6Hints[ztaddr2];
  1229. std::vector<InetAddress> &v4b = _v4Blacklists[ztaddr2];
  1230. std::vector<InetAddress> &v6b = _v6Blacklists[ztaddr2];
  1231. json &tryAddrs = v.value()["try"];
  1232. if (tryAddrs.is_array()) {
  1233. for(unsigned long i=0;i<tryAddrs.size();++i) {
  1234. const InetAddress ip(OSUtils::jsonString(tryAddrs[i],"").c_str());
  1235. if (ip.ss_family == AF_INET)
  1236. v4h.push_back(ip);
  1237. else if (ip.ss_family == AF_INET6)
  1238. v6h.push_back(ip);
  1239. }
  1240. }
  1241. json &blAddrs = v.value()["blacklist"];
  1242. if (blAddrs.is_array()) {
  1243. for(unsigned long i=0;i<blAddrs.size();++i) {
  1244. const InetAddress ip(OSUtils::jsonString(tryAddrs[i],"").c_str());
  1245. if (ip.ss_family == AF_INET)
  1246. v4b.push_back(ip);
  1247. else if (ip.ss_family == AF_INET6)
  1248. v6b.push_back(ip);
  1249. }
  1250. }
  1251. if (v4h.empty()) _v4Hints.erase(ztaddr2);
  1252. if (v6h.empty()) _v6Hints.erase(ztaddr2);
  1253. if (v4b.empty()) _v4Blacklists.erase(ztaddr2);
  1254. if (v6b.empty()) _v6Blacklists.erase(ztaddr2);
  1255. }
  1256. }
  1257. }
  1258. }
  1259. _globalV4Blacklist.clear();
  1260. _globalV6Blacklist.clear();
  1261. json &physical = lc["physical"];
  1262. if (physical.is_object()) {
  1263. for(json::iterator phy(physical.begin());phy!=physical.end();++phy) {
  1264. const InetAddress net(OSUtils::jsonString(phy.key(),"").c_str());
  1265. if ((net)&&(net.netmaskBits() > 0)) {
  1266. if (phy.value().is_object()) {
  1267. if (OSUtils::jsonBool(phy.value()["blacklist"],false)) {
  1268. if (net.ss_family == AF_INET)
  1269. _globalV4Blacklist.push_back(net);
  1270. else if (net.ss_family == AF_INET6)
  1271. _globalV6Blacklist.push_back(net);
  1272. }
  1273. }
  1274. }
  1275. }
  1276. }
  1277. _allowManagementFrom.clear();
  1278. _interfacePrefixBlacklist.clear();
  1279. json &settings = lc["settings"];
  1280. _primaryPort = (unsigned int)OSUtils::jsonInt(settings["primaryPort"],(uint64_t)_primaryPort) & 0xffff;
  1281. _portMappingEnabled = OSUtils::jsonBool(settings["portMappingEnabled"],true);
  1282. #ifndef ZT_SDK
  1283. const std::string up(OSUtils::jsonString(settings["softwareUpdate"],ZT_SOFTWARE_UPDATE_DEFAULT));
  1284. const bool udist = OSUtils::jsonBool(settings["softwareUpdateDist"],false);
  1285. if (((up == "apply")||(up == "download"))||(udist)) {
  1286. if (!_updater)
  1287. _updater = new SoftwareUpdater(*_node,_homePath);
  1288. _updateAutoApply = (up == "apply");
  1289. _updater->setUpdateDistribution(udist);
  1290. _updater->setChannel(OSUtils::jsonString(settings["softwareUpdateChannel"],ZT_SOFTWARE_UPDATE_DEFAULT_CHANNEL));
  1291. } else {
  1292. delete _updater;
  1293. _updater = (SoftwareUpdater *)0;
  1294. _updateAutoApply = false;
  1295. }
  1296. #endif
  1297. json &ignoreIfs = settings["interfacePrefixBlacklist"];
  1298. if (ignoreIfs.is_array()) {
  1299. for(unsigned long i=0;i<ignoreIfs.size();++i) {
  1300. const std::string tmp(OSUtils::jsonString(ignoreIfs[i],""));
  1301. if (tmp.length() > 0)
  1302. _interfacePrefixBlacklist.push_back(tmp);
  1303. }
  1304. }
  1305. json &amf = settings["allowManagementFrom"];
  1306. if (amf.is_array()) {
  1307. for(unsigned long i=0;i<amf.size();++i) {
  1308. const InetAddress nw(OSUtils::jsonString(amf[i],"").c_str());
  1309. if (nw)
  1310. _allowManagementFrom.push_back(nw);
  1311. }
  1312. }
  1313. }
  1314. // Checks if a managed IP or route target is allowed
  1315. bool checkIfManagedIsAllowed(const NetworkState &n,const InetAddress &target)
  1316. {
  1317. if (!n.settings.allowManaged)
  1318. return false;
  1319. if (n.settings.allowManagedWhitelist.size() > 0) {
  1320. bool allowed = false;
  1321. for (InetAddress addr : n.settings.allowManagedWhitelist) {
  1322. if (addr.containsAddress(target) && addr.netmaskBits() <= target.netmaskBits()) {
  1323. allowed = true;
  1324. break;
  1325. }
  1326. }
  1327. if (!allowed) return false;
  1328. }
  1329. if (target.isDefaultRoute())
  1330. return n.settings.allowDefault;
  1331. switch(target.ipScope()) {
  1332. case InetAddress::IP_SCOPE_NONE:
  1333. case InetAddress::IP_SCOPE_MULTICAST:
  1334. case InetAddress::IP_SCOPE_LOOPBACK:
  1335. case InetAddress::IP_SCOPE_LINK_LOCAL:
  1336. return false;
  1337. case InetAddress::IP_SCOPE_GLOBAL:
  1338. return n.settings.allowGlobal;
  1339. default:
  1340. return true;
  1341. }
  1342. }
  1343. // Match only an IP from a vector of IPs -- used in syncManagedStuff()
  1344. bool matchIpOnly(const std::vector<InetAddress> &ips,const InetAddress &ip) const
  1345. {
  1346. for(std::vector<InetAddress>::const_iterator i(ips.begin());i!=ips.end();++i) {
  1347. if (i->ipsEqual(ip))
  1348. return true;
  1349. }
  1350. return false;
  1351. }
  1352. // Apply or update managed IPs for a configured network (be sure n.tap exists)
  1353. void syncManagedStuff(NetworkState &n,bool syncIps,bool syncRoutes)
  1354. {
  1355. char ipbuf[64];
  1356. // assumes _nets_m is locked
  1357. if (syncIps) {
  1358. std::vector<InetAddress> newManagedIps;
  1359. newManagedIps.reserve(n.config.assignedAddressCount);
  1360. for(unsigned int i=0;i<n.config.assignedAddressCount;++i) {
  1361. const InetAddress *ii = reinterpret_cast<const InetAddress *>(&(n.config.assignedAddresses[i]));
  1362. if (checkIfManagedIsAllowed(n,*ii))
  1363. newManagedIps.push_back(*ii);
  1364. }
  1365. std::sort(newManagedIps.begin(),newManagedIps.end());
  1366. newManagedIps.erase(std::unique(newManagedIps.begin(),newManagedIps.end()),newManagedIps.end());
  1367. for(std::vector<InetAddress>::iterator ip(n.managedIps.begin());ip!=n.managedIps.end();++ip) {
  1368. if (std::find(newManagedIps.begin(),newManagedIps.end(),*ip) == newManagedIps.end()) {
  1369. if (!n.tap->removeIp(*ip))
  1370. fprintf(stderr,"ERROR: unable to remove ip address %s" ZT_EOL_S, ip->toString(ipbuf));
  1371. }
  1372. }
  1373. #ifdef __SYNOLOGY__
  1374. if (!n.tap->addIpSyn(newManagedIps))
  1375. fprintf(stderr,"ERROR: unable to add ip addresses to ifcfg" ZT_EOL_S);
  1376. #else
  1377. for(std::vector<InetAddress>::iterator ip(newManagedIps.begin());ip!=newManagedIps.end();++ip) {
  1378. if (std::find(n.managedIps.begin(),n.managedIps.end(),*ip) == n.managedIps.end()) {
  1379. if (!n.tap->addIp(*ip))
  1380. fprintf(stderr,"ERROR: unable to add ip address %s" ZT_EOL_S, ip->toString(ipbuf));
  1381. }
  1382. }
  1383. #endif
  1384. n.managedIps.swap(newManagedIps);
  1385. }
  1386. if (syncRoutes) {
  1387. char tapdev[64];
  1388. #ifdef __WINDOWS__
  1389. OSUtils::ztsnprintf(tapdev,sizeof(tapdev),"%.16llx",(unsigned long long)n.tap->luid().Value);
  1390. #else
  1391. Utils::scopy(tapdev,sizeof(tapdev),n.tap->deviceName().c_str());
  1392. #endif
  1393. std::vector<InetAddress> myIps(n.tap->ips());
  1394. // Nuke applied routes that are no longer in n.config.routes[] and/or are not allowed
  1395. for(std::list< SharedPtr<ManagedRoute> >::iterator mr(n.managedRoutes.begin());mr!=n.managedRoutes.end();) {
  1396. bool haveRoute = false;
  1397. if ( (checkIfManagedIsAllowed(n,(*mr)->target())) && (((*mr)->via().ss_family != (*mr)->target().ss_family)||(!matchIpOnly(myIps,(*mr)->via()))) ) {
  1398. for(unsigned int i=0;i<n.config.routeCount;++i) {
  1399. const InetAddress *const target = reinterpret_cast<const InetAddress *>(&(n.config.routes[i].target));
  1400. const InetAddress *const via = reinterpret_cast<const InetAddress *>(&(n.config.routes[i].via));
  1401. if ( ((*mr)->target() == *target) && ( ((via->ss_family == target->ss_family)&&((*mr)->via().ipsEqual(*via))) || (tapdev == (*mr)->device()) ) ) {
  1402. haveRoute = true;
  1403. break;
  1404. }
  1405. }
  1406. }
  1407. if (haveRoute) {
  1408. ++mr;
  1409. } else {
  1410. n.managedRoutes.erase(mr++);
  1411. }
  1412. }
  1413. // Apply routes in n.config.routes[] that we haven't applied yet, and sync those we have in case shadow routes need to change
  1414. for(unsigned int i=0;i<n.config.routeCount;++i) {
  1415. const InetAddress *const target = reinterpret_cast<const InetAddress *>(&(n.config.routes[i].target));
  1416. const InetAddress *const via = reinterpret_cast<const InetAddress *>(&(n.config.routes[i].via));
  1417. if ( (!checkIfManagedIsAllowed(n,*target)) || ((via->ss_family == target->ss_family)&&(matchIpOnly(myIps,*via))) )
  1418. continue;
  1419. bool haveRoute = false;
  1420. // Ignore routes implied by local managed IPs since adding the IP adds the route
  1421. for(std::vector<InetAddress>::iterator ip(n.managedIps.begin());ip!=n.managedIps.end();++ip) {
  1422. if ((target->netmaskBits() == ip->netmaskBits())&&(target->containsAddress(*ip))) {
  1423. haveRoute = true;
  1424. break;
  1425. }
  1426. }
  1427. if (haveRoute)
  1428. continue;
  1429. // If we've already applied this route, just sync it and continue
  1430. for(std::list< SharedPtr<ManagedRoute> >::iterator mr(n.managedRoutes.begin());mr!=n.managedRoutes.end();++mr) {
  1431. if ( ((*mr)->target() == *target) && ( ((via->ss_family == target->ss_family)&&((*mr)->via().ipsEqual(*via))) || (tapdev == (*mr)->device()) ) ) {
  1432. haveRoute = true;
  1433. (*mr)->sync();
  1434. break;
  1435. }
  1436. }
  1437. if (haveRoute)
  1438. continue;
  1439. // Add and apply new routes
  1440. n.managedRoutes.push_back(SharedPtr<ManagedRoute>(new ManagedRoute(*target,*via,tapdev)));
  1441. if (!n.managedRoutes.back()->sync())
  1442. n.managedRoutes.pop_back();
  1443. }
  1444. }
  1445. }
  1446. // =========================================================================
  1447. // Handlers for Node and Phy<> callbacks
  1448. // =========================================================================
  1449. inline void phyOnDatagram(PhySocket *sock,void **uptr,const struct sockaddr *localAddr,const struct sockaddr *from,void *data,unsigned long len)
  1450. {
  1451. if ((len >= 16)&&(reinterpret_cast<const InetAddress *>(from)->ipScope() == InetAddress::IP_SCOPE_GLOBAL))
  1452. _lastDirectReceiveFromGlobal = OSUtils::now();
  1453. const ZT_ResultCode rc = _node->processWirePacket(
  1454. (void *)0,
  1455. OSUtils::now(),
  1456. reinterpret_cast<int64_t>(sock),
  1457. reinterpret_cast<const struct sockaddr_storage *>(from), // Phy<> uses sockaddr_storage, so it'll always be that big
  1458. data,
  1459. len,
  1460. &_nextBackgroundTaskDeadline);
  1461. if (ZT_ResultCode_isFatal(rc)) {
  1462. char tmp[256];
  1463. OSUtils::ztsnprintf(tmp,sizeof(tmp),"fatal error code from processWirePacket: %d",(int)rc);
  1464. Mutex::Lock _l(_termReason_m);
  1465. _termReason = ONE_UNRECOVERABLE_ERROR;
  1466. _fatalErrorMessage = tmp;
  1467. this->terminate();
  1468. }
  1469. }
  1470. inline void phyOnTcpConnect(PhySocket *sock,void **uptr,bool success)
  1471. {
  1472. if (!success) {
  1473. phyOnTcpClose(sock,uptr);
  1474. return;
  1475. }
  1476. TcpConnection *const tc = reinterpret_cast<TcpConnection *>(*uptr);
  1477. if (!tc) { // sanity check
  1478. _phy.close(sock,true);
  1479. return;
  1480. }
  1481. tc->sock = sock;
  1482. if (tc->type == TcpConnection::TCP_TUNNEL_OUTGOING) {
  1483. if (_tcpFallbackTunnel)
  1484. _phy.close(_tcpFallbackTunnel->sock);
  1485. _tcpFallbackTunnel = tc;
  1486. _phy.streamSend(sock,ZT_TCP_TUNNEL_HELLO,sizeof(ZT_TCP_TUNNEL_HELLO));
  1487. } else {
  1488. _phy.close(sock,true);
  1489. }
  1490. }
  1491. inline void phyOnTcpAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN,const struct sockaddr *from)
  1492. {
  1493. if (!from) {
  1494. _phy.close(sockN,false);
  1495. return;
  1496. } else {
  1497. TcpConnection *tc = new TcpConnection();
  1498. {
  1499. Mutex::Lock _l(_tcpConnections_m);
  1500. _tcpConnections.push_back(tc);
  1501. }
  1502. tc->type = TcpConnection::TCP_UNCATEGORIZED_INCOMING;
  1503. tc->parent = this;
  1504. tc->sock = sockN;
  1505. tc->remoteAddr = from;
  1506. tc->lastReceive = OSUtils::now();
  1507. http_parser_init(&(tc->parser),HTTP_REQUEST);
  1508. tc->parser.data = (void *)tc;
  1509. tc->messageSize = 0;
  1510. *uptrN = (void *)tc;
  1511. }
  1512. }
  1513. void phyOnTcpClose(PhySocket *sock,void **uptr)
  1514. {
  1515. TcpConnection *tc = (TcpConnection *)*uptr;
  1516. if (tc) {
  1517. if (tc == _tcpFallbackTunnel) {
  1518. _tcpFallbackTunnel = (TcpConnection *)0;
  1519. }
  1520. {
  1521. Mutex::Lock _l(_tcpConnections_m);
  1522. _tcpConnections.erase(std::remove(_tcpConnections.begin(),_tcpConnections.end(),tc),_tcpConnections.end());
  1523. }
  1524. delete tc;
  1525. }
  1526. }
  1527. void phyOnTcpData(PhySocket *sock,void **uptr,void *data,unsigned long len)
  1528. {
  1529. try {
  1530. if (!len) return; // sanity check, should never happen
  1531. TcpConnection *tc = reinterpret_cast<TcpConnection *>(*uptr);
  1532. tc->lastReceive = OSUtils::now();
  1533. switch(tc->type) {
  1534. case TcpConnection::TCP_UNCATEGORIZED_INCOMING:
  1535. switch(reinterpret_cast<uint8_t *>(data)[0]) {
  1536. // HTTP: GET, PUT, POST, HEAD
  1537. case 'G':
  1538. case 'P':
  1539. case 'H': {
  1540. // This is only allowed from IPs permitted to access the management
  1541. // backplane, which is just 127.0.0.1/::1 unless otherwise configured.
  1542. bool allow;
  1543. {
  1544. Mutex::Lock _l(_localConfig_m);
  1545. if (_allowManagementFrom.size() == 0) {
  1546. allow = (tc->remoteAddr.ipScope() == InetAddress::IP_SCOPE_LOOPBACK);
  1547. } else {
  1548. allow = false;
  1549. for(std::vector<InetAddress>::const_iterator i(_allowManagementFrom.begin());i!=_allowManagementFrom.end();++i) {
  1550. if (i->containsAddress(tc->remoteAddr)) {
  1551. allow = true;
  1552. break;
  1553. }
  1554. }
  1555. }
  1556. }
  1557. if (allow) {
  1558. tc->type = TcpConnection::TCP_HTTP_INCOMING;
  1559. phyOnTcpData(sock,uptr,data,len);
  1560. } else {
  1561. _phy.close(sock);
  1562. }
  1563. } break;
  1564. // Drop unknown protocols
  1565. default:
  1566. _phy.close(sock);
  1567. break;
  1568. }
  1569. return;
  1570. case TcpConnection::TCP_HTTP_INCOMING:
  1571. case TcpConnection::TCP_HTTP_OUTGOING:
  1572. http_parser_execute(&(tc->parser),&HTTP_PARSER_SETTINGS,(const char *)data,len);
  1573. if ((tc->parser.upgrade)||(tc->parser.http_errno != HPE_OK))
  1574. _phy.close(sock);
  1575. return;
  1576. case TcpConnection::TCP_TUNNEL_OUTGOING:
  1577. tc->readq.append((const char *)data,len);
  1578. while (tc->readq.length() >= 5) {
  1579. const char *data = tc->readq.data();
  1580. const unsigned long mlen = ( ((((unsigned long)data[3]) & 0xff) << 8) | (((unsigned long)data[4]) & 0xff) );
  1581. if (tc->readq.length() >= (mlen + 5)) {
  1582. InetAddress from;
  1583. unsigned long plen = mlen; // payload length, modified if there's an IP header
  1584. data += 5; // skip forward past pseudo-TLS junk and mlen
  1585. if (plen == 4) {
  1586. // Hello message, which isn't sent by proxy and would be ignored by client
  1587. } else if (plen) {
  1588. // Messages should contain IPv4 or IPv6 source IP address data
  1589. switch(data[0]) {
  1590. case 4: // IPv4
  1591. if (plen >= 7) {
  1592. from.set((const void *)(data + 1),4,((((unsigned int)data[5]) & 0xff) << 8) | (((unsigned int)data[6]) & 0xff));
  1593. data += 7; // type + 4 byte IP + 2 byte port
  1594. plen -= 7;
  1595. } else {
  1596. _phy.close(sock);
  1597. return;
  1598. }
  1599. break;
  1600. case 6: // IPv6
  1601. if (plen >= 19) {
  1602. from.set((const void *)(data + 1),16,((((unsigned int)data[17]) & 0xff) << 8) | (((unsigned int)data[18]) & 0xff));
  1603. data += 19; // type + 16 byte IP + 2 byte port
  1604. plen -= 19;
  1605. } else {
  1606. _phy.close(sock);
  1607. return;
  1608. }
  1609. break;
  1610. case 0: // none/omitted
  1611. ++data;
  1612. --plen;
  1613. break;
  1614. default: // invalid address type
  1615. _phy.close(sock);
  1616. return;
  1617. }
  1618. if (from) {
  1619. InetAddress fakeTcpLocalInterfaceAddress((uint32_t)0xffffffff,0xffff);
  1620. const ZT_ResultCode rc = _node->processWirePacket(
  1621. (void *)0,
  1622. OSUtils::now(),
  1623. -1,
  1624. reinterpret_cast<struct sockaddr_storage *>(&from),
  1625. data,
  1626. plen,
  1627. &_nextBackgroundTaskDeadline);
  1628. if (ZT_ResultCode_isFatal(rc)) {
  1629. char tmp[256];
  1630. OSUtils::ztsnprintf(tmp,sizeof(tmp),"fatal error code from processWirePacket: %d",(int)rc);
  1631. Mutex::Lock _l(_termReason_m);
  1632. _termReason = ONE_UNRECOVERABLE_ERROR;
  1633. _fatalErrorMessage = tmp;
  1634. this->terminate();
  1635. _phy.close(sock);
  1636. return;
  1637. }
  1638. }
  1639. }
  1640. if (tc->readq.length() > (mlen + 5))
  1641. tc->readq.erase(tc->readq.begin(),tc->readq.begin() + (mlen + 5));
  1642. else tc->readq.clear();
  1643. } else break;
  1644. }
  1645. return;
  1646. }
  1647. } catch ( ... ) {
  1648. _phy.close(sock);
  1649. }
  1650. }
  1651. inline void phyOnTcpWritable(PhySocket *sock,void **uptr)
  1652. {
  1653. TcpConnection *tc = reinterpret_cast<TcpConnection *>(*uptr);
  1654. bool closeit = false;
  1655. {
  1656. Mutex::Lock _l(tc->writeq_m);
  1657. if (tc->writeq.length() > 0) {
  1658. long sent = (long)_phy.streamSend(sock,tc->writeq.data(),(unsigned long)tc->writeq.length(),true);
  1659. if (sent > 0) {
  1660. if ((unsigned long)sent >= (unsigned long)tc->writeq.length()) {
  1661. tc->writeq.clear();
  1662. _phy.setNotifyWritable(sock,false);
  1663. if (tc->type == TcpConnection::TCP_HTTP_INCOMING)
  1664. closeit = true; // HTTP keep alive not supported
  1665. } else {
  1666. tc->writeq.erase(tc->writeq.begin(),tc->writeq.begin() + sent);
  1667. }
  1668. }
  1669. } else {
  1670. _phy.setNotifyWritable(sock,false);
  1671. }
  1672. }
  1673. if (closeit)
  1674. _phy.close(sock);
  1675. }
  1676. inline void phyOnFileDescriptorActivity(PhySocket *sock,void **uptr,bool readable,bool writable) {}
  1677. inline void phyOnUnixAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN) {}
  1678. inline void phyOnUnixClose(PhySocket *sock,void **uptr) {}
  1679. inline void phyOnUnixData(PhySocket *sock,void **uptr,void *data,unsigned long len) {}
  1680. inline void phyOnUnixWritable(PhySocket *sock,void **uptr,bool lwip_invoked) {}
  1681. inline int nodeVirtualNetworkConfigFunction(uint64_t nwid,void **nuptr,enum ZT_VirtualNetworkConfigOperation op,const ZT_VirtualNetworkConfig *nwc)
  1682. {
  1683. Mutex::Lock _l(_nets_m);
  1684. NetworkState &n = _nets[nwid];
  1685. switch(op) {
  1686. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_UP:
  1687. if (!n.tap) {
  1688. try {
  1689. char friendlyName[128];
  1690. OSUtils::ztsnprintf(friendlyName,sizeof(friendlyName),"ZeroTier One [%.16llx]",nwid);
  1691. n.tap = new EthernetTap(
  1692. _homePath.c_str(),
  1693. MAC(nwc->mac),
  1694. nwc->mtu,
  1695. (unsigned int)ZT_IF_METRIC,
  1696. nwid,
  1697. friendlyName,
  1698. StapFrameHandler,
  1699. (void *)this);
  1700. *nuptr = (void *)&n;
  1701. char nlcpath[256];
  1702. OSUtils::ztsnprintf(nlcpath,sizeof(nlcpath),"%s" ZT_PATH_SEPARATOR_S "networks.d" ZT_PATH_SEPARATOR_S "%.16llx.local.conf",_homePath.c_str(),nwid);
  1703. std::string nlcbuf;
  1704. if (OSUtils::readFile(nlcpath,nlcbuf)) {
  1705. Dictionary<4096> nc;
  1706. nc.load(nlcbuf.c_str());
  1707. Buffer<1024> allowManaged;
  1708. if (nc.get("allowManaged", allowManaged) && allowManaged.size() != 0) {
  1709. std::string addresses (allowManaged.begin(), allowManaged.size());
  1710. if (allowManaged.size() <= 5) { // untidy parsing for backward compatibility
  1711. if (allowManaged[0] == '1' || allowManaged[0] == 't' || allowManaged[0] == 'T') {
  1712. n.settings.allowManaged = true;
  1713. } else {
  1714. n.settings.allowManaged = false;
  1715. }
  1716. } else {
  1717. // this should be a list of IP addresses
  1718. n.settings.allowManaged = true;
  1719. size_t pos = 0;
  1720. while (true) {
  1721. size_t nextPos = addresses.find(',', pos);
  1722. std::string address = addresses.substr(pos, (nextPos == std::string::npos ? addresses.size() : nextPos) - pos);
  1723. n.settings.allowManagedWhitelist.push_back(InetAddress(address.c_str()));
  1724. if (nextPos == std::string::npos) break;
  1725. pos = nextPos + 1;
  1726. }
  1727. }
  1728. } else {
  1729. n.settings.allowManaged = true;
  1730. }
  1731. n.settings.allowGlobal = nc.getB("allowGlobal", false);
  1732. n.settings.allowDefault = nc.getB("allowDefault", false);
  1733. }
  1734. } catch (std::exception &exc) {
  1735. #ifdef __WINDOWS__
  1736. FILE *tapFailLog = fopen((_homePath + ZT_PATH_SEPARATOR_S"port_error_log.txt").c_str(),"a");
  1737. if (tapFailLog) {
  1738. fprintf(tapFailLog,"%.16llx: %s" ZT_EOL_S,(unsigned long long)nwid,exc.what());
  1739. fclose(tapFailLog);
  1740. }
  1741. #else
  1742. fprintf(stderr,"ERROR: unable to configure virtual network port: %s" ZT_EOL_S,exc.what());
  1743. #endif
  1744. _nets.erase(nwid);
  1745. return -999;
  1746. } catch ( ... ) {
  1747. return -999; // tap init failed
  1748. }
  1749. }
  1750. // After setting up tap, fall through to CONFIG_UPDATE since we also want to do this...
  1751. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_CONFIG_UPDATE:
  1752. memcpy(&(n.config),nwc,sizeof(ZT_VirtualNetworkConfig));
  1753. if (n.tap) { // sanity check
  1754. #ifdef __WINDOWS__
  1755. // wait for up to 5 seconds for the WindowsEthernetTap to actually be initialized
  1756. //
  1757. // without WindowsEthernetTap::isInitialized() returning true, the won't actually
  1758. // be online yet and setting managed routes on it will fail.
  1759. const int MAX_SLEEP_COUNT = 500;
  1760. for (int i = 0; !n.tap->isInitialized() && i < MAX_SLEEP_COUNT; i++) {
  1761. Sleep(10);
  1762. }
  1763. #endif
  1764. syncManagedStuff(n,true,true);
  1765. n.tap->setMtu(nwc->mtu);
  1766. } else {
  1767. _nets.erase(nwid);
  1768. return -999; // tap init failed
  1769. }
  1770. break;
  1771. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DOWN:
  1772. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY:
  1773. if (n.tap) { // sanity check
  1774. #ifdef __WINDOWS__
  1775. std::string winInstanceId(n.tap->instanceId());
  1776. #endif
  1777. *nuptr = (void *)0;
  1778. delete n.tap;
  1779. _nets.erase(nwid);
  1780. #ifdef __WINDOWS__
  1781. if ((op == ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY)&&(winInstanceId.length() > 0))
  1782. WindowsEthernetTap::deletePersistentTapDevice(winInstanceId.c_str());
  1783. #endif
  1784. if (op == ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY) {
  1785. char nlcpath[256];
  1786. OSUtils::ztsnprintf(nlcpath,sizeof(nlcpath),"%s" ZT_PATH_SEPARATOR_S "networks.d" ZT_PATH_SEPARATOR_S "%.16llx.local.conf",_homePath.c_str(),nwid);
  1787. OSUtils::rm(nlcpath);
  1788. }
  1789. } else {
  1790. _nets.erase(nwid);
  1791. }
  1792. break;
  1793. }
  1794. return 0;
  1795. }
  1796. inline void nodeEventCallback(enum ZT_Event event,const void *metaData)
  1797. {
  1798. switch(event) {
  1799. case ZT_EVENT_FATAL_ERROR_IDENTITY_COLLISION: {
  1800. Mutex::Lock _l(_termReason_m);
  1801. _termReason = ONE_IDENTITY_COLLISION;
  1802. _fatalErrorMessage = "identity/address collision";
  1803. this->terminate();
  1804. } break;
  1805. case ZT_EVENT_TRACE: {
  1806. if (metaData) {
  1807. ::fprintf(stderr,"%s" ZT_EOL_S,(const char *)metaData);
  1808. ::fflush(stderr);
  1809. }
  1810. } break;
  1811. case ZT_EVENT_USER_MESSAGE: {
  1812. const ZT_UserMessage *um = reinterpret_cast<const ZT_UserMessage *>(metaData);
  1813. if ((um->typeId == ZT_SOFTWARE_UPDATE_USER_MESSAGE_TYPE)&&(_updater)) {
  1814. _updater->handleSoftwareUpdateUserMessage(um->origin,um->data,um->length);
  1815. }
  1816. } break;
  1817. case ZT_EVENT_REMOTE_TRACE: {
  1818. const ZT_RemoteTrace *rt = reinterpret_cast<const ZT_RemoteTrace *>(metaData);
  1819. if ((rt)&&(rt->len > 0)&&(rt->len <= ZT_MAX_REMOTE_TRACE_SIZE)&&(rt->data))
  1820. _controller->handleRemoteTrace(*rt);
  1821. }
  1822. default:
  1823. break;
  1824. }
  1825. }
  1826. inline void nodeStatePutFunction(enum ZT_StateObjectType type,const uint64_t id[2],const void *data,int len)
  1827. {
  1828. char p[1024];
  1829. FILE *f;
  1830. bool secure = false;
  1831. switch(type) {
  1832. case ZT_STATE_OBJECT_IDENTITY_PUBLIC:
  1833. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.public",_homePath.c_str());
  1834. break;
  1835. case ZT_STATE_OBJECT_IDENTITY_SECRET:
  1836. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.secret",_homePath.c_str());
  1837. secure = true;
  1838. break;
  1839. case ZT_STATE_OBJECT_PLANET:
  1840. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "planet",_homePath.c_str());
  1841. break;
  1842. case ZT_STATE_OBJECT_MOON:
  1843. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "moons.d/%.16llx.moon",_homePath.c_str(),(unsigned long long)id[0]);
  1844. break;
  1845. case ZT_STATE_OBJECT_NETWORK_CONFIG:
  1846. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "networks.d/%.16llx.conf",_homePath.c_str(),(unsigned long long)id[0]);
  1847. secure = true;
  1848. break;
  1849. default:
  1850. return;
  1851. }
  1852. if (len >= 0) {
  1853. // Check to see if we've already written this first. This reduces
  1854. // redundant writes and I/O overhead on most platforms and has
  1855. // little effect on others.
  1856. f = fopen(p,"r");
  1857. if (f) {
  1858. char buf[65535];
  1859. long l = (long)fread(buf,1,sizeof(buf),f);
  1860. fclose(f);
  1861. if ((l == (long)len)&&(memcmp(data,buf,l) == 0))
  1862. return;
  1863. }
  1864. f = fopen(p,"w");
  1865. if (f) {
  1866. if (fwrite(data,len,1,f) != 1)
  1867. fprintf(stderr,"WARNING: unable to write to file: %s (I/O error)" ZT_EOL_S,p);
  1868. fclose(f);
  1869. if (secure)
  1870. OSUtils::lockDownFile(p,false);
  1871. } else {
  1872. fprintf(stderr,"WARNING: unable to write to file: %s (unable to open)" ZT_EOL_S,p);
  1873. }
  1874. } else {
  1875. OSUtils::rm(p);
  1876. }
  1877. }
  1878. inline int nodeStateGetFunction(enum ZT_StateObjectType type,const uint64_t id[2],void *data,unsigned int maxlen)
  1879. {
  1880. char p[4096];
  1881. switch(type) {
  1882. case ZT_STATE_OBJECT_IDENTITY_PUBLIC:
  1883. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.public",_homePath.c_str());
  1884. break;
  1885. case ZT_STATE_OBJECT_IDENTITY_SECRET:
  1886. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.secret",_homePath.c_str());
  1887. break;
  1888. case ZT_STATE_OBJECT_NETWORK_CONFIG:
  1889. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "networks.d/%.16llx.conf",_homePath.c_str(),(unsigned long long)id);
  1890. break;
  1891. case ZT_STATE_OBJECT_PLANET:
  1892. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "planet",_homePath.c_str());
  1893. break;
  1894. case ZT_STATE_OBJECT_MOON:
  1895. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "moons.d/%.16llx.moon",_homePath.c_str(),(unsigned long long)id);
  1896. break;
  1897. default:
  1898. return -1;
  1899. }
  1900. FILE *f = fopen(p,"r");
  1901. if (f) {
  1902. int n = (int)fread(data,1,maxlen,f);
  1903. fclose(f);
  1904. if (n >= 0)
  1905. return n;
  1906. }
  1907. return -1;
  1908. }
  1909. inline int nodeWirePacketSendFunction(const int64_t localSocket,const struct sockaddr_storage *addr,const void *data,unsigned int len,unsigned int ttl)
  1910. {
  1911. #ifdef ZT_TCP_FALLBACK_RELAY
  1912. if (addr->ss_family == AF_INET) {
  1913. // TCP fallback tunnel support, currently IPv4 only
  1914. if ((len >= 16)&&(reinterpret_cast<const InetAddress *>(addr)->ipScope() == InetAddress::IP_SCOPE_GLOBAL)) {
  1915. // Engage TCP tunnel fallback if we haven't received anything valid from a global
  1916. // IP address in ZT_TCP_FALLBACK_AFTER milliseconds. If we do start getting
  1917. // valid direct traffic we'll stop using it and close the socket after a while.
  1918. const uint64_t now = OSUtils::now();
  1919. if (((now - _lastDirectReceiveFromGlobal) > ZT_TCP_FALLBACK_AFTER)&&((now - _lastRestart) > ZT_TCP_FALLBACK_AFTER)) {
  1920. if (_tcpFallbackTunnel) {
  1921. Mutex::Lock _l(_tcpFallbackTunnel->writeq_m);
  1922. if (_tcpFallbackTunnel->writeq.length() == 0)
  1923. _phy.setNotifyWritable(_tcpFallbackTunnel->sock,true);
  1924. const unsigned long mlen = len + 7;
  1925. _tcpFallbackTunnel->writeq.push_back((char)0x17);
  1926. _tcpFallbackTunnel->writeq.push_back((char)0x03);
  1927. _tcpFallbackTunnel->writeq.push_back((char)0x03); // fake TLS 1.2 header
  1928. _tcpFallbackTunnel->writeq.push_back((char)((mlen >> 8) & 0xff));
  1929. _tcpFallbackTunnel->writeq.push_back((char)(mlen & 0xff));
  1930. _tcpFallbackTunnel->writeq.push_back((char)4); // IPv4
  1931. _tcpFallbackTunnel->writeq.append(reinterpret_cast<const char *>(reinterpret_cast<const void *>(&(reinterpret_cast<const struct sockaddr_in *>(addr)->sin_addr.s_addr))),4);
  1932. _tcpFallbackTunnel->writeq.append(reinterpret_cast<const char *>(reinterpret_cast<const void *>(&(reinterpret_cast<const struct sockaddr_in *>(addr)->sin_port))),2);
  1933. _tcpFallbackTunnel->writeq.append((const char *)data,len);
  1934. } else if (((now - _lastSendToGlobalV4) < ZT_TCP_FALLBACK_AFTER)&&((now - _lastSendToGlobalV4) > (ZT_PING_CHECK_INVERVAL / 2))) {
  1935. const InetAddress addr(ZT_TCP_FALLBACK_RELAY);
  1936. TcpConnection *tc = new TcpConnection();
  1937. {
  1938. Mutex::Lock _l(_tcpConnections_m);
  1939. _tcpConnections.push_back(tc);
  1940. }
  1941. tc->type = TcpConnection::TCP_TUNNEL_OUTGOING;
  1942. tc->remoteAddr = addr;
  1943. tc->lastReceive = OSUtils::now();
  1944. tc->parent = this;
  1945. tc->sock = (PhySocket *)0; // set in connect handler
  1946. tc->messageSize = 0;
  1947. bool connected = false;
  1948. _phy.tcpConnect(reinterpret_cast<const struct sockaddr *>(&addr),connected,(void *)tc,true);
  1949. }
  1950. }
  1951. _lastSendToGlobalV4 = now;
  1952. }
  1953. }
  1954. // Even when relaying we still send via UDP. This way if UDP starts
  1955. // working we can instantly "fail forward" to it and stop using TCP
  1956. // proxy fallback, which is slow.
  1957. #endif // ZT_TCP_FALLBACK_RELAY
  1958. if ((localSocket != -1)&&(localSocket != 0)&&(_binder.isUdpSocketValid((PhySocket *)((uintptr_t)localSocket)))) {
  1959. if ((ttl)&&(addr->ss_family == AF_INET)) _phy.setIp4UdpTtl((PhySocket *)((uintptr_t)localSocket),ttl);
  1960. const bool r = _phy.udpSend((PhySocket *)((uintptr_t)localSocket),(const struct sockaddr *)addr,data,len);
  1961. if ((ttl)&&(addr->ss_family == AF_INET)) _phy.setIp4UdpTtl((PhySocket *)((uintptr_t)localSocket),255);
  1962. return ((r) ? 0 : -1);
  1963. } else {
  1964. return ((_binder.udpSendAll(_phy,addr,data,len,ttl)) ? 0 : -1);
  1965. }
  1966. }
  1967. 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)
  1968. {
  1969. NetworkState *n = reinterpret_cast<NetworkState *>(*nuptr);
  1970. if ((!n)||(!n->tap))
  1971. return;
  1972. n->tap->put(MAC(sourceMac),MAC(destMac),etherType,data,len);
  1973. }
  1974. inline int nodePathCheckFunction(uint64_t ztaddr,const int64_t localSocket,const struct sockaddr_storage *remoteAddr)
  1975. {
  1976. // Make sure we're not trying to do ZeroTier-over-ZeroTier
  1977. {
  1978. Mutex::Lock _l(_nets_m);
  1979. for(std::map<uint64_t,NetworkState>::const_iterator n(_nets.begin());n!=_nets.end();++n) {
  1980. if (n->second.tap) {
  1981. std::vector<InetAddress> ips(n->second.tap->ips());
  1982. for(std::vector<InetAddress>::const_iterator i(ips.begin());i!=ips.end();++i) {
  1983. if (i->containsAddress(*(reinterpret_cast<const InetAddress *>(remoteAddr)))) {
  1984. return 0;
  1985. }
  1986. }
  1987. }
  1988. }
  1989. }
  1990. /* Note: I do not think we need to scan for overlap with managed routes
  1991. * because of the "route forking" and interface binding that we do. This
  1992. * ensures (we hope) that ZeroTier traffic will still take the physical
  1993. * path even if its managed routes override this for other traffic. Will
  1994. * revisit if we see recursion problems. */
  1995. // Check blacklists
  1996. const Hashtable< uint64_t,std::vector<InetAddress> > *blh = (const Hashtable< uint64_t,std::vector<InetAddress> > *)0;
  1997. const std::vector<InetAddress> *gbl = (const std::vector<InetAddress> *)0;
  1998. if (remoteAddr->ss_family == AF_INET) {
  1999. blh = &_v4Blacklists;
  2000. gbl = &_globalV4Blacklist;
  2001. } else if (remoteAddr->ss_family == AF_INET6) {
  2002. blh = &_v6Blacklists;
  2003. gbl = &_globalV6Blacklist;
  2004. }
  2005. if (blh) {
  2006. Mutex::Lock _l(_localConfig_m);
  2007. const std::vector<InetAddress> *l = blh->get(ztaddr);
  2008. if (l) {
  2009. for(std::vector<InetAddress>::const_iterator a(l->begin());a!=l->end();++a) {
  2010. if (a->containsAddress(*reinterpret_cast<const InetAddress *>(remoteAddr)))
  2011. return 0;
  2012. }
  2013. }
  2014. for(std::vector<InetAddress>::const_iterator a(gbl->begin());a!=gbl->end();++a) {
  2015. if (a->containsAddress(*reinterpret_cast<const InetAddress *>(remoteAddr)))
  2016. return 0;
  2017. }
  2018. }
  2019. return 1;
  2020. }
  2021. inline int nodePathLookupFunction(uint64_t ztaddr,int family,struct sockaddr_storage *result)
  2022. {
  2023. const Hashtable< uint64_t,std::vector<InetAddress> > *lh = (const Hashtable< uint64_t,std::vector<InetAddress> > *)0;
  2024. if (family < 0)
  2025. lh = (_node->prng() & 1) ? &_v4Hints : &_v6Hints;
  2026. else if (family == AF_INET)
  2027. lh = &_v4Hints;
  2028. else if (family == AF_INET6)
  2029. lh = &_v6Hints;
  2030. else return 0;
  2031. const std::vector<InetAddress> *l = lh->get(ztaddr);
  2032. if ((l)&&(l->size() > 0)) {
  2033. memcpy(result,&((*l)[(unsigned long)_node->prng() % l->size()]),sizeof(struct sockaddr_storage));
  2034. return 1;
  2035. } else return 0;
  2036. }
  2037. inline void tapFrameHandler(uint64_t nwid,const MAC &from,const MAC &to,unsigned int etherType,unsigned int vlanId,const void *data,unsigned int len)
  2038. {
  2039. _node->processVirtualNetworkFrame((void *)0,OSUtils::now(),nwid,from.toInt(),to.toInt(),etherType,vlanId,data,len,&_nextBackgroundTaskDeadline);
  2040. }
  2041. inline void onHttpRequestToServer(TcpConnection *tc)
  2042. {
  2043. char tmpn[4096];
  2044. std::string data;
  2045. std::string contentType("text/plain"); // default if not changed in handleRequest()
  2046. unsigned int scode = 404;
  2047. // Note that we check allowed IP ranges when HTTP connections are first detected in
  2048. // phyOnTcpData(). If we made it here the source IP is okay.
  2049. try {
  2050. scode = handleControlPlaneHttpRequest(tc->remoteAddr,tc->parser.method,tc->url,tc->headers,tc->readq,data,contentType);
  2051. } catch (std::exception &exc) {
  2052. fprintf(stderr,"WARNING: unexpected exception processing control HTTP request: %s" ZT_EOL_S,exc.what());
  2053. scode = 500;
  2054. } catch ( ... ) {
  2055. fprintf(stderr,"WARNING: unexpected exception processing control HTTP request: unknown exceptino" ZT_EOL_S);
  2056. scode = 500;
  2057. }
  2058. const char *scodestr;
  2059. switch(scode) {
  2060. case 200: scodestr = "OK"; break;
  2061. case 400: scodestr = "Bad Request"; break;
  2062. case 401: scodestr = "Unauthorized"; break;
  2063. case 403: scodestr = "Forbidden"; break;
  2064. case 404: scodestr = "Not Found"; break;
  2065. case 500: scodestr = "Internal Server Error"; break;
  2066. case 501: scodestr = "Not Implemented"; break;
  2067. case 503: scodestr = "Service Unavailable"; break;
  2068. default: scodestr = "Error"; break;
  2069. }
  2070. OSUtils::ztsnprintf(tmpn,sizeof(tmpn),"HTTP/1.1 %.3u %s\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: %s\r\nContent-Length: %lu\r\nConnection: close\r\n\r\n",
  2071. scode,
  2072. scodestr,
  2073. contentType.c_str(),
  2074. (unsigned long)data.length());
  2075. {
  2076. Mutex::Lock _l(tc->writeq_m);
  2077. tc->writeq = tmpn;
  2078. if (tc->parser.method != HTTP_HEAD)
  2079. tc->writeq.append(data);
  2080. }
  2081. _phy.setNotifyWritable(tc->sock,true);
  2082. }
  2083. inline void onHttpResponseFromClient(TcpConnection *tc)
  2084. {
  2085. _phy.close(tc->sock);
  2086. }
  2087. bool shouldBindInterface(const char *ifname,const InetAddress &ifaddr)
  2088. {
  2089. #if defined(__linux__) || defined(linux) || defined(__LINUX__) || defined(__linux)
  2090. if ((ifname[0] == 'l')&&(ifname[1] == 'o')) return false; // loopback
  2091. if ((ifname[0] == 'z')&&(ifname[1] == 't')) return false; // sanity check: zt#
  2092. if ((ifname[0] == 't')&&(ifname[1] == 'u')&&(ifname[2] == 'n')) return false; // tun# is probably an OpenVPN tunnel or similar
  2093. if ((ifname[0] == 't')&&(ifname[1] == 'a')&&(ifname[2] == 'p')) return false; // tap# is probably an OpenVPN tunnel or similar
  2094. #endif
  2095. #ifdef __APPLE__
  2096. if ((ifname[0] == 'l')&&(ifname[1] == 'o')) return false; // loopback
  2097. if ((ifname[0] == 'z')&&(ifname[1] == 't')) return false; // sanity check: zt#
  2098. if ((ifname[0] == 't')&&(ifname[1] == 'u')&&(ifname[2] == 'n')) return false; // tun# is probably an OpenVPN tunnel or similar
  2099. if ((ifname[0] == 't')&&(ifname[1] == 'a')&&(ifname[2] == 'p')) return false; // tap# is probably an OpenVPN tunnel or similar
  2100. if ((ifname[0] == 'u')&&(ifname[1] == 't')&&(ifname[2] == 'u')&&(ifname[3] == 'n')) return false; // ... as is utun#
  2101. #endif
  2102. {
  2103. Mutex::Lock _l(_localConfig_m);
  2104. for(std::vector<std::string>::const_iterator p(_interfacePrefixBlacklist.begin());p!=_interfacePrefixBlacklist.end();++p) {
  2105. if (!strncmp(p->c_str(),ifname,p->length()))
  2106. return false;
  2107. }
  2108. }
  2109. {
  2110. Mutex::Lock _l(_nets_m);
  2111. for(std::map<uint64_t,NetworkState>::const_iterator n(_nets.begin());n!=_nets.end();++n) {
  2112. if (n->second.tap) {
  2113. std::vector<InetAddress> ips(n->second.tap->ips());
  2114. for(std::vector<InetAddress>::const_iterator i(ips.begin());i!=ips.end();++i) {
  2115. if (i->ipsEqual(ifaddr))
  2116. return false;
  2117. }
  2118. }
  2119. }
  2120. }
  2121. return true;
  2122. }
  2123. bool _trialBind(unsigned int port)
  2124. {
  2125. struct sockaddr_in in4;
  2126. struct sockaddr_in6 in6;
  2127. PhySocket *tb;
  2128. memset(&in4,0,sizeof(in4));
  2129. in4.sin_family = AF_INET;
  2130. in4.sin_port = Utils::hton((uint16_t)port);
  2131. tb = _phy.udpBind(reinterpret_cast<const struct sockaddr *>(&in4),(void *)0,0);
  2132. if (tb) {
  2133. _phy.close(tb,false);
  2134. tb = _phy.tcpListen(reinterpret_cast<const struct sockaddr *>(&in4),(void *)0);
  2135. if (tb) {
  2136. _phy.close(tb,false);
  2137. return true;
  2138. }
  2139. }
  2140. memset(&in6,0,sizeof(in6));
  2141. in6.sin6_family = AF_INET6;
  2142. in6.sin6_port = Utils::hton((uint16_t)port);
  2143. tb = _phy.udpBind(reinterpret_cast<const struct sockaddr *>(&in6),(void *)0,0);
  2144. if (tb) {
  2145. _phy.close(tb,false);
  2146. tb = _phy.tcpListen(reinterpret_cast<const struct sockaddr *>(&in6),(void *)0);
  2147. if (tb) {
  2148. _phy.close(tb,false);
  2149. return true;
  2150. }
  2151. }
  2152. return false;
  2153. }
  2154. };
  2155. static int SnodeVirtualNetworkConfigFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t nwid,void **nuptr,enum ZT_VirtualNetworkConfigOperation op,const ZT_VirtualNetworkConfig *nwconf)
  2156. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodeVirtualNetworkConfigFunction(nwid,nuptr,op,nwconf); }
  2157. static void SnodeEventCallback(ZT_Node *node,void *uptr,void *tptr,enum ZT_Event event,const void *metaData)
  2158. { reinterpret_cast<OneServiceImpl *>(uptr)->nodeEventCallback(event,metaData); }
  2159. static void SnodeStatePutFunction(ZT_Node *node,void *uptr,void *tptr,enum ZT_StateObjectType type,const uint64_t id[2],const void *data,int len)
  2160. { reinterpret_cast<OneServiceImpl *>(uptr)->nodeStatePutFunction(type,id,data,len); }
  2161. static int SnodeStateGetFunction(ZT_Node *node,void *uptr,void *tptr,enum ZT_StateObjectType type,const uint64_t id[2],void *data,unsigned int maxlen)
  2162. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodeStateGetFunction(type,id,data,maxlen); }
  2163. 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)
  2164. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodeWirePacketSendFunction(localSocket,addr,data,len,ttl); }
  2165. 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)
  2166. { reinterpret_cast<OneServiceImpl *>(uptr)->nodeVirtualNetworkFrameFunction(nwid,nuptr,sourceMac,destMac,etherType,vlanId,data,len); }
  2167. static int SnodePathCheckFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t ztaddr,int64_t localSocket,const struct sockaddr_storage *remoteAddr)
  2168. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodePathCheckFunction(ztaddr,localSocket,remoteAddr); }
  2169. static int SnodePathLookupFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t ztaddr,int family,struct sockaddr_storage *result)
  2170. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodePathLookupFunction(ztaddr,family,result); }
  2171. 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)
  2172. { reinterpret_cast<OneServiceImpl *>(uptr)->tapFrameHandler(nwid,from,to,etherType,vlanId,data,len); }
  2173. static int ShttpOnMessageBegin(http_parser *parser)
  2174. {
  2175. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2176. tc->currentHeaderField = "";
  2177. tc->currentHeaderValue = "";
  2178. tc->messageSize = 0;
  2179. tc->url.clear();
  2180. tc->status.clear();
  2181. tc->headers.clear();
  2182. tc->readq.clear();
  2183. return 0;
  2184. }
  2185. static int ShttpOnUrl(http_parser *parser,const char *ptr,size_t length)
  2186. {
  2187. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2188. tc->messageSize += (unsigned long)length;
  2189. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  2190. return -1;
  2191. tc->url.append(ptr,length);
  2192. return 0;
  2193. }
  2194. #if (HTTP_PARSER_VERSION_MAJOR >= 2) && (HTTP_PARSER_VERSION_MINOR >= 2)
  2195. static int ShttpOnStatus(http_parser *parser,const char *ptr,size_t length)
  2196. #else
  2197. static int ShttpOnStatus(http_parser *parser)
  2198. #endif
  2199. { return 0; }
  2200. static int ShttpOnHeaderField(http_parser *parser,const char *ptr,size_t length)
  2201. {
  2202. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2203. tc->messageSize += (unsigned long)length;
  2204. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  2205. return -1;
  2206. if ((tc->currentHeaderField.length())&&(tc->currentHeaderValue.length())) {
  2207. tc->headers[tc->currentHeaderField] = tc->currentHeaderValue;
  2208. tc->currentHeaderField = "";
  2209. tc->currentHeaderValue = "";
  2210. }
  2211. for(size_t i=0;i<length;++i)
  2212. tc->currentHeaderField.push_back(OSUtils::toLower(ptr[i]));
  2213. return 0;
  2214. }
  2215. static int ShttpOnValue(http_parser *parser,const char *ptr,size_t length)
  2216. {
  2217. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2218. tc->messageSize += (unsigned long)length;
  2219. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  2220. return -1;
  2221. tc->currentHeaderValue.append(ptr,length);
  2222. return 0;
  2223. }
  2224. static int ShttpOnHeadersComplete(http_parser *parser)
  2225. {
  2226. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2227. if ((tc->currentHeaderField.length())&&(tc->currentHeaderValue.length()))
  2228. tc->headers[tc->currentHeaderField] = tc->currentHeaderValue;
  2229. return 0;
  2230. }
  2231. static int ShttpOnBody(http_parser *parser,const char *ptr,size_t length)
  2232. {
  2233. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2234. tc->messageSize += (unsigned long)length;
  2235. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  2236. return -1;
  2237. tc->readq.append(ptr,length);
  2238. return 0;
  2239. }
  2240. static int ShttpOnMessageComplete(http_parser *parser)
  2241. {
  2242. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  2243. if (tc->type == TcpConnection::TCP_HTTP_INCOMING) {
  2244. tc->parent->onHttpRequestToServer(tc);
  2245. } else {
  2246. tc->parent->onHttpResponseFromClient(tc);
  2247. }
  2248. return 0;
  2249. }
  2250. } // anonymous namespace
  2251. std::string OneService::platformDefaultHomePath()
  2252. {
  2253. return OSUtils::platformDefaultHomePath();
  2254. }
  2255. OneService *OneService::newInstance(const char *hp,unsigned int port) { return new OneServiceImpl(hp,port); }
  2256. OneService::~OneService() {}
  2257. } // namespace ZeroTier