OneService.cpp 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519
  1. /*
  2. * Copyright (c)2013-2020 ZeroTier, Inc.
  3. *
  4. * Use of this software is governed by the Business Source License included
  5. * in the LICENSE.TXT file in the project's root directory.
  6. *
  7. * Change Date: 2025-01-01
  8. *
  9. * On the date above, in accordance with the Business Source License, use
  10. * of this software will be governed by version 2.0 of the Apache License.
  11. */
  12. /****/
  13. #include <stdio.h>
  14. #include <stdlib.h>
  15. #include <string.h>
  16. #include <stdint.h>
  17. #include <string>
  18. #include <map>
  19. #include <vector>
  20. #include <algorithm>
  21. #include <list>
  22. #include <thread>
  23. #include <mutex>
  24. #include <condition_variable>
  25. #include "../version.h"
  26. #include "../include/ZeroTierOne.h"
  27. #include "../node/Constants.hpp"
  28. #include "../node/Mutex.hpp"
  29. #include "../node/Node.hpp"
  30. #include "../node/Utils.hpp"
  31. #include "../node/InetAddress.hpp"
  32. #include "../node/MAC.hpp"
  33. #include "../node/Identity.hpp"
  34. #include "../node/World.hpp"
  35. #include "../node/Salsa20.hpp"
  36. #include "../node/Poly1305.hpp"
  37. #include "../node/SHA512.hpp"
  38. #include "../node/Bond.hpp"
  39. #include "../node/Peer.hpp"
  40. #include "../osdep/Phy.hpp"
  41. #include "../osdep/OSUtils.hpp"
  42. #include "../osdep/Http.hpp"
  43. #include "../osdep/PortMapper.hpp"
  44. #include "../osdep/Binder.hpp"
  45. #include "../osdep/ManagedRoute.hpp"
  46. #include "../osdep/BlockingQueue.hpp"
  47. #include "OneService.hpp"
  48. #include "SoftwareUpdater.hpp"
  49. #if ZT_SSO_ENABLED
  50. #include <zeroidc.h>
  51. #endif
  52. #ifdef __WINDOWS__
  53. #include <winsock2.h>
  54. #include <windows.h>
  55. #include <shlobj.h>
  56. #include <netioapi.h>
  57. #include <iphlpapi.h>
  58. //#include <unistd.h>
  59. #define stat _stat
  60. #else
  61. #include <sys/types.h>
  62. #include <sys/socket.h>
  63. #include <sys/stat.h>
  64. #include <sys/wait.h>
  65. #include <unistd.h>
  66. #include <ifaddrs.h>
  67. #endif
  68. #ifdef __APPLE__
  69. #include "../osdep/MacDNSHelper.hpp"
  70. #elif defined(__WINDOWS__)
  71. #include "../osdep/WinDNSHelper.hpp"
  72. #endif
  73. #ifdef ZT_USE_SYSTEM_HTTP_PARSER
  74. #include <http_parser.h>
  75. #else
  76. #include "../ext/http-parser/http_parser.h"
  77. #endif
  78. #if ZT_VAULT_SUPPORT
  79. extern "C" {
  80. #include <curl/curl.h>
  81. }
  82. #endif
  83. #include <nlohmann/json.hpp>
  84. #include <inja/inja.hpp>
  85. using json = nlohmann::json;
  86. #include "../controller/EmbeddedNetworkController.hpp"
  87. #include "../controller/PostgreSQL.hpp"
  88. #include "../controller/Redis.hpp"
  89. #include "../osdep/EthernetTap.hpp"
  90. #ifdef __WINDOWS__
  91. #include "../osdep/WindowsEthernetTap.hpp"
  92. #endif
  93. #ifndef ZT_SOFTWARE_UPDATE_DEFAULT
  94. #define ZT_SOFTWARE_UPDATE_DEFAULT "disable"
  95. #endif
  96. // Sanity limits for HTTP
  97. #define ZT_MAX_HTTP_MESSAGE_SIZE (1024 * 1024 * 64)
  98. #define ZT_MAX_HTTP_CONNECTIONS 65536
  99. // Interface metric for ZeroTier taps -- this ensures that if we are on WiFi and also
  100. // bridged via ZeroTier to the same LAN traffic will (if the OS is sane) prefer WiFi.
  101. #define ZT_IF_METRIC 5000
  102. // How often to check for new multicast subscriptions on a tap device
  103. #define ZT_TAP_CHECK_MULTICAST_INTERVAL 5000
  104. // TCP fallback relay (run by ZeroTier, Inc. -- this will eventually go away)
  105. #ifndef ZT_SDK
  106. #define ZT_TCP_FALLBACK_RELAY "204.80.128.1/443"
  107. #endif
  108. // Frequency at which we re-resolve the TCP fallback relay
  109. #define ZT_TCP_FALLBACK_RERESOLVE_DELAY 86400000
  110. // Attempt to engage TCP fallback after this many ms of no reply to packets sent to global-scope IPs
  111. #define ZT_TCP_FALLBACK_AFTER 60000
  112. // How often to check for local interface addresses
  113. #define ZT_LOCAL_INTERFACE_CHECK_INTERVAL 60000
  114. // Maximum write buffer size for outgoing TCP connections (sanity limit)
  115. #define ZT_TCP_MAX_WRITEQ_SIZE 33554432
  116. // TCP activity timeout
  117. #define ZT_TCP_ACTIVITY_TIMEOUT 60000
  118. #if ZT_VAULT_SUPPORT
  119. size_t curlResponseWrite(void *ptr, size_t size, size_t nmemb, std::string *data)
  120. {
  121. data->append((char*)ptr, size * nmemb);
  122. return size * nmemb;
  123. }
  124. #endif
  125. namespace ZeroTier {
  126. std::string ssoResponseTemplate = R"""(
  127. <!doctype html>
  128. <html class="no-js" lang="">
  129. <head>
  130. <meta charset="utf-8">
  131. <meta http-equiv="x-ua-compatible" content="ie=edge">
  132. <title>Network SSO Login {{ networkId }}</title>
  133. <meta name="description" content="">
  134. <meta name="viewport" content="width=device-width, initial-scale=1">
  135. <style type="text/css">
  136. html,body {
  137. background: #eeeeee;
  138. margin: 0;
  139. padding: 0;
  140. font-family: "System Sans Serif";
  141. font-weight: normal;
  142. font-size: 12pt;
  143. height: 100%;
  144. width: 100%;
  145. }
  146. .container {
  147. position: absolute;
  148. left: 50%;
  149. top: 50%;
  150. -webkit-transform: translate(-50%, -50%);
  151. transform: translate(-50%, -50%);
  152. }
  153. .iconwrapper {
  154. margin: 10px 10px 10px 10px;
  155. }
  156. </style>
  157. </head>
  158. <body>
  159. <div class="container">
  160. <div class="iconwrapper">
  161. <svg id="Layer_1" width="225px" height="225px" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225 225"><defs><style>.cls-1{fill:#fdb25d;}.cls-2{fill:none;stroke:#000;stroke-miterlimit:10;stroke-width:6.99px;}</style></defs><rect class="cls-1" width="225" height="225" rx="35.74"/><line class="cls-2" x1="25.65" y1="32.64" x2="199.35" y2="32.64"/><line class="cls-2" x1="112.5" y1="201.02" x2="112.5" y2="32.64"/><circle class="cls-2" cx="112.5" cy="115.22" r="56.54"/></svg>
  162. </div>
  163. <div class="text">{{ messageText }}</div>
  164. </div>
  165. </body>
  166. </html>
  167. )""";
  168. // Configured networks
  169. class NetworkState
  170. {
  171. public:
  172. NetworkState()
  173. : _webPort(9993)
  174. , _tap((EthernetTap *)0)
  175. #if ZT_SSO_ENABLED
  176. , _idc(nullptr)
  177. #endif
  178. {
  179. // Real defaults are in network 'up' code in network event handler
  180. _settings.allowManaged = true;
  181. _settings.allowGlobal = false;
  182. _settings.allowDefault = false;
  183. _settings.allowDNS = false;
  184. memset(&_config, 0, sizeof(ZT_VirtualNetworkConfig));
  185. }
  186. ~NetworkState()
  187. {
  188. this->_managedRoutes.clear();
  189. this->_tap.reset();
  190. #if ZT_SSO_ENABLED
  191. if (_idc) {
  192. zeroidc::zeroidc_stop(_idc);
  193. zeroidc::zeroidc_delete(_idc);
  194. _idc = nullptr;
  195. }
  196. #endif
  197. }
  198. void setWebPort(unsigned int port) {
  199. _webPort = port;
  200. }
  201. void setTap(std::shared_ptr<EthernetTap> tap) {
  202. this->_tap = tap;
  203. }
  204. std::shared_ptr<EthernetTap> tap() const {
  205. return _tap;
  206. }
  207. OneService::NetworkSettings settings() const {
  208. return _settings;
  209. }
  210. void setSettings(const OneService::NetworkSettings &settings) {
  211. _settings = settings;
  212. }
  213. void setAllowManaged(bool allow) {
  214. _settings.allowManaged = allow;
  215. }
  216. bool allowManaged() const {
  217. return _settings.allowManaged;
  218. }
  219. void setAllowGlobal(bool allow) {
  220. _settings.allowGlobal = allow;
  221. }
  222. bool allowGlobal() const {
  223. return _settings.allowGlobal;
  224. }
  225. void setAllowDefault(bool allow) {
  226. _settings.allowDefault = allow;
  227. }
  228. bool allowDefault() const {
  229. return _settings.allowDefault;
  230. }
  231. void setAllowDNS(bool allow) {
  232. _settings.allowDNS = allow;
  233. }
  234. bool allowDNS() const {
  235. return _settings.allowDNS;
  236. }
  237. std::vector<InetAddress> allowManagedWhitelist() const {
  238. return _settings.allowManagedWhitelist;
  239. }
  240. void addToAllowManagedWhiteList(const InetAddress& addr) {
  241. _settings.allowManagedWhitelist.push_back(addr);
  242. }
  243. const ZT_VirtualNetworkConfig& config() {
  244. return _config;
  245. }
  246. void setConfig(const ZT_VirtualNetworkConfig *nwc) {
  247. memcpy(&_config, nwc, sizeof(ZT_VirtualNetworkConfig));
  248. if (_config.ssoEnabled && _config.ssoVersion == 1) {
  249. #if ZT_SSO_ENABLED
  250. if (_idc == nullptr)
  251. {
  252. assert(_config.issuerURL != nullptr);
  253. assert(_config.ssoClientID != nullptr);
  254. assert(_config.centralAuthURL != nullptr);
  255. _idc = zeroidc::zeroidc_new(
  256. _config.issuerURL,
  257. _config.ssoClientID,
  258. _config.centralAuthURL,
  259. _webPort
  260. );
  261. if (_idc == nullptr) {
  262. fprintf(stderr, "idc is null\n");
  263. return;
  264. }
  265. }
  266. zeroidc::zeroidc_set_nonce_and_csrf(
  267. _idc,
  268. _config.ssoState,
  269. _config.ssoNonce
  270. );
  271. char* url = zeroidc::zeroidc_get_auth_url(_idc);
  272. memcpy(_config.authenticationURL, url, strlen(url));
  273. _config.authenticationURL[strlen(url)] = 0;
  274. zeroidc::free_cstr(url);
  275. if (zeroidc::zeroidc_is_running(_idc) && nwc->status == ZT_NETWORK_STATUS_AUTHENTICATION_REQUIRED) {
  276. zeroidc::zeroidc_kick_refresh_thread(_idc);
  277. }
  278. #endif
  279. }
  280. }
  281. std::vector<InetAddress>& managedIps() {
  282. return _managedIps;
  283. }
  284. void setManagedIps(const std::vector<InetAddress> &managedIps) {
  285. _managedIps = managedIps;
  286. }
  287. std::map< InetAddress, SharedPtr<ManagedRoute> >& managedRoutes() {
  288. return _managedRoutes;
  289. }
  290. const char* getAuthURL() {
  291. #if ZT_SSO_ENABLED
  292. if (_idc != nullptr) {
  293. return zeroidc::zeroidc_get_auth_url(_idc);
  294. }
  295. fprintf(stderr, "_idc is null\n");
  296. #endif
  297. return "";
  298. }
  299. char* doTokenExchange(const char *code) {
  300. char *ret = nullptr;
  301. #if ZT_SSO_ENABLED
  302. if (_idc == nullptr) {
  303. fprintf(stderr, "ainfo or idc null\n");
  304. return ret;
  305. }
  306. ret = zeroidc::zeroidc_token_exchange(_idc, code);
  307. zeroidc::zeroidc_set_nonce_and_csrf(
  308. _idc,
  309. _config.ssoState,
  310. _config.ssoNonce
  311. );
  312. char* url = zeroidc::zeroidc_get_auth_url(_idc);
  313. memcpy(_config.authenticationURL, url, strlen(url));
  314. _config.authenticationURL[strlen(url)] = 0;
  315. zeroidc::free_cstr(url);
  316. #endif
  317. return ret;
  318. }
  319. uint64_t getExpiryTime() {
  320. #if ZT_SSO_ENABLED
  321. if (_idc == nullptr) {
  322. fprintf(stderr, "idc is null\n");
  323. return 0;
  324. }
  325. return zeroidc::zeroidc_get_exp_time(_idc);
  326. #else
  327. return 0;
  328. #endif
  329. }
  330. private:
  331. unsigned int _webPort;
  332. std::shared_ptr<EthernetTap> _tap;
  333. ZT_VirtualNetworkConfig _config; // memcpy() of raw config from core
  334. std::vector<InetAddress> _managedIps;
  335. std::map< InetAddress, SharedPtr<ManagedRoute> > _managedRoutes;
  336. OneService::NetworkSettings _settings;
  337. #if ZT_SSO_ENABLED
  338. zeroidc::ZeroIDC *_idc;
  339. #endif
  340. };
  341. namespace {
  342. static const InetAddress NULL_INET_ADDR;
  343. // Fake TLS hello for TCP tunnel outgoing connections (TUNNELED mode)
  344. 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) };
  345. static std::string _trimString(const std::string &s)
  346. {
  347. unsigned long end = (unsigned long)s.length();
  348. while (end) {
  349. char c = s[end - 1];
  350. if ((c == ' ')||(c == '\r')||(c == '\n')||(!c)||(c == '\t'))
  351. --end;
  352. else break;
  353. }
  354. unsigned long start = 0;
  355. while (start < end) {
  356. char c = s[start];
  357. if ((c == ' ')||(c == '\r')||(c == '\n')||(!c)||(c == '\t'))
  358. ++start;
  359. else break;
  360. }
  361. return s.substr(start,end - start);
  362. }
  363. static void _networkToJson(nlohmann::json &nj,NetworkState &ns)
  364. {
  365. char tmp[256];
  366. const char *nstatus = "",*ntype = "";
  367. switch(ns.config().status) {
  368. case ZT_NETWORK_STATUS_REQUESTING_CONFIGURATION: nstatus = "REQUESTING_CONFIGURATION"; break;
  369. case ZT_NETWORK_STATUS_OK: nstatus = "OK"; break;
  370. case ZT_NETWORK_STATUS_ACCESS_DENIED: nstatus = "ACCESS_DENIED"; break;
  371. case ZT_NETWORK_STATUS_NOT_FOUND: nstatus = "NOT_FOUND"; break;
  372. case ZT_NETWORK_STATUS_PORT_ERROR: nstatus = "PORT_ERROR"; break;
  373. case ZT_NETWORK_STATUS_CLIENT_TOO_OLD: nstatus = "CLIENT_TOO_OLD"; break;
  374. case ZT_NETWORK_STATUS_AUTHENTICATION_REQUIRED: nstatus = "AUTHENTICATION_REQUIRED"; break;
  375. }
  376. switch(ns.config().type) {
  377. case ZT_NETWORK_TYPE_PRIVATE: ntype = "PRIVATE"; break;
  378. case ZT_NETWORK_TYPE_PUBLIC: ntype = "PUBLIC"; break;
  379. }
  380. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.16llx",ns.config().nwid);
  381. nj["id"] = tmp;
  382. nj["nwid"] = tmp;
  383. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.2x:%.2x:%.2x:%.2x:%.2x:%.2x",(unsigned int)((ns.config().mac >> 40) & 0xff),(unsigned int)((ns.config().mac >> 32) & 0xff),(unsigned int)((ns.config().mac >> 24) & 0xff),(unsigned int)((ns.config().mac >> 16) & 0xff),(unsigned int)((ns.config().mac >> 8) & 0xff),(unsigned int)(ns.config().mac & 0xff));
  384. nj["mac"] = tmp;
  385. nj["name"] = ns.config().name;
  386. nj["status"] = nstatus;
  387. nj["type"] = ntype;
  388. nj["mtu"] = ns.config().mtu;
  389. nj["dhcp"] = (bool)(ns.config().dhcp != 0);
  390. nj["bridge"] = (bool)(ns.config().bridge != 0);
  391. nj["broadcastEnabled"] = (bool)(ns.config().broadcastEnabled != 0);
  392. nj["portError"] = ns.config().portError;
  393. nj["netconfRevision"] = ns.config().netconfRevision;
  394. nj["portDeviceName"] = ns.tap()->deviceName();
  395. OneService::NetworkSettings localSettings = ns.settings();
  396. nj["allowManaged"] = localSettings.allowManaged;
  397. nj["allowGlobal"] = localSettings.allowGlobal;
  398. nj["allowDefault"] = localSettings.allowDefault;
  399. nj["allowDNS"] = localSettings.allowDNS;
  400. nlohmann::json aa = nlohmann::json::array();
  401. for(unsigned int i=0;i<ns.config().assignedAddressCount;++i) {
  402. aa.push_back(reinterpret_cast<const InetAddress *>(&(ns.config().assignedAddresses[i]))->toString(tmp));
  403. }
  404. nj["assignedAddresses"] = aa;
  405. nlohmann::json ra = nlohmann::json::array();
  406. for(unsigned int i=0;i<ns.config().routeCount;++i) {
  407. nlohmann::json rj;
  408. rj["target"] = reinterpret_cast<const InetAddress *>(&(ns.config().routes[i].target))->toString(tmp);
  409. if (ns.config().routes[i].via.ss_family == ns.config().routes[i].target.ss_family)
  410. rj["via"] = reinterpret_cast<const InetAddress *>(&(ns.config().routes[i].via))->toIpString(tmp);
  411. else rj["via"] = nlohmann::json();
  412. rj["flags"] = (int)ns.config().routes[i].flags;
  413. rj["metric"] = (int)ns.config().routes[i].metric;
  414. ra.push_back(rj);
  415. }
  416. nj["routes"] = ra;
  417. nlohmann::json mca = nlohmann::json::array();
  418. for(unsigned int i=0;i<ns.config().multicastSubscriptionCount;++i) {
  419. nlohmann::json m;
  420. m["mac"] = MAC(ns.config().multicastSubscriptions[i].mac).toString(tmp);
  421. m["adi"] = ns.config().multicastSubscriptions[i].adi;
  422. mca.push_back(m);
  423. }
  424. nj["multicastSubscriptions"] = mca;
  425. nlohmann::json m;
  426. m["domain"] = ns.config().dns.domain;
  427. m["servers"] = nlohmann::json::array();
  428. for(int j=0;j<ZT_MAX_DNS_SERVERS;++j) {
  429. InetAddress a(ns.config().dns.server_addr[j]);
  430. if (a.isV4() || a.isV6()) {
  431. char buf[256];
  432. m["servers"].push_back(a.toIpString(buf));
  433. }
  434. }
  435. nj["dns"] = m;
  436. if (ns.config().ssoEnabled) {
  437. const char* authURL = ns.getAuthURL();
  438. //fprintf(stderr, "Auth URL: %s\n", authURL);
  439. nj["authenticationURL"] = authURL;
  440. nj["authenticationExpiryTime"] = (ns.getExpiryTime()*1000);
  441. nj["ssoEnabled"] = ns.config().ssoEnabled;
  442. }
  443. }
  444. static void _peerToJson(nlohmann::json &pj,const ZT_Peer *peer, SharedPtr<Bond> &bond)
  445. {
  446. char tmp[256];
  447. const char *prole = "";
  448. switch(peer->role) {
  449. case ZT_PEER_ROLE_LEAF: prole = "LEAF"; break;
  450. case ZT_PEER_ROLE_MOON: prole = "MOON"; break;
  451. case ZT_PEER_ROLE_PLANET: prole = "PLANET"; break;
  452. }
  453. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.10llx",peer->address);
  454. pj["address"] = tmp;
  455. pj["versionMajor"] = peer->versionMajor;
  456. pj["versionMinor"] = peer->versionMinor;
  457. pj["versionRev"] = peer->versionRev;
  458. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%d.%d.%d",peer->versionMajor,peer->versionMinor,peer->versionRev);
  459. pj["version"] = tmp;
  460. pj["latency"] = peer->latency;
  461. pj["role"] = prole;
  462. pj["isBonded"] = peer->isBonded;
  463. if (bond && peer->isBonded) {
  464. pj["bondingPolicyCode"] = peer->bondingPolicy;
  465. pj["bondingPolicyStr"] = Bond::getPolicyStrByCode(peer->bondingPolicy);
  466. pj["numAliveLinks"] = peer->numAliveLinks;
  467. pj["numTotalLinks"] = peer->numTotalLinks;
  468. pj["failoverInterval"] = bond->getFailoverInterval();
  469. pj["downDelay"] = bond->getDownDelay();
  470. pj["upDelay"] = bond->getUpDelay();
  471. pj["packetsPerLink"] = bond->getPacketsPerLink();
  472. }
  473. nlohmann::json pa = nlohmann::json::array();
  474. for(unsigned int i=0;i<peer->pathCount;++i) {
  475. int64_t lastSend = peer->paths[i].lastSend;
  476. int64_t lastReceive = peer->paths[i].lastReceive;
  477. nlohmann::json j;
  478. j["address"] = reinterpret_cast<const InetAddress *>(&(peer->paths[i].address))->toString(tmp);
  479. j["lastSend"] = (lastSend < 0) ? 0 : lastSend;
  480. j["lastReceive"] = (lastReceive < 0) ? 0 : lastReceive;
  481. j["trustedPathId"] = peer->paths[i].trustedPathId;
  482. j["active"] = (bool)(peer->paths[i].expired == 0);
  483. j["expired"] = (bool)(peer->paths[i].expired != 0);
  484. j["preferred"] = (bool)(peer->paths[i].preferred != 0);
  485. j["localSocket"] = peer->paths[i].localSocket;
  486. if (bond && peer->isBonded) {
  487. uint64_t now = OSUtils::now();
  488. j["ifname"] = std::string(peer->paths[i].ifname);
  489. j["latencyMean"] = peer->paths[i].latencyMean;
  490. j["latencyVariance"] = peer->paths[i].latencyVariance;
  491. j["packetLossRatio"] = peer->paths[i].packetLossRatio;
  492. j["packetErrorRatio"] = peer->paths[i].packetErrorRatio;
  493. j["lastInAge"] = (now - lastReceive);
  494. j["lastOutAge"] = (now - lastSend);
  495. j["bonded"] = peer->paths[i].bonded;
  496. j["eligible"] = peer->paths[i].eligible;
  497. j["givenLinkSpeed"] = peer->paths[i].linkSpeed;
  498. j["allocation"] = std::round(((float)(peer->paths[i].allocation) / 255.0) * 1000.0) / 1000.0;
  499. }
  500. pa.push_back(j);
  501. }
  502. pj["paths"] = pa;
  503. }
  504. static void _moonToJson(nlohmann::json &mj,const World &world)
  505. {
  506. char tmp[4096];
  507. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.16llx",world.id());
  508. mj["id"] = tmp;
  509. mj["timestamp"] = world.timestamp();
  510. mj["signature"] = Utils::hex(world.signature().data,ZT_C25519_SIGNATURE_LEN,tmp);
  511. mj["updatesMustBeSignedBy"] = Utils::hex(world.updatesMustBeSignedBy().data,ZT_C25519_PUBLIC_KEY_LEN,tmp);
  512. nlohmann::json ra = nlohmann::json::array();
  513. for(std::vector<World::Root>::const_iterator r(world.roots().begin());r!=world.roots().end();++r) {
  514. nlohmann::json rj;
  515. rj["identity"] = r->identity.toString(false,tmp);
  516. nlohmann::json eps = nlohmann::json::array();
  517. for(std::vector<InetAddress>::const_iterator a(r->stableEndpoints.begin());a!=r->stableEndpoints.end();++a)
  518. eps.push_back(a->toString(tmp));
  519. rj["stableEndpoints"] = eps;
  520. ra.push_back(rj);
  521. }
  522. mj["roots"] = ra;
  523. mj["waiting"] = false;
  524. }
  525. class OneServiceImpl;
  526. static int SnodeVirtualNetworkConfigFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t nwid,void **nuptr,enum ZT_VirtualNetworkConfigOperation op,const ZT_VirtualNetworkConfig *nwconf);
  527. static void SnodeEventCallback(ZT_Node *node,void *uptr,void *tptr,enum ZT_Event event,const void *metaData);
  528. static void SnodeStatePutFunction(ZT_Node *node,void *uptr,void *tptr,enum ZT_StateObjectType type,const uint64_t id[2],const void *data,int len);
  529. static int SnodeStateGetFunction(ZT_Node *node,void *uptr,void *tptr,enum ZT_StateObjectType type,const uint64_t id[2],void *data,unsigned int maxlen);
  530. 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);
  531. 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);
  532. static int SnodePathCheckFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t ztaddr,int64_t localSocket,const struct sockaddr_storage *remoteAddr);
  533. static int SnodePathLookupFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t ztaddr,int family,struct sockaddr_storage *result);
  534. 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);
  535. static int ShttpOnMessageBegin(http_parser *parser);
  536. static int ShttpOnUrl(http_parser *parser,const char *ptr,size_t length);
  537. #if (HTTP_PARSER_VERSION_MAJOR >= 2) && (HTTP_PARSER_VERSION_MINOR >= 2)
  538. static int ShttpOnStatus(http_parser *parser,const char *ptr,size_t length);
  539. #else
  540. static int ShttpOnStatus(http_parser *parser);
  541. #endif
  542. static int ShttpOnHeaderField(http_parser *parser,const char *ptr,size_t length);
  543. static int ShttpOnValue(http_parser *parser,const char *ptr,size_t length);
  544. static int ShttpOnHeadersComplete(http_parser *parser);
  545. static int ShttpOnBody(http_parser *parser,const char *ptr,size_t length);
  546. static int ShttpOnMessageComplete(http_parser *parser);
  547. #if (HTTP_PARSER_VERSION_MAJOR >= 2) && (HTTP_PARSER_VERSION_MINOR >= 1)
  548. static const struct http_parser_settings HTTP_PARSER_SETTINGS = {
  549. ShttpOnMessageBegin,
  550. ShttpOnUrl,
  551. ShttpOnStatus,
  552. ShttpOnHeaderField,
  553. ShttpOnValue,
  554. ShttpOnHeadersComplete,
  555. ShttpOnBody,
  556. ShttpOnMessageComplete
  557. };
  558. #else
  559. static const struct http_parser_settings HTTP_PARSER_SETTINGS = {
  560. ShttpOnMessageBegin,
  561. ShttpOnUrl,
  562. ShttpOnHeaderField,
  563. ShttpOnValue,
  564. ShttpOnHeadersComplete,
  565. ShttpOnBody,
  566. ShttpOnMessageComplete
  567. };
  568. #endif
  569. /**
  570. * A TCP connection and related state and buffers
  571. */
  572. struct TcpConnection
  573. {
  574. enum {
  575. TCP_UNCATEGORIZED_INCOMING, // uncategorized incoming connection
  576. TCP_HTTP_INCOMING,
  577. TCP_HTTP_OUTGOING,
  578. TCP_TUNNEL_OUTGOING // TUNNELED mode proxy outbound connection
  579. } type;
  580. OneServiceImpl *parent;
  581. PhySocket *sock;
  582. InetAddress remoteAddr;
  583. uint64_t lastReceive;
  584. // Used for inbound HTTP connections
  585. http_parser parser;
  586. unsigned long messageSize;
  587. std::string currentHeaderField;
  588. std::string currentHeaderValue;
  589. std::string url;
  590. std::string status;
  591. std::map< std::string,std::string > headers;
  592. std::string readq;
  593. std::string writeq;
  594. Mutex writeq_m;
  595. };
  596. struct OneServiceIncomingPacket
  597. {
  598. uint64_t now;
  599. int64_t sock;
  600. struct sockaddr_storage from;
  601. unsigned int size;
  602. uint8_t data[ZT_MAX_MTU];
  603. };
  604. class OneServiceImpl : public OneService
  605. {
  606. public:
  607. // begin member variables --------------------------------------------------
  608. const std::string _homePath;
  609. std::string _authToken;
  610. std::string _controllerDbPath;
  611. const std::string _networksPath;
  612. const std::string _moonsPath;
  613. EmbeddedNetworkController *_controller;
  614. Phy<OneServiceImpl *> _phy;
  615. Node *_node;
  616. SoftwareUpdater *_updater;
  617. PhySocket *_localControlSocket4;
  618. PhySocket *_localControlSocket6;
  619. bool _updateAutoApply;
  620. bool _allowTcpFallbackRelay;
  621. bool _allowSecondaryPort;
  622. unsigned int _primaryPort;
  623. unsigned int _secondaryPort;
  624. unsigned int _tertiaryPort;
  625. volatile unsigned int _udpPortPickerCounter;
  626. // Local configuration and memo-ized information from it
  627. json _localConfig;
  628. Hashtable< uint64_t,std::vector<InetAddress> > _v4Hints;
  629. Hashtable< uint64_t,std::vector<InetAddress> > _v6Hints;
  630. Hashtable< uint64_t,std::vector<InetAddress> > _v4Blacklists;
  631. Hashtable< uint64_t,std::vector<InetAddress> > _v6Blacklists;
  632. std::vector< InetAddress > _globalV4Blacklist;
  633. std::vector< InetAddress > _globalV6Blacklist;
  634. std::vector< InetAddress > _allowManagementFrom;
  635. std::vector< std::string > _interfacePrefixBlacklist;
  636. Mutex _localConfig_m;
  637. std::vector<InetAddress> explicitBind;
  638. /*
  639. * To attempt to handle NAT/gateway craziness we use three local UDP ports:
  640. *
  641. * [0] is the normal/default port, usually 9993
  642. * [1] is a port derived from our ZeroTier address
  643. * [2] is a port computed from the normal/default for use with uPnP/NAT-PMP mappings
  644. *
  645. * [2] exists because on some gateways trying to do regular NAT-t interferes
  646. * destructively with uPnP port mapping behavior in very weird buggy ways.
  647. * It's only used if uPnP/NAT-PMP is enabled in this build.
  648. */
  649. unsigned int _ports[3];
  650. Binder _binder;
  651. // Time we last received a packet from a global address
  652. uint64_t _lastDirectReceiveFromGlobal;
  653. #ifdef ZT_TCP_FALLBACK_RELAY
  654. InetAddress _fallbackRelayAddress;
  655. uint64_t _lastSendToGlobalV4;
  656. #endif
  657. // Last potential sleep/wake event
  658. uint64_t _lastRestart;
  659. // Deadline for the next background task service function
  660. volatile int64_t _nextBackgroundTaskDeadline;
  661. std::map<uint64_t,NetworkState> _nets;
  662. Mutex _nets_m;
  663. // Active TCP/IP connections
  664. std::vector< TcpConnection * > _tcpConnections;
  665. Mutex _tcpConnections_m;
  666. TcpConnection *_tcpFallbackTunnel;
  667. // Termination status information
  668. ReasonForTermination _termReason;
  669. std::string _fatalErrorMessage;
  670. Mutex _termReason_m;
  671. // uPnP/NAT-PMP port mapper if enabled
  672. bool _portMappingEnabled; // local.conf settings
  673. #ifdef ZT_USE_MINIUPNPC
  674. PortMapper *_portMapper;
  675. #endif
  676. // HashiCorp Vault Settings
  677. #if ZT_VAULT_SUPPORT
  678. bool _vaultEnabled;
  679. std::string _vaultURL;
  680. std::string _vaultToken;
  681. std::string _vaultPath; // defaults to cubbyhole/zerotier/identity.secret for per-access key storage
  682. #endif
  683. // Set to false to force service to stop
  684. volatile bool _run;
  685. Mutex _run_m;
  686. RedisConfig *_rc;
  687. std::string _ssoRedirectURL;
  688. // end member variables ----------------------------------------------------
  689. OneServiceImpl(const char *hp,unsigned int port) :
  690. _homePath((hp) ? hp : ".")
  691. ,_controllerDbPath(_homePath + ZT_PATH_SEPARATOR_S "controller.d")
  692. ,_networksPath(_homePath + ZT_PATH_SEPARATOR_S "networks.d")
  693. ,_moonsPath(_homePath + ZT_PATH_SEPARATOR_S "moons.d")
  694. ,_controller((EmbeddedNetworkController *)0)
  695. ,_phy(this,false,true)
  696. ,_node((Node *)0)
  697. ,_updater((SoftwareUpdater *)0)
  698. ,_localControlSocket4((PhySocket *)0)
  699. ,_localControlSocket6((PhySocket *)0)
  700. ,_updateAutoApply(false)
  701. ,_primaryPort(port)
  702. ,_udpPortPickerCounter(0)
  703. ,_lastDirectReceiveFromGlobal(0)
  704. #ifdef ZT_TCP_FALLBACK_RELAY
  705. , _fallbackRelayAddress(ZT_TCP_FALLBACK_RELAY)
  706. ,_lastSendToGlobalV4(0)
  707. #endif
  708. ,_lastRestart(0)
  709. ,_nextBackgroundTaskDeadline(0)
  710. ,_tcpFallbackTunnel((TcpConnection *)0)
  711. ,_termReason(ONE_STILL_RUNNING)
  712. ,_portMappingEnabled(true)
  713. #ifdef ZT_USE_MINIUPNPC
  714. ,_portMapper((PortMapper *)0)
  715. #endif
  716. #ifdef ZT_VAULT_SUPPORT
  717. ,_vaultEnabled(false)
  718. ,_vaultURL()
  719. ,_vaultToken()
  720. ,_vaultPath("cubbyhole/zerotier")
  721. #endif
  722. ,_run(true)
  723. ,_rc(NULL)
  724. ,_ssoRedirectURL()
  725. {
  726. _ports[0] = 0;
  727. _ports[1] = 0;
  728. _ports[2] = 0;
  729. #if ZT_VAULT_SUPPORT
  730. curl_global_init(CURL_GLOBAL_DEFAULT);
  731. #endif
  732. }
  733. virtual ~OneServiceImpl()
  734. {
  735. _binder.closeAll(_phy);
  736. _phy.close(_localControlSocket4);
  737. _phy.close(_localControlSocket6);
  738. #if ZT_VAULT_SUPPORT
  739. curl_global_cleanup();
  740. #endif
  741. #ifdef ZT_USE_MINIUPNPC
  742. delete _portMapper;
  743. #endif
  744. delete _controller;
  745. delete _rc;
  746. }
  747. virtual ReasonForTermination run()
  748. {
  749. try {
  750. {
  751. const std::string authTokenPath(_homePath + ZT_PATH_SEPARATOR_S "authtoken.secret");
  752. if (!OSUtils::readFile(authTokenPath.c_str(),_authToken)) {
  753. unsigned char foo[24];
  754. Utils::getSecureRandom(foo,sizeof(foo));
  755. _authToken = "";
  756. for(unsigned int i=0;i<sizeof(foo);++i)
  757. _authToken.push_back("abcdefghijklmnopqrstuvwxyz0123456789"[(unsigned long)foo[i] % 36]);
  758. if (!OSUtils::writeFile(authTokenPath.c_str(),_authToken)) {
  759. Mutex::Lock _l(_termReason_m);
  760. _termReason = ONE_UNRECOVERABLE_ERROR;
  761. _fatalErrorMessage = "authtoken.secret could not be written";
  762. return _termReason;
  763. } else {
  764. OSUtils::lockDownFile(authTokenPath.c_str(),false);
  765. }
  766. }
  767. _authToken = _trimString(_authToken);
  768. }
  769. {
  770. struct ZT_Node_Callbacks cb;
  771. cb.version = 0;
  772. cb.stateGetFunction = SnodeStateGetFunction;
  773. cb.statePutFunction = SnodeStatePutFunction;
  774. cb.wirePacketSendFunction = SnodeWirePacketSendFunction;
  775. cb.virtualNetworkFrameFunction = SnodeVirtualNetworkFrameFunction;
  776. cb.virtualNetworkConfigFunction = SnodeVirtualNetworkConfigFunction;
  777. cb.eventCallback = SnodeEventCallback;
  778. cb.pathCheckFunction = SnodePathCheckFunction;
  779. cb.pathLookupFunction = SnodePathLookupFunction;
  780. _node = new Node(this,(void *)0,&cb,OSUtils::now());
  781. }
  782. // local.conf
  783. readLocalSettings();
  784. applyLocalConfig();
  785. // Save original port number to show it if bind error
  786. const int _configuredPort = _primaryPort;
  787. // Make sure we can use the primary port, and hunt for one if configured to do so
  788. const int portTrials = (_primaryPort == 0) ? 256 : 1; // if port is 0, pick random
  789. for(int k=0;k<portTrials;++k) {
  790. if (_primaryPort == 0) {
  791. unsigned int randp = 0;
  792. Utils::getSecureRandom(&randp,sizeof(randp));
  793. _primaryPort = 20000 + (randp % 45500);
  794. }
  795. if (_trialBind(_primaryPort)) {
  796. _ports[0] = _primaryPort;
  797. } else {
  798. _primaryPort = 0;
  799. }
  800. }
  801. if (_ports[0] == 0) {
  802. Mutex::Lock _l(_termReason_m);
  803. _termReason = ONE_UNRECOVERABLE_ERROR;
  804. _fatalErrorMessage = std::string("cannot bind to local control interface port ")+std::to_string(_configuredPort);
  805. return _termReason;
  806. }
  807. // Bind TCP control socket to 127.0.0.1 and ::1 as well for loopback TCP control socket queries
  808. {
  809. struct sockaddr_in lo4;
  810. memset(&lo4,0,sizeof(lo4));
  811. lo4.sin_family = AF_INET;
  812. lo4.sin_addr.s_addr = Utils::hton((uint32_t)0x7f000001);
  813. lo4.sin_port = Utils::hton((uint16_t)_ports[0]);
  814. _localControlSocket4 = _phy.tcpListen((const struct sockaddr *)&lo4);
  815. struct sockaddr_in6 lo6;
  816. memset(&lo6,0,sizeof(lo6));
  817. lo6.sin6_family = AF_INET6;
  818. lo6.sin6_addr.s6_addr[15] = 1;
  819. lo6.sin6_port = lo4.sin_port;
  820. _localControlSocket6 = _phy.tcpListen((const struct sockaddr *)&lo6);
  821. }
  822. // Save primary port to a file so CLIs and GUIs can learn it easily
  823. char portstr[64];
  824. OSUtils::ztsnprintf(portstr,sizeof(portstr),"%u",_ports[0]);
  825. OSUtils::writeFile((_homePath + ZT_PATH_SEPARATOR_S "zerotier-one.port").c_str(),std::string(portstr));
  826. // Attempt to bind to a secondary port.
  827. // This exists because there are buggy NATs out there that fail if more
  828. // than one device behind the same NAT tries to use the same internal
  829. // private address port number. Buggy NATs are a running theme.
  830. //
  831. // This used to pick the secondary port based on the node ID until we
  832. // discovered another problem: buggy routers and malicious traffic
  833. // "detection". A lot of routers have such things built in these days
  834. // and mis-detect ZeroTier traffic as malicious and block it resulting
  835. // in a node that appears to be in a coma. Secondary ports are now
  836. // randomized on startup.
  837. if (_allowSecondaryPort) {
  838. if (_secondaryPort) {
  839. _ports[1] = _secondaryPort;
  840. } else {
  841. _ports[1] = _getRandomPort();
  842. }
  843. }
  844. #ifdef ZT_USE_MINIUPNPC
  845. if (_portMappingEnabled) {
  846. // If we're running uPnP/NAT-PMP, bind a *third* port for that. We can't
  847. // use the other two ports for that because some NATs do really funky
  848. // stuff with ports that are explicitly mapped that breaks things.
  849. if (_tertiaryPort) {
  850. _ports[2] = _tertiaryPort;
  851. } else {
  852. _ports[2] = _getRandomPort();
  853. }
  854. if (_ports[2]) {
  855. char uniqueName[64];
  856. OSUtils::ztsnprintf(uniqueName,sizeof(uniqueName),"ZeroTier/%.10llx@%u",_node->address(),_ports[2]);
  857. _portMapper = new PortMapper(_ports[2],uniqueName);
  858. }
  859. }
  860. #endif
  861. // Delete legacy iddb.d if present (cleanup)
  862. OSUtils::rmDashRf((_homePath + ZT_PATH_SEPARATOR_S "iddb.d").c_str());
  863. // Network controller is now enabled by default for desktop and server
  864. _controller = new EmbeddedNetworkController(_node,_homePath.c_str(),_controllerDbPath.c_str(),_ports[0], _rc);
  865. if (!_ssoRedirectURL.empty()) {
  866. _controller->setSSORedirectURL(_ssoRedirectURL);
  867. }
  868. _node->setNetconfMaster((void *)_controller);
  869. // Join existing networks in networks.d
  870. {
  871. std::vector<std::string> networksDotD(OSUtils::listDirectory((_homePath + ZT_PATH_SEPARATOR_S "networks.d").c_str()));
  872. for(std::vector<std::string>::iterator f(networksDotD.begin());f!=networksDotD.end();++f) {
  873. std::size_t dot = f->find_last_of('.');
  874. if ((dot == 16)&&(f->substr(16) == ".conf"))
  875. _node->join(Utils::hexStrToU64(f->substr(0,dot).c_str()),(void *)0,(void *)0);
  876. }
  877. }
  878. // Orbit existing moons in moons.d
  879. {
  880. std::vector<std::string> moonsDotD(OSUtils::listDirectory((_homePath + ZT_PATH_SEPARATOR_S "moons.d").c_str()));
  881. for(std::vector<std::string>::iterator f(moonsDotD.begin());f!=moonsDotD.end();++f) {
  882. std::size_t dot = f->find_last_of('.');
  883. if ((dot == 16)&&(f->substr(16) == ".moon"))
  884. _node->orbit((void *)0,Utils::hexStrToU64(f->substr(0,dot).c_str()),0);
  885. }
  886. }
  887. // Main I/O loop
  888. _nextBackgroundTaskDeadline = 0;
  889. int64_t clockShouldBe = OSUtils::now();
  890. _lastRestart = clockShouldBe;
  891. int64_t lastTapMulticastGroupCheck = 0;
  892. int64_t lastBindRefresh = 0;
  893. int64_t lastUpdateCheck = clockShouldBe;
  894. int64_t lastCleanedPeersDb = 0;
  895. int64_t lastLocalInterfaceAddressCheck = (clockShouldBe - ZT_LOCAL_INTERFACE_CHECK_INTERVAL) + 15000; // do this in 15s to give portmapper time to configure and other things time to settle
  896. int64_t lastLocalConfFileCheck = OSUtils::now();
  897. int64_t lastOnline = lastLocalConfFileCheck;
  898. for(;;) {
  899. _run_m.lock();
  900. if (!_run) {
  901. _run_m.unlock();
  902. _termReason_m.lock();
  903. _termReason = ONE_NORMAL_TERMINATION;
  904. _termReason_m.unlock();
  905. break;
  906. } else {
  907. _run_m.unlock();
  908. }
  909. const int64_t now = OSUtils::now();
  910. // Attempt to detect sleep/wake events by detecting delay overruns
  911. bool restarted = false;
  912. if ((now > clockShouldBe)&&((now - clockShouldBe) > 10000)) {
  913. _lastRestart = now;
  914. restarted = true;
  915. }
  916. // Check for updates (if enabled)
  917. if ((_updater)&&((now - lastUpdateCheck) > 10000)) {
  918. lastUpdateCheck = now;
  919. if (_updater->check(now) && _updateAutoApply)
  920. _updater->apply();
  921. }
  922. // Reload local.conf if anything changed recently
  923. if ((now - lastLocalConfFileCheck) >= ZT_LOCAL_CONF_FILE_CHECK_INTERVAL) {
  924. lastLocalConfFileCheck = now;
  925. struct stat result;
  926. if(stat((_homePath + ZT_PATH_SEPARATOR_S "local.conf").c_str(), &result)==0) {
  927. int64_t mod_time = result.st_mtime * 1000;
  928. if ((now - mod_time) <= ZT_LOCAL_CONF_FILE_CHECK_INTERVAL) {
  929. readLocalSettings();
  930. applyLocalConfig();
  931. }
  932. }
  933. }
  934. // If secondary port is not configured to a constant value and we've been offline for a while,
  935. // bind a new secondary port. This is a workaround for a "coma" issue caused by buggy NATs that stop
  936. // working on one port after a while.
  937. if (_node->online()) {
  938. lastOnline = now;
  939. } else if ((_secondaryPort == 0)&&((now - lastOnline) > ZT_PATH_HEARTBEAT_PERIOD)) {
  940. _secondaryPort = _getRandomPort();
  941. lastBindRefresh = 0;
  942. }
  943. // Refresh bindings in case device's interfaces have changed, and also sync routes to update any shadow routes (e.g. shadow default)
  944. if (((now - lastBindRefresh) >= (_node->bondController()->inUse() ? ZT_BINDER_REFRESH_PERIOD / 4 : ZT_BINDER_REFRESH_PERIOD))||(restarted)) {
  945. lastBindRefresh = now;
  946. unsigned int p[3];
  947. unsigned int pc = 0;
  948. for(int i=0;i<3;++i) {
  949. if (_ports[i])
  950. p[pc++] = _ports[i];
  951. }
  952. _binder.refresh(_phy,p,pc,explicitBind,*this);
  953. {
  954. Mutex::Lock _l(_nets_m);
  955. for(std::map<uint64_t,NetworkState>::iterator n(_nets.begin());n!=_nets.end();++n) {
  956. if (n->second.tap())
  957. syncManagedStuff(n->second,false,true,false);
  958. }
  959. }
  960. }
  961. // Run background task processor in core if it's time to do so
  962. int64_t dl = _nextBackgroundTaskDeadline;
  963. if (dl <= now) {
  964. _node->processBackgroundTasks((void *)0,now,&_nextBackgroundTaskDeadline);
  965. dl = _nextBackgroundTaskDeadline;
  966. }
  967. // Close TCP fallback tunnel if we have direct UDP
  968. if ((_tcpFallbackTunnel)&&((now - _lastDirectReceiveFromGlobal) < (ZT_TCP_FALLBACK_AFTER / 2)))
  969. _phy.close(_tcpFallbackTunnel->sock);
  970. // Sync multicast group memberships
  971. if ((now - lastTapMulticastGroupCheck) >= ZT_TAP_CHECK_MULTICAST_INTERVAL) {
  972. lastTapMulticastGroupCheck = now;
  973. std::vector< std::pair< uint64_t,std::pair< std::vector<MulticastGroup>,std::vector<MulticastGroup> > > > mgChanges;
  974. {
  975. Mutex::Lock _l(_nets_m);
  976. mgChanges.reserve(_nets.size() + 1);
  977. for(std::map<uint64_t,NetworkState>::const_iterator n(_nets.begin());n!=_nets.end();++n) {
  978. if (n->second.tap()) {
  979. mgChanges.push_back(std::pair< uint64_t,std::pair< std::vector<MulticastGroup>,std::vector<MulticastGroup> > >(n->first,std::pair< std::vector<MulticastGroup>,std::vector<MulticastGroup> >()));
  980. n->second.tap()->scanMulticastGroups(mgChanges.back().second.first,mgChanges.back().second.second);
  981. }
  982. }
  983. }
  984. for(std::vector< std::pair< uint64_t,std::pair< std::vector<MulticastGroup>,std::vector<MulticastGroup> > > >::iterator c(mgChanges.begin());c!=mgChanges.end();++c) {
  985. for(std::vector<MulticastGroup>::iterator m(c->second.first.begin());m!=c->second.first.end();++m)
  986. _node->multicastSubscribe((void *)0,c->first,m->mac().toInt(),m->adi());
  987. for(std::vector<MulticastGroup>::iterator m(c->second.second.begin());m!=c->second.second.end();++m)
  988. _node->multicastUnsubscribe(c->first,m->mac().toInt(),m->adi());
  989. }
  990. }
  991. // Sync information about physical network interfaces
  992. if ((now - lastLocalInterfaceAddressCheck) >= (_node->bondController()->inUse() ? ZT_LOCAL_INTERFACE_CHECK_INTERVAL / 8 : ZT_LOCAL_INTERFACE_CHECK_INTERVAL)) {
  993. lastLocalInterfaceAddressCheck = now;
  994. _node->clearLocalInterfaceAddresses();
  995. #ifdef ZT_USE_MINIUPNPC
  996. if (_portMapper) {
  997. std::vector<InetAddress> mappedAddresses(_portMapper->get());
  998. for(std::vector<InetAddress>::const_iterator ext(mappedAddresses.begin());ext!=mappedAddresses.end();++ext)
  999. _node->addLocalInterfaceAddress(reinterpret_cast<const struct sockaddr_storage *>(&(*ext)));
  1000. }
  1001. #endif
  1002. std::vector<InetAddress> boundAddrs(_binder.allBoundLocalInterfaceAddresses());
  1003. for(std::vector<InetAddress>::const_iterator i(boundAddrs.begin());i!=boundAddrs.end();++i) {
  1004. _node->addLocalInterfaceAddress(reinterpret_cast<const struct sockaddr_storage *>(&(*i)));
  1005. }
  1006. }
  1007. // Clean peers.d periodically
  1008. if ((now - lastCleanedPeersDb) >= 3600000) {
  1009. lastCleanedPeersDb = now;
  1010. OSUtils::cleanDirectory((_homePath + ZT_PATH_SEPARATOR_S "peers.d").c_str(),now - 2592000000LL); // delete older than 30 days
  1011. }
  1012. const unsigned long delay = (dl > now) ? (unsigned long)(dl - now) : 500;
  1013. clockShouldBe = now + (int64_t)delay;
  1014. _phy.poll(delay);
  1015. }
  1016. } catch (std::exception &e) {
  1017. Mutex::Lock _l(_termReason_m);
  1018. _termReason = ONE_UNRECOVERABLE_ERROR;
  1019. _fatalErrorMessage = std::string("unexpected exception in main thread: ")+e.what();
  1020. } catch ( ... ) {
  1021. Mutex::Lock _l(_termReason_m);
  1022. _termReason = ONE_UNRECOVERABLE_ERROR;
  1023. _fatalErrorMessage = "unexpected exception in main thread: unknown exception";
  1024. }
  1025. try {
  1026. Mutex::Lock _l(_tcpConnections_m);
  1027. while (!_tcpConnections.empty())
  1028. _phy.close((*_tcpConnections.begin())->sock);
  1029. } catch ( ... ) {}
  1030. {
  1031. Mutex::Lock _l(_nets_m);
  1032. _nets.clear();
  1033. }
  1034. delete _updater;
  1035. _updater = (SoftwareUpdater *)0;
  1036. delete _node;
  1037. _node = (Node *)0;
  1038. return _termReason;
  1039. }
  1040. void readLocalSettings()
  1041. {
  1042. // Read local configuration
  1043. std::map<InetAddress,ZT_PhysicalPathConfiguration> ppc;
  1044. // LEGACY: support old "trustedpaths" flat file
  1045. FILE *trustpaths = fopen((_homePath + ZT_PATH_SEPARATOR_S "trustedpaths").c_str(),"r");
  1046. if (trustpaths) {
  1047. fprintf(stderr,"WARNING: 'trustedpaths' flat file format is deprecated in favor of path definitions in local.conf" ZT_EOL_S);
  1048. char buf[1024];
  1049. while (fgets(buf,sizeof(buf),trustpaths)) {
  1050. int fno = 0;
  1051. char *saveptr = (char *)0;
  1052. uint64_t trustedPathId = 0;
  1053. InetAddress trustedPathNetwork;
  1054. for(char *f=Utils::stok(buf,"=\r\n \t",&saveptr);(f);f=Utils::stok((char *)0,"=\r\n \t",&saveptr)) {
  1055. if (fno == 0) {
  1056. trustedPathId = Utils::hexStrToU64(f);
  1057. } else if (fno == 1) {
  1058. trustedPathNetwork = InetAddress(f);
  1059. } else break;
  1060. ++fno;
  1061. }
  1062. if ( (trustedPathId != 0) && ((trustedPathNetwork.ss_family == AF_INET)||(trustedPathNetwork.ss_family == AF_INET6)) && (trustedPathNetwork.netmaskBits() > 0) ) {
  1063. ppc[trustedPathNetwork].trustedPathId = trustedPathId;
  1064. ppc[trustedPathNetwork].mtu = 0; // use default
  1065. }
  1066. }
  1067. fclose(trustpaths);
  1068. }
  1069. // Read local config file
  1070. Mutex::Lock _l2(_localConfig_m);
  1071. std::string lcbuf;
  1072. if (OSUtils::readFile((_homePath + ZT_PATH_SEPARATOR_S "local.conf").c_str(),lcbuf)) {
  1073. if (lcbuf.length() > 0) {
  1074. try {
  1075. _localConfig = OSUtils::jsonParse(lcbuf);
  1076. if (!_localConfig.is_object()) {
  1077. fprintf(stderr,"ERROR: unable to parse local.conf (root element is not a JSON object)" ZT_EOL_S);
  1078. exit(1);
  1079. }
  1080. } catch ( ... ) {
  1081. fprintf(stderr,"ERROR: unable to parse local.conf (invalid JSON)" ZT_EOL_S);
  1082. exit(1);
  1083. }
  1084. }
  1085. }
  1086. // Make a copy so lookups don't modify in place;
  1087. json lc(_localConfig);
  1088. // Get any trusted paths in local.conf (we'll parse the rest of physical[] elsewhere)
  1089. json &physical = lc["physical"];
  1090. if (physical.is_object()) {
  1091. for(json::iterator phy(physical.begin());phy!=physical.end();++phy) {
  1092. InetAddress net(OSUtils::jsonString(phy.key(),"").c_str());
  1093. if (net) {
  1094. if (phy.value().is_object()) {
  1095. uint64_t tpid;
  1096. if ((tpid = OSUtils::jsonInt(phy.value()["trustedPathId"],0ULL)) != 0ULL) {
  1097. if ((net.ss_family == AF_INET)||(net.ss_family == AF_INET6))
  1098. ppc[net].trustedPathId = tpid;
  1099. }
  1100. ppc[net].mtu = (int)OSUtils::jsonInt(phy.value()["mtu"],0ULL); // 0 means use default
  1101. }
  1102. }
  1103. }
  1104. }
  1105. json &settings = lc["settings"];
  1106. if (settings.is_object()) {
  1107. // Allow controller DB path to be put somewhere else
  1108. const std::string cdbp(OSUtils::jsonString(settings["controllerDbPath"],""));
  1109. if (cdbp.length() > 0)
  1110. _controllerDbPath = cdbp;
  1111. _ssoRedirectURL = OSUtils::jsonString(settings["ssoRedirectURL"], "");
  1112. #ifdef ZT_CONTROLLER_USE_LIBPQ
  1113. // TODO: Redis config
  1114. json &redis = settings["redis"];
  1115. if (redis.is_object() && _rc == NULL) {
  1116. _rc = new RedisConfig;
  1117. _rc->hostname = OSUtils::jsonString(redis["hostname"],"");
  1118. _rc->port = OSUtils::jsonInt(redis["port"],0);
  1119. _rc->password = OSUtils::jsonString(redis["password"],"");
  1120. _rc->clusterMode = OSUtils::jsonBool(redis["clusterMode"], false);
  1121. }
  1122. #endif
  1123. // Bind to wildcard instead of to specific interfaces (disables full tunnel capability)
  1124. json &bind = settings["bind"];
  1125. if (bind.is_array()) {
  1126. for(unsigned long i=0;i<bind.size();++i) {
  1127. const std::string ips(OSUtils::jsonString(bind[i],""));
  1128. if (ips.length() > 0) {
  1129. InetAddress ip(ips.c_str());
  1130. if ((ip.ss_family == AF_INET)||(ip.ss_family == AF_INET6))
  1131. explicitBind.push_back(ip);
  1132. }
  1133. }
  1134. }
  1135. }
  1136. // Set trusted paths if there are any
  1137. if (!ppc.empty()) {
  1138. for(std::map<InetAddress,ZT_PhysicalPathConfiguration>::iterator i(ppc.begin());i!=ppc.end();++i)
  1139. _node->setPhysicalPathConfiguration(reinterpret_cast<const struct sockaddr_storage *>(&(i->first)),&(i->second));
  1140. }
  1141. }
  1142. virtual ReasonForTermination reasonForTermination() const
  1143. {
  1144. Mutex::Lock _l(_termReason_m);
  1145. return _termReason;
  1146. }
  1147. virtual std::string fatalErrorMessage() const
  1148. {
  1149. Mutex::Lock _l(_termReason_m);
  1150. return _fatalErrorMessage;
  1151. }
  1152. virtual std::string portDeviceName(uint64_t nwid) const
  1153. {
  1154. Mutex::Lock _l(_nets_m);
  1155. std::map<uint64_t,NetworkState>::const_iterator n(_nets.find(nwid));
  1156. if ((n != _nets.end())&&(n->second.tap()))
  1157. return n->second.tap()->deviceName();
  1158. else return std::string();
  1159. }
  1160. #ifdef ZT_SDK
  1161. virtual std::string givenHomePath()
  1162. {
  1163. return _homePath;
  1164. }
  1165. void getRoutes(uint64_t nwid, void *routeArray, unsigned int *numRoutes)
  1166. {
  1167. Mutex::Lock _l(_nets_m);
  1168. NetworkState &n = _nets[nwid];
  1169. *numRoutes = *numRoutes < n.config().routeCount ? *numRoutes : n.config().routeCount;
  1170. for(unsigned int i=0; i<*numRoutes; i++) {
  1171. ZT_VirtualNetworkRoute *vnr = (ZT_VirtualNetworkRoute*)routeArray;
  1172. memcpy(&vnr[i], &(n.config().routes[i]), sizeof(ZT_VirtualNetworkRoute));
  1173. }
  1174. }
  1175. virtual Node *getNode()
  1176. {
  1177. return _node;
  1178. }
  1179. #endif // ZT_SDK
  1180. virtual void terminate()
  1181. {
  1182. _run_m.lock();
  1183. _run = false;
  1184. _run_m.unlock();
  1185. _phy.whack();
  1186. }
  1187. virtual bool getNetworkSettings(const uint64_t nwid,NetworkSettings &settings) const
  1188. {
  1189. Mutex::Lock _l(_nets_m);
  1190. std::map<uint64_t,NetworkState>::const_iterator n(_nets.find(nwid));
  1191. if (n == _nets.end())
  1192. return false;
  1193. settings = n->second.settings();
  1194. return true;
  1195. }
  1196. virtual bool setNetworkSettings(const uint64_t nwid,const NetworkSettings &settings)
  1197. {
  1198. char nlcpath[4096];
  1199. OSUtils::ztsnprintf(nlcpath,sizeof(nlcpath),"%s" ZT_PATH_SEPARATOR_S "%.16llx.local.conf",_networksPath.c_str(),nwid);
  1200. FILE *out = fopen(nlcpath,"w");
  1201. if (out) {
  1202. fprintf(out,"allowManaged=%d\n",(int)settings.allowManaged);
  1203. fprintf(out,"allowGlobal=%d\n",(int)settings.allowGlobal);
  1204. fprintf(out,"allowDefault=%d\n",(int)settings.allowDefault);
  1205. fprintf(out,"allowDNS=%d\n",(int)settings.allowDNS);
  1206. fclose(out);
  1207. }
  1208. return true;
  1209. }
  1210. // =========================================================================
  1211. // Internal implementation methods for control plane, route setup, etc.
  1212. // =========================================================================
  1213. inline unsigned int handleControlPlaneHttpRequest(
  1214. const InetAddress &fromAddress,
  1215. unsigned int httpMethod,
  1216. const std::string &path,
  1217. const std::map<std::string,std::string> &headers,
  1218. const std::string &body,
  1219. std::string &responseBody,
  1220. std::string &responseContentType)
  1221. {
  1222. char tmp[256];
  1223. unsigned int scode = 404;
  1224. json res;
  1225. std::vector<std::string> ps(OSUtils::split(path.c_str(),"/","",""));
  1226. std::map<std::string,std::string> urlArgs;
  1227. /* Note: this is kind of restricted in what it'll take. It does not support
  1228. * URL encoding, and /'s in URL args will screw it up. But the only URL args
  1229. * it really uses in ?jsonp=funcionName, and otherwise it just takes simple
  1230. * paths to simply-named resources. */
  1231. if (!ps.empty()) {
  1232. std::size_t qpos = ps[ps.size() - 1].find('?');
  1233. if (qpos != std::string::npos) {
  1234. std::string args(ps[ps.size() - 1].substr(qpos + 1));
  1235. ps[ps.size() - 1] = ps[ps.size() - 1].substr(0,qpos);
  1236. std::vector<std::string> asplit(OSUtils::split(args.c_str(),"&","",""));
  1237. for(std::vector<std::string>::iterator a(asplit.begin());a!=asplit.end();++a) {
  1238. std::size_t eqpos = a->find('=');
  1239. if (eqpos == std::string::npos)
  1240. urlArgs[*a] = "";
  1241. else urlArgs[a->substr(0,eqpos)] = a->substr(eqpos + 1);
  1242. }
  1243. }
  1244. } else {
  1245. return 404;
  1246. }
  1247. bool isAuth = false;
  1248. {
  1249. std::map<std::string,std::string>::const_iterator ah(headers.find("x-zt1-auth"));
  1250. if ((ah != headers.end())&&(_authToken == ah->second)) {
  1251. isAuth = true;
  1252. } else {
  1253. ah = urlArgs.find("auth");
  1254. if ((ah != urlArgs.end())&&(_authToken == ah->second))
  1255. isAuth = true;
  1256. }
  1257. }
  1258. #ifdef __SYNOLOGY__
  1259. // Authenticate via Synology's built-in cgi script
  1260. if (!isAuth) {
  1261. int synotoken_pos = path.find("SynoToken");
  1262. int argpos = path.find('?');
  1263. if(synotoken_pos != std::string::npos && argpos != std::string::npos) {
  1264. std::string cookie = path.substr(argpos+1, synotoken_pos-(argpos+1));
  1265. std::string synotoken = path.substr(synotoken_pos);
  1266. std::string cookie_val = cookie.substr(cookie.find('=')+1);
  1267. std::string synotoken_val = synotoken.substr(synotoken.find('=')+1);
  1268. // Set necessary env for auth script
  1269. std::map<std::string,std::string>::const_iterator ah2(headers.find("x-forwarded-for"));
  1270. setenv("HTTP_COOKIE", cookie_val.c_str(), true);
  1271. setenv("HTTP_X_SYNO_TOKEN", synotoken_val.c_str(), true);
  1272. setenv("REMOTE_ADDR", ah2->second.c_str(),true);
  1273. char user[256], buf[1024];
  1274. FILE *fp = NULL;
  1275. bzero(user, 256);
  1276. fp = popen("/usr/syno/synoman/webman/modules/authenticate.cgi", "r");
  1277. if(!fp)
  1278. isAuth = false;
  1279. else {
  1280. bzero(buf, sizeof(buf));
  1281. fread(buf, 1024, 1, fp);
  1282. if(strlen(buf) > 0) {
  1283. snprintf(user, 256, "%s", buf);
  1284. isAuth = true;
  1285. }
  1286. }
  1287. pclose(fp);
  1288. }
  1289. }
  1290. #endif
  1291. if (httpMethod == HTTP_GET) {
  1292. if (isAuth) {
  1293. if (ps[0] == "bond") {
  1294. if (_node->bondController()->inUse()) {
  1295. if (ps.size() == 3) {
  1296. if (ps[2].length() == 10) {
  1297. // check if hex string
  1298. ZT_PeerList *pl = _node->peers();
  1299. if (pl) {
  1300. uint64_t wantp = Utils::hexStrToU64(ps[2].c_str());
  1301. for(unsigned long i=0;i<pl->peerCount;++i) {
  1302. if (pl->peers[i].address == wantp) {
  1303. if (ps[1] == "show") {
  1304. SharedPtr<Bond> bond = _node->bondController()->getBondByPeerId(wantp);
  1305. if (bond) {
  1306. _peerToJson(res,&(pl->peers[i]),bond);
  1307. scode = 200;
  1308. } else {
  1309. fprintf(stderr, "unable to find bond to peer %llx\n", (unsigned long long)wantp);
  1310. scode = 400;
  1311. }
  1312. }
  1313. }
  1314. }
  1315. }
  1316. _node->freeQueryResult((void *)pl);
  1317. }
  1318. }
  1319. } else {
  1320. scode = 400; /* bond controller is not enabled */
  1321. }
  1322. } else if (ps[0] == "config") {
  1323. Mutex::Lock lc(_localConfig_m);
  1324. res = _localConfig;
  1325. scode = 200;
  1326. } else if (ps[0] == "status") {
  1327. ZT_NodeStatus status;
  1328. _node->status(&status);
  1329. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.10llx",status.address);
  1330. res["address"] = tmp;
  1331. res["publicIdentity"] = status.publicIdentity;
  1332. res["online"] = (bool)(status.online != 0);
  1333. res["tcpFallbackActive"] = (_tcpFallbackTunnel != (TcpConnection *)0);
  1334. res["versionMajor"] = ZEROTIER_ONE_VERSION_MAJOR;
  1335. res["versionMinor"] = ZEROTIER_ONE_VERSION_MINOR;
  1336. res["versionRev"] = ZEROTIER_ONE_VERSION_REVISION;
  1337. res["versionBuild"] = ZEROTIER_ONE_VERSION_BUILD;
  1338. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%d.%d.%d",ZEROTIER_ONE_VERSION_MAJOR,ZEROTIER_ONE_VERSION_MINOR,ZEROTIER_ONE_VERSION_REVISION);
  1339. res["version"] = tmp;
  1340. res["clock"] = OSUtils::now();
  1341. {
  1342. Mutex::Lock _l(_localConfig_m);
  1343. res["config"] = _localConfig;
  1344. }
  1345. json &settings = res["config"]["settings"];
  1346. settings["allowTcpFallbackRelay"] = OSUtils::jsonBool(settings["allowTcpFallbackRelay"],_allowTcpFallbackRelay);
  1347. settings["primaryPort"] = OSUtils::jsonInt(settings["primaryPort"],(uint64_t)_primaryPort) & 0xffff;
  1348. settings["secondaryPort"] = OSUtils::jsonInt(settings["secondaryPort"],(uint64_t)_secondaryPort) & 0xffff;
  1349. settings["tertiaryPort"] = OSUtils::jsonInt(settings["tertiaryPort"],(uint64_t)_tertiaryPort) & 0xffff;
  1350. // Enumerate all external listening address/port pairs
  1351. std::vector<InetAddress> boundAddrs(_binder.allBoundLocalInterfaceAddresses());
  1352. auto boundAddrArray = json::array();
  1353. for (int i = 0; i < boundAddrs.size(); i++) {
  1354. char ipBuf[64] = { 0 };
  1355. boundAddrs[i].toString(ipBuf);
  1356. boundAddrArray.push_back(ipBuf);
  1357. }
  1358. settings["listeningOn"] = boundAddrArray;
  1359. #ifdef ZT_USE_MINIUPNPC
  1360. settings["portMappingEnabled"] = OSUtils::jsonBool(settings["portMappingEnabled"],true);
  1361. #else
  1362. settings["portMappingEnabled"] = false; // not supported in build
  1363. #endif
  1364. #ifndef ZT_SDK
  1365. settings["softwareUpdate"] = OSUtils::jsonString(settings["softwareUpdate"],ZT_SOFTWARE_UPDATE_DEFAULT);
  1366. settings["softwareUpdateChannel"] = OSUtils::jsonString(settings["softwareUpdateChannel"],ZT_SOFTWARE_UPDATE_DEFAULT_CHANNEL);
  1367. #endif
  1368. const World planet(_node->planet());
  1369. res["planetWorldId"] = planet.id();
  1370. res["planetWorldTimestamp"] = planet.timestamp();
  1371. scode = 200;
  1372. } else if (ps[0] == "moon") {
  1373. std::vector<World> moons(_node->moons());
  1374. if (ps.size() == 1) {
  1375. // Return [array] of all moons
  1376. res = json::array();
  1377. for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
  1378. json mj;
  1379. _moonToJson(mj,*m);
  1380. res.push_back(mj);
  1381. }
  1382. scode = 200;
  1383. } else {
  1384. // Return a single moon by ID
  1385. const uint64_t id = Utils::hexStrToU64(ps[1].c_str());
  1386. for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
  1387. if (m->id() == id) {
  1388. _moonToJson(res,*m);
  1389. scode = 200;
  1390. break;
  1391. }
  1392. }
  1393. }
  1394. } else if (ps[0] == "network") {
  1395. Mutex::Lock _l(_nets_m);
  1396. if (ps.size() == 1) {
  1397. // Return [array] of all networks
  1398. res = nlohmann::json::array();
  1399. for (auto it = _nets.begin(); it != _nets.end(); ++it) {
  1400. NetworkState &ns = it->second;
  1401. nlohmann::json nj;
  1402. _networkToJson(nj, ns);
  1403. res.push_back(nj);
  1404. }
  1405. scode = 200;
  1406. } else if (ps.size() == 2) {
  1407. // Return a single network by ID or 404 if not found
  1408. const uint64_t wantnw = Utils::hexStrToU64(ps[1].c_str());
  1409. if (_nets.find(wantnw) != _nets.end()) {
  1410. res = json::object();
  1411. NetworkState& ns = _nets[wantnw];
  1412. _networkToJson(res, ns);
  1413. scode = 200;
  1414. }
  1415. } else {
  1416. scode = 404;
  1417. }
  1418. } else if (ps[0] == "peer") {
  1419. ZT_PeerList *pl = _node->peers();
  1420. if (pl) {
  1421. if (ps.size() == 1) {
  1422. // Return [array] of all peers
  1423. res = nlohmann::json::array();
  1424. for(unsigned long i=0;i<pl->peerCount;++i) {
  1425. nlohmann::json pj;
  1426. SharedPtr<Bond> bond = SharedPtr<Bond>();
  1427. if (pl->peers[i].isBonded) {
  1428. const uint64_t id = pl->peers[i].address;
  1429. bond = _node->bondController()->getBondByPeerId(id);
  1430. }
  1431. _peerToJson(pj,&(pl->peers[i]),bond);
  1432. res.push_back(pj);
  1433. }
  1434. scode = 200;
  1435. } else if (ps.size() == 2) {
  1436. // Return a single peer by ID or 404 if not found
  1437. uint64_t wantp = Utils::hexStrToU64(ps[1].c_str());
  1438. for(unsigned long i=0;i<pl->peerCount;++i) {
  1439. if (pl->peers[i].address == wantp) {
  1440. SharedPtr<Bond> bond = SharedPtr<Bond>();
  1441. if (pl->peers[i].isBonded) {
  1442. bond = _node->bondController()->getBondByPeerId(wantp);
  1443. }
  1444. _peerToJson(res,&(pl->peers[i]),bond);
  1445. scode = 200;
  1446. break;
  1447. }
  1448. }
  1449. } else scode = 404;
  1450. _node->freeQueryResult((void *)pl);
  1451. } else scode = 500;
  1452. } else {
  1453. if (_controller) {
  1454. scode = _controller->handleControlPlaneHttpGET(std::vector<std::string>(ps.begin()+1,ps.end()),urlArgs,headers,body,responseBody,responseContentType);
  1455. } else scode = 404;
  1456. }
  1457. #if ZT_SSO_ENABLED
  1458. } else if (ps[0] == "sso") {
  1459. std::string htmlTemplatePath = _homePath + ZT_PATH_SEPARATOR + "sso-auth.template.html";
  1460. std::string htmlTemplate;
  1461. if (!OSUtils::readFile(htmlTemplatePath.c_str(), htmlTemplate)) {
  1462. htmlTemplate = ssoResponseTemplate;
  1463. }
  1464. responseContentType = "text/html";
  1465. json outData;
  1466. char *error = zeroidc::zeroidc_get_url_param_value("error", path.c_str());
  1467. if (error != nullptr) {
  1468. char *desc = zeroidc::zeroidc_get_url_param_value("error_description", path.c_str());
  1469. scode = 500;
  1470. json data;
  1471. outData["isError"] = true;
  1472. outData["messageText"] = (std::string("ERROR ") + error + std::string(": ") + desc);
  1473. responseBody = inja::render(htmlTemplate, outData);
  1474. zeroidc::free_cstr(desc);
  1475. zeroidc::free_cstr(error);
  1476. return scode;
  1477. }
  1478. // SSO redirect handling
  1479. char* state = zeroidc::zeroidc_get_url_param_value("state", path.c_str());
  1480. char* nwid = zeroidc::zeroidc_network_id_from_state(state);
  1481. outData["networkId"] = std::string(nwid);
  1482. const uint64_t id = Utils::hexStrToU64(nwid);
  1483. zeroidc::free_cstr(nwid);
  1484. zeroidc::free_cstr(state);
  1485. Mutex::Lock l(_nets_m);
  1486. if (_nets.find(id) != _nets.end()) {
  1487. NetworkState& ns = _nets[id];
  1488. char* code = zeroidc::zeroidc_get_url_param_value("code", path.c_str());
  1489. char *ret = ns.doTokenExchange(code);
  1490. json ssoResult = json::parse(ret);
  1491. if (ssoResult.is_object()) {
  1492. if (ssoResult.contains("errorMessage")) {
  1493. outData["isError"] = true;
  1494. outData["messageText"] = ssoResult["errorMessage"];
  1495. responseBody = inja::render(htmlTemplate, outData);
  1496. scode = 500;
  1497. } else {
  1498. scode = 200;
  1499. outData["isError"] = false;
  1500. outData["messageText"] = "Authentication Successful. You may now access the network.";
  1501. responseBody = inja::render(htmlTemplate, outData);
  1502. }
  1503. } else {
  1504. // not an object? We got a problem
  1505. outData["isError"] = true;
  1506. outData["messageText"] = "ERROR: Unkown SSO response. Please contact your administrator.";
  1507. responseBody = inja::render(htmlTemplate, outData);
  1508. scode= 500;
  1509. }
  1510. zeroidc::free_cstr(code);
  1511. zeroidc::free_cstr(ret);
  1512. return scode;
  1513. } else {
  1514. scode = 404;
  1515. }
  1516. #endif
  1517. } else {
  1518. scode = 401; // isAuth == false && !sso
  1519. }
  1520. } else if ((httpMethod == HTTP_POST)||(httpMethod == HTTP_PUT)) {
  1521. if (isAuth) {
  1522. if (ps[0] == "bond") {
  1523. if (_node->bondController()->inUse()) {
  1524. if (ps.size() == 3) {
  1525. if (ps[2].length() == 10) {
  1526. // check if hex string
  1527. const uint64_t id = Utils::hexStrToU64(ps[2].c_str());
  1528. if (ps[1] == "rotate") {
  1529. exit(0);
  1530. SharedPtr<Bond> bond = _node->bondController()->getBondByPeerId(id);
  1531. if (bond) {
  1532. scode = bond->abForciblyRotateLink() ? 200 : 400;
  1533. } else {
  1534. fprintf(stderr, "unable to find bond to peer %llx\n", (unsigned long long)id);
  1535. scode = 400;
  1536. }
  1537. }
  1538. }
  1539. }
  1540. } else {
  1541. scode = 400; /* bond controller is not enabled */
  1542. }
  1543. } else if (ps[0] == "config") {
  1544. // Right now we only support writing the things the UI supports changing.
  1545. if (ps.size() == 2) {
  1546. if (ps[1] == "settings") {
  1547. try {
  1548. json j(OSUtils::jsonParse(body));
  1549. if (j.is_object()) {
  1550. Mutex::Lock lcl(_localConfig_m);
  1551. json lc(_localConfig);
  1552. for(json::const_iterator s(j.begin());s!=j.end();++s) {
  1553. lc["settings"][s.key()] = s.value();
  1554. }
  1555. std::string lcStr = OSUtils::jsonDump(lc, 4);
  1556. if (OSUtils::writeFile((_homePath + ZT_PATH_SEPARATOR_S "local.conf").c_str(), lcStr)) {
  1557. _localConfig = lc;
  1558. }
  1559. } else {
  1560. scode = 400;
  1561. }
  1562. } catch ( ... ) {
  1563. scode = 400;
  1564. }
  1565. } else {
  1566. scode = 404;
  1567. }
  1568. } else {
  1569. scode = 404;
  1570. }
  1571. } else if (ps[0] == "moon") {
  1572. if (ps.size() == 2) {
  1573. uint64_t seed = 0;
  1574. try {
  1575. json j(OSUtils::jsonParse(body));
  1576. if (j.is_object()) {
  1577. seed = Utils::hexStrToU64(OSUtils::jsonString(j["seed"],"0").c_str());
  1578. }
  1579. } catch ( ... ) {
  1580. // discard invalid JSON
  1581. }
  1582. std::vector<World> moons(_node->moons());
  1583. const uint64_t id = Utils::hexStrToU64(ps[1].c_str());
  1584. for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
  1585. if (m->id() == id) {
  1586. _moonToJson(res,*m);
  1587. scode = 200;
  1588. break;
  1589. }
  1590. }
  1591. if ((scode != 200)&&(seed != 0)) {
  1592. char tmp[64];
  1593. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.16llx",id);
  1594. res["id"] = tmp;
  1595. res["roots"] = json::array();
  1596. res["timestamp"] = 0;
  1597. res["signature"] = json();
  1598. res["updatesMustBeSignedBy"] = json();
  1599. res["waiting"] = true;
  1600. _node->orbit((void *)0,id,seed);
  1601. scode = 200;
  1602. }
  1603. } else scode = 404;
  1604. } else if (ps[0] == "network") {
  1605. if (ps.size() == 2) {
  1606. uint64_t wantnw = Utils::hexStrToU64(ps[1].c_str());
  1607. _node->join(wantnw,(void *)0,(void *)0); // does nothing if we are a member
  1608. Mutex::Lock l(_nets_m);
  1609. if (!_nets.empty()) {
  1610. if (_nets.find(wantnw) != _nets.end()) {
  1611. NetworkState& ns = _nets[wantnw];
  1612. try {
  1613. json j(OSUtils::jsonParse(body));
  1614. json &allowManaged = j["allowManaged"];
  1615. if (allowManaged.is_boolean()) {
  1616. ns.setAllowManaged((bool)allowManaged);
  1617. }
  1618. json& allowGlobal = j["allowGlobal"];
  1619. if (allowGlobal.is_boolean()) {
  1620. ns.setAllowGlobal((bool)allowGlobal);
  1621. }
  1622. json& allowDefault = j["allowDefault"];
  1623. if (allowDefault.is_boolean()) {
  1624. ns.setAllowDefault((bool)allowDefault);
  1625. }
  1626. json& allowDNS = j["allowDNS"];
  1627. if (allowDNS.is_boolean()) {
  1628. ns.setAllowDNS((bool)allowDNS);
  1629. }
  1630. } catch (...) {
  1631. // discard invalid JSON
  1632. }
  1633. setNetworkSettings(wantnw, ns.settings());
  1634. if (ns.tap()) {
  1635. syncManagedStuff(ns,true,true,true);
  1636. }
  1637. _networkToJson(res, ns);
  1638. scode = 200;
  1639. }
  1640. } else scode = 500;
  1641. } else scode = 404;
  1642. } else {
  1643. if (_controller)
  1644. scode = _controller->handleControlPlaneHttpPOST(std::vector<std::string>(ps.begin()+1,ps.end()),urlArgs,headers,body,responseBody,responseContentType);
  1645. else scode = 404;
  1646. }
  1647. } else {
  1648. scode = 401; // isAuth == false
  1649. }
  1650. } else if (httpMethod == HTTP_DELETE) {
  1651. if (isAuth) {
  1652. if (ps[0] == "moon") {
  1653. if (ps.size() == 2) {
  1654. _node->deorbit((void *)0,Utils::hexStrToU64(ps[1].c_str()));
  1655. res["result"] = true;
  1656. scode = 200;
  1657. } // else 404
  1658. } else if (ps[0] == "network") {
  1659. ZT_VirtualNetworkList *nws = _node->networks();
  1660. if (nws) {
  1661. if (ps.size() == 2) {
  1662. uint64_t wantnw = Utils::hexStrToU64(ps[1].c_str());
  1663. for(unsigned long i=0;i<nws->networkCount;++i) {
  1664. if (nws->networks[i].nwid == wantnw) {
  1665. _node->leave(wantnw,(void **)0,(void *)0);
  1666. res["result"] = true;
  1667. scode = 200;
  1668. break;
  1669. }
  1670. }
  1671. } // else 404
  1672. _node->freeQueryResult((void *)nws);
  1673. } else scode = 500;
  1674. } else {
  1675. if (_controller)
  1676. scode = _controller->handleControlPlaneHttpDELETE(std::vector<std::string>(ps.begin()+1,ps.end()),urlArgs,headers,body,responseBody,responseContentType);
  1677. else scode = 404;
  1678. }
  1679. } else scode = 401; // isAuth = false
  1680. } else {
  1681. scode = 400;
  1682. }
  1683. if (responseBody.length() == 0) {
  1684. if ((res.is_object())||(res.is_array()))
  1685. responseBody = OSUtils::jsonDump(res);
  1686. else responseBody = "{}";
  1687. responseContentType = "application/json";
  1688. }
  1689. // Wrap result in jsonp function call if the user included a jsonp= url argument.
  1690. // Also double-check isAuth since forbidding this without auth feels safer.
  1691. std::map<std::string,std::string>::const_iterator jsonp(urlArgs.find("jsonp"));
  1692. if ((isAuth)&&(jsonp != urlArgs.end())&&(responseContentType == "application/json")) {
  1693. if (responseBody.length() > 0)
  1694. responseBody = jsonp->second + "(" + responseBody + ");";
  1695. else responseBody = jsonp->second + "(null);";
  1696. responseContentType = "application/javascript";
  1697. }
  1698. return scode;
  1699. }
  1700. // Must be called after _localConfig is read or modified
  1701. void applyLocalConfig()
  1702. {
  1703. Mutex::Lock _l(_localConfig_m);
  1704. json lc(_localConfig);
  1705. _v4Hints.clear();
  1706. _v6Hints.clear();
  1707. _v4Blacklists.clear();
  1708. _v6Blacklists.clear();
  1709. json &virt = lc["virtual"];
  1710. if (virt.is_object()) {
  1711. for(json::iterator v(virt.begin());v!=virt.end();++v) {
  1712. const std::string nstr = v.key();
  1713. if ((nstr.length() == ZT_ADDRESS_LENGTH_HEX)&&(v.value().is_object())) {
  1714. const Address ztaddr(Utils::hexStrToU64(nstr.c_str()));
  1715. if (ztaddr) {
  1716. const uint64_t ztaddr2 = ztaddr.toInt();
  1717. std::vector<InetAddress> &v4h = _v4Hints[ztaddr2];
  1718. std::vector<InetAddress> &v6h = _v6Hints[ztaddr2];
  1719. std::vector<InetAddress> &v4b = _v4Blacklists[ztaddr2];
  1720. std::vector<InetAddress> &v6b = _v6Blacklists[ztaddr2];
  1721. json &tryAddrs = v.value()["try"];
  1722. if (tryAddrs.is_array()) {
  1723. for(unsigned long i=0;i<tryAddrs.size();++i) {
  1724. const InetAddress ip(OSUtils::jsonString(tryAddrs[i],"").c_str());
  1725. if (ip.ss_family == AF_INET)
  1726. v4h.push_back(ip);
  1727. else if (ip.ss_family == AF_INET6)
  1728. v6h.push_back(ip);
  1729. }
  1730. }
  1731. json &blAddrs = v.value()["blacklist"];
  1732. if (blAddrs.is_array()) {
  1733. for(unsigned long i=0;i<blAddrs.size();++i) {
  1734. const InetAddress ip(OSUtils::jsonString(blAddrs[i],"").c_str());
  1735. if (ip.ss_family == AF_INET)
  1736. v4b.push_back(ip);
  1737. else if (ip.ss_family == AF_INET6)
  1738. v6b.push_back(ip);
  1739. }
  1740. }
  1741. if (v4h.empty()) _v4Hints.erase(ztaddr2);
  1742. if (v6h.empty()) _v6Hints.erase(ztaddr2);
  1743. if (v4b.empty()) _v4Blacklists.erase(ztaddr2);
  1744. if (v6b.empty()) _v6Blacklists.erase(ztaddr2);
  1745. }
  1746. }
  1747. }
  1748. }
  1749. _globalV4Blacklist.clear();
  1750. _globalV6Blacklist.clear();
  1751. json &physical = lc["physical"];
  1752. if (physical.is_object()) {
  1753. for(json::iterator phy(physical.begin());phy!=physical.end();++phy) {
  1754. const InetAddress net(OSUtils::jsonString(phy.key(),"").c_str());
  1755. if ((net)&&(net.netmaskBits() > 0)) {
  1756. if (phy.value().is_object()) {
  1757. if (OSUtils::jsonBool(phy.value()["blacklist"],false)) {
  1758. if (net.ss_family == AF_INET)
  1759. _globalV4Blacklist.push_back(net);
  1760. else if (net.ss_family == AF_INET6)
  1761. _globalV6Blacklist.push_back(net);
  1762. }
  1763. }
  1764. }
  1765. }
  1766. }
  1767. _allowManagementFrom.clear();
  1768. _interfacePrefixBlacklist.clear();
  1769. json &settings = lc["settings"];
  1770. if (!_node->bondController()->inUse()) {
  1771. _node->bondController()->setBinder(&_binder);
  1772. // defaultBondingPolicy
  1773. std::string defaultBondingPolicyStr(OSUtils::jsonString(settings["defaultBondingPolicy"],""));
  1774. int defaultBondingPolicy = _node->bondController()->getPolicyCodeByStr(defaultBondingPolicyStr);
  1775. _node->bondController()->setBondingLayerDefaultPolicy(defaultBondingPolicy);
  1776. _node->bondController()->setBondingLayerDefaultPolicyStr(defaultBondingPolicyStr); // Used if custom policy
  1777. // Custom Policies
  1778. json &customBondingPolicies = settings["policies"];
  1779. for (json::iterator policyItr = customBondingPolicies.begin(); policyItr != customBondingPolicies.end();++policyItr) {
  1780. // Custom Policy
  1781. std::string customPolicyStr(policyItr.key());
  1782. json &customPolicy = policyItr.value();
  1783. std::string basePolicyStr(OSUtils::jsonString(customPolicy["basePolicy"],""));
  1784. if (basePolicyStr.empty()) {
  1785. fprintf(stderr, "error: no base policy was specified for custom policy (%s)\n", customPolicyStr.c_str());
  1786. }
  1787. int basePolicyCode = _node->bondController()->getPolicyCodeByStr(basePolicyStr);
  1788. if (basePolicyCode == ZT_BOND_POLICY_NONE) {
  1789. fprintf(stderr, "error: custom policy (%s) is invalid, unknown base policy (%s).\n",
  1790. customPolicyStr.c_str(), basePolicyStr.c_str());
  1791. continue;
  1792. } if (_node->bondController()->getPolicyCodeByStr(customPolicyStr) != ZT_BOND_POLICY_NONE) {
  1793. fprintf(stderr, "error: custom policy (%s) will be ignored, cannot use standard policy names for custom policies.\n",
  1794. customPolicyStr.c_str());
  1795. continue;
  1796. }
  1797. // New bond, used as a copy template for new instances
  1798. SharedPtr<Bond> newTemplateBond = new Bond(NULL, basePolicyStr, customPolicyStr, SharedPtr<Peer>());
  1799. // Acceptable ranges
  1800. newTemplateBond->setPolicy(basePolicyCode);
  1801. newTemplateBond->setMaxAcceptableLatency(OSUtils::jsonInt(customPolicy["maxAcceptableLatency"],-1));
  1802. newTemplateBond->setMaxAcceptableMeanLatency(OSUtils::jsonInt(customPolicy["maxAcceptableMeanLatency"],-1));
  1803. newTemplateBond->setMaxAcceptablePacketDelayVariance(OSUtils::jsonInt(customPolicy["maxAcceptablePacketDelayVariance"],-1));
  1804. newTemplateBond->setMaxAcceptablePacketLossRatio((float)OSUtils::jsonDouble(customPolicy["maxAcceptablePacketLossRatio"],-1));
  1805. newTemplateBond->setMaxAcceptablePacketErrorRatio((float)OSUtils::jsonDouble(customPolicy["maxAcceptablePacketErrorRatio"],-1));
  1806. // Quality weights
  1807. json &qualityWeights = customPolicy["qualityWeights"];
  1808. if (qualityWeights.size() == ZT_QOS_WEIGHT_SIZE) {
  1809. float weights[ZT_QOS_WEIGHT_SIZE];
  1810. weights[ZT_QOS_LAT_IDX] = (float)OSUtils::jsonDouble(qualityWeights["lat"],0.0);
  1811. weights[ZT_QOS_LTM_IDX] = (float)OSUtils::jsonDouble(qualityWeights["ltm"],0.0);
  1812. weights[ZT_QOS_PDV_IDX] = (float)OSUtils::jsonDouble(qualityWeights["pdv"],0.0);
  1813. weights[ZT_QOS_PLR_IDX] = (float)OSUtils::jsonDouble(qualityWeights["plr"],0.0);
  1814. weights[ZT_QOS_PER_IDX] = (float)OSUtils::jsonDouble(qualityWeights["per"],0.0);
  1815. newTemplateBond->setUserQualityWeights(weights,ZT_QOS_WEIGHT_SIZE);
  1816. }
  1817. // Bond-specific properties
  1818. newTemplateBond->setUpDelay(OSUtils::jsonInt(customPolicy["upDelay"],-1));
  1819. newTemplateBond->setDownDelay(OSUtils::jsonInt(customPolicy["downDelay"],-1));
  1820. newTemplateBond->setFailoverInterval(OSUtils::jsonInt(customPolicy["failoverInterval"],ZT_BOND_FAILOVER_DEFAULT_INTERVAL));
  1821. newTemplateBond->setPacketsPerLink(OSUtils::jsonInt(customPolicy["packetsPerLink"],-1));
  1822. // Policy-Specific link set
  1823. json &links = customPolicy["links"];
  1824. for (json::iterator linkItr = links.begin(); linkItr != links.end();++linkItr) {
  1825. std::string linkNameStr(linkItr.key());
  1826. json &link = linkItr.value();
  1827. bool enabled = OSUtils::jsonInt(link["enabled"],true);
  1828. uint32_t speed = OSUtils::jsonInt(link["speed"],0);
  1829. uint8_t ipvPref = OSUtils::jsonInt(link["ipvPref"],0);
  1830. std::string failoverToStr(OSUtils::jsonString(link["failoverTo"],""));
  1831. // Mode
  1832. std::string linkModeStr(OSUtils::jsonString(link["mode"],"spare"));
  1833. uint8_t linkMode = ZT_BOND_SLAVE_MODE_SPARE;
  1834. if (linkModeStr == "primary") { linkMode = ZT_BOND_SLAVE_MODE_PRIMARY; }
  1835. if (linkModeStr == "spare") { linkMode = ZT_BOND_SLAVE_MODE_SPARE; }
  1836. // ipvPref
  1837. if ((ipvPref != 0) && (ipvPref != 4) && (ipvPref != 6) && (ipvPref != 46) && (ipvPref != 64)) {
  1838. fprintf(stderr, "error: invalid ipvPref value (%d), link disabled.\n", ipvPref);
  1839. enabled = false;
  1840. }
  1841. if (linkMode == ZT_BOND_SLAVE_MODE_SPARE && failoverToStr.length()) {
  1842. fprintf(stderr, "error: cannot specify failover links for spares, link disabled.\n");
  1843. failoverToStr = "";
  1844. enabled = false;
  1845. }
  1846. _node->bondController()->addCustomLink(customPolicyStr, new Link(linkNameStr,ipvPref,speed,enabled,linkMode,failoverToStr));
  1847. }
  1848. std::string linkSelectMethodStr(OSUtils::jsonString(customPolicy["activeReselect"],"optimize"));
  1849. if (linkSelectMethodStr == "always") {
  1850. newTemplateBond->setLinkSelectMethod(ZT_BOND_RESELECTION_POLICY_ALWAYS);
  1851. }
  1852. if (linkSelectMethodStr == "better") {
  1853. newTemplateBond->setLinkSelectMethod(ZT_BOND_RESELECTION_POLICY_BETTER);
  1854. }
  1855. if (linkSelectMethodStr == "failure") {
  1856. newTemplateBond->setLinkSelectMethod(ZT_BOND_RESELECTION_POLICY_FAILURE);
  1857. }
  1858. if (linkSelectMethodStr == "optimize") {
  1859. newTemplateBond->setLinkSelectMethod(ZT_BOND_RESELECTION_POLICY_OPTIMIZE);
  1860. }
  1861. if (newTemplateBond->getLinkSelectMethod() < 0 || newTemplateBond->getLinkSelectMethod() > 3) {
  1862. fprintf(stderr, "warning: invalid value (%s) for linkSelectMethod, assuming mode: always\n", linkSelectMethodStr.c_str());
  1863. }
  1864. if (!_node->bondController()->addCustomPolicy(newTemplateBond)) {
  1865. fprintf(stderr, "error: a custom policy of this name (%s) already exists.\n", customPolicyStr.c_str());
  1866. }
  1867. }
  1868. // Peer-specific bonding
  1869. json &peerSpecificBonds = settings["peerSpecificBonds"];
  1870. for (json::iterator peerItr = peerSpecificBonds.begin(); peerItr != peerSpecificBonds.end();++peerItr) {
  1871. _node->bondController()->assignBondingPolicyToPeer(std::stoull(peerItr.key(),0,16), peerItr.value());
  1872. }
  1873. // Check settings
  1874. if (defaultBondingPolicyStr.length() && !defaultBondingPolicy && !_node->bondController()->inUse()) {
  1875. fprintf(stderr, "error: unknown policy (%s) specified by defaultBondingPolicy, bond disabled.\n", defaultBondingPolicyStr.c_str());
  1876. }
  1877. }
  1878. // bondingPolicy cannot be used with allowTcpFallbackRelay
  1879. _allowTcpFallbackRelay = OSUtils::jsonBool(settings["allowTcpFallbackRelay"],true);
  1880. #ifdef ZT_TCP_FALLBACK_RELAY
  1881. _fallbackRelayAddress = InetAddress(OSUtils::jsonString("tcpFallbackRelay", ZT_TCP_FALLBACK_RELAY).c_str());
  1882. #endif
  1883. _primaryPort = (unsigned int)OSUtils::jsonInt(settings["primaryPort"],(uint64_t)_primaryPort) & 0xffff;
  1884. _allowSecondaryPort = OSUtils::jsonBool(settings["allowSecondaryPort"],true);
  1885. _secondaryPort = (unsigned int)OSUtils::jsonInt(settings["secondaryPort"],0);
  1886. _tertiaryPort = (unsigned int)OSUtils::jsonInt(settings["tertiaryPort"],0);
  1887. if (_secondaryPort != 0 || _tertiaryPort != 0) {
  1888. fprintf(stderr,"WARNING: using manually-specified secondary and/or tertiary ports. This can cause NAT issues." ZT_EOL_S);
  1889. }
  1890. _portMappingEnabled = OSUtils::jsonBool(settings["portMappingEnabled"],true);
  1891. #ifndef ZT_SDK
  1892. const std::string up(OSUtils::jsonString(settings["softwareUpdate"],ZT_SOFTWARE_UPDATE_DEFAULT));
  1893. const bool udist = OSUtils::jsonBool(settings["softwareUpdateDist"],false);
  1894. if (((up == "apply")||(up == "download"))||(udist)) {
  1895. if (!_updater)
  1896. _updater = new SoftwareUpdater(*_node,_homePath);
  1897. _updateAutoApply = (up == "apply");
  1898. _updater->setUpdateDistribution(udist);
  1899. _updater->setChannel(OSUtils::jsonString(settings["softwareUpdateChannel"],ZT_SOFTWARE_UPDATE_DEFAULT_CHANNEL));
  1900. } else {
  1901. delete _updater;
  1902. _updater = (SoftwareUpdater *)0;
  1903. _updateAutoApply = false;
  1904. }
  1905. #endif
  1906. json &ignoreIfs = settings["interfacePrefixBlacklist"];
  1907. if (ignoreIfs.is_array()) {
  1908. for(unsigned long i=0;i<ignoreIfs.size();++i) {
  1909. const std::string tmp(OSUtils::jsonString(ignoreIfs[i],""));
  1910. if (tmp.length() > 0)
  1911. _interfacePrefixBlacklist.push_back(tmp);
  1912. }
  1913. }
  1914. json &amf = settings["allowManagementFrom"];
  1915. if (amf.is_array()) {
  1916. for(unsigned long i=0;i<amf.size();++i) {
  1917. const InetAddress nw(OSUtils::jsonString(amf[i],"").c_str());
  1918. if (nw)
  1919. _allowManagementFrom.push_back(nw);
  1920. }
  1921. }
  1922. }
  1923. #if ZT_VAULT_SUPPORT
  1924. json &vault = settings["vault"];
  1925. if (vault.is_object()) {
  1926. const std::string url(OSUtils::jsonString(vault["vaultURL"], "").c_str());
  1927. if (!url.empty()) {
  1928. _vaultURL = url;
  1929. }
  1930. const std::string token(OSUtils::jsonString(vault["vaultToken"], "").c_str());
  1931. if (!token.empty()) {
  1932. _vaultToken = token;
  1933. }
  1934. const std::string path(OSUtils::jsonString(vault["vaultPath"], "").c_str());
  1935. if (!path.empty()) {
  1936. _vaultPath = path;
  1937. }
  1938. }
  1939. // also check environment variables for values. Environment variables
  1940. // will override local.conf variables
  1941. const std::string envURL(getenv("VAULT_ADDR"));
  1942. if (!envURL.empty()) {
  1943. _vaultURL = envURL;
  1944. }
  1945. const std::string envToken(getenv("VAULT_TOKEN"));
  1946. if (!envToken.empty()) {
  1947. _vaultToken = envToken;
  1948. }
  1949. const std::string envPath(getenv("VAULT_PATH"));
  1950. if (!envPath.empty()) {
  1951. _vaultPath = envPath;
  1952. }
  1953. if (!_vaultURL.empty() && !_vaultToken.empty()) {
  1954. _vaultEnabled = true;
  1955. }
  1956. #endif
  1957. // Checks if a managed IP or route target is allowed
  1958. bool checkIfManagedIsAllowed(const NetworkState &n,const InetAddress &target)
  1959. {
  1960. if (!n.allowManaged())
  1961. return false;
  1962. if (!n.allowManagedWhitelist().empty()) {
  1963. bool allowed = false;
  1964. for (InetAddress addr : n.allowManagedWhitelist()) {
  1965. if (addr.containsAddress(target) && addr.netmaskBits() <= target.netmaskBits()) {
  1966. allowed = true;
  1967. break;
  1968. }
  1969. }
  1970. if (!allowed) return false;
  1971. }
  1972. if (target.isDefaultRoute())
  1973. return n.allowDefault();
  1974. switch(target.ipScope()) {
  1975. case InetAddress::IP_SCOPE_NONE:
  1976. case InetAddress::IP_SCOPE_MULTICAST:
  1977. case InetAddress::IP_SCOPE_LOOPBACK:
  1978. case InetAddress::IP_SCOPE_LINK_LOCAL:
  1979. return false;
  1980. case InetAddress::IP_SCOPE_GLOBAL:
  1981. return n.allowGlobal();
  1982. default:
  1983. return true;
  1984. }
  1985. }
  1986. // Match only an IP from a vector of IPs -- used in syncManagedStuff()
  1987. inline bool matchIpOnly(const std::set<InetAddress> &ips,const InetAddress &ip) const
  1988. {
  1989. for(std::set<InetAddress>::const_iterator i(ips.begin());i!=ips.end();++i) {
  1990. if (i->ipsEqual(ip))
  1991. return true;
  1992. }
  1993. return false;
  1994. }
  1995. // Apply or update managed IPs for a configured network (be sure n.tap exists)
  1996. void syncManagedStuff(NetworkState &n,bool syncIps,bool syncRoutes, bool syncDns)
  1997. {
  1998. char ipbuf[64];
  1999. // assumes _nets_m is locked
  2000. if (syncIps) {
  2001. std::vector<InetAddress> newManagedIps;
  2002. newManagedIps.reserve(n.config().assignedAddressCount);
  2003. for(unsigned int i=0;i<n.config().assignedAddressCount;++i) {
  2004. const InetAddress *ii = reinterpret_cast<const InetAddress *>(&(n.config().assignedAddresses[i]));
  2005. if (checkIfManagedIsAllowed(n,*ii))
  2006. newManagedIps.push_back(*ii);
  2007. }
  2008. std::sort(newManagedIps.begin(),newManagedIps.end());
  2009. newManagedIps.erase(std::unique(newManagedIps.begin(),newManagedIps.end()),newManagedIps.end());
  2010. for(std::vector<InetAddress>::iterator ip(n.managedIps().begin());ip!=n.managedIps().end();++ip) {
  2011. if (std::find(newManagedIps.begin(),newManagedIps.end(),*ip) == newManagedIps.end()) {
  2012. if (!n.tap()->removeIp(*ip))
  2013. fprintf(stderr,"ERROR: unable to remove ip address %s" ZT_EOL_S, ip->toString(ipbuf));
  2014. }
  2015. }
  2016. for(std::vector<InetAddress>::iterator ip(newManagedIps.begin());ip!=newManagedIps.end();++ip) {
  2017. if (std::find(n.managedIps().begin(),n.managedIps().end(),*ip) == n.managedIps().end()) {
  2018. if (!n.tap()->addIp(*ip))
  2019. fprintf(stderr,"ERROR: unable to add ip address %s" ZT_EOL_S, ip->toString(ipbuf));
  2020. }
  2021. }
  2022. #ifdef __APPLE__
  2023. if (!MacDNSHelper::addIps(n.config().nwid, n.config().mac, n.tap()->deviceName().c_str(), newManagedIps))
  2024. fprintf(stderr, "ERROR: unable to add v6 addresses to system configuration" ZT_EOL_S);
  2025. #endif
  2026. n.setManagedIps(newManagedIps);
  2027. }
  2028. if (syncRoutes) {
  2029. // Get tap device name (use LUID in hex on Windows) and IP addresses.
  2030. #if defined(__WINDOWS__) && !defined(ZT_SDK)
  2031. char tapdevbuf[64];
  2032. OSUtils::ztsnprintf(tapdevbuf,sizeof(tapdevbuf),"%.16llx",(unsigned long long)((WindowsEthernetTap *)(n.tap().get()))->luid().Value);
  2033. std::string tapdev(tapdevbuf);
  2034. #else
  2035. std::string tapdev(n.tap()->deviceName());
  2036. #endif
  2037. std::vector<InetAddress> tapIps(n.tap()->ips());
  2038. std::set<InetAddress> myIps(tapIps.begin(), tapIps.end());
  2039. for(unsigned int i=0;i<n.config().assignedAddressCount;++i)
  2040. myIps.insert(InetAddress(n.config().assignedAddresses[i]));
  2041. std::set<InetAddress> haveRouteTargets;
  2042. for(unsigned int i=0;i<n.config().routeCount;++i) {
  2043. const InetAddress *const target = reinterpret_cast<const InetAddress *>(&(n.config().routes[i].target));
  2044. const InetAddress *const via = reinterpret_cast<const InetAddress *>(&(n.config().routes[i].via));
  2045. // Make sure we are allowed to set this managed route, and that 'via' is not our IP. The latter
  2046. // avoids setting routes via the router on the router.
  2047. if ( (!checkIfManagedIsAllowed(n,*target)) || ((via->ss_family == target->ss_family)&&(matchIpOnly(myIps,*via))) )
  2048. continue;
  2049. // Find an IP on the interface that can be a source IP, abort if no IPs assigned.
  2050. const InetAddress *src = nullptr;
  2051. unsigned int mostMatchingPrefixBits = 0;
  2052. for(std::set<InetAddress>::const_iterator i(myIps.begin());i!=myIps.end();++i) {
  2053. const unsigned int matchingPrefixBits = i->matchingPrefixBits(*target);
  2054. if (matchingPrefixBits >= mostMatchingPrefixBits && ((target->isV4() && i->isV4()) || (target->isV6() && i->isV6()))) {
  2055. mostMatchingPrefixBits = matchingPrefixBits;
  2056. src = &(*i);
  2057. }
  2058. }
  2059. if (!src)
  2060. continue;
  2061. // Ignore routes implied by local managed IPs since adding the IP adds the route.
  2062. // Apple on the other hand seems to need this at least on some versions.
  2063. #ifndef __APPLE__
  2064. bool haveRoute = false;
  2065. for(std::vector<InetAddress>::iterator ip(n.managedIps().begin());ip!=n.managedIps().end();++ip) {
  2066. if ((target->netmaskBits() == ip->netmaskBits())&&(target->containsAddress(*ip))) {
  2067. haveRoute = true;
  2068. break;
  2069. }
  2070. }
  2071. if (haveRoute)
  2072. continue;
  2073. #endif
  2074. haveRouteTargets.insert(*target);
  2075. #ifndef ZT_SDK
  2076. SharedPtr<ManagedRoute> &mr = n.managedRoutes()[*target];
  2077. if (!mr)
  2078. mr.set(new ManagedRoute(*target, *via, *src, tapdev.c_str()));
  2079. #endif
  2080. }
  2081. for(std::map< InetAddress, SharedPtr<ManagedRoute> >::iterator r(n.managedRoutes().begin());r!=n.managedRoutes().end();) {
  2082. if (haveRouteTargets.find(r->first) == haveRouteTargets.end())
  2083. n.managedRoutes().erase(r++);
  2084. else ++r;
  2085. }
  2086. // Sync device-local managed routes first, then indirect results. That way
  2087. // we don't get destination unreachable for routes that are via things
  2088. // that do not yet have routes in the system.
  2089. for(std::map< InetAddress, SharedPtr<ManagedRoute> >::iterator r(n.managedRoutes().begin());r!=n.managedRoutes().end();++r) {
  2090. if (!r->second->via())
  2091. r->second->sync();
  2092. }
  2093. for(std::map< InetAddress, SharedPtr<ManagedRoute> >::iterator r(n.managedRoutes().begin());r!=n.managedRoutes().end();++r) {
  2094. if (r->second->via())
  2095. r->second->sync();
  2096. }
  2097. }
  2098. if (syncDns) {
  2099. if (n.allowDNS()) {
  2100. if (strlen(n.config().dns.domain) != 0) {
  2101. std::vector<InetAddress> servers;
  2102. for (int j = 0; j < ZT_MAX_DNS_SERVERS; ++j) {
  2103. InetAddress a(n.config().dns.server_addr[j]);
  2104. if (a.isV4() || a.isV6()) {
  2105. servers.push_back(a);
  2106. }
  2107. }
  2108. n.tap()->setDns(n.config().dns.domain, servers);
  2109. }
  2110. } else {
  2111. #ifdef __APPLE__
  2112. MacDNSHelper::removeDNS(n.config().nwid);
  2113. #elif defined(__WINDOWS__)
  2114. WinDNSHelper::removeDNS(n.config().nwid);
  2115. #endif
  2116. }
  2117. }
  2118. }
  2119. // =========================================================================
  2120. // Handlers for Node and Phy<> callbacks
  2121. // =========================================================================
  2122. inline void phyOnDatagram(PhySocket *sock,void **uptr,const struct sockaddr *localAddr,const struct sockaddr *from,void *data,unsigned long len)
  2123. {
  2124. const uint64_t now = OSUtils::now();
  2125. if ((len >= 16)&&(reinterpret_cast<const InetAddress *>(from)->ipScope() == InetAddress::IP_SCOPE_GLOBAL))
  2126. _lastDirectReceiveFromGlobal = now;
  2127. const ZT_ResultCode rc = _node->processWirePacket(nullptr,now,reinterpret_cast<int64_t>(sock),reinterpret_cast<const struct sockaddr_storage *>(from),data,len,&_nextBackgroundTaskDeadline);
  2128. if (ZT_ResultCode_isFatal(rc)) {
  2129. char tmp[256];
  2130. OSUtils::ztsnprintf(tmp,sizeof(tmp),"fatal error code from processWirePacket: %d",(int)rc);
  2131. Mutex::Lock _l(_termReason_m);
  2132. _termReason = ONE_UNRECOVERABLE_ERROR;
  2133. _fatalErrorMessage = tmp;
  2134. this->terminate();
  2135. }
  2136. }
  2137. inline void phyOnTcpConnect(PhySocket *sock,void **uptr,bool success)
  2138. {
  2139. if (!success) {
  2140. phyOnTcpClose(sock,uptr);
  2141. return;
  2142. }
  2143. TcpConnection *const tc = reinterpret_cast<TcpConnection *>(*uptr);
  2144. if (!tc) { // sanity check
  2145. _phy.close(sock,true);
  2146. return;
  2147. }
  2148. tc->sock = sock;
  2149. if (tc->type == TcpConnection::TCP_TUNNEL_OUTGOING) {
  2150. if (_tcpFallbackTunnel)
  2151. _phy.close(_tcpFallbackTunnel->sock);
  2152. _tcpFallbackTunnel = tc;
  2153. _phy.streamSend(sock,ZT_TCP_TUNNEL_HELLO,sizeof(ZT_TCP_TUNNEL_HELLO));
  2154. } else {
  2155. _phy.close(sock,true);
  2156. }
  2157. }
  2158. inline void phyOnTcpAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN,const struct sockaddr *from)
  2159. {
  2160. if (!from) {
  2161. _phy.close(sockN,false);
  2162. return;
  2163. } else {
  2164. #ifdef ZT_SDK
  2165. // Immediately close new local connections. The intention is to prevent the backplane from being accessed when operating as libzt
  2166. if (!allowHttpBackplaneManagement && ((InetAddress*)from)->ipScope() == InetAddress::IP_SCOPE_LOOPBACK) {
  2167. _phy.close(sockN,false);
  2168. return;
  2169. }
  2170. #endif
  2171. TcpConnection *tc = new TcpConnection();
  2172. {
  2173. Mutex::Lock _l(_tcpConnections_m);
  2174. _tcpConnections.push_back(tc);
  2175. }
  2176. tc->type = TcpConnection::TCP_UNCATEGORIZED_INCOMING;
  2177. tc->parent = this;
  2178. tc->sock = sockN;
  2179. tc->remoteAddr = from;
  2180. tc->lastReceive = OSUtils::now();
  2181. http_parser_init(&(tc->parser),HTTP_REQUEST);
  2182. tc->parser.data = (void *)tc;
  2183. tc->messageSize = 0;
  2184. *uptrN = (void *)tc;
  2185. }
  2186. }
  2187. void phyOnTcpClose(PhySocket *sock,void **uptr)
  2188. {
  2189. TcpConnection *tc = (TcpConnection *)*uptr;
  2190. if (tc) {
  2191. if (tc == _tcpFallbackTunnel) {
  2192. _tcpFallbackTunnel = (TcpConnection *)0;
  2193. }
  2194. {
  2195. Mutex::Lock _l(_tcpConnections_m);
  2196. _tcpConnections.erase(std::remove(_tcpConnections.begin(),_tcpConnections.end(),tc),_tcpConnections.end());
  2197. }
  2198. delete tc;
  2199. }
  2200. }
  2201. void phyOnTcpData(PhySocket *sock,void **uptr,void *data,unsigned long len)
  2202. {
  2203. try {
  2204. if (!len) return; // sanity check, should never happen
  2205. TcpConnection *tc = reinterpret_cast<TcpConnection *>(*uptr);
  2206. tc->lastReceive = OSUtils::now();
  2207. switch(tc->type) {
  2208. case TcpConnection::TCP_UNCATEGORIZED_INCOMING:
  2209. switch(reinterpret_cast<uint8_t *>(data)[0]) {
  2210. // HTTP: GET, PUT, POST, HEAD, DELETE
  2211. case 'G':
  2212. case 'P':
  2213. case 'D':
  2214. case 'H': {
  2215. // This is only allowed from IPs permitted to access the management
  2216. // backplane, which is just 127.0.0.1/::1 unless otherwise configured.
  2217. bool allow;
  2218. {
  2219. Mutex::Lock _l(_localConfig_m);
  2220. if (_allowManagementFrom.empty()) {
  2221. allow = (tc->remoteAddr.ipScope() == InetAddress::IP_SCOPE_LOOPBACK);
  2222. } else {
  2223. allow = false;
  2224. for(std::vector<InetAddress>::const_iterator i(_allowManagementFrom.begin());i!=_allowManagementFrom.end();++i) {
  2225. if (i->containsAddress(tc->remoteAddr)) {
  2226. allow = true;
  2227. break;
  2228. }
  2229. }
  2230. }
  2231. }
  2232. if (allow) {
  2233. tc->type = TcpConnection::TCP_HTTP_INCOMING;
  2234. phyOnTcpData(sock,uptr,data,len);
  2235. } else {
  2236. _phy.close(sock);
  2237. }
  2238. } break;
  2239. // Drop unknown protocols
  2240. default:
  2241. _phy.close(sock);
  2242. break;
  2243. }
  2244. return;
  2245. case TcpConnection::TCP_HTTP_INCOMING:
  2246. case TcpConnection::TCP_HTTP_OUTGOING:
  2247. http_parser_execute(&(tc->parser),&HTTP_PARSER_SETTINGS,(const char *)data,len);
  2248. if ((tc->parser.upgrade)||(tc->parser.http_errno != HPE_OK))
  2249. _phy.close(sock);
  2250. return;
  2251. case TcpConnection::TCP_TUNNEL_OUTGOING:
  2252. tc->readq.append((const char *)data,len);
  2253. while (tc->readq.length() >= 5) {
  2254. const char *data = tc->readq.data();
  2255. const unsigned long mlen = ( ((((unsigned long)data[3]) & 0xff) << 8) | (((unsigned long)data[4]) & 0xff) );
  2256. if (tc->readq.length() >= (mlen + 5)) {
  2257. InetAddress from;
  2258. unsigned long plen = mlen; // payload length, modified if there's an IP header
  2259. data += 5; // skip forward past pseudo-TLS junk and mlen
  2260. if (plen == 4) {
  2261. // Hello message, which isn't sent by proxy and would be ignored by client
  2262. } else if (plen) {
  2263. // Messages should contain IPv4 or IPv6 source IP address data
  2264. switch(data[0]) {
  2265. case 4: // IPv4
  2266. if (plen >= 7) {
  2267. from.set((const void *)(data + 1),4,((((unsigned int)data[5]) & 0xff) << 8) | (((unsigned int)data[6]) & 0xff));
  2268. data += 7; // type + 4 byte IP + 2 byte port
  2269. plen -= 7;
  2270. } else {
  2271. _phy.close(sock);
  2272. return;
  2273. }
  2274. break;
  2275. case 6: // IPv6
  2276. if (plen >= 19) {
  2277. from.set((const void *)(data + 1),16,((((unsigned int)data[17]) & 0xff) << 8) | (((unsigned int)data[18]) & 0xff));
  2278. data += 19; // type + 16 byte IP + 2 byte port
  2279. plen -= 19;
  2280. } else {
  2281. _phy.close(sock);
  2282. return;
  2283. }
  2284. break;
  2285. case 0: // none/omitted
  2286. ++data;
  2287. --plen;
  2288. break;
  2289. default: // invalid address type
  2290. _phy.close(sock);
  2291. return;
  2292. }
  2293. if (from) {
  2294. InetAddress fakeTcpLocalInterfaceAddress((uint32_t)0xffffffff,0xffff);
  2295. const ZT_ResultCode rc = _node->processWirePacket(
  2296. (void *)0,
  2297. OSUtils::now(),
  2298. -1,
  2299. reinterpret_cast<struct sockaddr_storage *>(&from),
  2300. data,
  2301. plen,
  2302. &_nextBackgroundTaskDeadline);
  2303. if (ZT_ResultCode_isFatal(rc)) {
  2304. char tmp[256];
  2305. OSUtils::ztsnprintf(tmp,sizeof(tmp),"fatal error code from processWirePacket: %d",(int)rc);
  2306. Mutex::Lock _l(_termReason_m);
  2307. _termReason = ONE_UNRECOVERABLE_ERROR;
  2308. _fatalErrorMessage = tmp;
  2309. this->terminate();
  2310. _phy.close(sock);
  2311. return;
  2312. }
  2313. }
  2314. }
  2315. if (tc->readq.length() > (mlen + 5))
  2316. tc->readq.erase(tc->readq.begin(),tc->readq.begin() + (mlen + 5));
  2317. else tc->readq.clear();
  2318. } else break;
  2319. }
  2320. return;
  2321. }
  2322. } catch ( ... ) {
  2323. _phy.close(sock);
  2324. }
  2325. }
  2326. inline void phyOnTcpWritable(PhySocket *sock,void **uptr)
  2327. {
  2328. TcpConnection *tc = reinterpret_cast<TcpConnection *>(*uptr);
  2329. bool closeit = false;
  2330. {
  2331. Mutex::Lock _l(tc->writeq_m);
  2332. if (tc->writeq.length() > 0) {
  2333. long sent = (long)_phy.streamSend(sock,tc->writeq.data(),(unsigned long)tc->writeq.length(),true);
  2334. if (sent > 0) {
  2335. if ((unsigned long)sent >= (unsigned long)tc->writeq.length()) {
  2336. tc->writeq.clear();
  2337. _phy.setNotifyWritable(sock,false);
  2338. if (tc->type == TcpConnection::TCP_HTTP_INCOMING)
  2339. closeit = true; // HTTP keep alive not supported
  2340. } else {
  2341. tc->writeq.erase(tc->writeq.begin(),tc->writeq.begin() + sent);
  2342. }
  2343. }
  2344. } else {
  2345. _phy.setNotifyWritable(sock,false);
  2346. }
  2347. }
  2348. if (closeit)
  2349. _phy.close(sock);
  2350. }
  2351. inline void phyOnFileDescriptorActivity(PhySocket *sock,void **uptr,bool readable,bool writable) {}
  2352. inline void phyOnUnixAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN) {}
  2353. inline void phyOnUnixClose(PhySocket *sock,void **uptr) {}
  2354. inline void phyOnUnixData(PhySocket *sock,void **uptr,void *data,unsigned long len) {}
  2355. inline void phyOnUnixWritable(PhySocket *sock,void **uptr) {}
  2356. inline int nodeVirtualNetworkConfigFunction(uint64_t nwid,void **nuptr,enum ZT_VirtualNetworkConfigOperation op,const ZT_VirtualNetworkConfig *nwc)
  2357. {
  2358. Mutex::Lock _l(_nets_m);
  2359. NetworkState &n = _nets[nwid];
  2360. n.setWebPort(_primaryPort);
  2361. switch (op) {
  2362. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_UP:
  2363. if (!n.tap()) {
  2364. try {
  2365. char friendlyName[128];
  2366. OSUtils::ztsnprintf(friendlyName,sizeof(friendlyName),"ZeroTier One [%.16llx]",nwid);
  2367. n.setTap(EthernetTap::newInstance(
  2368. nullptr,
  2369. _homePath.c_str(),
  2370. MAC(nwc->mac),
  2371. nwc->mtu,
  2372. (unsigned int)ZT_IF_METRIC,
  2373. nwid,
  2374. friendlyName,
  2375. StapFrameHandler,
  2376. (void *)this));
  2377. *nuptr = (void *)&n;
  2378. char nlcpath[256];
  2379. OSUtils::ztsnprintf(nlcpath,sizeof(nlcpath),"%s" ZT_PATH_SEPARATOR_S "networks.d" ZT_PATH_SEPARATOR_S "%.16llx.local.conf",_homePath.c_str(),nwid);
  2380. std::string nlcbuf;
  2381. if (OSUtils::readFile(nlcpath,nlcbuf)) {
  2382. Dictionary<4096> nc;
  2383. nc.load(nlcbuf.c_str());
  2384. Buffer<1024> allowManaged;
  2385. if (nc.get("allowManaged", allowManaged) && allowManaged.size() > 0) {
  2386. std::string addresses (allowManaged.begin(), allowManaged.size());
  2387. if (allowManaged.size() <= 5) { // untidy parsing for backward compatibility
  2388. if (allowManaged[0] == '1' || allowManaged[0] == 't' || allowManaged[0] == 'T') {
  2389. n.setAllowManaged(true);
  2390. } else {
  2391. n.setAllowManaged(false);
  2392. }
  2393. } else {
  2394. // this should be a list of IP addresses
  2395. n.setAllowManaged(true);
  2396. size_t pos = 0;
  2397. while (true) {
  2398. size_t nextPos = addresses.find(',', pos);
  2399. std::string address = addresses.substr(pos, (nextPos == std::string::npos ? addresses.size() : nextPos) - pos);
  2400. n.addToAllowManagedWhiteList(InetAddress(address.c_str()));
  2401. if (nextPos == std::string::npos) break;
  2402. pos = nextPos + 1;
  2403. }
  2404. }
  2405. } else {
  2406. n.setAllowManaged(true);
  2407. }
  2408. n.setAllowGlobal(nc.getB("allowGlobal", false));
  2409. n.setAllowDefault(nc.getB("allowDefault", false));
  2410. n.setAllowDNS(nc.getB("allowDNS", false));
  2411. }
  2412. } catch (std::exception &exc) {
  2413. #ifdef __WINDOWS__
  2414. FILE *tapFailLog = fopen((_homePath + ZT_PATH_SEPARATOR_S"port_error_log.txt").c_str(),"a");
  2415. if (tapFailLog) {
  2416. fprintf(tapFailLog,"%.16llx: %s" ZT_EOL_S,(unsigned long long)nwid,exc.what());
  2417. fclose(tapFailLog);
  2418. }
  2419. #else
  2420. fprintf(stderr,"ERROR: unable to configure virtual network port: %s" ZT_EOL_S,exc.what());
  2421. #endif
  2422. _nets.erase(nwid);
  2423. return -999;
  2424. } catch ( ... ) {
  2425. return -999; // tap init failed
  2426. }
  2427. }
  2428. // After setting up tap, fall through to CONFIG_UPDATE since we also want to do this...
  2429. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_CONFIG_UPDATE:
  2430. n.setConfig(nwc);
  2431. if (n.tap()) { // sanity check
  2432. #if defined(__WINDOWS__) && !defined(ZT_SDK)
  2433. // wait for up to 5 seconds for the WindowsEthernetTap to actually be initialized
  2434. //
  2435. // without WindowsEthernetTap::isInitialized() returning true, the won't actually
  2436. // be online yet and setting managed routes on it will fail.
  2437. const int MAX_SLEEP_COUNT = 500;
  2438. for (int i = 0; !((WindowsEthernetTap *)(n.tap().get()))->isInitialized() && i < MAX_SLEEP_COUNT; i++) {
  2439. Sleep(10);
  2440. }
  2441. #endif
  2442. syncManagedStuff(n,true,true,true);
  2443. n.tap()->setMtu(nwc->mtu);
  2444. } else {
  2445. _nets.erase(nwid);
  2446. return -999; // tap init failed
  2447. }
  2448. break;
  2449. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DOWN:
  2450. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY:
  2451. if (n.tap()) { // sanity check
  2452. #if defined(__WINDOWS__) && !defined(ZT_SDK)
  2453. std::string winInstanceId(((WindowsEthernetTap *)(n.tap().get()))->instanceId());
  2454. #endif
  2455. *nuptr = (void *)0;
  2456. n.tap().reset();
  2457. _nets.erase(nwid);
  2458. #if defined(__WINDOWS__) && !defined(ZT_SDK)
  2459. if ((op == ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY)&&(winInstanceId.length() > 0))
  2460. WindowsEthernetTap::deletePersistentTapDevice(winInstanceId.c_str());
  2461. #endif
  2462. if (op == ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY) {
  2463. char nlcpath[256];
  2464. OSUtils::ztsnprintf(nlcpath,sizeof(nlcpath),"%s" ZT_PATH_SEPARATOR_S "networks.d" ZT_PATH_SEPARATOR_S "%.16llx.local.conf",_homePath.c_str(),nwid);
  2465. OSUtils::rm(nlcpath);
  2466. }
  2467. } else {
  2468. _nets.erase(nwid);
  2469. }
  2470. break;
  2471. }
  2472. return 0;
  2473. }
  2474. inline void nodeEventCallback(enum ZT_Event event,const void *metaData)
  2475. {
  2476. switch(event) {
  2477. case ZT_EVENT_FATAL_ERROR_IDENTITY_COLLISION: {
  2478. Mutex::Lock _l(_termReason_m);
  2479. _termReason = ONE_IDENTITY_COLLISION;
  2480. _fatalErrorMessage = "identity/address collision";
  2481. this->terminate();
  2482. } break;
  2483. case ZT_EVENT_TRACE: {
  2484. if (metaData) {
  2485. ::fprintf(stderr,"%s" ZT_EOL_S,(const char *)metaData);
  2486. ::fflush(stderr);
  2487. }
  2488. } break;
  2489. case ZT_EVENT_USER_MESSAGE: {
  2490. const ZT_UserMessage *um = reinterpret_cast<const ZT_UserMessage *>(metaData);
  2491. if ((um->typeId == ZT_SOFTWARE_UPDATE_USER_MESSAGE_TYPE)&&(_updater)) {
  2492. _updater->handleSoftwareUpdateUserMessage(um->origin,um->data,um->length);
  2493. }
  2494. } break;
  2495. case ZT_EVENT_REMOTE_TRACE: {
  2496. const ZT_RemoteTrace *rt = reinterpret_cast<const ZT_RemoteTrace *>(metaData);
  2497. if ((rt)&&(rt->len > 0)&&(rt->len <= ZT_MAX_REMOTE_TRACE_SIZE)&&(rt->data))
  2498. _controller->handleRemoteTrace(*rt);
  2499. }
  2500. default:
  2501. break;
  2502. }
  2503. }
  2504. #if ZT_VAULT_SUPPORT
  2505. inline bool nodeVaultPutIdentity(enum ZT_StateObjectType type, const void *data, int len)
  2506. {
  2507. bool retval = false;
  2508. if (type != ZT_STATE_OBJECT_IDENTITY_PUBLIC && type != ZT_STATE_OBJECT_IDENTITY_SECRET) {
  2509. return retval;
  2510. }
  2511. CURL *curl = curl_easy_init();
  2512. if (curl) {
  2513. char token[512] = { 0 };
  2514. snprintf(token, sizeof(token), "X-Vault-Token: %s", _vaultToken.c_str());
  2515. struct curl_slist *chunk = NULL;
  2516. chunk = curl_slist_append(chunk, token);
  2517. char content_type[512] = { 0 };
  2518. snprintf(content_type, sizeof(content_type), "Content-Type: application/json");
  2519. chunk = curl_slist_append(chunk, content_type);
  2520. curl_easy_setopt(curl, CURLOPT_HTTPHEADER, chunk);
  2521. char url[2048] = { 0 };
  2522. snprintf(url, sizeof(url), "%s/v1/%s", _vaultURL.c_str(), _vaultPath.c_str());
  2523. curl_easy_setopt(curl, CURLOPT_URL, url);
  2524. json d = json::object();
  2525. if (type == ZT_STATE_OBJECT_IDENTITY_PUBLIC) {
  2526. std::string key((const char*)data, len);
  2527. d["public"] = key;
  2528. }
  2529. else if (type == ZT_STATE_OBJECT_IDENTITY_SECRET) {
  2530. std::string key((const char*)data, len);
  2531. d["secret"] = key;
  2532. }
  2533. if (!d.empty()) {
  2534. std::string post = d.dump();
  2535. if (!post.empty()) {
  2536. curl_easy_setopt(curl, CURLOPT_POSTFIELDS, post.c_str());
  2537. curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, post.length());
  2538. #ifndef NDEBUG
  2539. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
  2540. #endif
  2541. CURLcode res = curl_easy_perform(curl);
  2542. if (res == CURLE_OK) {
  2543. long response_code = 0;
  2544. curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code);
  2545. if (response_code == 200 || response_code == 204) {
  2546. retval = true;
  2547. }
  2548. }
  2549. }
  2550. }
  2551. curl_easy_cleanup(curl);
  2552. curl = NULL;
  2553. curl_slist_free_all(chunk);
  2554. chunk = NULL;
  2555. }
  2556. return retval;
  2557. }
  2558. #endif
  2559. inline void nodeStatePutFunction(enum ZT_StateObjectType type,const uint64_t id[2],const void *data,int len)
  2560. {
  2561. #if ZT_VAULT_SUPPORT
  2562. if (_vaultEnabled && (type == ZT_STATE_OBJECT_IDENTITY_SECRET || type == ZT_STATE_OBJECT_IDENTITY_PUBLIC)) {
  2563. if (nodeVaultPutIdentity(type, data, len)) {
  2564. // value successfully written to Vault
  2565. return;
  2566. }
  2567. // else fallback to disk
  2568. }
  2569. #endif
  2570. char p[1024];
  2571. FILE *f;
  2572. bool secure = false;
  2573. char dirname[1024];
  2574. dirname[0] = 0;
  2575. switch(type) {
  2576. case ZT_STATE_OBJECT_IDENTITY_PUBLIC:
  2577. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.public",_homePath.c_str());
  2578. break;
  2579. case ZT_STATE_OBJECT_IDENTITY_SECRET:
  2580. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.secret",_homePath.c_str());
  2581. secure = true;
  2582. break;
  2583. case ZT_STATE_OBJECT_PLANET:
  2584. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "planet",_homePath.c_str());
  2585. break;
  2586. case ZT_STATE_OBJECT_MOON:
  2587. OSUtils::ztsnprintf(dirname,sizeof(dirname),"%s" ZT_PATH_SEPARATOR_S "moons.d",_homePath.c_str());
  2588. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "%.16llx.moon",dirname,(unsigned long long)id[0]);
  2589. break;
  2590. case ZT_STATE_OBJECT_NETWORK_CONFIG:
  2591. OSUtils::ztsnprintf(dirname,sizeof(dirname),"%s" ZT_PATH_SEPARATOR_S "networks.d",_homePath.c_str());
  2592. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "%.16llx.conf",dirname,(unsigned long long)id[0]);
  2593. break;
  2594. case ZT_STATE_OBJECT_PEER:
  2595. OSUtils::ztsnprintf(dirname,sizeof(dirname),"%s" ZT_PATH_SEPARATOR_S "peers.d",_homePath.c_str());
  2596. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "%.10llx.peer",dirname,(unsigned long long)id[0]);
  2597. break;
  2598. default:
  2599. return;
  2600. }
  2601. if ((len >= 0)&&(data)) {
  2602. // Check to see if we've already written this first. This reduces
  2603. // redundant writes and I/O overhead on most platforms and has
  2604. // little effect on others.
  2605. f = fopen(p,"rb");
  2606. if (f) {
  2607. char *const buf = (char *)malloc(len*4);
  2608. if (buf) {
  2609. long l = (long)fread(buf,1,(size_t)(len*4),f);
  2610. fclose(f);
  2611. if ((l == (long)len)&&(memcmp(data,buf,l) == 0)) {
  2612. free(buf);
  2613. return;
  2614. }
  2615. free(buf);
  2616. }
  2617. }
  2618. f = fopen(p,"wb");
  2619. if ((!f)&&(dirname[0])) { // create subdirectory if it does not exist
  2620. OSUtils::mkdir(dirname);
  2621. f = fopen(p,"wb");
  2622. }
  2623. if (f) {
  2624. if (fwrite(data,len,1,f) != 1)
  2625. fprintf(stderr,"WARNING: unable to write to file: %s (I/O error)" ZT_EOL_S,p);
  2626. fclose(f);
  2627. if (secure)
  2628. OSUtils::lockDownFile(p,false);
  2629. } else {
  2630. fprintf(stderr,"WARNING: unable to write to file: %s (unable to open)" ZT_EOL_S,p);
  2631. }
  2632. } else {
  2633. OSUtils::rm(p);
  2634. }
  2635. }
  2636. #if ZT_VAULT_SUPPORT
  2637. inline int nodeVaultGetIdentity(enum ZT_StateObjectType type, void *data, unsigned int maxlen)
  2638. {
  2639. if (type != ZT_STATE_OBJECT_IDENTITY_SECRET && type != ZT_STATE_OBJECT_IDENTITY_PUBLIC) {
  2640. return -1;
  2641. }
  2642. int ret = -1;
  2643. CURL *curl = curl_easy_init();
  2644. if (curl) {
  2645. char token[512] = { 0 };
  2646. snprintf(token, sizeof(token), "X-Vault-Token: %s", _vaultToken.c_str());
  2647. struct curl_slist *chunk = NULL;
  2648. chunk = curl_slist_append(chunk, token);
  2649. curl_easy_setopt(curl, CURLOPT_HTTPHEADER, chunk);
  2650. char url[2048] = { 0 };
  2651. snprintf(url, sizeof(url), "%s/v1/%s", _vaultURL.c_str(), _vaultPath.c_str());
  2652. curl_easy_setopt(curl, CURLOPT_URL, url);
  2653. std::string response;
  2654. std::string res_headers;
  2655. curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &curlResponseWrite);
  2656. curl_easy_setopt(curl, CURLOPT_WRITEDATA, &response);
  2657. curl_easy_setopt(curl, CURLOPT_HEADERDATA, &res_headers);
  2658. #ifndef NDEBUG
  2659. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
  2660. #endif
  2661. CURLcode res = curl_easy_perform(curl);
  2662. if (res == CURLE_OK) {
  2663. long response_code = 0;
  2664. curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code);
  2665. if (response_code == 200) {
  2666. try {
  2667. json payload = json::parse(response);
  2668. if (!payload["data"].is_null()) {
  2669. json &d = payload["data"];
  2670. if (type == ZT_STATE_OBJECT_IDENTITY_SECRET) {
  2671. std::string secret = OSUtils::jsonString(d["secret"],"");
  2672. if (!secret.empty()) {
  2673. ret = (int)secret.length();
  2674. memcpy(data, secret.c_str(), ret);
  2675. }
  2676. }
  2677. else if (type == ZT_STATE_OBJECT_IDENTITY_PUBLIC) {
  2678. std::string pub = OSUtils::jsonString(d["public"],"");
  2679. if (!pub.empty()) {
  2680. ret = (int)pub.length();
  2681. memcpy(data, pub.c_str(), ret);
  2682. }
  2683. }
  2684. }
  2685. }
  2686. catch (...) {
  2687. ret = -1;
  2688. }
  2689. }
  2690. }
  2691. curl_easy_cleanup(curl);
  2692. curl = NULL;
  2693. curl_slist_free_all(chunk);
  2694. chunk = NULL;
  2695. }
  2696. return ret;
  2697. }
  2698. #endif
  2699. inline int nodeStateGetFunction(enum ZT_StateObjectType type,const uint64_t id[2],void *data,unsigned int maxlen)
  2700. {
  2701. #if ZT_VAULT_SUPPORT
  2702. if (_vaultEnabled && (type == ZT_STATE_OBJECT_IDENTITY_SECRET || type == ZT_STATE_OBJECT_IDENTITY_PUBLIC) ) {
  2703. int retval = nodeVaultGetIdentity(type, data, maxlen);
  2704. if (retval >= 0)
  2705. return retval;
  2706. // else continue file based lookup
  2707. }
  2708. #endif
  2709. char p[4096];
  2710. switch(type) {
  2711. case ZT_STATE_OBJECT_IDENTITY_PUBLIC:
  2712. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.public",_homePath.c_str());
  2713. break;
  2714. case ZT_STATE_OBJECT_IDENTITY_SECRET:
  2715. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.secret",_homePath.c_str());
  2716. break;
  2717. case ZT_STATE_OBJECT_PLANET:
  2718. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "planet",_homePath.c_str());
  2719. break;
  2720. case ZT_STATE_OBJECT_MOON:
  2721. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "moons.d" ZT_PATH_SEPARATOR_S "%.16llx.moon",_homePath.c_str(),(unsigned long long)id[0]);
  2722. break;
  2723. case ZT_STATE_OBJECT_NETWORK_CONFIG:
  2724. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "networks.d" ZT_PATH_SEPARATOR_S "%.16llx.conf",_homePath.c_str(),(unsigned long long)id[0]);
  2725. break;
  2726. case ZT_STATE_OBJECT_PEER:
  2727. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "peers.d" ZT_PATH_SEPARATOR_S "%.10llx.peer",_homePath.c_str(),(unsigned long long)id[0]);
  2728. break;
  2729. default:
  2730. return -1;
  2731. }
  2732. FILE *f = fopen(p,"rb");
  2733. if (f) {
  2734. int n = (int)fread(data,1,maxlen,f);
  2735. fclose(f);
  2736. #if ZT_VAULT_SUPPORT
  2737. if (_vaultEnabled && (type == ZT_STATE_OBJECT_IDENTITY_SECRET || type == ZT_STATE_OBJECT_IDENTITY_PUBLIC)) {
  2738. // If we've gotten here while Vault is enabled, Vault does not know the key and it's been
  2739. // read from disk instead.
  2740. //
  2741. // We should put the value in Vault and remove the local file.
  2742. if (nodeVaultPutIdentity(type, data, n)) {
  2743. unlink(p);
  2744. }
  2745. }
  2746. #endif
  2747. if (n >= 0)
  2748. return n;
  2749. }
  2750. return -1;
  2751. }
  2752. inline int nodeWirePacketSendFunction(const int64_t localSocket,const struct sockaddr_storage *addr,const void *data,unsigned int len,unsigned int ttl)
  2753. {
  2754. #ifdef ZT_TCP_FALLBACK_RELAY
  2755. if(_allowTcpFallbackRelay) {
  2756. if (addr->ss_family == AF_INET) {
  2757. // TCP fallback tunnel support, currently IPv4 only
  2758. if ((len >= 16)&&(reinterpret_cast<const InetAddress *>(addr)->ipScope() == InetAddress::IP_SCOPE_GLOBAL)) {
  2759. // Engage TCP tunnel fallback if we haven't received anything valid from a global
  2760. // IP address in ZT_TCP_FALLBACK_AFTER milliseconds. If we do start getting
  2761. // valid direct traffic we'll stop using it and close the socket after a while.
  2762. const int64_t now = OSUtils::now();
  2763. if (((now - _lastDirectReceiveFromGlobal) > ZT_TCP_FALLBACK_AFTER)&&((now - _lastRestart) > ZT_TCP_FALLBACK_AFTER)) {
  2764. if (_tcpFallbackTunnel) {
  2765. bool flushNow = false;
  2766. {
  2767. Mutex::Lock _l(_tcpFallbackTunnel->writeq_m);
  2768. if (_tcpFallbackTunnel->writeq.size() < (1024 * 64)) {
  2769. if (_tcpFallbackTunnel->writeq.length() == 0) {
  2770. _phy.setNotifyWritable(_tcpFallbackTunnel->sock,true);
  2771. flushNow = true;
  2772. }
  2773. const unsigned long mlen = len + 7;
  2774. _tcpFallbackTunnel->writeq.push_back((char)0x17);
  2775. _tcpFallbackTunnel->writeq.push_back((char)0x03);
  2776. _tcpFallbackTunnel->writeq.push_back((char)0x03); // fake TLS 1.2 header
  2777. _tcpFallbackTunnel->writeq.push_back((char)((mlen >> 8) & 0xff));
  2778. _tcpFallbackTunnel->writeq.push_back((char)(mlen & 0xff));
  2779. _tcpFallbackTunnel->writeq.push_back((char)4); // IPv4
  2780. _tcpFallbackTunnel->writeq.append(reinterpret_cast<const char *>(reinterpret_cast<const void *>(&(reinterpret_cast<const struct sockaddr_in *>(addr)->sin_addr.s_addr))),4);
  2781. _tcpFallbackTunnel->writeq.append(reinterpret_cast<const char *>(reinterpret_cast<const void *>(&(reinterpret_cast<const struct sockaddr_in *>(addr)->sin_port))),2);
  2782. _tcpFallbackTunnel->writeq.append((const char *)data,len);
  2783. }
  2784. }
  2785. if (flushNow) {
  2786. void *tmpptr = (void *)_tcpFallbackTunnel;
  2787. phyOnTcpWritable(_tcpFallbackTunnel->sock,&tmpptr);
  2788. }
  2789. } else if (((now - _lastSendToGlobalV4) < ZT_TCP_FALLBACK_AFTER)&&((now - _lastSendToGlobalV4) > (ZT_PING_CHECK_INVERVAL / 2))) {
  2790. const InetAddress addr(_fallbackRelayAddress);
  2791. TcpConnection *tc = new TcpConnection();
  2792. {
  2793. Mutex::Lock _l(_tcpConnections_m);
  2794. _tcpConnections.push_back(tc);
  2795. }
  2796. tc->type = TcpConnection::TCP_TUNNEL_OUTGOING;
  2797. tc->remoteAddr = addr;
  2798. tc->lastReceive = OSUtils::now();
  2799. tc->parent = this;
  2800. tc->sock = (PhySocket *)0; // set in connect handler
  2801. tc->messageSize = 0;
  2802. bool connected = false;
  2803. _phy.tcpConnect(reinterpret_cast<const struct sockaddr *>(&addr),connected,(void *)tc,true);
  2804. }
  2805. }
  2806. _lastSendToGlobalV4 = now;
  2807. }
  2808. }
  2809. }
  2810. #endif // ZT_TCP_FALLBACK_RELAY
  2811. // Even when relaying we still send via UDP. This way if UDP starts
  2812. // working we can instantly "fail forward" to it and stop using TCP
  2813. // proxy fallback, which is slow.
  2814. if ((localSocket != -1)&&(localSocket != 0)&&(_binder.isUdpSocketValid((PhySocket *)((uintptr_t)localSocket)))) {
  2815. if ((ttl)&&(addr->ss_family == AF_INET)) _phy.setIp4UdpTtl((PhySocket *)((uintptr_t)localSocket),ttl);
  2816. const bool r = _phy.udpSend((PhySocket *)((uintptr_t)localSocket),(const struct sockaddr *)addr,data,len);
  2817. if ((ttl)&&(addr->ss_family == AF_INET)) _phy.setIp4UdpTtl((PhySocket *)((uintptr_t)localSocket),255);
  2818. return ((r) ? 0 : -1);
  2819. } else {
  2820. return ((_binder.udpSendAll(_phy,addr,data,len,ttl)) ? 0 : -1);
  2821. }
  2822. }
  2823. 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)
  2824. {
  2825. NetworkState *n = reinterpret_cast<NetworkState *>(*nuptr);
  2826. if ((!n)||(!n->tap()))
  2827. return;
  2828. n->tap()->put(MAC(sourceMac),MAC(destMac),etherType,data,len);
  2829. }
  2830. inline int nodePathCheckFunction(uint64_t ztaddr,const int64_t localSocket,const struct sockaddr_storage *remoteAddr)
  2831. {
  2832. // Make sure we're not trying to do ZeroTier-over-ZeroTier
  2833. {
  2834. Mutex::Lock _l(_nets_m);
  2835. for(std::map<uint64_t,NetworkState>::const_iterator n(_nets.begin());n!=_nets.end();++n) {
  2836. if (n->second.tap()) {
  2837. std::vector<InetAddress> ips(n->second.tap()->ips());
  2838. for(std::vector<InetAddress>::const_iterator i(ips.begin());i!=ips.end();++i) {
  2839. if (i->containsAddress(*(reinterpret_cast<const InetAddress *>(remoteAddr)))) {
  2840. return 0;
  2841. }
  2842. }
  2843. }
  2844. }
  2845. }
  2846. /* Note: I do not think we need to scan for overlap with managed routes
  2847. * because of the "route forking" and interface binding that we do. This
  2848. * ensures (we hope) that ZeroTier traffic will still take the physical
  2849. * path even if its managed routes override this for other traffic. Will
  2850. * revisit if we see recursion problems. */
  2851. // Check blacklists
  2852. const Hashtable< uint64_t,std::vector<InetAddress> > *blh = (const Hashtable< uint64_t,std::vector<InetAddress> > *)0;
  2853. const std::vector<InetAddress> *gbl = (const std::vector<InetAddress> *)0;
  2854. if (remoteAddr->ss_family == AF_INET) {
  2855. blh = &_v4Blacklists;
  2856. gbl = &_globalV4Blacklist;
  2857. } else if (remoteAddr->ss_family == AF_INET6) {
  2858. blh = &_v6Blacklists;
  2859. gbl = &_globalV6Blacklist;
  2860. }
  2861. if (blh) {
  2862. Mutex::Lock _l(_localConfig_m);
  2863. const std::vector<InetAddress> *l = blh->get(ztaddr);
  2864. if (l) {
  2865. for(std::vector<InetAddress>::const_iterator a(l->begin());a!=l->end();++a) {
  2866. if (a->containsAddress(*reinterpret_cast<const InetAddress *>(remoteAddr)))
  2867. return 0;
  2868. }
  2869. }
  2870. }
  2871. if (gbl) {
  2872. for(std::vector<InetAddress>::const_iterator a(gbl->begin());a!=gbl->end();++a) {
  2873. if (a->containsAddress(*reinterpret_cast<const InetAddress *>(remoteAddr)))
  2874. return 0;
  2875. }
  2876. }
  2877. return 1;
  2878. }
  2879. inline int nodePathLookupFunction(uint64_t ztaddr, int family, struct sockaddr_storage* result)
  2880. {
  2881. const Hashtable< uint64_t, std::vector<InetAddress> >* lh = (const Hashtable< uint64_t, std::vector<InetAddress> > *)0;
  2882. if (family < 0)
  2883. lh = (_node->prng() & 1) ? &_v4Hints : &_v6Hints;
  2884. else if (family == AF_INET)
  2885. lh = &_v4Hints;
  2886. else if (family == AF_INET6)
  2887. lh = &_v6Hints;
  2888. else return 0;
  2889. const std::vector<InetAddress>* l = lh->get(ztaddr);
  2890. if ((l) && (!l->empty())) {
  2891. memcpy(result, &((*l)[(unsigned long)_node->prng() % l->size()]), sizeof(struct sockaddr_storage));
  2892. return 1;
  2893. }
  2894. else return 0;
  2895. }
  2896. inline void tapFrameHandler(uint64_t nwid, const MAC& from, const MAC& to, unsigned int etherType, unsigned int vlanId, const void* data, unsigned int len)
  2897. {
  2898. _node->processVirtualNetworkFrame((void*)0, OSUtils::now(), nwid, from.toInt(), to.toInt(), etherType, vlanId, data, len, &_nextBackgroundTaskDeadline);
  2899. }
  2900. inline void onHttpRequestToServer(TcpConnection* tc)
  2901. {
  2902. char tmpn[4096];
  2903. std::string data;
  2904. std::string contentType("text/plain"); // default if not changed in handleRequest()
  2905. unsigned int scode = 404;
  2906. // Note that we check allowed IP ranges when HTTP connections are first detected in
  2907. // phyOnTcpData(). If we made it here the source IP is okay.
  2908. try {
  2909. scode = handleControlPlaneHttpRequest(tc->remoteAddr, tc->parser.method, tc->url, tc->headers, tc->readq, data, contentType);
  2910. }
  2911. catch (std::exception& exc) {
  2912. fprintf(stderr, "WARNING: unexpected exception processing control HTTP request: %s" ZT_EOL_S, exc.what());
  2913. scode = 500;
  2914. }
  2915. catch (...) {
  2916. fprintf(stderr, "WARNING: unexpected exception processing control HTTP request: unknown exception" ZT_EOL_S);
  2917. scode = 500;
  2918. }
  2919. const char* scodestr;
  2920. switch (scode) {
  2921. case 200: scodestr = "OK"; break;
  2922. case 400: scodestr = "Bad Request"; break;
  2923. case 401: scodestr = "Unauthorized"; break;
  2924. case 403: scodestr = "Forbidden"; break;
  2925. case 404: scodestr = "Not Found"; break;
  2926. case 500: scodestr = "Internal Server Error"; break;
  2927. case 501: scodestr = "Not Implemented"; break;
  2928. case 503: scodestr = "Service Unavailable"; break;
  2929. default: scodestr = "Error"; break;
  2930. }
  2931. 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",
  2932. scode,
  2933. scodestr,
  2934. contentType.c_str(),
  2935. (unsigned long)data.length());
  2936. {
  2937. Mutex::Lock _l(tc->writeq_m);
  2938. tc->writeq = tmpn;
  2939. if (tc->parser.method != HTTP_HEAD)
  2940. tc->writeq.append(data);
  2941. }
  2942. _phy.setNotifyWritable(tc->sock, true);
  2943. }
  2944. inline void onHttpResponseFromClient(TcpConnection* tc)
  2945. {
  2946. _phy.close(tc->sock);
  2947. }
  2948. bool shouldBindInterface(const char* ifname, const InetAddress& ifaddr)
  2949. {
  2950. #if defined(__linux__) || defined(linux) || defined(__LINUX__) || defined(__linux)
  2951. if ((ifname[0] == 'l') && (ifname[1] == 'o')) return false; // loopback
  2952. if ((ifname[0] == 'z') && (ifname[1] == 't')) return false; // sanity check: zt#
  2953. if ((ifname[0] == 't') && (ifname[1] == 'u') && (ifname[2] == 'n')) return false; // tun# is probably an OpenVPN tunnel or similar
  2954. if ((ifname[0] == 't') && (ifname[1] == 'a') && (ifname[2] == 'p')) return false; // tap# is probably an OpenVPN tunnel or similar
  2955. #endif
  2956. #ifdef __APPLE__
  2957. if ((ifname[0] == 'f') && (ifname[1] == 'e') && (ifname[2] == 't') && (ifname[3] == 'h')) return false; // ... as is feth#
  2958. if ((ifname[0] == 'l') && (ifname[1] == 'o')) return false; // loopback
  2959. if ((ifname[0] == 'z') && (ifname[1] == 't')) return false; // sanity check: zt#
  2960. if ((ifname[0] == 't') && (ifname[1] == 'u') && (ifname[2] == 'n')) return false; // tun# is probably an OpenVPN tunnel or similar
  2961. if ((ifname[0] == 't') && (ifname[1] == 'a') && (ifname[2] == 'p')) return false; // tap# is probably an OpenVPN tunnel or similar
  2962. if ((ifname[0] == 'u') && (ifname[1] == 't') && (ifname[2] == 'u') && (ifname[3] == 'n')) return false; // ... as is utun#
  2963. #endif
  2964. #ifdef __FreeBSD__
  2965. if ((ifname[0] == 'l') && (ifname[1] == 'o')) return false; // loopback
  2966. if ((ifname[0] == 'z') && (ifname[1] == 't')) return false; // sanity check: zt#
  2967. #endif
  2968. {
  2969. Mutex::Lock _l(_localConfig_m);
  2970. for(std::vector<std::string>::const_iterator p(_interfacePrefixBlacklist.begin());p!=_interfacePrefixBlacklist.end();++p) {
  2971. if (!strncmp(p->c_str(),ifname,p->length()))
  2972. return false;
  2973. }
  2974. }
  2975. {
  2976. // Check global blacklists
  2977. const std::vector<InetAddress> *gbl = (const std::vector<InetAddress> *)0;
  2978. if (ifaddr.ss_family == AF_INET) {
  2979. gbl = &_globalV4Blacklist;
  2980. } else if (ifaddr.ss_family == AF_INET6) {
  2981. gbl = &_globalV6Blacklist;
  2982. }
  2983. if (gbl) {
  2984. Mutex::Lock _l(_localConfig_m);
  2985. for(std::vector<InetAddress>::const_iterator a(gbl->begin());a!=gbl->end();++a) {
  2986. if (a->containsAddress(ifaddr))
  2987. return false;
  2988. }
  2989. }
  2990. }
  2991. {
  2992. Mutex::Lock _l(_nets_m);
  2993. for(std::map<uint64_t,NetworkState>::const_iterator n(_nets.begin());n!=_nets.end();++n) {
  2994. if (n->second.tap()) {
  2995. std::vector<InetAddress> ips(n->second.tap()->ips());
  2996. for(std::vector<InetAddress>::const_iterator i(ips.begin());i!=ips.end();++i) {
  2997. if (i->ipsEqual(ifaddr))
  2998. return false;
  2999. }
  3000. #ifdef _WIN32
  3001. if (n->second.tap()->friendlyName() == ifname)
  3002. return false;
  3003. #endif
  3004. }
  3005. }
  3006. }
  3007. return true;
  3008. }
  3009. unsigned int _getRandomPort()
  3010. {
  3011. unsigned int randp = 0;
  3012. Utils::getSecureRandom(&randp,sizeof(randp));
  3013. randp = 20000 + (randp % 45500);
  3014. for(int i=0;;++i) {
  3015. if (i > 1000) {
  3016. return 0;
  3017. } else if (++randp >= 65536) {
  3018. randp = 20000;
  3019. }
  3020. if (_trialBind(randp))
  3021. break;
  3022. }
  3023. return randp;
  3024. }
  3025. bool _trialBind(unsigned int port)
  3026. {
  3027. struct sockaddr_in in4;
  3028. struct sockaddr_in6 in6;
  3029. PhySocket *tb;
  3030. memset(&in4,0,sizeof(in4));
  3031. in4.sin_family = AF_INET;
  3032. in4.sin_port = Utils::hton((uint16_t)port);
  3033. tb = _phy.udpBind(reinterpret_cast<const struct sockaddr *>(&in4),(void *)0,0);
  3034. if (tb) {
  3035. _phy.close(tb,false);
  3036. tb = _phy.tcpListen(reinterpret_cast<const struct sockaddr *>(&in4),(void *)0);
  3037. if (tb) {
  3038. _phy.close(tb,false);
  3039. return true;
  3040. }
  3041. }
  3042. memset(&in6,0,sizeof(in6));
  3043. in6.sin6_family = AF_INET6;
  3044. in6.sin6_port = Utils::hton((uint16_t)port);
  3045. tb = _phy.udpBind(reinterpret_cast<const struct sockaddr *>(&in6),(void *)0,0);
  3046. if (tb) {
  3047. _phy.close(tb,false);
  3048. tb = _phy.tcpListen(reinterpret_cast<const struct sockaddr *>(&in6),(void *)0);
  3049. if (tb) {
  3050. _phy.close(tb,false);
  3051. return true;
  3052. }
  3053. }
  3054. return false;
  3055. }
  3056. };
  3057. static int SnodeVirtualNetworkConfigFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t nwid,void **nuptr,enum ZT_VirtualNetworkConfigOperation op,const ZT_VirtualNetworkConfig *nwconf)
  3058. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodeVirtualNetworkConfigFunction(nwid,nuptr,op,nwconf); }
  3059. static void SnodeEventCallback(ZT_Node *node,void *uptr,void *tptr,enum ZT_Event event,const void *metaData)
  3060. { reinterpret_cast<OneServiceImpl *>(uptr)->nodeEventCallback(event,metaData); }
  3061. static void SnodeStatePutFunction(ZT_Node *node,void *uptr,void *tptr,enum ZT_StateObjectType type,const uint64_t id[2],const void *data,int len)
  3062. { reinterpret_cast<OneServiceImpl *>(uptr)->nodeStatePutFunction(type,id,data,len); }
  3063. static int SnodeStateGetFunction(ZT_Node *node,void *uptr,void *tptr,enum ZT_StateObjectType type,const uint64_t id[2],void *data,unsigned int maxlen)
  3064. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodeStateGetFunction(type,id,data,maxlen); }
  3065. 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)
  3066. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodeWirePacketSendFunction(localSocket,addr,data,len,ttl); }
  3067. 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)
  3068. { reinterpret_cast<OneServiceImpl *>(uptr)->nodeVirtualNetworkFrameFunction(nwid,nuptr,sourceMac,destMac,etherType,vlanId,data,len); }
  3069. static int SnodePathCheckFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t ztaddr,int64_t localSocket,const struct sockaddr_storage *remoteAddr)
  3070. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodePathCheckFunction(ztaddr,localSocket,remoteAddr); }
  3071. static int SnodePathLookupFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t ztaddr,int family,struct sockaddr_storage *result)
  3072. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodePathLookupFunction(ztaddr,family,result); }
  3073. 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)
  3074. { reinterpret_cast<OneServiceImpl *>(uptr)->tapFrameHandler(nwid,from,to,etherType,vlanId,data,len); }
  3075. static int ShttpOnMessageBegin(http_parser *parser)
  3076. {
  3077. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3078. tc->currentHeaderField = "";
  3079. tc->currentHeaderValue = "";
  3080. tc->messageSize = 0;
  3081. tc->url.clear();
  3082. tc->status.clear();
  3083. tc->headers.clear();
  3084. tc->readq.clear();
  3085. return 0;
  3086. }
  3087. static int ShttpOnUrl(http_parser *parser,const char *ptr,size_t length)
  3088. {
  3089. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3090. tc->messageSize += (unsigned long)length;
  3091. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  3092. return -1;
  3093. tc->url.append(ptr,length);
  3094. return 0;
  3095. }
  3096. #if (HTTP_PARSER_VERSION_MAJOR >= 2) && (HTTP_PARSER_VERSION_MINOR >= 2)
  3097. static int ShttpOnStatus(http_parser *parser,const char *ptr,size_t length)
  3098. #else
  3099. static int ShttpOnStatus(http_parser *parser)
  3100. #endif
  3101. { return 0; }
  3102. static int ShttpOnHeaderField(http_parser *parser,const char *ptr,size_t length)
  3103. {
  3104. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3105. tc->messageSize += (unsigned long)length;
  3106. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  3107. return -1;
  3108. if ((tc->currentHeaderField.length())&&(tc->currentHeaderValue.length())) {
  3109. tc->headers[tc->currentHeaderField] = tc->currentHeaderValue;
  3110. tc->currentHeaderField = "";
  3111. tc->currentHeaderValue = "";
  3112. }
  3113. for(size_t i=0;i<length;++i)
  3114. tc->currentHeaderField.push_back(OSUtils::toLower(ptr[i]));
  3115. return 0;
  3116. }
  3117. static int ShttpOnValue(http_parser *parser,const char *ptr,size_t length)
  3118. {
  3119. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3120. tc->messageSize += (unsigned long)length;
  3121. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  3122. return -1;
  3123. tc->currentHeaderValue.append(ptr,length);
  3124. return 0;
  3125. }
  3126. static int ShttpOnHeadersComplete(http_parser *parser)
  3127. {
  3128. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3129. if ((tc->currentHeaderField.length())&&(tc->currentHeaderValue.length()))
  3130. tc->headers[tc->currentHeaderField] = tc->currentHeaderValue;
  3131. return 0;
  3132. }
  3133. static int ShttpOnBody(http_parser *parser,const char *ptr,size_t length)
  3134. {
  3135. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3136. tc->messageSize += (unsigned long)length;
  3137. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  3138. return -1;
  3139. tc->readq.append(ptr,length);
  3140. return 0;
  3141. }
  3142. static int ShttpOnMessageComplete(http_parser *parser)
  3143. {
  3144. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3145. if (tc->type == TcpConnection::TCP_HTTP_INCOMING) {
  3146. tc->parent->onHttpRequestToServer(tc);
  3147. } else {
  3148. tc->parent->onHttpResponseFromClient(tc);
  3149. }
  3150. return 0;
  3151. }
  3152. } // anonymous namespace
  3153. std::string OneService::platformDefaultHomePath()
  3154. {
  3155. return OSUtils::platformDefaultHomePath();
  3156. }
  3157. OneService *OneService::newInstance(const char *hp,unsigned int port) { return new OneServiceImpl(hp,port); }
  3158. OneService::~OneService() {}
  3159. } // namespace ZeroTier