OneService.cpp 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525
  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["relativeQuality"] = peer->paths[i].relativeQuality;
  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=functionName, 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. scode = 400;
  1310. }
  1311. }
  1312. }
  1313. }
  1314. }
  1315. _node->freeQueryResult((void *)pl);
  1316. }
  1317. }
  1318. } else {
  1319. scode = 400; /* bond controller is not enabled */
  1320. }
  1321. } else if (ps[0] == "config") {
  1322. Mutex::Lock lc(_localConfig_m);
  1323. res = _localConfig;
  1324. scode = 200;
  1325. } else if (ps[0] == "status") {
  1326. ZT_NodeStatus status;
  1327. _node->status(&status);
  1328. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.10llx",status.address);
  1329. res["address"] = tmp;
  1330. res["publicIdentity"] = status.publicIdentity;
  1331. res["online"] = (bool)(status.online != 0);
  1332. res["tcpFallbackActive"] = (_tcpFallbackTunnel != (TcpConnection *)0);
  1333. res["versionMajor"] = ZEROTIER_ONE_VERSION_MAJOR;
  1334. res["versionMinor"] = ZEROTIER_ONE_VERSION_MINOR;
  1335. res["versionRev"] = ZEROTIER_ONE_VERSION_REVISION;
  1336. res["versionBuild"] = ZEROTIER_ONE_VERSION_BUILD;
  1337. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%d.%d.%d",ZEROTIER_ONE_VERSION_MAJOR,ZEROTIER_ONE_VERSION_MINOR,ZEROTIER_ONE_VERSION_REVISION);
  1338. res["version"] = tmp;
  1339. res["clock"] = OSUtils::now();
  1340. {
  1341. Mutex::Lock _l(_localConfig_m);
  1342. res["config"] = _localConfig;
  1343. }
  1344. json &settings = res["config"]["settings"];
  1345. settings["allowTcpFallbackRelay"] = OSUtils::jsonBool(settings["allowTcpFallbackRelay"],_allowTcpFallbackRelay);
  1346. settings["primaryPort"] = OSUtils::jsonInt(settings["primaryPort"],(uint64_t)_primaryPort) & 0xffff;
  1347. settings["secondaryPort"] = OSUtils::jsonInt(settings["secondaryPort"],(uint64_t)_secondaryPort) & 0xffff;
  1348. settings["tertiaryPort"] = OSUtils::jsonInt(settings["tertiaryPort"],(uint64_t)_tertiaryPort) & 0xffff;
  1349. // Enumerate all local address/port pairs that this node is listening on
  1350. std::vector<InetAddress> boundAddrs(_binder.allBoundLocalInterfaceAddresses());
  1351. auto boundAddrArray = json::array();
  1352. for (int i = 0; i < boundAddrs.size(); i++) {
  1353. char ipBuf[64] = { 0 };
  1354. boundAddrs[i].toString(ipBuf);
  1355. boundAddrArray.push_back(ipBuf);
  1356. }
  1357. settings["listeningOn"] = boundAddrArray;
  1358. // Enumerate all external address/port pairs that are reported for this node
  1359. std::vector<InetAddress> surfaceAddrs = _node->SurfaceAddresses();
  1360. auto surfaceAddrArray = json::array();
  1361. for (int i = 0; i < surfaceAddrs.size(); i++) {
  1362. char ipBuf[64] = { 0 };
  1363. surfaceAddrs[i].toString(ipBuf);
  1364. surfaceAddrArray.push_back(ipBuf);
  1365. }
  1366. settings["surfaceAddresses"] = surfaceAddrArray;
  1367. #ifdef ZT_USE_MINIUPNPC
  1368. settings["portMappingEnabled"] = OSUtils::jsonBool(settings["portMappingEnabled"],true);
  1369. #else
  1370. settings["portMappingEnabled"] = false; // not supported in build
  1371. #endif
  1372. #ifndef ZT_SDK
  1373. settings["softwareUpdate"] = OSUtils::jsonString(settings["softwareUpdate"],ZT_SOFTWARE_UPDATE_DEFAULT);
  1374. settings["softwareUpdateChannel"] = OSUtils::jsonString(settings["softwareUpdateChannel"],ZT_SOFTWARE_UPDATE_DEFAULT_CHANNEL);
  1375. #endif
  1376. const World planet(_node->planet());
  1377. res["planetWorldId"] = planet.id();
  1378. res["planetWorldTimestamp"] = planet.timestamp();
  1379. scode = 200;
  1380. } else if (ps[0] == "moon") {
  1381. std::vector<World> moons(_node->moons());
  1382. if (ps.size() == 1) {
  1383. // Return [array] of all moons
  1384. res = json::array();
  1385. for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
  1386. json mj;
  1387. _moonToJson(mj,*m);
  1388. res.push_back(mj);
  1389. }
  1390. scode = 200;
  1391. } else {
  1392. // Return a single moon by ID
  1393. const uint64_t id = Utils::hexStrToU64(ps[1].c_str());
  1394. for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
  1395. if (m->id() == id) {
  1396. _moonToJson(res,*m);
  1397. scode = 200;
  1398. break;
  1399. }
  1400. }
  1401. }
  1402. } else if (ps[0] == "network") {
  1403. Mutex::Lock _l(_nets_m);
  1404. if (ps.size() == 1) {
  1405. // Return [array] of all networks
  1406. res = nlohmann::json::array();
  1407. for (auto it = _nets.begin(); it != _nets.end(); ++it) {
  1408. NetworkState &ns = it->second;
  1409. nlohmann::json nj;
  1410. _networkToJson(nj, ns);
  1411. res.push_back(nj);
  1412. }
  1413. scode = 200;
  1414. } else if (ps.size() == 2) {
  1415. // Return a single network by ID or 404 if not found
  1416. const uint64_t wantnw = Utils::hexStrToU64(ps[1].c_str());
  1417. if (_nets.find(wantnw) != _nets.end()) {
  1418. res = json::object();
  1419. NetworkState& ns = _nets[wantnw];
  1420. _networkToJson(res, ns);
  1421. scode = 200;
  1422. }
  1423. } else {
  1424. scode = 404;
  1425. }
  1426. } else if (ps[0] == "peer") {
  1427. ZT_PeerList *pl = _node->peers();
  1428. if (pl) {
  1429. if (ps.size() == 1) {
  1430. // Return [array] of all peers
  1431. res = nlohmann::json::array();
  1432. for(unsigned long i=0;i<pl->peerCount;++i) {
  1433. nlohmann::json pj;
  1434. SharedPtr<Bond> bond = SharedPtr<Bond>();
  1435. if (pl->peers[i].isBonded) {
  1436. const uint64_t id = pl->peers[i].address;
  1437. bond = _node->bondController()->getBondByPeerId(id);
  1438. }
  1439. _peerToJson(pj,&(pl->peers[i]),bond);
  1440. res.push_back(pj);
  1441. }
  1442. scode = 200;
  1443. } else if (ps.size() == 2) {
  1444. // Return a single peer by ID or 404 if not found
  1445. uint64_t wantp = Utils::hexStrToU64(ps[1].c_str());
  1446. for(unsigned long i=0;i<pl->peerCount;++i) {
  1447. if (pl->peers[i].address == wantp) {
  1448. SharedPtr<Bond> bond = SharedPtr<Bond>();
  1449. if (pl->peers[i].isBonded) {
  1450. bond = _node->bondController()->getBondByPeerId(wantp);
  1451. }
  1452. _peerToJson(res,&(pl->peers[i]),bond);
  1453. scode = 200;
  1454. break;
  1455. }
  1456. }
  1457. } else scode = 404;
  1458. _node->freeQueryResult((void *)pl);
  1459. } else scode = 500;
  1460. } else {
  1461. if (_controller) {
  1462. scode = _controller->handleControlPlaneHttpGET(std::vector<std::string>(ps.begin()+1,ps.end()),urlArgs,headers,body,responseBody,responseContentType);
  1463. } else scode = 404;
  1464. }
  1465. #if ZT_SSO_ENABLED
  1466. } else if (ps[0] == "sso") {
  1467. std::string htmlTemplatePath = _homePath + ZT_PATH_SEPARATOR + "sso-auth.template.html";
  1468. std::string htmlTemplate;
  1469. if (!OSUtils::readFile(htmlTemplatePath.c_str(), htmlTemplate)) {
  1470. htmlTemplate = ssoResponseTemplate;
  1471. }
  1472. responseContentType = "text/html";
  1473. json outData;
  1474. char *error = zeroidc::zeroidc_get_url_param_value("error", path.c_str());
  1475. if (error != nullptr) {
  1476. char *desc = zeroidc::zeroidc_get_url_param_value("error_description", path.c_str());
  1477. scode = 500;
  1478. json data;
  1479. outData["isError"] = true;
  1480. outData["messageText"] = (std::string("ERROR ") + error + std::string(": ") + desc);
  1481. responseBody = inja::render(htmlTemplate, outData);
  1482. zeroidc::free_cstr(desc);
  1483. zeroidc::free_cstr(error);
  1484. return scode;
  1485. }
  1486. // SSO redirect handling
  1487. char* state = zeroidc::zeroidc_get_url_param_value("state", path.c_str());
  1488. char* nwid = zeroidc::zeroidc_network_id_from_state(state);
  1489. outData["networkId"] = std::string(nwid);
  1490. const uint64_t id = Utils::hexStrToU64(nwid);
  1491. zeroidc::free_cstr(nwid);
  1492. zeroidc::free_cstr(state);
  1493. Mutex::Lock l(_nets_m);
  1494. if (_nets.find(id) != _nets.end()) {
  1495. NetworkState& ns = _nets[id];
  1496. char* code = zeroidc::zeroidc_get_url_param_value("code", path.c_str());
  1497. char *ret = ns.doTokenExchange(code);
  1498. json ssoResult = json::parse(ret);
  1499. if (ssoResult.is_object()) {
  1500. if (ssoResult.contains("errorMessage")) {
  1501. outData["isError"] = true;
  1502. outData["messageText"] = ssoResult["errorMessage"];
  1503. responseBody = inja::render(htmlTemplate, outData);
  1504. scode = 500;
  1505. } else {
  1506. scode = 200;
  1507. outData["isError"] = false;
  1508. outData["messageText"] = "Authentication Successful. You may now access the network.";
  1509. responseBody = inja::render(htmlTemplate, outData);
  1510. }
  1511. } else {
  1512. // not an object? We got a problem
  1513. outData["isError"] = true;
  1514. outData["messageText"] = "ERROR: Unkown SSO response. Please contact your administrator.";
  1515. responseBody = inja::render(htmlTemplate, outData);
  1516. scode= 500;
  1517. }
  1518. zeroidc::free_cstr(code);
  1519. zeroidc::free_cstr(ret);
  1520. return scode;
  1521. } else {
  1522. scode = 404;
  1523. }
  1524. #endif
  1525. } else {
  1526. scode = 401; // isAuth == false && !sso
  1527. }
  1528. } else if ((httpMethod == HTTP_POST)||(httpMethod == HTTP_PUT)) {
  1529. if (isAuth) {
  1530. if (ps[0] == "bond") {
  1531. if (_node->bondController()->inUse()) {
  1532. if (ps.size() == 3) {
  1533. if (ps[2].length() == 10) {
  1534. // check if hex string
  1535. const uint64_t id = Utils::hexStrToU64(ps[2].c_str());
  1536. if (ps[1] == "rotate") {
  1537. exit(0);
  1538. SharedPtr<Bond> bond = _node->bondController()->getBondByPeerId(id);
  1539. if (bond) {
  1540. scode = bond->abForciblyRotateLink() ? 200 : 400;
  1541. } else {
  1542. fprintf(stderr, "unable to find bond to peer %llx\n", (unsigned long long)id);
  1543. scode = 400;
  1544. }
  1545. }
  1546. }
  1547. }
  1548. } else {
  1549. scode = 400; /* bond controller is not enabled */
  1550. }
  1551. } else if (ps[0] == "config") {
  1552. // Right now we only support writing the things the UI supports changing.
  1553. if (ps.size() == 2) {
  1554. if (ps[1] == "settings") {
  1555. try {
  1556. json j(OSUtils::jsonParse(body));
  1557. if (j.is_object()) {
  1558. Mutex::Lock lcl(_localConfig_m);
  1559. json lc(_localConfig);
  1560. for(json::const_iterator s(j.begin());s!=j.end();++s) {
  1561. lc["settings"][s.key()] = s.value();
  1562. }
  1563. std::string lcStr = OSUtils::jsonDump(lc, 4);
  1564. if (OSUtils::writeFile((_homePath + ZT_PATH_SEPARATOR_S "local.conf").c_str(), lcStr)) {
  1565. _localConfig = lc;
  1566. }
  1567. } else {
  1568. scode = 400;
  1569. }
  1570. } catch ( ... ) {
  1571. scode = 400;
  1572. }
  1573. } else {
  1574. scode = 404;
  1575. }
  1576. } else {
  1577. scode = 404;
  1578. }
  1579. } else if (ps[0] == "moon") {
  1580. if (ps.size() == 2) {
  1581. uint64_t seed = 0;
  1582. try {
  1583. json j(OSUtils::jsonParse(body));
  1584. if (j.is_object()) {
  1585. seed = Utils::hexStrToU64(OSUtils::jsonString(j["seed"],"0").c_str());
  1586. }
  1587. } catch ( ... ) {
  1588. // discard invalid JSON
  1589. }
  1590. std::vector<World> moons(_node->moons());
  1591. const uint64_t id = Utils::hexStrToU64(ps[1].c_str());
  1592. for(std::vector<World>::const_iterator m(moons.begin());m!=moons.end();++m) {
  1593. if (m->id() == id) {
  1594. _moonToJson(res,*m);
  1595. scode = 200;
  1596. break;
  1597. }
  1598. }
  1599. if ((scode != 200)&&(seed != 0)) {
  1600. char tmp[64];
  1601. OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.16llx",id);
  1602. res["id"] = tmp;
  1603. res["roots"] = json::array();
  1604. res["timestamp"] = 0;
  1605. res["signature"] = json();
  1606. res["updatesMustBeSignedBy"] = json();
  1607. res["waiting"] = true;
  1608. _node->orbit((void *)0,id,seed);
  1609. scode = 200;
  1610. }
  1611. } else scode = 404;
  1612. } else if (ps[0] == "network") {
  1613. if (ps.size() == 2) {
  1614. uint64_t wantnw = Utils::hexStrToU64(ps[1].c_str());
  1615. _node->join(wantnw,(void *)0,(void *)0); // does nothing if we are a member
  1616. Mutex::Lock l(_nets_m);
  1617. if (!_nets.empty()) {
  1618. if (_nets.find(wantnw) != _nets.end()) {
  1619. NetworkState& ns = _nets[wantnw];
  1620. try {
  1621. json j(OSUtils::jsonParse(body));
  1622. json &allowManaged = j["allowManaged"];
  1623. if (allowManaged.is_boolean()) {
  1624. ns.setAllowManaged((bool)allowManaged);
  1625. }
  1626. json& allowGlobal = j["allowGlobal"];
  1627. if (allowGlobal.is_boolean()) {
  1628. ns.setAllowGlobal((bool)allowGlobal);
  1629. }
  1630. json& allowDefault = j["allowDefault"];
  1631. if (allowDefault.is_boolean()) {
  1632. ns.setAllowDefault((bool)allowDefault);
  1633. }
  1634. json& allowDNS = j["allowDNS"];
  1635. if (allowDNS.is_boolean()) {
  1636. ns.setAllowDNS((bool)allowDNS);
  1637. }
  1638. } catch (...) {
  1639. // discard invalid JSON
  1640. }
  1641. setNetworkSettings(wantnw, ns.settings());
  1642. if (ns.tap()) {
  1643. syncManagedStuff(ns,true,true,true);
  1644. }
  1645. _networkToJson(res, ns);
  1646. scode = 200;
  1647. }
  1648. } else scode = 500;
  1649. } else scode = 404;
  1650. } else {
  1651. if (_controller)
  1652. scode = _controller->handleControlPlaneHttpPOST(std::vector<std::string>(ps.begin()+1,ps.end()),urlArgs,headers,body,responseBody,responseContentType);
  1653. else scode = 404;
  1654. }
  1655. } else {
  1656. scode = 401; // isAuth == false
  1657. }
  1658. } else if (httpMethod == HTTP_DELETE) {
  1659. if (isAuth) {
  1660. if (ps[0] == "moon") {
  1661. if (ps.size() == 2) {
  1662. _node->deorbit((void *)0,Utils::hexStrToU64(ps[1].c_str()));
  1663. res["result"] = true;
  1664. scode = 200;
  1665. } // else 404
  1666. } else if (ps[0] == "network") {
  1667. ZT_VirtualNetworkList *nws = _node->networks();
  1668. if (nws) {
  1669. if (ps.size() == 2) {
  1670. uint64_t wantnw = Utils::hexStrToU64(ps[1].c_str());
  1671. for(unsigned long i=0;i<nws->networkCount;++i) {
  1672. if (nws->networks[i].nwid == wantnw) {
  1673. _node->leave(wantnw,(void **)0,(void *)0);
  1674. res["result"] = true;
  1675. scode = 200;
  1676. break;
  1677. }
  1678. }
  1679. } // else 404
  1680. _node->freeQueryResult((void *)nws);
  1681. } else scode = 500;
  1682. } else {
  1683. if (_controller)
  1684. scode = _controller->handleControlPlaneHttpDELETE(std::vector<std::string>(ps.begin()+1,ps.end()),urlArgs,headers,body,responseBody,responseContentType);
  1685. else scode = 404;
  1686. }
  1687. } else scode = 401; // isAuth = false
  1688. } else {
  1689. scode = 400;
  1690. }
  1691. if (responseBody.length() == 0) {
  1692. if ((res.is_object())||(res.is_array()))
  1693. responseBody = OSUtils::jsonDump(res);
  1694. else responseBody = "{}";
  1695. responseContentType = "application/json";
  1696. }
  1697. // Wrap result in jsonp function call if the user included a jsonp= url argument.
  1698. // Also double-check isAuth since forbidding this without auth feels safer.
  1699. std::map<std::string,std::string>::const_iterator jsonp(urlArgs.find("jsonp"));
  1700. if ((isAuth)&&(jsonp != urlArgs.end())&&(responseContentType == "application/json")) {
  1701. if (responseBody.length() > 0)
  1702. responseBody = jsonp->second + "(" + responseBody + ");";
  1703. else responseBody = jsonp->second + "(null);";
  1704. responseContentType = "application/javascript";
  1705. }
  1706. return scode;
  1707. }
  1708. // Must be called after _localConfig is read or modified
  1709. void applyLocalConfig()
  1710. {
  1711. Mutex::Lock _l(_localConfig_m);
  1712. json lc(_localConfig);
  1713. _v4Hints.clear();
  1714. _v6Hints.clear();
  1715. _v4Blacklists.clear();
  1716. _v6Blacklists.clear();
  1717. json &virt = lc["virtual"];
  1718. if (virt.is_object()) {
  1719. for(json::iterator v(virt.begin());v!=virt.end();++v) {
  1720. const std::string nstr = v.key();
  1721. if ((nstr.length() == ZT_ADDRESS_LENGTH_HEX)&&(v.value().is_object())) {
  1722. const Address ztaddr(Utils::hexStrToU64(nstr.c_str()));
  1723. if (ztaddr) {
  1724. const uint64_t ztaddr2 = ztaddr.toInt();
  1725. std::vector<InetAddress> &v4h = _v4Hints[ztaddr2];
  1726. std::vector<InetAddress> &v6h = _v6Hints[ztaddr2];
  1727. std::vector<InetAddress> &v4b = _v4Blacklists[ztaddr2];
  1728. std::vector<InetAddress> &v6b = _v6Blacklists[ztaddr2];
  1729. json &tryAddrs = v.value()["try"];
  1730. if (tryAddrs.is_array()) {
  1731. for(unsigned long i=0;i<tryAddrs.size();++i) {
  1732. const InetAddress ip(OSUtils::jsonString(tryAddrs[i],"").c_str());
  1733. if (ip.ss_family == AF_INET)
  1734. v4h.push_back(ip);
  1735. else if (ip.ss_family == AF_INET6)
  1736. v6h.push_back(ip);
  1737. }
  1738. }
  1739. json &blAddrs = v.value()["blacklist"];
  1740. if (blAddrs.is_array()) {
  1741. for(unsigned long i=0;i<blAddrs.size();++i) {
  1742. const InetAddress ip(OSUtils::jsonString(blAddrs[i],"").c_str());
  1743. if (ip.ss_family == AF_INET)
  1744. v4b.push_back(ip);
  1745. else if (ip.ss_family == AF_INET6)
  1746. v6b.push_back(ip);
  1747. }
  1748. }
  1749. if (v4h.empty()) _v4Hints.erase(ztaddr2);
  1750. if (v6h.empty()) _v6Hints.erase(ztaddr2);
  1751. if (v4b.empty()) _v4Blacklists.erase(ztaddr2);
  1752. if (v6b.empty()) _v6Blacklists.erase(ztaddr2);
  1753. }
  1754. }
  1755. }
  1756. }
  1757. _globalV4Blacklist.clear();
  1758. _globalV6Blacklist.clear();
  1759. json &physical = lc["physical"];
  1760. if (physical.is_object()) {
  1761. for(json::iterator phy(physical.begin());phy!=physical.end();++phy) {
  1762. const InetAddress net(OSUtils::jsonString(phy.key(),"").c_str());
  1763. if ((net)&&(net.netmaskBits() > 0)) {
  1764. if (phy.value().is_object()) {
  1765. if (OSUtils::jsonBool(phy.value()["blacklist"],false)) {
  1766. if (net.ss_family == AF_INET)
  1767. _globalV4Blacklist.push_back(net);
  1768. else if (net.ss_family == AF_INET6)
  1769. _globalV6Blacklist.push_back(net);
  1770. }
  1771. }
  1772. }
  1773. }
  1774. }
  1775. _allowManagementFrom.clear();
  1776. _interfacePrefixBlacklist.clear();
  1777. json &settings = lc["settings"];
  1778. if (!_node->bondController()->inUse()) {
  1779. _node->bondController()->setBinder(&_binder);
  1780. // defaultBondingPolicy
  1781. std::string defaultBondingPolicyStr(OSUtils::jsonString(settings["defaultBondingPolicy"],""));
  1782. int defaultBondingPolicy = _node->bondController()->getPolicyCodeByStr(defaultBondingPolicyStr);
  1783. _node->bondController()->setBondingLayerDefaultPolicy(defaultBondingPolicy);
  1784. _node->bondController()->setBondingLayerDefaultPolicyStr(defaultBondingPolicyStr); // Used if custom policy
  1785. // Custom Policies
  1786. json &customBondingPolicies = settings["policies"];
  1787. for (json::iterator policyItr = customBondingPolicies.begin(); policyItr != customBondingPolicies.end();++policyItr) {
  1788. // Custom Policy
  1789. std::string customPolicyStr(policyItr.key());
  1790. json &customPolicy = policyItr.value();
  1791. std::string basePolicyStr(OSUtils::jsonString(customPolicy["basePolicy"],""));
  1792. if (basePolicyStr.empty()) {
  1793. fprintf(stderr, "error: no base policy was specified for custom policy (%s)\n", customPolicyStr.c_str());
  1794. }
  1795. int basePolicyCode = _node->bondController()->getPolicyCodeByStr(basePolicyStr);
  1796. if (basePolicyCode == ZT_BOND_POLICY_NONE) {
  1797. fprintf(stderr, "error: custom policy (%s) is invalid, unknown base policy (%s).\n",
  1798. customPolicyStr.c_str(), basePolicyStr.c_str());
  1799. continue;
  1800. } if (_node->bondController()->getPolicyCodeByStr(customPolicyStr) != ZT_BOND_POLICY_NONE) {
  1801. fprintf(stderr, "error: custom policy (%s) will be ignored, cannot use standard policy names for custom policies.\n",
  1802. customPolicyStr.c_str());
  1803. continue;
  1804. }
  1805. // New bond, used as a copy template for new instances
  1806. SharedPtr<Bond> newTemplateBond = new Bond(NULL, basePolicyStr, customPolicyStr, SharedPtr<Peer>());
  1807. newTemplateBond->setPolicy(basePolicyCode);
  1808. // Custom link quality spec
  1809. json &linkQualitySpec = customPolicy["linkQuality"];
  1810. if (linkQualitySpec.size() == ZT_QOS_PARAMETER_SIZE) {
  1811. float weights[ZT_QOS_PARAMETER_SIZE] = {};
  1812. weights[ZT_QOS_LAT_MAX_IDX] = (float)OSUtils::jsonDouble(linkQualitySpec["lat_max"],0.0);
  1813. weights[ZT_QOS_PDV_MAX_IDX] = (float)OSUtils::jsonDouble(linkQualitySpec["pdv_max"],0.0);
  1814. weights[ZT_QOS_PLR_MAX_IDX] = (float)OSUtils::jsonDouble(linkQualitySpec["plr_max"],0.0);
  1815. weights[ZT_QOS_PER_MAX_IDX] = (float)OSUtils::jsonDouble(linkQualitySpec["per_max"],0.0);
  1816. weights[ZT_QOS_LAT_WEIGHT_IDX] = (float)OSUtils::jsonDouble(linkQualitySpec["lat_weight"],0.0);
  1817. weights[ZT_QOS_PDV_WEIGHT_IDX] = (float)OSUtils::jsonDouble(linkQualitySpec["pdv_weight"],0.0);
  1818. weights[ZT_QOS_PLR_WEIGHT_IDX] = (float)OSUtils::jsonDouble(linkQualitySpec["plr_weight"],0.0);
  1819. weights[ZT_QOS_PER_WEIGHT_IDX] = (float)OSUtils::jsonDouble(linkQualitySpec["per_weight"],0.0);
  1820. newTemplateBond->setUserLinkQualitySpec(weights,ZT_QOS_PARAMETER_SIZE);
  1821. }
  1822. // Bond-specific properties
  1823. newTemplateBond->setUpDelay(OSUtils::jsonInt(customPolicy["upDelay"],-1));
  1824. newTemplateBond->setDownDelay(OSUtils::jsonInt(customPolicy["downDelay"],-1));
  1825. newTemplateBond->setFailoverInterval(OSUtils::jsonInt(customPolicy["failoverInterval"],ZT_BOND_FAILOVER_DEFAULT_INTERVAL));
  1826. newTemplateBond->setPacketsPerLink(OSUtils::jsonInt(customPolicy["packetsPerLink"],-1));
  1827. // Policy-Specific link set
  1828. json &links = customPolicy["links"];
  1829. for (json::iterator linkItr = links.begin(); linkItr != links.end();++linkItr) {
  1830. std::string linkNameStr(linkItr.key());
  1831. json &link = linkItr.value();
  1832. bool enabled = OSUtils::jsonInt(link["enabled"],true);
  1833. uint32_t capacity = OSUtils::jsonInt(link["capacity"],0);
  1834. uint8_t ipvPref = OSUtils::jsonInt(link["ipvPref"],0);
  1835. std::string failoverToStr(OSUtils::jsonString(link["failoverTo"],""));
  1836. // Mode
  1837. std::string linkModeStr(OSUtils::jsonString(link["mode"],"spare"));
  1838. uint8_t linkMode = ZT_BOND_SLAVE_MODE_SPARE;
  1839. if (linkModeStr == "primary") { linkMode = ZT_BOND_SLAVE_MODE_PRIMARY; }
  1840. if (linkModeStr == "spare") { linkMode = ZT_BOND_SLAVE_MODE_SPARE; }
  1841. // ipvPref
  1842. if ((ipvPref != 0) && (ipvPref != 4) && (ipvPref != 6) && (ipvPref != 46) && (ipvPref != 64)) {
  1843. fprintf(stderr, "error: invalid ipvPref value (%d), link disabled.\n", ipvPref);
  1844. enabled = false;
  1845. }
  1846. if (linkMode == ZT_BOND_SLAVE_MODE_SPARE && failoverToStr.length()) {
  1847. fprintf(stderr, "error: cannot specify failover links for spares, link disabled.\n");
  1848. failoverToStr = "";
  1849. enabled = false;
  1850. }
  1851. _node->bondController()->addCustomLink(customPolicyStr, new Link(linkNameStr,ipvPref,capacity,enabled,linkMode,failoverToStr));
  1852. }
  1853. std::string linkSelectMethodStr(OSUtils::jsonString(customPolicy["activeReselect"],"optimize"));
  1854. if (linkSelectMethodStr == "always") {
  1855. newTemplateBond->setLinkSelectMethod(ZT_BOND_RESELECTION_POLICY_ALWAYS);
  1856. }
  1857. if (linkSelectMethodStr == "better") {
  1858. newTemplateBond->setLinkSelectMethod(ZT_BOND_RESELECTION_POLICY_BETTER);
  1859. }
  1860. if (linkSelectMethodStr == "failure") {
  1861. newTemplateBond->setLinkSelectMethod(ZT_BOND_RESELECTION_POLICY_FAILURE);
  1862. }
  1863. if (linkSelectMethodStr == "optimize") {
  1864. newTemplateBond->setLinkSelectMethod(ZT_BOND_RESELECTION_POLICY_OPTIMIZE);
  1865. }
  1866. if (newTemplateBond->getLinkSelectMethod() < 0 || newTemplateBond->getLinkSelectMethod() > 3) {
  1867. fprintf(stderr, "warning: invalid value (%s) for linkSelectMethod, assuming mode: always\n", linkSelectMethodStr.c_str());
  1868. }
  1869. if (!_node->bondController()->addCustomPolicy(newTemplateBond)) {
  1870. fprintf(stderr, "error: a custom policy of this name (%s) already exists.\n", customPolicyStr.c_str());
  1871. }
  1872. }
  1873. // Peer-specific bonding
  1874. json &peerSpecificBonds = settings["peerSpecificBonds"];
  1875. for (json::iterator peerItr = peerSpecificBonds.begin(); peerItr != peerSpecificBonds.end();++peerItr) {
  1876. _node->bondController()->assignBondingPolicyToPeer(std::stoull(peerItr.key(),0,16), peerItr.value());
  1877. }
  1878. // Check settings
  1879. if (defaultBondingPolicyStr.length() && !defaultBondingPolicy && !_node->bondController()->inUse()) {
  1880. fprintf(stderr, "error: unknown policy (%s) specified by defaultBondingPolicy, bond disabled.\n", defaultBondingPolicyStr.c_str());
  1881. }
  1882. }
  1883. // bondingPolicy cannot be used with allowTcpFallbackRelay
  1884. _allowTcpFallbackRelay = OSUtils::jsonBool(settings["allowTcpFallbackRelay"],true);
  1885. #ifdef ZT_TCP_FALLBACK_RELAY
  1886. _fallbackRelayAddress = InetAddress(OSUtils::jsonString(settings["tcpFallbackRelay"], ZT_TCP_FALLBACK_RELAY).c_str());
  1887. #endif
  1888. _primaryPort = (unsigned int)OSUtils::jsonInt(settings["primaryPort"],(uint64_t)_primaryPort) & 0xffff;
  1889. _allowSecondaryPort = OSUtils::jsonBool(settings["allowSecondaryPort"],true);
  1890. _secondaryPort = (unsigned int)OSUtils::jsonInt(settings["secondaryPort"],0);
  1891. _tertiaryPort = (unsigned int)OSUtils::jsonInt(settings["tertiaryPort"],0);
  1892. if (_secondaryPort != 0 || _tertiaryPort != 0) {
  1893. fprintf(stderr,"WARNING: using manually-specified secondary and/or tertiary ports. This can cause NAT issues." ZT_EOL_S);
  1894. }
  1895. _portMappingEnabled = OSUtils::jsonBool(settings["portMappingEnabled"],true);
  1896. _node->setLowBandwidthMode(OSUtils::jsonBool(settings["lowBandwidthMode"],false));
  1897. #ifndef ZT_SDK
  1898. const std::string up(OSUtils::jsonString(settings["softwareUpdate"],ZT_SOFTWARE_UPDATE_DEFAULT));
  1899. const bool udist = OSUtils::jsonBool(settings["softwareUpdateDist"],false);
  1900. if (((up == "apply")||(up == "download"))||(udist)) {
  1901. if (!_updater)
  1902. _updater = new SoftwareUpdater(*_node,_homePath);
  1903. _updateAutoApply = (up == "apply");
  1904. _updater->setUpdateDistribution(udist);
  1905. _updater->setChannel(OSUtils::jsonString(settings["softwareUpdateChannel"],ZT_SOFTWARE_UPDATE_DEFAULT_CHANNEL));
  1906. } else {
  1907. delete _updater;
  1908. _updater = (SoftwareUpdater *)0;
  1909. _updateAutoApply = false;
  1910. }
  1911. #endif
  1912. json &ignoreIfs = settings["interfacePrefixBlacklist"];
  1913. if (ignoreIfs.is_array()) {
  1914. for(unsigned long i=0;i<ignoreIfs.size();++i) {
  1915. const std::string tmp(OSUtils::jsonString(ignoreIfs[i],""));
  1916. if (tmp.length() > 0)
  1917. _interfacePrefixBlacklist.push_back(tmp);
  1918. }
  1919. }
  1920. json &amf = settings["allowManagementFrom"];
  1921. if (amf.is_array()) {
  1922. for(unsigned long i=0;i<amf.size();++i) {
  1923. const InetAddress nw(OSUtils::jsonString(amf[i],"").c_str());
  1924. if (nw)
  1925. _allowManagementFrom.push_back(nw);
  1926. }
  1927. }
  1928. }
  1929. #if ZT_VAULT_SUPPORT
  1930. json &vault = settings["vault"];
  1931. if (vault.is_object()) {
  1932. const std::string url(OSUtils::jsonString(vault["vaultURL"], "").c_str());
  1933. if (!url.empty()) {
  1934. _vaultURL = url;
  1935. }
  1936. const std::string token(OSUtils::jsonString(vault["vaultToken"], "").c_str());
  1937. if (!token.empty()) {
  1938. _vaultToken = token;
  1939. }
  1940. const std::string path(OSUtils::jsonString(vault["vaultPath"], "").c_str());
  1941. if (!path.empty()) {
  1942. _vaultPath = path;
  1943. }
  1944. }
  1945. // also check environment variables for values. Environment variables
  1946. // will override local.conf variables
  1947. const std::string envURL(getenv("VAULT_ADDR"));
  1948. if (!envURL.empty()) {
  1949. _vaultURL = envURL;
  1950. }
  1951. const std::string envToken(getenv("VAULT_TOKEN"));
  1952. if (!envToken.empty()) {
  1953. _vaultToken = envToken;
  1954. }
  1955. const std::string envPath(getenv("VAULT_PATH"));
  1956. if (!envPath.empty()) {
  1957. _vaultPath = envPath;
  1958. }
  1959. if (!_vaultURL.empty() && !_vaultToken.empty()) {
  1960. _vaultEnabled = true;
  1961. }
  1962. #endif
  1963. // Checks if a managed IP or route target is allowed
  1964. bool checkIfManagedIsAllowed(const NetworkState &n,const InetAddress &target)
  1965. {
  1966. if (!n.allowManaged())
  1967. return false;
  1968. if (!n.allowManagedWhitelist().empty()) {
  1969. bool allowed = false;
  1970. for (InetAddress addr : n.allowManagedWhitelist()) {
  1971. if (addr.containsAddress(target) && addr.netmaskBits() <= target.netmaskBits()) {
  1972. allowed = true;
  1973. break;
  1974. }
  1975. }
  1976. if (!allowed) return false;
  1977. }
  1978. if (target.isDefaultRoute())
  1979. return n.allowDefault();
  1980. switch(target.ipScope()) {
  1981. case InetAddress::IP_SCOPE_NONE:
  1982. case InetAddress::IP_SCOPE_MULTICAST:
  1983. case InetAddress::IP_SCOPE_LOOPBACK:
  1984. case InetAddress::IP_SCOPE_LINK_LOCAL:
  1985. return false;
  1986. case InetAddress::IP_SCOPE_GLOBAL:
  1987. return n.allowGlobal();
  1988. default:
  1989. return true;
  1990. }
  1991. }
  1992. // Match only an IP from a vector of IPs -- used in syncManagedStuff()
  1993. inline bool matchIpOnly(const std::set<InetAddress> &ips,const InetAddress &ip) const
  1994. {
  1995. for(std::set<InetAddress>::const_iterator i(ips.begin());i!=ips.end();++i) {
  1996. if (i->ipsEqual(ip))
  1997. return true;
  1998. }
  1999. return false;
  2000. }
  2001. // Apply or update managed IPs for a configured network (be sure n.tap exists)
  2002. void syncManagedStuff(NetworkState &n,bool syncIps,bool syncRoutes, bool syncDns)
  2003. {
  2004. char ipbuf[64];
  2005. // assumes _nets_m is locked
  2006. if (syncIps) {
  2007. std::vector<InetAddress> newManagedIps;
  2008. newManagedIps.reserve(n.config().assignedAddressCount);
  2009. for(unsigned int i=0;i<n.config().assignedAddressCount;++i) {
  2010. const InetAddress *ii = reinterpret_cast<const InetAddress *>(&(n.config().assignedAddresses[i]));
  2011. if (checkIfManagedIsAllowed(n,*ii))
  2012. newManagedIps.push_back(*ii);
  2013. }
  2014. std::sort(newManagedIps.begin(),newManagedIps.end());
  2015. newManagedIps.erase(std::unique(newManagedIps.begin(),newManagedIps.end()),newManagedIps.end());
  2016. for(std::vector<InetAddress>::iterator ip(n.managedIps().begin());ip!=n.managedIps().end();++ip) {
  2017. if (std::find(newManagedIps.begin(),newManagedIps.end(),*ip) == newManagedIps.end()) {
  2018. if (!n.tap()->removeIp(*ip))
  2019. fprintf(stderr,"ERROR: unable to remove ip address %s" ZT_EOL_S, ip->toString(ipbuf));
  2020. }
  2021. }
  2022. for(std::vector<InetAddress>::iterator ip(newManagedIps.begin());ip!=newManagedIps.end();++ip) {
  2023. if (std::find(n.managedIps().begin(),n.managedIps().end(),*ip) == n.managedIps().end()) {
  2024. if (!n.tap()->addIp(*ip))
  2025. fprintf(stderr,"ERROR: unable to add ip address %s" ZT_EOL_S, ip->toString(ipbuf));
  2026. }
  2027. }
  2028. #ifdef __APPLE__
  2029. if (!MacDNSHelper::addIps(n.config().nwid, n.config().mac, n.tap()->deviceName().c_str(), newManagedIps))
  2030. fprintf(stderr, "ERROR: unable to add v6 addresses to system configuration" ZT_EOL_S);
  2031. #endif
  2032. n.setManagedIps(newManagedIps);
  2033. }
  2034. if (syncRoutes) {
  2035. // Get tap device name (use LUID in hex on Windows) and IP addresses.
  2036. #if defined(__WINDOWS__) && !defined(ZT_SDK)
  2037. char tapdevbuf[64];
  2038. OSUtils::ztsnprintf(tapdevbuf,sizeof(tapdevbuf),"%.16llx",(unsigned long long)((WindowsEthernetTap *)(n.tap().get()))->luid().Value);
  2039. std::string tapdev(tapdevbuf);
  2040. #else
  2041. std::string tapdev(n.tap()->deviceName());
  2042. #endif
  2043. std::vector<InetAddress> tapIps(n.tap()->ips());
  2044. std::set<InetAddress> myIps(tapIps.begin(), tapIps.end());
  2045. for(unsigned int i=0;i<n.config().assignedAddressCount;++i)
  2046. myIps.insert(InetAddress(n.config().assignedAddresses[i]));
  2047. std::set<InetAddress> haveRouteTargets;
  2048. for(unsigned int i=0;i<n.config().routeCount;++i) {
  2049. const InetAddress *const target = reinterpret_cast<const InetAddress *>(&(n.config().routes[i].target));
  2050. const InetAddress *const via = reinterpret_cast<const InetAddress *>(&(n.config().routes[i].via));
  2051. // Make sure we are allowed to set this managed route, and that 'via' is not our IP. The latter
  2052. // avoids setting routes via the router on the router.
  2053. if ( (!checkIfManagedIsAllowed(n,*target)) || ((via->ss_family == target->ss_family)&&(matchIpOnly(myIps,*via))) )
  2054. continue;
  2055. // Find an IP on the interface that can be a source IP, abort if no IPs assigned.
  2056. const InetAddress *src = nullptr;
  2057. unsigned int mostMatchingPrefixBits = 0;
  2058. for(std::set<InetAddress>::const_iterator i(myIps.begin());i!=myIps.end();++i) {
  2059. const unsigned int matchingPrefixBits = i->matchingPrefixBits(*target);
  2060. if (matchingPrefixBits >= mostMatchingPrefixBits && ((target->isV4() && i->isV4()) || (target->isV6() && i->isV6()))) {
  2061. mostMatchingPrefixBits = matchingPrefixBits;
  2062. src = &(*i);
  2063. }
  2064. }
  2065. if (!src)
  2066. continue;
  2067. // Ignore routes implied by local managed IPs since adding the IP adds the route.
  2068. // Apple on the other hand seems to need this at least on some versions.
  2069. #ifndef __APPLE__
  2070. bool haveRoute = false;
  2071. for(std::vector<InetAddress>::iterator ip(n.managedIps().begin());ip!=n.managedIps().end();++ip) {
  2072. if ((target->netmaskBits() == ip->netmaskBits())&&(target->containsAddress(*ip))) {
  2073. haveRoute = true;
  2074. break;
  2075. }
  2076. }
  2077. if (haveRoute)
  2078. continue;
  2079. #endif
  2080. haveRouteTargets.insert(*target);
  2081. #ifndef ZT_SDK
  2082. SharedPtr<ManagedRoute> &mr = n.managedRoutes()[*target];
  2083. if (!mr)
  2084. mr.set(new ManagedRoute(*target, *via, *src, tapdev.c_str()));
  2085. #endif
  2086. }
  2087. for(std::map< InetAddress, SharedPtr<ManagedRoute> >::iterator r(n.managedRoutes().begin());r!=n.managedRoutes().end();) {
  2088. if (haveRouteTargets.find(r->first) == haveRouteTargets.end())
  2089. n.managedRoutes().erase(r++);
  2090. else ++r;
  2091. }
  2092. // Sync device-local managed routes first, then indirect results. That way
  2093. // we don't get destination unreachable for routes that are via things
  2094. // that do not yet have routes in the system.
  2095. for(std::map< InetAddress, SharedPtr<ManagedRoute> >::iterator r(n.managedRoutes().begin());r!=n.managedRoutes().end();++r) {
  2096. if (!r->second->via())
  2097. r->second->sync();
  2098. }
  2099. for(std::map< InetAddress, SharedPtr<ManagedRoute> >::iterator r(n.managedRoutes().begin());r!=n.managedRoutes().end();++r) {
  2100. if (r->second->via())
  2101. r->second->sync();
  2102. }
  2103. }
  2104. if (syncDns) {
  2105. if (n.allowDNS()) {
  2106. if (strlen(n.config().dns.domain) != 0) {
  2107. std::vector<InetAddress> servers;
  2108. for (int j = 0; j < ZT_MAX_DNS_SERVERS; ++j) {
  2109. InetAddress a(n.config().dns.server_addr[j]);
  2110. if (a.isV4() || a.isV6()) {
  2111. servers.push_back(a);
  2112. }
  2113. }
  2114. n.tap()->setDns(n.config().dns.domain, servers);
  2115. }
  2116. } else {
  2117. #ifdef __APPLE__
  2118. MacDNSHelper::removeDNS(n.config().nwid);
  2119. #elif defined(__WINDOWS__)
  2120. WinDNSHelper::removeDNS(n.config().nwid);
  2121. #endif
  2122. }
  2123. }
  2124. }
  2125. // =========================================================================
  2126. // Handlers for Node and Phy<> callbacks
  2127. // =========================================================================
  2128. inline void phyOnDatagram(PhySocket *sock,void **uptr,const struct sockaddr *localAddr,const struct sockaddr *from,void *data,unsigned long len)
  2129. {
  2130. const uint64_t now = OSUtils::now();
  2131. if ((len >= 16)&&(reinterpret_cast<const InetAddress *>(from)->ipScope() == InetAddress::IP_SCOPE_GLOBAL))
  2132. _lastDirectReceiveFromGlobal = now;
  2133. const ZT_ResultCode rc = _node->processWirePacket(nullptr,now,reinterpret_cast<int64_t>(sock),reinterpret_cast<const struct sockaddr_storage *>(from),data,len,&_nextBackgroundTaskDeadline);
  2134. if (ZT_ResultCode_isFatal(rc)) {
  2135. char tmp[256];
  2136. OSUtils::ztsnprintf(tmp,sizeof(tmp),"fatal error code from processWirePacket: %d",(int)rc);
  2137. Mutex::Lock _l(_termReason_m);
  2138. _termReason = ONE_UNRECOVERABLE_ERROR;
  2139. _fatalErrorMessage = tmp;
  2140. this->terminate();
  2141. }
  2142. }
  2143. inline void phyOnTcpConnect(PhySocket *sock,void **uptr,bool success)
  2144. {
  2145. if (!success) {
  2146. phyOnTcpClose(sock,uptr);
  2147. return;
  2148. }
  2149. TcpConnection *const tc = reinterpret_cast<TcpConnection *>(*uptr);
  2150. if (!tc) { // sanity check
  2151. _phy.close(sock,true);
  2152. return;
  2153. }
  2154. tc->sock = sock;
  2155. if (tc->type == TcpConnection::TCP_TUNNEL_OUTGOING) {
  2156. if (_tcpFallbackTunnel)
  2157. _phy.close(_tcpFallbackTunnel->sock);
  2158. _tcpFallbackTunnel = tc;
  2159. _phy.streamSend(sock,ZT_TCP_TUNNEL_HELLO,sizeof(ZT_TCP_TUNNEL_HELLO));
  2160. } else {
  2161. _phy.close(sock,true);
  2162. }
  2163. }
  2164. inline void phyOnTcpAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN,const struct sockaddr *from)
  2165. {
  2166. if (!from) {
  2167. _phy.close(sockN,false);
  2168. return;
  2169. } else {
  2170. #ifdef ZT_SDK
  2171. // Immediately close new local connections. The intention is to prevent the backplane from being accessed when operating as libzt
  2172. if (!allowHttpBackplaneManagement && ((InetAddress*)from)->ipScope() == InetAddress::IP_SCOPE_LOOPBACK) {
  2173. _phy.close(sockN,false);
  2174. return;
  2175. }
  2176. #endif
  2177. TcpConnection *tc = new TcpConnection();
  2178. {
  2179. Mutex::Lock _l(_tcpConnections_m);
  2180. _tcpConnections.push_back(tc);
  2181. }
  2182. tc->type = TcpConnection::TCP_UNCATEGORIZED_INCOMING;
  2183. tc->parent = this;
  2184. tc->sock = sockN;
  2185. tc->remoteAddr = from;
  2186. tc->lastReceive = OSUtils::now();
  2187. http_parser_init(&(tc->parser),HTTP_REQUEST);
  2188. tc->parser.data = (void *)tc;
  2189. tc->messageSize = 0;
  2190. *uptrN = (void *)tc;
  2191. }
  2192. }
  2193. void phyOnTcpClose(PhySocket *sock,void **uptr)
  2194. {
  2195. TcpConnection *tc = (TcpConnection *)*uptr;
  2196. if (tc) {
  2197. if (tc == _tcpFallbackTunnel) {
  2198. _tcpFallbackTunnel = (TcpConnection *)0;
  2199. }
  2200. {
  2201. Mutex::Lock _l(_tcpConnections_m);
  2202. _tcpConnections.erase(std::remove(_tcpConnections.begin(),_tcpConnections.end(),tc),_tcpConnections.end());
  2203. }
  2204. delete tc;
  2205. }
  2206. }
  2207. void phyOnTcpData(PhySocket *sock,void **uptr,void *data,unsigned long len)
  2208. {
  2209. try {
  2210. if (!len) return; // sanity check, should never happen
  2211. TcpConnection *tc = reinterpret_cast<TcpConnection *>(*uptr);
  2212. tc->lastReceive = OSUtils::now();
  2213. switch(tc->type) {
  2214. case TcpConnection::TCP_UNCATEGORIZED_INCOMING:
  2215. switch(reinterpret_cast<uint8_t *>(data)[0]) {
  2216. // HTTP: GET, PUT, POST, HEAD, DELETE
  2217. case 'G':
  2218. case 'P':
  2219. case 'D':
  2220. case 'H': {
  2221. // This is only allowed from IPs permitted to access the management
  2222. // backplane, which is just 127.0.0.1/::1 unless otherwise configured.
  2223. bool allow;
  2224. {
  2225. Mutex::Lock _l(_localConfig_m);
  2226. if (_allowManagementFrom.empty()) {
  2227. allow = (tc->remoteAddr.ipScope() == InetAddress::IP_SCOPE_LOOPBACK);
  2228. } else {
  2229. allow = false;
  2230. for(std::vector<InetAddress>::const_iterator i(_allowManagementFrom.begin());i!=_allowManagementFrom.end();++i) {
  2231. if (i->containsAddress(tc->remoteAddr)) {
  2232. allow = true;
  2233. break;
  2234. }
  2235. }
  2236. }
  2237. }
  2238. if (allow) {
  2239. tc->type = TcpConnection::TCP_HTTP_INCOMING;
  2240. phyOnTcpData(sock,uptr,data,len);
  2241. } else {
  2242. _phy.close(sock);
  2243. }
  2244. } break;
  2245. // Drop unknown protocols
  2246. default:
  2247. _phy.close(sock);
  2248. break;
  2249. }
  2250. return;
  2251. case TcpConnection::TCP_HTTP_INCOMING:
  2252. case TcpConnection::TCP_HTTP_OUTGOING:
  2253. http_parser_execute(&(tc->parser),&HTTP_PARSER_SETTINGS,(const char *)data,len);
  2254. if ((tc->parser.upgrade)||(tc->parser.http_errno != HPE_OK))
  2255. _phy.close(sock);
  2256. return;
  2257. case TcpConnection::TCP_TUNNEL_OUTGOING:
  2258. tc->readq.append((const char *)data,len);
  2259. while (tc->readq.length() >= 5) {
  2260. const char *data = tc->readq.data();
  2261. const unsigned long mlen = ( ((((unsigned long)data[3]) & 0xff) << 8) | (((unsigned long)data[4]) & 0xff) );
  2262. if (tc->readq.length() >= (mlen + 5)) {
  2263. InetAddress from;
  2264. unsigned long plen = mlen; // payload length, modified if there's an IP header
  2265. data += 5; // skip forward past pseudo-TLS junk and mlen
  2266. if (plen == 4) {
  2267. // Hello message, which isn't sent by proxy and would be ignored by client
  2268. } else if (plen) {
  2269. // Messages should contain IPv4 or IPv6 source IP address data
  2270. switch(data[0]) {
  2271. case 4: // IPv4
  2272. if (plen >= 7) {
  2273. from.set((const void *)(data + 1),4,((((unsigned int)data[5]) & 0xff) << 8) | (((unsigned int)data[6]) & 0xff));
  2274. data += 7; // type + 4 byte IP + 2 byte port
  2275. plen -= 7;
  2276. } else {
  2277. _phy.close(sock);
  2278. return;
  2279. }
  2280. break;
  2281. case 6: // IPv6
  2282. if (plen >= 19) {
  2283. from.set((const void *)(data + 1),16,((((unsigned int)data[17]) & 0xff) << 8) | (((unsigned int)data[18]) & 0xff));
  2284. data += 19; // type + 16 byte IP + 2 byte port
  2285. plen -= 19;
  2286. } else {
  2287. _phy.close(sock);
  2288. return;
  2289. }
  2290. break;
  2291. case 0: // none/omitted
  2292. ++data;
  2293. --plen;
  2294. break;
  2295. default: // invalid address type
  2296. _phy.close(sock);
  2297. return;
  2298. }
  2299. if (from) {
  2300. InetAddress fakeTcpLocalInterfaceAddress((uint32_t)0xffffffff,0xffff);
  2301. const ZT_ResultCode rc = _node->processWirePacket(
  2302. (void *)0,
  2303. OSUtils::now(),
  2304. -1,
  2305. reinterpret_cast<struct sockaddr_storage *>(&from),
  2306. data,
  2307. plen,
  2308. &_nextBackgroundTaskDeadline);
  2309. if (ZT_ResultCode_isFatal(rc)) {
  2310. char tmp[256];
  2311. OSUtils::ztsnprintf(tmp,sizeof(tmp),"fatal error code from processWirePacket: %d",(int)rc);
  2312. Mutex::Lock _l(_termReason_m);
  2313. _termReason = ONE_UNRECOVERABLE_ERROR;
  2314. _fatalErrorMessage = tmp;
  2315. this->terminate();
  2316. _phy.close(sock);
  2317. return;
  2318. }
  2319. }
  2320. }
  2321. if (tc->readq.length() > (mlen + 5))
  2322. tc->readq.erase(tc->readq.begin(),tc->readq.begin() + (mlen + 5));
  2323. else tc->readq.clear();
  2324. } else break;
  2325. }
  2326. return;
  2327. }
  2328. } catch ( ... ) {
  2329. _phy.close(sock);
  2330. }
  2331. }
  2332. inline void phyOnTcpWritable(PhySocket *sock,void **uptr)
  2333. {
  2334. TcpConnection *tc = reinterpret_cast<TcpConnection *>(*uptr);
  2335. bool closeit = false;
  2336. {
  2337. Mutex::Lock _l(tc->writeq_m);
  2338. if (tc->writeq.length() > 0) {
  2339. long sent = (long)_phy.streamSend(sock,tc->writeq.data(),(unsigned long)tc->writeq.length(),true);
  2340. if (sent > 0) {
  2341. if ((unsigned long)sent >= (unsigned long)tc->writeq.length()) {
  2342. tc->writeq.clear();
  2343. _phy.setNotifyWritable(sock,false);
  2344. if (tc->type == TcpConnection::TCP_HTTP_INCOMING)
  2345. closeit = true; // HTTP keep alive not supported
  2346. } else {
  2347. tc->writeq.erase(tc->writeq.begin(),tc->writeq.begin() + sent);
  2348. }
  2349. }
  2350. } else {
  2351. _phy.setNotifyWritable(sock,false);
  2352. }
  2353. }
  2354. if (closeit)
  2355. _phy.close(sock);
  2356. }
  2357. inline void phyOnFileDescriptorActivity(PhySocket *sock,void **uptr,bool readable,bool writable) {}
  2358. inline void phyOnUnixAccept(PhySocket *sockL,PhySocket *sockN,void **uptrL,void **uptrN) {}
  2359. inline void phyOnUnixClose(PhySocket *sock,void **uptr) {}
  2360. inline void phyOnUnixData(PhySocket *sock,void **uptr,void *data,unsigned long len) {}
  2361. inline void phyOnUnixWritable(PhySocket *sock,void **uptr) {}
  2362. inline int nodeVirtualNetworkConfigFunction(uint64_t nwid,void **nuptr,enum ZT_VirtualNetworkConfigOperation op,const ZT_VirtualNetworkConfig *nwc)
  2363. {
  2364. Mutex::Lock _l(_nets_m);
  2365. NetworkState &n = _nets[nwid];
  2366. n.setWebPort(_primaryPort);
  2367. switch (op) {
  2368. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_UP:
  2369. if (!n.tap()) {
  2370. try {
  2371. char friendlyName[128];
  2372. OSUtils::ztsnprintf(friendlyName,sizeof(friendlyName),"ZeroTier One [%.16llx]",nwid);
  2373. n.setTap(EthernetTap::newInstance(
  2374. nullptr,
  2375. _homePath.c_str(),
  2376. MAC(nwc->mac),
  2377. nwc->mtu,
  2378. (unsigned int)ZT_IF_METRIC,
  2379. nwid,
  2380. friendlyName,
  2381. StapFrameHandler,
  2382. (void *)this));
  2383. *nuptr = (void *)&n;
  2384. char nlcpath[256];
  2385. OSUtils::ztsnprintf(nlcpath,sizeof(nlcpath),"%s" ZT_PATH_SEPARATOR_S "networks.d" ZT_PATH_SEPARATOR_S "%.16llx.local.conf",_homePath.c_str(),nwid);
  2386. std::string nlcbuf;
  2387. if (OSUtils::readFile(nlcpath,nlcbuf)) {
  2388. Dictionary<4096> nc;
  2389. nc.load(nlcbuf.c_str());
  2390. Buffer<1024> allowManaged;
  2391. if (nc.get("allowManaged", allowManaged) && allowManaged.size() > 0) {
  2392. std::string addresses (allowManaged.begin(), allowManaged.size());
  2393. if (allowManaged.size() <= 5) { // untidy parsing for backward compatibility
  2394. if (allowManaged[0] == '1' || allowManaged[0] == 't' || allowManaged[0] == 'T') {
  2395. n.setAllowManaged(true);
  2396. } else {
  2397. n.setAllowManaged(false);
  2398. }
  2399. } else {
  2400. // this should be a list of IP addresses
  2401. n.setAllowManaged(true);
  2402. size_t pos = 0;
  2403. while (true) {
  2404. size_t nextPos = addresses.find(',', pos);
  2405. std::string address = addresses.substr(pos, (nextPos == std::string::npos ? addresses.size() : nextPos) - pos);
  2406. n.addToAllowManagedWhiteList(InetAddress(address.c_str()));
  2407. if (nextPos == std::string::npos) break;
  2408. pos = nextPos + 1;
  2409. }
  2410. }
  2411. } else {
  2412. n.setAllowManaged(true);
  2413. }
  2414. n.setAllowGlobal(nc.getB("allowGlobal", false));
  2415. n.setAllowDefault(nc.getB("allowDefault", false));
  2416. n.setAllowDNS(nc.getB("allowDNS", false));
  2417. }
  2418. } catch (std::exception &exc) {
  2419. #ifdef __WINDOWS__
  2420. FILE *tapFailLog = fopen((_homePath + ZT_PATH_SEPARATOR_S"port_error_log.txt").c_str(),"a");
  2421. if (tapFailLog) {
  2422. fprintf(tapFailLog,"%.16llx: %s" ZT_EOL_S,(unsigned long long)nwid,exc.what());
  2423. fclose(tapFailLog);
  2424. }
  2425. #else
  2426. fprintf(stderr,"ERROR: unable to configure virtual network port: %s" ZT_EOL_S,exc.what());
  2427. #endif
  2428. _nets.erase(nwid);
  2429. return -999;
  2430. } catch ( ... ) {
  2431. return -999; // tap init failed
  2432. }
  2433. }
  2434. // After setting up tap, fall through to CONFIG_UPDATE since we also want to do this...
  2435. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_CONFIG_UPDATE:
  2436. n.setConfig(nwc);
  2437. if (n.tap()) { // sanity check
  2438. #if defined(__WINDOWS__) && !defined(ZT_SDK)
  2439. // wait for up to 5 seconds for the WindowsEthernetTap to actually be initialized
  2440. //
  2441. // without WindowsEthernetTap::isInitialized() returning true, the won't actually
  2442. // be online yet and setting managed routes on it will fail.
  2443. const int MAX_SLEEP_COUNT = 500;
  2444. for (int i = 0; !((WindowsEthernetTap *)(n.tap().get()))->isInitialized() && i < MAX_SLEEP_COUNT; i++) {
  2445. Sleep(10);
  2446. }
  2447. #endif
  2448. syncManagedStuff(n,true,true,true);
  2449. n.tap()->setMtu(nwc->mtu);
  2450. } else {
  2451. _nets.erase(nwid);
  2452. return -999; // tap init failed
  2453. }
  2454. break;
  2455. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DOWN:
  2456. case ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY:
  2457. if (n.tap()) { // sanity check
  2458. #if defined(__WINDOWS__) && !defined(ZT_SDK)
  2459. std::string winInstanceId(((WindowsEthernetTap *)(n.tap().get()))->instanceId());
  2460. #endif
  2461. *nuptr = (void *)0;
  2462. n.tap().reset();
  2463. _nets.erase(nwid);
  2464. #if defined(__WINDOWS__) && !defined(ZT_SDK)
  2465. if ((op == ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY)&&(winInstanceId.length() > 0))
  2466. WindowsEthernetTap::deletePersistentTapDevice(winInstanceId.c_str());
  2467. #endif
  2468. if (op == ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY) {
  2469. char nlcpath[256];
  2470. OSUtils::ztsnprintf(nlcpath,sizeof(nlcpath),"%s" ZT_PATH_SEPARATOR_S "networks.d" ZT_PATH_SEPARATOR_S "%.16llx.local.conf",_homePath.c_str(),nwid);
  2471. OSUtils::rm(nlcpath);
  2472. }
  2473. } else {
  2474. _nets.erase(nwid);
  2475. }
  2476. break;
  2477. }
  2478. return 0;
  2479. }
  2480. inline void nodeEventCallback(enum ZT_Event event,const void *metaData)
  2481. {
  2482. switch(event) {
  2483. case ZT_EVENT_FATAL_ERROR_IDENTITY_COLLISION: {
  2484. Mutex::Lock _l(_termReason_m);
  2485. _termReason = ONE_IDENTITY_COLLISION;
  2486. _fatalErrorMessage = "identity/address collision";
  2487. this->terminate();
  2488. } break;
  2489. case ZT_EVENT_TRACE: {
  2490. if (metaData) {
  2491. ::fprintf(stderr,"%s" ZT_EOL_S,(const char *)metaData);
  2492. ::fflush(stderr);
  2493. }
  2494. } break;
  2495. case ZT_EVENT_USER_MESSAGE: {
  2496. const ZT_UserMessage *um = reinterpret_cast<const ZT_UserMessage *>(metaData);
  2497. if ((um->typeId == ZT_SOFTWARE_UPDATE_USER_MESSAGE_TYPE)&&(_updater)) {
  2498. _updater->handleSoftwareUpdateUserMessage(um->origin,um->data,um->length);
  2499. }
  2500. } break;
  2501. case ZT_EVENT_REMOTE_TRACE: {
  2502. const ZT_RemoteTrace *rt = reinterpret_cast<const ZT_RemoteTrace *>(metaData);
  2503. if ((rt)&&(rt->len > 0)&&(rt->len <= ZT_MAX_REMOTE_TRACE_SIZE)&&(rt->data))
  2504. _controller->handleRemoteTrace(*rt);
  2505. }
  2506. default:
  2507. break;
  2508. }
  2509. }
  2510. #if ZT_VAULT_SUPPORT
  2511. inline bool nodeVaultPutIdentity(enum ZT_StateObjectType type, const void *data, int len)
  2512. {
  2513. bool retval = false;
  2514. if (type != ZT_STATE_OBJECT_IDENTITY_PUBLIC && type != ZT_STATE_OBJECT_IDENTITY_SECRET) {
  2515. return retval;
  2516. }
  2517. CURL *curl = curl_easy_init();
  2518. if (curl) {
  2519. char token[512] = { 0 };
  2520. snprintf(token, sizeof(token), "X-Vault-Token: %s", _vaultToken.c_str());
  2521. struct curl_slist *chunk = NULL;
  2522. chunk = curl_slist_append(chunk, token);
  2523. char content_type[512] = { 0 };
  2524. snprintf(content_type, sizeof(content_type), "Content-Type: application/json");
  2525. chunk = curl_slist_append(chunk, content_type);
  2526. curl_easy_setopt(curl, CURLOPT_HTTPHEADER, chunk);
  2527. char url[2048] = { 0 };
  2528. snprintf(url, sizeof(url), "%s/v1/%s", _vaultURL.c_str(), _vaultPath.c_str());
  2529. curl_easy_setopt(curl, CURLOPT_URL, url);
  2530. json d = json::object();
  2531. if (type == ZT_STATE_OBJECT_IDENTITY_PUBLIC) {
  2532. std::string key((const char*)data, len);
  2533. d["public"] = key;
  2534. }
  2535. else if (type == ZT_STATE_OBJECT_IDENTITY_SECRET) {
  2536. std::string key((const char*)data, len);
  2537. d["secret"] = key;
  2538. }
  2539. if (!d.empty()) {
  2540. std::string post = d.dump();
  2541. if (!post.empty()) {
  2542. curl_easy_setopt(curl, CURLOPT_POSTFIELDS, post.c_str());
  2543. curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, post.length());
  2544. #ifndef NDEBUG
  2545. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
  2546. #endif
  2547. CURLcode res = curl_easy_perform(curl);
  2548. if (res == CURLE_OK) {
  2549. long response_code = 0;
  2550. curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code);
  2551. if (response_code == 200 || response_code == 204) {
  2552. retval = true;
  2553. }
  2554. }
  2555. }
  2556. }
  2557. curl_easy_cleanup(curl);
  2558. curl = NULL;
  2559. curl_slist_free_all(chunk);
  2560. chunk = NULL;
  2561. }
  2562. return retval;
  2563. }
  2564. #endif
  2565. inline void nodeStatePutFunction(enum ZT_StateObjectType type,const uint64_t id[2],const void *data,int len)
  2566. {
  2567. #if ZT_VAULT_SUPPORT
  2568. if (_vaultEnabled && (type == ZT_STATE_OBJECT_IDENTITY_SECRET || type == ZT_STATE_OBJECT_IDENTITY_PUBLIC)) {
  2569. if (nodeVaultPutIdentity(type, data, len)) {
  2570. // value successfully written to Vault
  2571. return;
  2572. }
  2573. // else fallback to disk
  2574. }
  2575. #endif
  2576. char p[1024];
  2577. FILE *f;
  2578. bool secure = false;
  2579. char dirname[1024];
  2580. dirname[0] = 0;
  2581. switch(type) {
  2582. case ZT_STATE_OBJECT_IDENTITY_PUBLIC:
  2583. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.public",_homePath.c_str());
  2584. break;
  2585. case ZT_STATE_OBJECT_IDENTITY_SECRET:
  2586. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.secret",_homePath.c_str());
  2587. secure = true;
  2588. break;
  2589. case ZT_STATE_OBJECT_PLANET:
  2590. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "planet",_homePath.c_str());
  2591. break;
  2592. case ZT_STATE_OBJECT_MOON:
  2593. OSUtils::ztsnprintf(dirname,sizeof(dirname),"%s" ZT_PATH_SEPARATOR_S "moons.d",_homePath.c_str());
  2594. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "%.16llx.moon",dirname,(unsigned long long)id[0]);
  2595. break;
  2596. case ZT_STATE_OBJECT_NETWORK_CONFIG:
  2597. OSUtils::ztsnprintf(dirname,sizeof(dirname),"%s" ZT_PATH_SEPARATOR_S "networks.d",_homePath.c_str());
  2598. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "%.16llx.conf",dirname,(unsigned long long)id[0]);
  2599. break;
  2600. case ZT_STATE_OBJECT_PEER:
  2601. OSUtils::ztsnprintf(dirname,sizeof(dirname),"%s" ZT_PATH_SEPARATOR_S "peers.d",_homePath.c_str());
  2602. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "%.10llx.peer",dirname,(unsigned long long)id[0]);
  2603. break;
  2604. default:
  2605. return;
  2606. }
  2607. if ((len >= 0)&&(data)) {
  2608. // Check to see if we've already written this first. This reduces
  2609. // redundant writes and I/O overhead on most platforms and has
  2610. // little effect on others.
  2611. f = fopen(p,"rb");
  2612. if (f) {
  2613. char *const buf = (char *)malloc(len*4);
  2614. if (buf) {
  2615. long l = (long)fread(buf,1,(size_t)(len*4),f);
  2616. fclose(f);
  2617. if ((l == (long)len)&&(memcmp(data,buf,l) == 0)) {
  2618. free(buf);
  2619. return;
  2620. }
  2621. free(buf);
  2622. }
  2623. }
  2624. f = fopen(p,"wb");
  2625. if ((!f)&&(dirname[0])) { // create subdirectory if it does not exist
  2626. OSUtils::mkdir(dirname);
  2627. f = fopen(p,"wb");
  2628. }
  2629. if (f) {
  2630. if (fwrite(data,len,1,f) != 1)
  2631. fprintf(stderr,"WARNING: unable to write to file: %s (I/O error)" ZT_EOL_S,p);
  2632. fclose(f);
  2633. if (secure)
  2634. OSUtils::lockDownFile(p,false);
  2635. } else {
  2636. fprintf(stderr,"WARNING: unable to write to file: %s (unable to open)" ZT_EOL_S,p);
  2637. }
  2638. } else {
  2639. OSUtils::rm(p);
  2640. }
  2641. }
  2642. #if ZT_VAULT_SUPPORT
  2643. inline int nodeVaultGetIdentity(enum ZT_StateObjectType type, void *data, unsigned int maxlen)
  2644. {
  2645. if (type != ZT_STATE_OBJECT_IDENTITY_SECRET && type != ZT_STATE_OBJECT_IDENTITY_PUBLIC) {
  2646. return -1;
  2647. }
  2648. int ret = -1;
  2649. CURL *curl = curl_easy_init();
  2650. if (curl) {
  2651. char token[512] = { 0 };
  2652. snprintf(token, sizeof(token), "X-Vault-Token: %s", _vaultToken.c_str());
  2653. struct curl_slist *chunk = NULL;
  2654. chunk = curl_slist_append(chunk, token);
  2655. curl_easy_setopt(curl, CURLOPT_HTTPHEADER, chunk);
  2656. char url[2048] = { 0 };
  2657. snprintf(url, sizeof(url), "%s/v1/%s", _vaultURL.c_str(), _vaultPath.c_str());
  2658. curl_easy_setopt(curl, CURLOPT_URL, url);
  2659. std::string response;
  2660. std::string res_headers;
  2661. curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &curlResponseWrite);
  2662. curl_easy_setopt(curl, CURLOPT_WRITEDATA, &response);
  2663. curl_easy_setopt(curl, CURLOPT_HEADERDATA, &res_headers);
  2664. #ifndef NDEBUG
  2665. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
  2666. #endif
  2667. CURLcode res = curl_easy_perform(curl);
  2668. if (res == CURLE_OK) {
  2669. long response_code = 0;
  2670. curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code);
  2671. if (response_code == 200) {
  2672. try {
  2673. json payload = json::parse(response);
  2674. if (!payload["data"].is_null()) {
  2675. json &d = payload["data"];
  2676. if (type == ZT_STATE_OBJECT_IDENTITY_SECRET) {
  2677. std::string secret = OSUtils::jsonString(d["secret"],"");
  2678. if (!secret.empty()) {
  2679. ret = (int)secret.length();
  2680. memcpy(data, secret.c_str(), ret);
  2681. }
  2682. }
  2683. else if (type == ZT_STATE_OBJECT_IDENTITY_PUBLIC) {
  2684. std::string pub = OSUtils::jsonString(d["public"],"");
  2685. if (!pub.empty()) {
  2686. ret = (int)pub.length();
  2687. memcpy(data, pub.c_str(), ret);
  2688. }
  2689. }
  2690. }
  2691. }
  2692. catch (...) {
  2693. ret = -1;
  2694. }
  2695. }
  2696. }
  2697. curl_easy_cleanup(curl);
  2698. curl = NULL;
  2699. curl_slist_free_all(chunk);
  2700. chunk = NULL;
  2701. }
  2702. return ret;
  2703. }
  2704. #endif
  2705. inline int nodeStateGetFunction(enum ZT_StateObjectType type,const uint64_t id[2],void *data,unsigned int maxlen)
  2706. {
  2707. #if ZT_VAULT_SUPPORT
  2708. if (_vaultEnabled && (type == ZT_STATE_OBJECT_IDENTITY_SECRET || type == ZT_STATE_OBJECT_IDENTITY_PUBLIC) ) {
  2709. int retval = nodeVaultGetIdentity(type, data, maxlen);
  2710. if (retval >= 0)
  2711. return retval;
  2712. // else continue file based lookup
  2713. }
  2714. #endif
  2715. char p[4096];
  2716. switch(type) {
  2717. case ZT_STATE_OBJECT_IDENTITY_PUBLIC:
  2718. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.public",_homePath.c_str());
  2719. break;
  2720. case ZT_STATE_OBJECT_IDENTITY_SECRET:
  2721. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "identity.secret",_homePath.c_str());
  2722. break;
  2723. case ZT_STATE_OBJECT_PLANET:
  2724. OSUtils::ztsnprintf(p,sizeof(p),"%s" ZT_PATH_SEPARATOR_S "planet",_homePath.c_str());
  2725. break;
  2726. case ZT_STATE_OBJECT_MOON:
  2727. 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]);
  2728. break;
  2729. case ZT_STATE_OBJECT_NETWORK_CONFIG:
  2730. 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]);
  2731. break;
  2732. case ZT_STATE_OBJECT_PEER:
  2733. 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]);
  2734. break;
  2735. default:
  2736. return -1;
  2737. }
  2738. FILE *f = fopen(p,"rb");
  2739. if (f) {
  2740. int n = (int)fread(data,1,maxlen,f);
  2741. fclose(f);
  2742. #if ZT_VAULT_SUPPORT
  2743. if (_vaultEnabled && (type == ZT_STATE_OBJECT_IDENTITY_SECRET || type == ZT_STATE_OBJECT_IDENTITY_PUBLIC)) {
  2744. // If we've gotten here while Vault is enabled, Vault does not know the key and it's been
  2745. // read from disk instead.
  2746. //
  2747. // We should put the value in Vault and remove the local file.
  2748. if (nodeVaultPutIdentity(type, data, n)) {
  2749. unlink(p);
  2750. }
  2751. }
  2752. #endif
  2753. if (n >= 0)
  2754. return n;
  2755. }
  2756. return -1;
  2757. }
  2758. inline int nodeWirePacketSendFunction(const int64_t localSocket,const struct sockaddr_storage *addr,const void *data,unsigned int len,unsigned int ttl)
  2759. {
  2760. #ifdef ZT_TCP_FALLBACK_RELAY
  2761. if(_allowTcpFallbackRelay) {
  2762. if (addr->ss_family == AF_INET) {
  2763. // TCP fallback tunnel support, currently IPv4 only
  2764. if ((len >= 16)&&(reinterpret_cast<const InetAddress *>(addr)->ipScope() == InetAddress::IP_SCOPE_GLOBAL)) {
  2765. // Engage TCP tunnel fallback if we haven't received anything valid from a global
  2766. // IP address in ZT_TCP_FALLBACK_AFTER milliseconds. If we do start getting
  2767. // valid direct traffic we'll stop using it and close the socket after a while.
  2768. const int64_t now = OSUtils::now();
  2769. if (((now - _lastDirectReceiveFromGlobal) > ZT_TCP_FALLBACK_AFTER)&&((now - _lastRestart) > ZT_TCP_FALLBACK_AFTER)) {
  2770. if (_tcpFallbackTunnel) {
  2771. bool flushNow = false;
  2772. {
  2773. Mutex::Lock _l(_tcpFallbackTunnel->writeq_m);
  2774. if (_tcpFallbackTunnel->writeq.size() < (1024 * 64)) {
  2775. if (_tcpFallbackTunnel->writeq.length() == 0) {
  2776. _phy.setNotifyWritable(_tcpFallbackTunnel->sock,true);
  2777. flushNow = true;
  2778. }
  2779. const unsigned long mlen = len + 7;
  2780. _tcpFallbackTunnel->writeq.push_back((char)0x17);
  2781. _tcpFallbackTunnel->writeq.push_back((char)0x03);
  2782. _tcpFallbackTunnel->writeq.push_back((char)0x03); // fake TLS 1.2 header
  2783. _tcpFallbackTunnel->writeq.push_back((char)((mlen >> 8) & 0xff));
  2784. _tcpFallbackTunnel->writeq.push_back((char)(mlen & 0xff));
  2785. _tcpFallbackTunnel->writeq.push_back((char)4); // IPv4
  2786. _tcpFallbackTunnel->writeq.append(reinterpret_cast<const char *>(reinterpret_cast<const void *>(&(reinterpret_cast<const struct sockaddr_in *>(addr)->sin_addr.s_addr))),4);
  2787. _tcpFallbackTunnel->writeq.append(reinterpret_cast<const char *>(reinterpret_cast<const void *>(&(reinterpret_cast<const struct sockaddr_in *>(addr)->sin_port))),2);
  2788. _tcpFallbackTunnel->writeq.append((const char *)data,len);
  2789. }
  2790. }
  2791. if (flushNow) {
  2792. void *tmpptr = (void *)_tcpFallbackTunnel;
  2793. phyOnTcpWritable(_tcpFallbackTunnel->sock,&tmpptr);
  2794. }
  2795. } else if (((now - _lastSendToGlobalV4) < ZT_TCP_FALLBACK_AFTER)&&((now - _lastSendToGlobalV4) > (ZT_PING_CHECK_INVERVAL / 2))) {
  2796. const InetAddress addr(_fallbackRelayAddress);
  2797. TcpConnection *tc = new TcpConnection();
  2798. {
  2799. Mutex::Lock _l(_tcpConnections_m);
  2800. _tcpConnections.push_back(tc);
  2801. }
  2802. tc->type = TcpConnection::TCP_TUNNEL_OUTGOING;
  2803. tc->remoteAddr = addr;
  2804. tc->lastReceive = OSUtils::now();
  2805. tc->parent = this;
  2806. tc->sock = (PhySocket *)0; // set in connect handler
  2807. tc->messageSize = 0;
  2808. bool connected = false;
  2809. _phy.tcpConnect(reinterpret_cast<const struct sockaddr *>(&addr),connected,(void *)tc,true);
  2810. }
  2811. }
  2812. _lastSendToGlobalV4 = now;
  2813. }
  2814. }
  2815. }
  2816. #endif // ZT_TCP_FALLBACK_RELAY
  2817. // Even when relaying we still send via UDP. This way if UDP starts
  2818. // working we can instantly "fail forward" to it and stop using TCP
  2819. // proxy fallback, which is slow.
  2820. if ((localSocket != -1)&&(localSocket != 0)&&(_binder.isUdpSocketValid((PhySocket *)((uintptr_t)localSocket)))) {
  2821. if ((ttl)&&(addr->ss_family == AF_INET)) _phy.setIp4UdpTtl((PhySocket *)((uintptr_t)localSocket),ttl);
  2822. const bool r = _phy.udpSend((PhySocket *)((uintptr_t)localSocket),(const struct sockaddr *)addr,data,len);
  2823. if ((ttl)&&(addr->ss_family == AF_INET)) _phy.setIp4UdpTtl((PhySocket *)((uintptr_t)localSocket),255);
  2824. return ((r) ? 0 : -1);
  2825. } else {
  2826. return ((_binder.udpSendAll(_phy,addr,data,len,ttl)) ? 0 : -1);
  2827. }
  2828. }
  2829. 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)
  2830. {
  2831. NetworkState *n = reinterpret_cast<NetworkState *>(*nuptr);
  2832. if ((!n)||(!n->tap()))
  2833. return;
  2834. n->tap()->put(MAC(sourceMac),MAC(destMac),etherType,data,len);
  2835. }
  2836. inline int nodePathCheckFunction(uint64_t ztaddr,const int64_t localSocket,const struct sockaddr_storage *remoteAddr)
  2837. {
  2838. // Make sure we're not trying to do ZeroTier-over-ZeroTier
  2839. {
  2840. Mutex::Lock _l(_nets_m);
  2841. for(std::map<uint64_t,NetworkState>::const_iterator n(_nets.begin());n!=_nets.end();++n) {
  2842. if (n->second.tap()) {
  2843. std::vector<InetAddress> ips(n->second.tap()->ips());
  2844. for(std::vector<InetAddress>::const_iterator i(ips.begin());i!=ips.end();++i) {
  2845. if (i->containsAddress(*(reinterpret_cast<const InetAddress *>(remoteAddr)))) {
  2846. return 0;
  2847. }
  2848. }
  2849. }
  2850. }
  2851. }
  2852. /* Note: I do not think we need to scan for overlap with managed routes
  2853. * because of the "route forking" and interface binding that we do. This
  2854. * ensures (we hope) that ZeroTier traffic will still take the physical
  2855. * path even if its managed routes override this for other traffic. Will
  2856. * revisit if we see recursion problems. */
  2857. // Check blacklists
  2858. const Hashtable< uint64_t,std::vector<InetAddress> > *blh = (const Hashtable< uint64_t,std::vector<InetAddress> > *)0;
  2859. const std::vector<InetAddress> *gbl = (const std::vector<InetAddress> *)0;
  2860. if (remoteAddr->ss_family == AF_INET) {
  2861. blh = &_v4Blacklists;
  2862. gbl = &_globalV4Blacklist;
  2863. } else if (remoteAddr->ss_family == AF_INET6) {
  2864. blh = &_v6Blacklists;
  2865. gbl = &_globalV6Blacklist;
  2866. }
  2867. if (blh) {
  2868. Mutex::Lock _l(_localConfig_m);
  2869. const std::vector<InetAddress> *l = blh->get(ztaddr);
  2870. if (l) {
  2871. for(std::vector<InetAddress>::const_iterator a(l->begin());a!=l->end();++a) {
  2872. if (a->containsAddress(*reinterpret_cast<const InetAddress *>(remoteAddr)))
  2873. return 0;
  2874. }
  2875. }
  2876. }
  2877. if (gbl) {
  2878. for(std::vector<InetAddress>::const_iterator a(gbl->begin());a!=gbl->end();++a) {
  2879. if (a->containsAddress(*reinterpret_cast<const InetAddress *>(remoteAddr)))
  2880. return 0;
  2881. }
  2882. }
  2883. return 1;
  2884. }
  2885. inline int nodePathLookupFunction(uint64_t ztaddr, int family, struct sockaddr_storage* result)
  2886. {
  2887. const Hashtable< uint64_t, std::vector<InetAddress> >* lh = (const Hashtable< uint64_t, std::vector<InetAddress> > *)0;
  2888. if (family < 0)
  2889. lh = (_node->prng() & 1) ? &_v4Hints : &_v6Hints;
  2890. else if (family == AF_INET)
  2891. lh = &_v4Hints;
  2892. else if (family == AF_INET6)
  2893. lh = &_v6Hints;
  2894. else return 0;
  2895. const std::vector<InetAddress>* l = lh->get(ztaddr);
  2896. if ((l) && (!l->empty())) {
  2897. memcpy(result, &((*l)[(unsigned long)_node->prng() % l->size()]), sizeof(struct sockaddr_storage));
  2898. return 1;
  2899. }
  2900. else return 0;
  2901. }
  2902. inline void tapFrameHandler(uint64_t nwid, const MAC& from, const MAC& to, unsigned int etherType, unsigned int vlanId, const void* data, unsigned int len)
  2903. {
  2904. _node->processVirtualNetworkFrame((void*)0, OSUtils::now(), nwid, from.toInt(), to.toInt(), etherType, vlanId, data, len, &_nextBackgroundTaskDeadline);
  2905. }
  2906. inline void onHttpRequestToServer(TcpConnection* tc)
  2907. {
  2908. char tmpn[4096];
  2909. std::string data;
  2910. std::string contentType("text/plain"); // default if not changed in handleRequest()
  2911. unsigned int scode = 404;
  2912. // Note that we check allowed IP ranges when HTTP connections are first detected in
  2913. // phyOnTcpData(). If we made it here the source IP is okay.
  2914. try {
  2915. scode = handleControlPlaneHttpRequest(tc->remoteAddr, tc->parser.method, tc->url, tc->headers, tc->readq, data, contentType);
  2916. }
  2917. catch (std::exception& exc) {
  2918. fprintf(stderr, "WARNING: unexpected exception processing control HTTP request: %s" ZT_EOL_S, exc.what());
  2919. scode = 500;
  2920. }
  2921. catch (...) {
  2922. fprintf(stderr, "WARNING: unexpected exception processing control HTTP request: unknown exception" ZT_EOL_S);
  2923. scode = 500;
  2924. }
  2925. const char* scodestr;
  2926. switch (scode) {
  2927. case 200: scodestr = "OK"; break;
  2928. case 400: scodestr = "Bad Request"; break;
  2929. case 401: scodestr = "Unauthorized"; break;
  2930. case 403: scodestr = "Forbidden"; break;
  2931. case 404: scodestr = "Not Found"; break;
  2932. case 500: scodestr = "Internal Server Error"; break;
  2933. case 501: scodestr = "Not Implemented"; break;
  2934. case 503: scodestr = "Service Unavailable"; break;
  2935. default: scodestr = "Error"; break;
  2936. }
  2937. 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",
  2938. scode,
  2939. scodestr,
  2940. contentType.c_str(),
  2941. (unsigned long)data.length());
  2942. {
  2943. Mutex::Lock _l(tc->writeq_m);
  2944. tc->writeq = tmpn;
  2945. if (tc->parser.method != HTTP_HEAD)
  2946. tc->writeq.append(data);
  2947. }
  2948. _phy.setNotifyWritable(tc->sock, true);
  2949. }
  2950. inline void onHttpResponseFromClient(TcpConnection* tc)
  2951. {
  2952. _phy.close(tc->sock);
  2953. }
  2954. bool shouldBindInterface(const char* ifname, const InetAddress& ifaddr)
  2955. {
  2956. #if defined(__linux__) || defined(linux) || defined(__LINUX__) || defined(__linux)
  2957. if ((ifname[0] == 'l') && (ifname[1] == 'o')) return false; // loopback
  2958. if ((ifname[0] == 'z') && (ifname[1] == 't')) return false; // sanity check: zt#
  2959. if ((ifname[0] == 't') && (ifname[1] == 'u') && (ifname[2] == 'n')) return false; // tun# is probably an OpenVPN tunnel or similar
  2960. if ((ifname[0] == 't') && (ifname[1] == 'a') && (ifname[2] == 'p')) return false; // tap# is probably an OpenVPN tunnel or similar
  2961. #endif
  2962. #ifdef __APPLE__
  2963. if ((ifname[0] == 'f') && (ifname[1] == 'e') && (ifname[2] == 't') && (ifname[3] == 'h')) return false; // ... as is feth#
  2964. if ((ifname[0] == 'l') && (ifname[1] == 'o')) return false; // loopback
  2965. if ((ifname[0] == 'z') && (ifname[1] == 't')) return false; // sanity check: zt#
  2966. if ((ifname[0] == 't') && (ifname[1] == 'u') && (ifname[2] == 'n')) return false; // tun# is probably an OpenVPN tunnel or similar
  2967. if ((ifname[0] == 't') && (ifname[1] == 'a') && (ifname[2] == 'p')) return false; // tap# is probably an OpenVPN tunnel or similar
  2968. if ((ifname[0] == 'u') && (ifname[1] == 't') && (ifname[2] == 'u') && (ifname[3] == 'n')) return false; // ... as is utun#
  2969. #endif
  2970. #ifdef __FreeBSD__
  2971. if ((ifname[0] == 'l') && (ifname[1] == 'o')) return false; // loopback
  2972. if ((ifname[0] == 'z') && (ifname[1] == 't')) return false; // sanity check: zt#
  2973. #endif
  2974. {
  2975. Mutex::Lock _l(_localConfig_m);
  2976. for(std::vector<std::string>::const_iterator p(_interfacePrefixBlacklist.begin());p!=_interfacePrefixBlacklist.end();++p) {
  2977. if (!strncmp(p->c_str(),ifname,p->length()))
  2978. return false;
  2979. }
  2980. }
  2981. {
  2982. // Check global blacklists
  2983. const std::vector<InetAddress> *gbl = (const std::vector<InetAddress> *)0;
  2984. if (ifaddr.ss_family == AF_INET) {
  2985. gbl = &_globalV4Blacklist;
  2986. } else if (ifaddr.ss_family == AF_INET6) {
  2987. gbl = &_globalV6Blacklist;
  2988. }
  2989. if (gbl) {
  2990. Mutex::Lock _l(_localConfig_m);
  2991. for(std::vector<InetAddress>::const_iterator a(gbl->begin());a!=gbl->end();++a) {
  2992. if (a->containsAddress(ifaddr))
  2993. return false;
  2994. }
  2995. }
  2996. }
  2997. {
  2998. Mutex::Lock _l(_nets_m);
  2999. for(std::map<uint64_t,NetworkState>::const_iterator n(_nets.begin());n!=_nets.end();++n) {
  3000. if (n->second.tap()) {
  3001. std::vector<InetAddress> ips(n->second.tap()->ips());
  3002. for(std::vector<InetAddress>::const_iterator i(ips.begin());i!=ips.end();++i) {
  3003. if (i->ipsEqual(ifaddr))
  3004. return false;
  3005. }
  3006. #ifdef _WIN32
  3007. if (n->second.tap()->friendlyName() == ifname)
  3008. return false;
  3009. #endif
  3010. }
  3011. }
  3012. }
  3013. return true;
  3014. }
  3015. unsigned int _getRandomPort()
  3016. {
  3017. unsigned int randp = 0;
  3018. Utils::getSecureRandom(&randp,sizeof(randp));
  3019. randp = 20000 + (randp % 45500);
  3020. for(int i=0;;++i) {
  3021. if (i > 1000) {
  3022. return 0;
  3023. } else if (++randp >= 65536) {
  3024. randp = 20000;
  3025. }
  3026. if (_trialBind(randp))
  3027. break;
  3028. }
  3029. return randp;
  3030. }
  3031. bool _trialBind(unsigned int port)
  3032. {
  3033. struct sockaddr_in in4;
  3034. struct sockaddr_in6 in6;
  3035. PhySocket *tb;
  3036. memset(&in4,0,sizeof(in4));
  3037. in4.sin_family = AF_INET;
  3038. in4.sin_port = Utils::hton((uint16_t)port);
  3039. tb = _phy.udpBind(reinterpret_cast<const struct sockaddr *>(&in4),(void *)0,0);
  3040. if (tb) {
  3041. _phy.close(tb,false);
  3042. tb = _phy.tcpListen(reinterpret_cast<const struct sockaddr *>(&in4),(void *)0);
  3043. if (tb) {
  3044. _phy.close(tb,false);
  3045. return true;
  3046. }
  3047. }
  3048. memset(&in6,0,sizeof(in6));
  3049. in6.sin6_family = AF_INET6;
  3050. in6.sin6_port = Utils::hton((uint16_t)port);
  3051. tb = _phy.udpBind(reinterpret_cast<const struct sockaddr *>(&in6),(void *)0,0);
  3052. if (tb) {
  3053. _phy.close(tb,false);
  3054. tb = _phy.tcpListen(reinterpret_cast<const struct sockaddr *>(&in6),(void *)0);
  3055. if (tb) {
  3056. _phy.close(tb,false);
  3057. return true;
  3058. }
  3059. }
  3060. return false;
  3061. }
  3062. };
  3063. static int SnodeVirtualNetworkConfigFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t nwid,void **nuptr,enum ZT_VirtualNetworkConfigOperation op,const ZT_VirtualNetworkConfig *nwconf)
  3064. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodeVirtualNetworkConfigFunction(nwid,nuptr,op,nwconf); }
  3065. static void SnodeEventCallback(ZT_Node *node,void *uptr,void *tptr,enum ZT_Event event,const void *metaData)
  3066. { reinterpret_cast<OneServiceImpl *>(uptr)->nodeEventCallback(event,metaData); }
  3067. static void SnodeStatePutFunction(ZT_Node *node,void *uptr,void *tptr,enum ZT_StateObjectType type,const uint64_t id[2],const void *data,int len)
  3068. { reinterpret_cast<OneServiceImpl *>(uptr)->nodeStatePutFunction(type,id,data,len); }
  3069. static int SnodeStateGetFunction(ZT_Node *node,void *uptr,void *tptr,enum ZT_StateObjectType type,const uint64_t id[2],void *data,unsigned int maxlen)
  3070. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodeStateGetFunction(type,id,data,maxlen); }
  3071. 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)
  3072. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodeWirePacketSendFunction(localSocket,addr,data,len,ttl); }
  3073. 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)
  3074. { reinterpret_cast<OneServiceImpl *>(uptr)->nodeVirtualNetworkFrameFunction(nwid,nuptr,sourceMac,destMac,etherType,vlanId,data,len); }
  3075. static int SnodePathCheckFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t ztaddr,int64_t localSocket,const struct sockaddr_storage *remoteAddr)
  3076. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodePathCheckFunction(ztaddr,localSocket,remoteAddr); }
  3077. static int SnodePathLookupFunction(ZT_Node *node,void *uptr,void *tptr,uint64_t ztaddr,int family,struct sockaddr_storage *result)
  3078. { return reinterpret_cast<OneServiceImpl *>(uptr)->nodePathLookupFunction(ztaddr,family,result); }
  3079. 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)
  3080. { reinterpret_cast<OneServiceImpl *>(uptr)->tapFrameHandler(nwid,from,to,etherType,vlanId,data,len); }
  3081. static int ShttpOnMessageBegin(http_parser *parser)
  3082. {
  3083. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3084. tc->currentHeaderField = "";
  3085. tc->currentHeaderValue = "";
  3086. tc->messageSize = 0;
  3087. tc->url.clear();
  3088. tc->status.clear();
  3089. tc->headers.clear();
  3090. tc->readq.clear();
  3091. return 0;
  3092. }
  3093. static int ShttpOnUrl(http_parser *parser,const char *ptr,size_t length)
  3094. {
  3095. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3096. tc->messageSize += (unsigned long)length;
  3097. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  3098. return -1;
  3099. tc->url.append(ptr,length);
  3100. return 0;
  3101. }
  3102. #if (HTTP_PARSER_VERSION_MAJOR >= 2) && (HTTP_PARSER_VERSION_MINOR >= 2)
  3103. static int ShttpOnStatus(http_parser *parser,const char *ptr,size_t length)
  3104. #else
  3105. static int ShttpOnStatus(http_parser *parser)
  3106. #endif
  3107. { return 0; }
  3108. static int ShttpOnHeaderField(http_parser *parser,const char *ptr,size_t length)
  3109. {
  3110. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3111. tc->messageSize += (unsigned long)length;
  3112. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  3113. return -1;
  3114. if ((tc->currentHeaderField.length())&&(tc->currentHeaderValue.length())) {
  3115. tc->headers[tc->currentHeaderField] = tc->currentHeaderValue;
  3116. tc->currentHeaderField = "";
  3117. tc->currentHeaderValue = "";
  3118. }
  3119. for(size_t i=0;i<length;++i)
  3120. tc->currentHeaderField.push_back(OSUtils::toLower(ptr[i]));
  3121. return 0;
  3122. }
  3123. static int ShttpOnValue(http_parser *parser,const char *ptr,size_t length)
  3124. {
  3125. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3126. tc->messageSize += (unsigned long)length;
  3127. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  3128. return -1;
  3129. tc->currentHeaderValue.append(ptr,length);
  3130. return 0;
  3131. }
  3132. static int ShttpOnHeadersComplete(http_parser *parser)
  3133. {
  3134. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3135. if ((tc->currentHeaderField.length())&&(tc->currentHeaderValue.length()))
  3136. tc->headers[tc->currentHeaderField] = tc->currentHeaderValue;
  3137. return 0;
  3138. }
  3139. static int ShttpOnBody(http_parser *parser,const char *ptr,size_t length)
  3140. {
  3141. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3142. tc->messageSize += (unsigned long)length;
  3143. if (tc->messageSize > ZT_MAX_HTTP_MESSAGE_SIZE)
  3144. return -1;
  3145. tc->readq.append(ptr,length);
  3146. return 0;
  3147. }
  3148. static int ShttpOnMessageComplete(http_parser *parser)
  3149. {
  3150. TcpConnection *tc = reinterpret_cast<TcpConnection *>(parser->data);
  3151. if (tc->type == TcpConnection::TCP_HTTP_INCOMING) {
  3152. tc->parent->onHttpRequestToServer(tc);
  3153. } else {
  3154. tc->parent->onHttpResponseFromClient(tc);
  3155. }
  3156. return 0;
  3157. }
  3158. } // anonymous namespace
  3159. std::string OneService::platformDefaultHomePath()
  3160. {
  3161. return OSUtils::platformDefaultHomePath();
  3162. }
  3163. OneService *OneService::newInstance(const char *hp,unsigned int port) { return new OneServiceImpl(hp,port); }
  3164. OneService::~OneService() {}
  3165. } // namespace ZeroTier