EmbeddedNetworkController.cpp 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842
  1. /*
  2. * ZeroTier One - Network Virtualization Everywhere
  3. * Copyright (C) 2011-2015 ZeroTier, Inc.
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <stdint.h>
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #include <time.h>
  23. #ifndef _WIN32
  24. #include <sys/time.h>
  25. #endif
  26. #include <sys/types.h>
  27. #include <algorithm>
  28. #include <utility>
  29. #include <stdexcept>
  30. #include <set>
  31. #include <map>
  32. #include "../include/ZeroTierOne.h"
  33. #include "../node/Constants.hpp"
  34. #include "EmbeddedNetworkController.hpp"
  35. #include "../node/Node.hpp"
  36. #include "../node/Utils.hpp"
  37. #include "../node/CertificateOfMembership.hpp"
  38. #include "../node/NetworkConfig.hpp"
  39. #include "../node/Dictionary.hpp"
  40. #include "../node/InetAddress.hpp"
  41. #include "../node/MAC.hpp"
  42. #include "../node/Address.hpp"
  43. using json = nlohmann::json;
  44. // API version reported via JSON control plane
  45. #define ZT_NETCONF_CONTROLLER_API_VERSION 3
  46. // Number of requests to remember in member history
  47. #define ZT_NETCONF_DB_MEMBER_HISTORY_LENGTH 24
  48. // Min duration between requests for an address/nwid combo to prevent floods
  49. #define ZT_NETCONF_MIN_REQUEST_PERIOD 1000
  50. // Nodes are considered active if they've queried in less than this long
  51. #define ZT_NETCONF_NODE_ACTIVE_THRESHOLD (ZT_NETWORK_AUTOCONF_DELAY * 2)
  52. namespace ZeroTier {
  53. static json _renderRule(ZT_VirtualNetworkRule &rule)
  54. {
  55. char tmp[128];
  56. json r = json::object();
  57. const ZT_VirtualNetworkRuleType rt = (ZT_VirtualNetworkRuleType)(rule.t & 0x3f);
  58. switch(rt) {
  59. case ZT_NETWORK_RULE_ACTION_DROP:
  60. r["type"] = "ACTION_DROP";
  61. break;
  62. case ZT_NETWORK_RULE_ACTION_ACCEPT:
  63. r["type"] = "ACTION_ACCEPT";
  64. break;
  65. case ZT_NETWORK_RULE_ACTION_TEE:
  66. r["type"] = "ACTION_TEE";
  67. r["address"] = Address(rule.v.fwd.address).toString();
  68. r["flags"] = (unsigned int)rule.v.fwd.flags;
  69. r["length"] = (unsigned int)rule.v.fwd.length;
  70. break;
  71. case ZT_NETWORK_RULE_ACTION_WATCH:
  72. r["type"] = "ACTION_WATCH";
  73. r["address"] = Address(rule.v.fwd.address).toString();
  74. r["flags"] = (unsigned int)rule.v.fwd.flags;
  75. r["length"] = (unsigned int)rule.v.fwd.length;
  76. break;
  77. case ZT_NETWORK_RULE_ACTION_REDIRECT:
  78. r["type"] = "ACTION_REDIRECT";
  79. r["address"] = Address(rule.v.fwd.address).toString();
  80. r["flags"] = (unsigned int)rule.v.fwd.flags;
  81. break;
  82. case ZT_NETWORK_RULE_ACTION_BREAK:
  83. r["type"] = "ACTION_BREAK";
  84. break;
  85. default:
  86. break;
  87. }
  88. if (r.size() == 0) {
  89. switch(rt) {
  90. case ZT_NETWORK_RULE_MATCH_SOURCE_ZEROTIER_ADDRESS:
  91. r["type"] = "MATCH_SOURCE_ZEROTIER_ADDRESS";
  92. r["zt"] = Address(rule.v.zt).toString();
  93. break;
  94. case ZT_NETWORK_RULE_MATCH_DEST_ZEROTIER_ADDRESS:
  95. r["type"] = "MATCH_DEST_ZEROTIER_ADDRESS";
  96. r["zt"] = Address(rule.v.zt).toString();
  97. break;
  98. case ZT_NETWORK_RULE_MATCH_VLAN_ID:
  99. r["type"] = "MATCH_VLAN_ID";
  100. r["vlanId"] = (unsigned int)rule.v.vlanId;
  101. break;
  102. case ZT_NETWORK_RULE_MATCH_VLAN_PCP:
  103. r["type"] = "MATCH_VLAN_PCP";
  104. r["vlanPcp"] = (unsigned int)rule.v.vlanPcp;
  105. break;
  106. case ZT_NETWORK_RULE_MATCH_VLAN_DEI:
  107. r["type"] = "MATCH_VLAN_DEI";
  108. r["vlanDei"] = (unsigned int)rule.v.vlanDei;
  109. break;
  110. case ZT_NETWORK_RULE_MATCH_MAC_SOURCE:
  111. r["type"] = "MATCH_MAC_SOURCE";
  112. Utils::snprintf(tmp,sizeof(tmp),"%.2x:%.2x:%.2x:%.2x:%.2x:%.2x",(unsigned int)rule.v.mac[0],(unsigned int)rule.v.mac[1],(unsigned int)rule.v.mac[2],(unsigned int)rule.v.mac[3],(unsigned int)rule.v.mac[4],(unsigned int)rule.v.mac[5]);
  113. r["mac"] = tmp;
  114. break;
  115. case ZT_NETWORK_RULE_MATCH_MAC_DEST:
  116. r["type"] = "MATCH_MAC_DEST";
  117. Utils::snprintf(tmp,sizeof(tmp),"%.2x:%.2x:%.2x:%.2x:%.2x:%.2x",(unsigned int)rule.v.mac[0],(unsigned int)rule.v.mac[1],(unsigned int)rule.v.mac[2],(unsigned int)rule.v.mac[3],(unsigned int)rule.v.mac[4],(unsigned int)rule.v.mac[5]);
  118. r["mac"] = tmp;
  119. break;
  120. case ZT_NETWORK_RULE_MATCH_IPV4_SOURCE:
  121. r["type"] = "MATCH_IPV4_SOURCE";
  122. r["ip"] = InetAddress(&(rule.v.ipv4.ip),4,(unsigned int)rule.v.ipv4.mask).toString();
  123. break;
  124. case ZT_NETWORK_RULE_MATCH_IPV4_DEST:
  125. r["type"] = "MATCH_IPV4_DEST";
  126. r["ip"] = InetAddress(&(rule.v.ipv4.ip),4,(unsigned int)rule.v.ipv4.mask).toString();
  127. break;
  128. case ZT_NETWORK_RULE_MATCH_IPV6_SOURCE:
  129. r["type"] = "MATCH_IPV6_SOURCE";
  130. r["ip"] = InetAddress(rule.v.ipv6.ip,16,(unsigned int)rule.v.ipv6.mask).toString();
  131. break;
  132. case ZT_NETWORK_RULE_MATCH_IPV6_DEST:
  133. r["type"] = "MATCH_IPV6_DEST";
  134. r["ip"] = InetAddress(rule.v.ipv6.ip,16,(unsigned int)rule.v.ipv6.mask).toString();
  135. break;
  136. case ZT_NETWORK_RULE_MATCH_IP_TOS:
  137. r["type"] = "MATCH_IP_TOS";
  138. r["mask"] = (unsigned int)rule.v.ipTos.mask;
  139. r["start"] = (unsigned int)rule.v.ipTos.value[0];
  140. r["end"] = (unsigned int)rule.v.ipTos.value[1];
  141. break;
  142. case ZT_NETWORK_RULE_MATCH_IP_PROTOCOL:
  143. r["type"] = "MATCH_IP_PROTOCOL";
  144. r["ipProtocol"] = (unsigned int)rule.v.ipProtocol;
  145. break;
  146. case ZT_NETWORK_RULE_MATCH_ETHERTYPE:
  147. r["type"] = "MATCH_ETHERTYPE";
  148. r["etherType"] = (unsigned int)rule.v.etherType;
  149. break;
  150. case ZT_NETWORK_RULE_MATCH_ICMP:
  151. r["type"] = "MATCH_ICMP";
  152. r["icmpType"] = (unsigned int)rule.v.icmp.type;
  153. if ((rule.v.icmp.flags & 0x01) != 0)
  154. r["icmpCode"] = (unsigned int)rule.v.icmp.code;
  155. else r["icmpCode"] = json();
  156. break;
  157. case ZT_NETWORK_RULE_MATCH_IP_SOURCE_PORT_RANGE:
  158. r["type"] = "MATCH_IP_SOURCE_PORT_RANGE";
  159. r["start"] = (unsigned int)rule.v.port[0];
  160. r["end"] = (unsigned int)rule.v.port[1];
  161. break;
  162. case ZT_NETWORK_RULE_MATCH_IP_DEST_PORT_RANGE:
  163. r["type"] = "MATCH_IP_DEST_PORT_RANGE";
  164. r["start"] = (unsigned int)rule.v.port[0];
  165. r["end"] = (unsigned int)rule.v.port[1];
  166. break;
  167. case ZT_NETWORK_RULE_MATCH_CHARACTERISTICS:
  168. r["type"] = "MATCH_CHARACTERISTICS";
  169. Utils::snprintf(tmp,sizeof(tmp),"%.16llx",rule.v.characteristics);
  170. r["mask"] = tmp;
  171. break;
  172. case ZT_NETWORK_RULE_MATCH_FRAME_SIZE_RANGE:
  173. r["type"] = "MATCH_FRAME_SIZE_RANGE";
  174. r["start"] = (unsigned int)rule.v.frameSize[0];
  175. r["end"] = (unsigned int)rule.v.frameSize[1];
  176. break;
  177. case ZT_NETWORK_RULE_MATCH_RANDOM:
  178. r["type"] = "MATCH_RANDOM";
  179. r["probability"] = (unsigned long)rule.v.randomProbability;
  180. break;
  181. case ZT_NETWORK_RULE_MATCH_TAGS_DIFFERENCE:
  182. r["type"] = "MATCH_TAGS_DIFFERENCE";
  183. r["id"] = rule.v.tag.id;
  184. r["value"] = rule.v.tag.value;
  185. break;
  186. case ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_AND:
  187. r["type"] = "MATCH_TAGS_BITWISE_AND";
  188. r["id"] = rule.v.tag.id;
  189. r["value"] = rule.v.tag.value;
  190. break;
  191. case ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_OR:
  192. r["type"] = "MATCH_TAGS_BITWISE_OR";
  193. r["id"] = rule.v.tag.id;
  194. r["value"] = rule.v.tag.value;
  195. break;
  196. case ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_XOR:
  197. r["type"] = "MATCH_TAGS_BITWISE_XOR";
  198. r["id"] = rule.v.tag.id;
  199. r["value"] = rule.v.tag.value;
  200. break;
  201. case ZT_NETWORK_RULE_MATCH_TAGS_EQUAL:
  202. r["type"] = "MATCH_TAGS_EQUAL";
  203. r["id"] = rule.v.tag.id;
  204. r["value"] = rule.v.tag.value;
  205. break;
  206. case ZT_NETWORK_RULE_MATCH_TAG_SENDER:
  207. r["type"] = "MATCH_TAG_SENDER";
  208. r["id"] = rule.v.tag.id;
  209. r["value"] = rule.v.tag.value;
  210. break;
  211. case ZT_NETWORK_RULE_MATCH_TAG_RECEIVER:
  212. r["type"] = "MATCH_TAG_RECEIVER";
  213. r["id"] = rule.v.tag.id;
  214. r["value"] = rule.v.tag.value;
  215. break;
  216. default:
  217. break;
  218. }
  219. if (r.size() > 0) {
  220. r["not"] = ((rule.t & 0x80) != 0);
  221. r["or"] = ((rule.t & 0x40) != 0);
  222. }
  223. }
  224. return r;
  225. }
  226. static bool _parseRule(json &r,ZT_VirtualNetworkRule &rule)
  227. {
  228. if (!r.is_object())
  229. return false;
  230. const std::string t(OSUtils::jsonString(r["type"],""));
  231. memset(&rule,0,sizeof(ZT_VirtualNetworkRule));
  232. if (OSUtils::jsonBool(r["not"],false))
  233. rule.t = 0x80;
  234. else rule.t = 0x00;
  235. if (OSUtils::jsonBool(r["or"],false))
  236. rule.t |= 0x40;
  237. bool tag = false;
  238. if (t == "ACTION_DROP") {
  239. rule.t |= ZT_NETWORK_RULE_ACTION_DROP;
  240. return true;
  241. } else if (t == "ACTION_ACCEPT") {
  242. rule.t |= ZT_NETWORK_RULE_ACTION_ACCEPT;
  243. return true;
  244. } else if (t == "ACTION_TEE") {
  245. rule.t |= ZT_NETWORK_RULE_ACTION_TEE;
  246. rule.v.fwd.address = Utils::hexStrToU64(OSUtils::jsonString(r["address"],"0").c_str()) & 0xffffffffffULL;
  247. rule.v.fwd.flags = (uint32_t)(OSUtils::jsonInt(r["flags"],0ULL) & 0xffffffffULL);
  248. rule.v.fwd.length = (uint16_t)(OSUtils::jsonInt(r["length"],0ULL) & 0xffffULL);
  249. return true;
  250. } else if (t == "ACTION_WATCH") {
  251. rule.t |= ZT_NETWORK_RULE_ACTION_WATCH;
  252. rule.v.fwd.address = Utils::hexStrToU64(OSUtils::jsonString(r["address"],"0").c_str()) & 0xffffffffffULL;
  253. rule.v.fwd.flags = (uint32_t)(OSUtils::jsonInt(r["flags"],0ULL) & 0xffffffffULL);
  254. rule.v.fwd.length = (uint16_t)(OSUtils::jsonInt(r["length"],0ULL) & 0xffffULL);
  255. return true;
  256. } else if (t == "ACTION_REDIRECT") {
  257. rule.t |= ZT_NETWORK_RULE_ACTION_REDIRECT;
  258. rule.v.fwd.address = Utils::hexStrToU64(OSUtils::jsonString(r["address"],"0").c_str()) & 0xffffffffffULL;
  259. rule.v.fwd.flags = (uint32_t)(OSUtils::jsonInt(r["flags"],0ULL) & 0xffffffffULL);
  260. return true;
  261. } else if (t == "ACTION_BREAK") {
  262. rule.t |= ZT_NETWORK_RULE_ACTION_BREAK;
  263. return true;
  264. } else if (t == "MATCH_SOURCE_ZEROTIER_ADDRESS") {
  265. rule.t |= ZT_NETWORK_RULE_MATCH_SOURCE_ZEROTIER_ADDRESS;
  266. rule.v.zt = Utils::hexStrToU64(OSUtils::jsonString(r["zt"],"0").c_str()) & 0xffffffffffULL;
  267. return true;
  268. } else if (t == "MATCH_DEST_ZEROTIER_ADDRESS") {
  269. rule.t |= ZT_NETWORK_RULE_MATCH_DEST_ZEROTIER_ADDRESS;
  270. rule.v.zt = Utils::hexStrToU64(OSUtils::jsonString(r["zt"],"0").c_str()) & 0xffffffffffULL;
  271. return true;
  272. } else if (t == "MATCH_VLAN_ID") {
  273. rule.t |= ZT_NETWORK_RULE_MATCH_VLAN_ID;
  274. rule.v.vlanId = (uint16_t)(OSUtils::jsonInt(r["vlanId"],0ULL) & 0xffffULL);
  275. return true;
  276. } else if (t == "MATCH_VLAN_PCP") {
  277. rule.t |= ZT_NETWORK_RULE_MATCH_VLAN_PCP;
  278. rule.v.vlanPcp = (uint8_t)(OSUtils::jsonInt(r["vlanPcp"],0ULL) & 0xffULL);
  279. return true;
  280. } else if (t == "MATCH_VLAN_DEI") {
  281. rule.t |= ZT_NETWORK_RULE_MATCH_VLAN_DEI;
  282. rule.v.vlanDei = (uint8_t)(OSUtils::jsonInt(r["vlanDei"],0ULL) & 0xffULL);
  283. return true;
  284. } else if (t == "MATCH_MAC_SOURCE") {
  285. rule.t |= ZT_NETWORK_RULE_MATCH_MAC_SOURCE;
  286. const std::string mac(OSUtils::jsonString(r["mac"],"0"));
  287. Utils::unhex(mac.c_str(),(unsigned int)mac.length(),rule.v.mac,6);
  288. return true;
  289. } else if (t == "MATCH_MAC_DEST") {
  290. rule.t |= ZT_NETWORK_RULE_MATCH_MAC_DEST;
  291. const std::string mac(OSUtils::jsonString(r["mac"],"0"));
  292. Utils::unhex(mac.c_str(),(unsigned int)mac.length(),rule.v.mac,6);
  293. return true;
  294. } else if (t == "MATCH_IPV4_SOURCE") {
  295. rule.t |= ZT_NETWORK_RULE_MATCH_IPV4_SOURCE;
  296. InetAddress ip(OSUtils::jsonString(r["ip"],"0.0.0.0"));
  297. rule.v.ipv4.ip = reinterpret_cast<struct sockaddr_in *>(&ip)->sin_addr.s_addr;
  298. rule.v.ipv4.mask = Utils::ntoh(reinterpret_cast<struct sockaddr_in *>(&ip)->sin_port) & 0xff;
  299. if (rule.v.ipv4.mask > 32) rule.v.ipv4.mask = 32;
  300. return true;
  301. } else if (t == "MATCH_IPV4_DEST") {
  302. rule.t |= ZT_NETWORK_RULE_MATCH_IPV4_DEST;
  303. InetAddress ip(OSUtils::jsonString(r["ip"],"0.0.0.0"));
  304. rule.v.ipv4.ip = reinterpret_cast<struct sockaddr_in *>(&ip)->sin_addr.s_addr;
  305. rule.v.ipv4.mask = Utils::ntoh(reinterpret_cast<struct sockaddr_in *>(&ip)->sin_port) & 0xff;
  306. if (rule.v.ipv4.mask > 32) rule.v.ipv4.mask = 32;
  307. return true;
  308. } else if (t == "MATCH_IPV6_SOURCE") {
  309. rule.t |= ZT_NETWORK_RULE_MATCH_IPV6_SOURCE;
  310. InetAddress ip(OSUtils::jsonString(r["ip"],"::0"));
  311. memcpy(rule.v.ipv6.ip,reinterpret_cast<struct sockaddr_in6 *>(&ip)->sin6_addr.s6_addr,16);
  312. rule.v.ipv6.mask = Utils::ntoh(reinterpret_cast<struct sockaddr_in6 *>(&ip)->sin6_port) & 0xff;
  313. if (rule.v.ipv6.mask > 128) rule.v.ipv6.mask = 128;
  314. return true;
  315. } else if (t == "MATCH_IPV6_DEST") {
  316. rule.t |= ZT_NETWORK_RULE_MATCH_IPV6_DEST;
  317. InetAddress ip(OSUtils::jsonString(r["ip"],"::0"));
  318. memcpy(rule.v.ipv6.ip,reinterpret_cast<struct sockaddr_in6 *>(&ip)->sin6_addr.s6_addr,16);
  319. rule.v.ipv6.mask = Utils::ntoh(reinterpret_cast<struct sockaddr_in6 *>(&ip)->sin6_port) & 0xff;
  320. if (rule.v.ipv6.mask > 128) rule.v.ipv6.mask = 128;
  321. return true;
  322. } else if (t == "MATCH_IP_TOS") {
  323. rule.t |= ZT_NETWORK_RULE_MATCH_IP_TOS;
  324. rule.v.ipTos.mask = (uint8_t)(OSUtils::jsonInt(r["mask"],0ULL) & 0xffULL);
  325. rule.v.ipTos.value[0] = (uint8_t)(OSUtils::jsonInt(r["start"],0ULL) & 0xffULL);
  326. rule.v.ipTos.value[1] = (uint8_t)(OSUtils::jsonInt(r["end"],0ULL) & 0xffULL);
  327. return true;
  328. } else if (t == "MATCH_IP_PROTOCOL") {
  329. rule.t |= ZT_NETWORK_RULE_MATCH_IP_PROTOCOL;
  330. rule.v.ipProtocol = (uint8_t)(OSUtils::jsonInt(r["ipProtocol"],0ULL) & 0xffULL);
  331. return true;
  332. } else if (t == "MATCH_ETHERTYPE") {
  333. rule.t |= ZT_NETWORK_RULE_MATCH_ETHERTYPE;
  334. rule.v.etherType = (uint16_t)(OSUtils::jsonInt(r["etherType"],0ULL) & 0xffffULL);
  335. return true;
  336. } else if (t == "MATCH_ICMP") {
  337. rule.t |= ZT_NETWORK_RULE_MATCH_ICMP;
  338. rule.v.icmp.type = (uint8_t)(OSUtils::jsonInt(r["icmpType"],0ULL) & 0xffULL);
  339. json &code = r["icmpCode"];
  340. if (code.is_null()) {
  341. rule.v.icmp.code = 0;
  342. rule.v.icmp.flags = 0x00;
  343. } else {
  344. rule.v.icmp.code = (uint8_t)(OSUtils::jsonInt(code,0ULL) & 0xffULL);
  345. rule.v.icmp.flags = 0x01;
  346. }
  347. return true;
  348. } else if (t == "MATCH_IP_SOURCE_PORT_RANGE") {
  349. rule.t |= ZT_NETWORK_RULE_MATCH_IP_SOURCE_PORT_RANGE;
  350. rule.v.port[0] = (uint16_t)(OSUtils::jsonInt(r["start"],0ULL) & 0xffffULL);
  351. rule.v.port[1] = (uint16_t)(OSUtils::jsonInt(r["end"],(uint64_t)rule.v.port[0]) & 0xffffULL);
  352. return true;
  353. } else if (t == "MATCH_IP_DEST_PORT_RANGE") {
  354. rule.t |= ZT_NETWORK_RULE_MATCH_IP_DEST_PORT_RANGE;
  355. rule.v.port[0] = (uint16_t)(OSUtils::jsonInt(r["start"],0ULL) & 0xffffULL);
  356. rule.v.port[1] = (uint16_t)(OSUtils::jsonInt(r["end"],(uint64_t)rule.v.port[0]) & 0xffffULL);
  357. return true;
  358. } else if (t == "MATCH_CHARACTERISTICS") {
  359. rule.t |= ZT_NETWORK_RULE_MATCH_CHARACTERISTICS;
  360. if (r.count("mask")) {
  361. json &v = r["mask"];
  362. if (v.is_number()) {
  363. rule.v.characteristics = v;
  364. } else {
  365. std::string tmp = v;
  366. rule.v.characteristics = Utils::hexStrToU64(tmp.c_str());
  367. }
  368. }
  369. return true;
  370. } else if (t == "MATCH_FRAME_SIZE_RANGE") {
  371. rule.t |= ZT_NETWORK_RULE_MATCH_FRAME_SIZE_RANGE;
  372. rule.v.frameSize[0] = (uint16_t)(OSUtils::jsonInt(r["start"],0ULL) & 0xffffULL);
  373. rule.v.frameSize[1] = (uint16_t)(OSUtils::jsonInt(r["end"],(uint64_t)rule.v.frameSize[0]) & 0xffffULL);
  374. return true;
  375. } else if (t == "MATCH_RANDOM") {
  376. rule.t |= ZT_NETWORK_RULE_MATCH_RANDOM;
  377. rule.v.randomProbability = (uint32_t)(OSUtils::jsonInt(r["probability"],0ULL) & 0xffffffffULL);
  378. return true;
  379. } else if (t == "MATCH_TAGS_DIFFERENCE") {
  380. rule.t |= ZT_NETWORK_RULE_MATCH_TAGS_DIFFERENCE;
  381. tag = true;
  382. } else if (t == "MATCH_TAGS_BITWISE_AND") {
  383. rule.t |= ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_AND;
  384. tag = true;
  385. } else if (t == "MATCH_TAGS_BITWISE_OR") {
  386. rule.t |= ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_OR;
  387. tag = true;
  388. } else if (t == "MATCH_TAGS_BITWISE_XOR") {
  389. rule.t |= ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_XOR;
  390. tag = true;
  391. } else if (t == "MATCH_TAGS_EQUAL") {
  392. rule.t |= ZT_NETWORK_RULE_MATCH_TAGS_EQUAL;
  393. tag = true;
  394. } else if (t == "MATCH_TAG_SENDER") {
  395. rule.t |= ZT_NETWORK_RULE_MATCH_TAG_SENDER;
  396. tag = true;
  397. } else if (t == "MATCH_TAG_RECEIVER") {
  398. rule.t |= ZT_NETWORK_RULE_MATCH_TAG_RECEIVER;
  399. tag = true;
  400. }
  401. if (tag) {
  402. rule.v.tag.id = (uint32_t)(OSUtils::jsonInt(r["id"],0ULL) & 0xffffffffULL);
  403. rule.v.tag.value = (uint32_t)(OSUtils::jsonInt(r["value"],0ULL) & 0xffffffffULL);
  404. return true;
  405. }
  406. return false;
  407. }
  408. EmbeddedNetworkController::EmbeddedNetworkController(Node *node,const char *dbPath) :
  409. _threadsStarted(false),
  410. _db(dbPath),
  411. _node(node)
  412. {
  413. OSUtils::mkdir(dbPath);
  414. OSUtils::lockDownFile(dbPath,true); // networks might contain auth tokens, etc., so restrict directory permissions
  415. }
  416. EmbeddedNetworkController::~EmbeddedNetworkController()
  417. {
  418. Mutex::Lock _l(_threads_m);
  419. if (_threadsStarted) {
  420. for(int i=0;i<(ZT_EMBEDDEDNETWORKCONTROLLER_BACKGROUND_THREAD_COUNT*2);++i)
  421. _queue.post((_RQEntry *)0);
  422. for(int i=0;i<ZT_EMBEDDEDNETWORKCONTROLLER_BACKGROUND_THREAD_COUNT;++i)
  423. Thread::join(_threads[i]);
  424. }
  425. }
  426. void EmbeddedNetworkController::init(const Identity &signingId,Sender *sender)
  427. {
  428. this->_sender = sender;
  429. this->_signingId = signingId;
  430. }
  431. void EmbeddedNetworkController::request(
  432. uint64_t nwid,
  433. const InetAddress &fromAddr,
  434. uint64_t requestPacketId,
  435. const Identity &identity,
  436. const Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> &metaData)
  437. {
  438. if (((!_signingId)||(!_signingId.hasPrivate()))||(_signingId.address().toInt() != (nwid >> 24))||(!_sender))
  439. return;
  440. {
  441. Mutex::Lock _l(_threads_m);
  442. if (!_threadsStarted) {
  443. for(int i=0;i<ZT_EMBEDDEDNETWORKCONTROLLER_BACKGROUND_THREAD_COUNT;++i)
  444. _threads[i] = Thread::start(this);
  445. }
  446. _threadsStarted = true;
  447. }
  448. _RQEntry *qe = new _RQEntry;
  449. qe->nwid = nwid;
  450. qe->requestPacketId = requestPacketId;
  451. qe->fromAddr = fromAddr;
  452. qe->identity = identity;
  453. qe->metaData = metaData;
  454. _queue.post(qe);
  455. }
  456. unsigned int EmbeddedNetworkController::handleControlPlaneHttpGET(
  457. const std::vector<std::string> &path,
  458. const std::map<std::string,std::string> &urlArgs,
  459. const std::map<std::string,std::string> &headers,
  460. const std::string &body,
  461. std::string &responseBody,
  462. std::string &responseContentType)
  463. {
  464. if ((path.size() > 0)&&(path[0] == "network")) {
  465. if ((path.size() >= 2)&&(path[1].length() == 16)) {
  466. const uint64_t nwid = Utils::hexStrToU64(path[1].c_str());
  467. char nwids[24];
  468. Utils::snprintf(nwids,sizeof(nwids),"%.16llx",(unsigned long long)nwid);
  469. json network;
  470. {
  471. Mutex::Lock _l(_db_m);
  472. network = _db.get("network",nwids,0);
  473. }
  474. if (!network.size())
  475. return 404;
  476. if (path.size() >= 3) {
  477. if (path[2] == "member") {
  478. if (path.size() >= 4) {
  479. const uint64_t address = Utils::hexStrToU64(path[3].c_str());
  480. json member;
  481. {
  482. Mutex::Lock _l(_db_m);
  483. member = _db.get("network",nwids,"member",Address(address).toString(),0);
  484. }
  485. if (!member.size())
  486. return 404;
  487. _addMemberNonPersistedFields(member,OSUtils::now());
  488. responseBody = OSUtils::jsonDump(member);
  489. responseContentType = "application/json";
  490. return 200;
  491. } else {
  492. Mutex::Lock _l(_db_m);
  493. responseBody = "{";
  494. std::string pfx(std::string("network/") + nwids + "member/");
  495. _db.filter(pfx,120000,[&responseBody](const std::string &n,const json &member) {
  496. if (member.size() > 0) {
  497. responseBody.append((responseBody.length() == 1) ? "\"" : ",\"");
  498. responseBody.append(OSUtils::jsonString(member["id"],""));
  499. responseBody.append("\":");
  500. responseBody.append(OSUtils::jsonString(member["revision"],"0"));
  501. }
  502. return true; // never delete
  503. });
  504. responseBody.push_back('}');
  505. responseContentType = "application/json";
  506. return 200;
  507. }
  508. } // else 404
  509. } else {
  510. const uint64_t now = OSUtils::now();
  511. _NetworkMemberInfo nmi;
  512. _getNetworkMemberInfo(now,nwid,nmi);
  513. _addNetworkNonPersistedFields(network,now,nmi);
  514. responseBody = OSUtils::jsonDump(network);
  515. responseContentType = "application/json";
  516. return 200;
  517. }
  518. } else if (path.size() == 1) {
  519. std::set<std::string> networkIds;
  520. {
  521. Mutex::Lock _l(_db_m);
  522. _db.filter("network/",120000,[&networkIds](const std::string &n,const json &obj) {
  523. if (n.length() == (16 + 8))
  524. networkIds.insert(n.substr(8));
  525. return true; // do not delete
  526. });
  527. }
  528. responseBody.push_back('[');
  529. for(std::set<std::string>::iterator i(networkIds.begin());i!=networkIds.end();++i) {
  530. responseBody.append((responseBody.length() == 1) ? "\"" : ",\"");
  531. responseBody.append(*i);
  532. responseBody.append("\"");
  533. }
  534. responseBody.push_back(']');
  535. responseContentType = "application/json";
  536. return 200;
  537. } // else 404
  538. } else {
  539. char tmp[4096];
  540. Utils::snprintf(tmp,sizeof(tmp),"{\n\t\"controller\": true,\n\t\"apiVersion\": %d,\n\t\"clock\": %llu\n}\n",ZT_NETCONF_CONTROLLER_API_VERSION,(unsigned long long)OSUtils::now());
  541. responseBody = tmp;
  542. responseContentType = "application/json";
  543. return 200;
  544. }
  545. return 404;
  546. }
  547. unsigned int EmbeddedNetworkController::handleControlPlaneHttpPOST(
  548. const std::vector<std::string> &path,
  549. const std::map<std::string,std::string> &urlArgs,
  550. const std::map<std::string,std::string> &headers,
  551. const std::string &body,
  552. std::string &responseBody,
  553. std::string &responseContentType)
  554. {
  555. if (path.empty())
  556. return 404;
  557. json b;
  558. try {
  559. b = OSUtils::jsonParse(body);
  560. if (!b.is_object()) {
  561. responseBody = "{ \"message\": \"body is not a JSON object\" }";
  562. responseContentType = "application/json";
  563. return 400;
  564. }
  565. } catch ( ... ) {
  566. responseBody = "{ \"message\": \"body JSON is invalid\" }";
  567. responseContentType = "application/json";
  568. return 400;
  569. }
  570. const uint64_t now = OSUtils::now();
  571. if (path[0] == "network") {
  572. if ((path.size() >= 2)&&(path[1].length() == 16)) {
  573. uint64_t nwid = Utils::hexStrToU64(path[1].c_str());
  574. char nwids[24];
  575. Utils::snprintf(nwids,sizeof(nwids),"%.16llx",(unsigned long long)nwid);
  576. if (path.size() >= 3) {
  577. if ((path.size() == 4)&&(path[2] == "member")&&(path[3].length() == 10)) {
  578. uint64_t address = Utils::hexStrToU64(path[3].c_str());
  579. char addrs[24];
  580. Utils::snprintf(addrs,sizeof(addrs),"%.10llx",(unsigned long long)address);
  581. json member;
  582. {
  583. Mutex::Lock _l(_db_m);
  584. member = _db.get("network",nwids,"member",Address(address).toString(),0);
  585. }
  586. json origMember(member); // for detecting changes
  587. _initMember(member);
  588. try {
  589. if (b.count("activeBridge")) member["activeBridge"] = OSUtils::jsonBool(b["activeBridge"],false);
  590. if (b.count("noAutoAssignIps")) member["noAutoAssignIps"] = OSUtils::jsonBool(b["noAutoAssignIps"],false);
  591. if (b.count("authorized")) {
  592. const bool newAuth = OSUtils::jsonBool(b["authorized"],false);
  593. if (newAuth != OSUtils::jsonBool(member["authorized"],false)) {
  594. member["authorized"] = newAuth;
  595. member[((newAuth) ? "lastAuthorizedTime" : "lastDeauthorizedTime")] = now;
  596. json ah;
  597. ah["a"] = newAuth;
  598. ah["by"] = "api";
  599. ah["ts"] = now;
  600. ah["ct"] = json();
  601. ah["c"] = json();
  602. member["authHistory"].push_back(ah);
  603. // Member is being de-authorized, so spray Revocation objects to all online members
  604. if (!newAuth) {
  605. _clearNetworkMemberInfoCache(nwid);
  606. Revocation rev(_node->prng(),nwid,0,now,ZT_REVOCATION_FLAG_FAST_PROPAGATE,Address(address),Revocation::CREDENTIAL_TYPE_COM);
  607. rev.sign(_signingId);
  608. Mutex::Lock _l(_lastRequestTime_m);
  609. for(std::map< std::pair<uint64_t,uint64_t>,uint64_t >::iterator i(_lastRequestTime.begin());i!=_lastRequestTime.end();++i) {
  610. if ((now - i->second) < ZT_NETWORK_AUTOCONF_DELAY)
  611. _node->ncSendRevocation(Address(i->first.first),rev);
  612. }
  613. }
  614. }
  615. }
  616. if (b.count("ipAssignments")) {
  617. json &ipa = b["ipAssignments"];
  618. if (ipa.is_array()) {
  619. json mipa(json::array());
  620. for(unsigned long i=0;i<ipa.size();++i) {
  621. std::string ips = ipa[i];
  622. InetAddress ip(ips);
  623. if ((ip.ss_family == AF_INET)||(ip.ss_family == AF_INET6)) {
  624. mipa.push_back(ip.toIpString());
  625. }
  626. }
  627. member["ipAssignments"] = mipa;
  628. }
  629. }
  630. if (b.count("tags")) {
  631. json &tags = b["tags"];
  632. if (tags.is_array()) {
  633. std::map<uint64_t,uint64_t> mtags;
  634. for(unsigned long i=0;i<tags.size();++i) {
  635. json &tag = tags[i];
  636. if ((tag.is_array())&&(tag.size() == 2))
  637. mtags[OSUtils::jsonInt(tag[0],0ULL) & 0xffffffffULL] = OSUtils::jsonInt(tag[1],0ULL) & 0xffffffffULL;
  638. }
  639. json mtagsa = json::array();
  640. for(std::map<uint64_t,uint64_t>::iterator t(mtags.begin());t!=mtags.end();++t) {
  641. json ta = json::array();
  642. ta.push_back(t->first);
  643. ta.push_back(t->second);
  644. mtagsa.push_back(ta);
  645. }
  646. member["tags"] = mtagsa;
  647. }
  648. }
  649. if (b.count("capabilities")) {
  650. json &capabilities = b["capabilities"];
  651. if (capabilities.is_array()) {
  652. json mcaps = json::array();
  653. for(unsigned long i=0;i<capabilities.size();++i) {
  654. mcaps.push_back(OSUtils::jsonInt(capabilities[i],0ULL));
  655. }
  656. std::sort(mcaps.begin(),mcaps.end());
  657. mcaps.erase(std::unique(mcaps.begin(),mcaps.end()),mcaps.end());
  658. member["capabilities"] = mcaps;
  659. }
  660. }
  661. } catch ( ... ) {
  662. responseBody = "{ \"message\": \"exception while processing parameters in JSON body\" }";
  663. responseContentType = "application/json";
  664. return 400;
  665. }
  666. member["id"] = addrs;
  667. member["address"] = addrs; // legacy
  668. member["nwid"] = nwids;
  669. if (member != origMember) {
  670. member["lastModified"] = now;
  671. json &revj = member["revision"];
  672. member["revision"] = (revj.is_number() ? ((uint64_t)revj + 1ULL) : 1ULL);
  673. {
  674. Mutex::Lock _l(_db_m);
  675. _db.put("network",nwids,"member",Address(address).toString(),member);
  676. }
  677. _pushMemberUpdate(now,nwid,member);
  678. }
  679. // Add non-persisted fields
  680. member["clock"] = now;
  681. responseBody = OSUtils::jsonDump(member);
  682. responseContentType = "application/json";
  683. return 200;
  684. } else if ((path.size() == 3)&&(path[2] == "test")) {
  685. Mutex::Lock _l(_tests_m);
  686. _tests.push_back(ZT_CircuitTest());
  687. ZT_CircuitTest *const test = &(_tests.back());
  688. memset(test,0,sizeof(ZT_CircuitTest));
  689. Utils::getSecureRandom(&(test->testId),sizeof(test->testId));
  690. test->credentialNetworkId = nwid;
  691. test->ptr = (void *)this;
  692. json hops = b["hops"];
  693. if (hops.is_array()) {
  694. for(unsigned long i=0;i<hops.size();++i) {
  695. json &hops2 = hops[i];
  696. if (hops2.is_array()) {
  697. for(unsigned long j=0;j<hops2.size();++j) {
  698. std::string s = hops2[j];
  699. test->hops[test->hopCount].addresses[test->hops[test->hopCount].breadth++] = Utils::hexStrToU64(s.c_str()) & 0xffffffffffULL;
  700. }
  701. ++test->hopCount;
  702. } else if (hops2.is_string()) {
  703. std::string s = hops2;
  704. test->hops[test->hopCount].addresses[test->hops[test->hopCount].breadth++] = Utils::hexStrToU64(s.c_str()) & 0xffffffffffULL;
  705. ++test->hopCount;
  706. }
  707. }
  708. }
  709. test->reportAtEveryHop = (OSUtils::jsonBool(b["reportAtEveryHop"],true) ? 1 : 0);
  710. if (!test->hopCount) {
  711. _tests.pop_back();
  712. responseBody = "{ \"message\": \"a test must contain at least one hop\" }";
  713. responseContentType = "application/json";
  714. return 400;
  715. }
  716. test->timestamp = OSUtils::now();
  717. if (_node) {
  718. _node->circuitTestBegin(test,&(EmbeddedNetworkController::_circuitTestCallback));
  719. } else {
  720. _tests.pop_back();
  721. return 500;
  722. }
  723. char json[512];
  724. Utils::snprintf(json,sizeof(json),"{\"testId\":\"%.16llx\",\"timestamp\":%llu}",test->testId,test->timestamp);
  725. responseBody = json;
  726. responseContentType = "application/json";
  727. return 200;
  728. } // else 404
  729. } else {
  730. // POST to network ID
  731. json network;
  732. {
  733. Mutex::Lock _l(_db_m);
  734. // Magic ID ending with ______ picks a random unused network ID
  735. if (path[1].substr(10) == "______") {
  736. nwid = 0;
  737. uint64_t nwidPrefix = (Utils::hexStrToU64(path[1].substr(0,10).c_str()) << 24) & 0xffffffffff000000ULL;
  738. uint64_t nwidPostfix = 0;
  739. for(unsigned long k=0;k<100000;++k) { // sanity limit on trials
  740. Utils::getSecureRandom(&nwidPostfix,sizeof(nwidPostfix));
  741. uint64_t tryNwid = nwidPrefix | (nwidPostfix & 0xffffffULL);
  742. if ((tryNwid & 0xffffffULL) == 0ULL) tryNwid |= 1ULL;
  743. Utils::snprintf(nwids,sizeof(nwids),"%.16llx",(unsigned long long)tryNwid);
  744. if (_db.get("network",nwids,120000).size() <= 0) {
  745. nwid = tryNwid;
  746. break;
  747. }
  748. }
  749. if (!nwid)
  750. return 503;
  751. }
  752. network = _db.get("network",nwids,0);
  753. }
  754. json origNetwork(network); // for detecting changes
  755. _initNetwork(network);
  756. try {
  757. if (b.count("name")) network["name"] = OSUtils::jsonString(b["name"],"");
  758. if (b.count("private")) network["private"] = OSUtils::jsonBool(b["private"],true);
  759. if (b.count("enableBroadcast")) network["enableBroadcast"] = OSUtils::jsonBool(b["enableBroadcast"],false);
  760. if (b.count("allowPassiveBridging")) network["allowPassiveBridging"] = OSUtils::jsonBool(b["allowPassiveBridging"],false);
  761. if (b.count("multicastLimit")) network["multicastLimit"] = OSUtils::jsonInt(b["multicastLimit"],32ULL);
  762. if (b.count("v4AssignMode")) {
  763. json nv4m;
  764. json &v4m = b["v4AssignMode"];
  765. if (v4m.is_string()) { // backward compatibility
  766. nv4m["zt"] = (OSUtils::jsonString(v4m,"") == "zt");
  767. } else if (v4m.is_object()) {
  768. nv4m["zt"] = OSUtils::jsonBool(v4m["zt"],false);
  769. } else nv4m["zt"] = false;
  770. network["v4AssignMode"] = nv4m;
  771. }
  772. if (b.count("v6AssignMode")) {
  773. json nv6m;
  774. json &v6m = b["v6AssignMode"];
  775. if (!nv6m.is_object()) nv6m = json::object();
  776. if (v6m.is_string()) { // backward compatibility
  777. std::vector<std::string> v6ms(OSUtils::split(OSUtils::jsonString(v6m,"").c_str(),",","",""));
  778. std::sort(v6ms.begin(),v6ms.end());
  779. v6ms.erase(std::unique(v6ms.begin(),v6ms.end()),v6ms.end());
  780. nv6m["rfc4193"] = false;
  781. nv6m["zt"] = false;
  782. nv6m["6plane"] = false;
  783. for(std::vector<std::string>::iterator i(v6ms.begin());i!=v6ms.end();++i) {
  784. if (*i == "rfc4193")
  785. nv6m["rfc4193"] = true;
  786. else if (*i == "zt")
  787. nv6m["zt"] = true;
  788. else if (*i == "6plane")
  789. nv6m["6plane"] = true;
  790. }
  791. } else if (v6m.is_object()) {
  792. if (v6m.count("rfc4193")) nv6m["rfc4193"] = OSUtils::jsonBool(v6m["rfc4193"],false);
  793. if (v6m.count("zt")) nv6m["zt"] = OSUtils::jsonBool(v6m["zt"],false);
  794. if (v6m.count("6plane")) nv6m["6plane"] = OSUtils::jsonBool(v6m["6plane"],false);
  795. } else {
  796. nv6m["rfc4193"] = false;
  797. nv6m["zt"] = false;
  798. nv6m["6plane"] = false;
  799. }
  800. network["v6AssignMode"] = nv6m;
  801. }
  802. if (b.count("routes")) {
  803. json &rts = b["routes"];
  804. if (rts.is_array()) {
  805. json nrts = json::array();
  806. for(unsigned long i=0;i<rts.size();++i) {
  807. json &rt = rts[i];
  808. if (rt.is_object()) {
  809. json &target = rt["target"];
  810. json &via = rt["via"];
  811. if (target.is_string()) {
  812. InetAddress t(target.get<std::string>());
  813. InetAddress v;
  814. if (via.is_string()) v.fromString(via.get<std::string>());
  815. if ( ((t.ss_family == AF_INET)||(t.ss_family == AF_INET6)) && (t.netmaskBitsValid()) ) {
  816. json tmp;
  817. tmp["target"] = t.toString();
  818. if (v.ss_family == t.ss_family)
  819. tmp["via"] = v.toIpString();
  820. else tmp["via"] = json();
  821. nrts.push_back(tmp);
  822. }
  823. }
  824. }
  825. }
  826. network["routes"] = nrts;
  827. }
  828. }
  829. if (b.count("ipAssignmentPools")) {
  830. json &ipp = b["ipAssignmentPools"];
  831. if (ipp.is_array()) {
  832. json nipp = json::array();
  833. for(unsigned long i=0;i<ipp.size();++i) {
  834. json &ip = ipp[i];
  835. if ((ip.is_object())&&(ip.count("ipRangeStart"))&&(ip.count("ipRangeEnd"))) {
  836. InetAddress f(OSUtils::jsonString(ip["ipRangeStart"],""));
  837. InetAddress t(OSUtils::jsonString(ip["ipRangeEnd"],""));
  838. if ( ((f.ss_family == AF_INET)||(f.ss_family == AF_INET6)) && (f.ss_family == t.ss_family) ) {
  839. json tmp = json::object();
  840. tmp["ipRangeStart"] = f.toIpString();
  841. tmp["ipRangeEnd"] = t.toIpString();
  842. nipp.push_back(tmp);
  843. }
  844. }
  845. }
  846. network["ipAssignmentPools"] = nipp;
  847. }
  848. }
  849. if (b.count("rules")) {
  850. json &rules = b["rules"];
  851. if (rules.is_array()) {
  852. json nrules = json::array();
  853. for(unsigned long i=0;i<rules.size();++i) {
  854. json &rule = rules[i];
  855. if (rule.is_object()) {
  856. ZT_VirtualNetworkRule ztr;
  857. if (_parseRule(rule,ztr))
  858. nrules.push_back(_renderRule(ztr));
  859. }
  860. }
  861. network["rules"] = nrules;
  862. }
  863. }
  864. if (b.count("authTokens")) {
  865. json &authTokens = b["authTokens"];
  866. if (authTokens.is_array()) {
  867. json nat = json::array();
  868. for(unsigned long i=0;i<authTokens.size();++i) {
  869. json &token = authTokens[i];
  870. if (token.is_object()) {
  871. std::string tstr = token["token"];
  872. if (tstr.length() > 0) {
  873. json t = json::object();
  874. t["token"] = tstr;
  875. t["expires"] = OSUtils::jsonInt(token["expires"],0ULL);
  876. t["maxUsesPerMember"] = OSUtils::jsonInt(token["maxUsesPerMember"],0ULL);
  877. nat.push_back(t);
  878. }
  879. }
  880. }
  881. network["authTokens"] = nat;
  882. }
  883. }
  884. if (b.count("capabilities")) {
  885. json &capabilities = b["capabilities"];
  886. if (capabilities.is_array()) {
  887. std::map< uint64_t,json > ncaps;
  888. for(unsigned long i=0;i<capabilities.size();++i) {
  889. json &cap = capabilities[i];
  890. if (cap.is_object()) {
  891. json ncap = json::object();
  892. const uint64_t capId = OSUtils::jsonInt(cap["id"],0ULL);
  893. ncap["id"] = capId;
  894. ncap["default"] = OSUtils::jsonBool(cap["default"],false);
  895. json &rules = cap["rules"];
  896. json nrules = json::array();
  897. if (rules.is_array()) {
  898. for(unsigned long i=0;i<rules.size();++i) {
  899. json &rule = rules[i];
  900. if (rule.is_object()) {
  901. ZT_VirtualNetworkRule ztr;
  902. if (_parseRule(rule,ztr))
  903. nrules.push_back(_renderRule(ztr));
  904. }
  905. }
  906. }
  907. ncap["rules"] = nrules;
  908. ncaps[capId] = ncap;
  909. }
  910. }
  911. json ncapsa = json::array();
  912. for(std::map< uint64_t,json >::iterator c(ncaps.begin());c!=ncaps.end();++c)
  913. ncapsa.push_back(c->second);
  914. network["capabilities"] = ncapsa;
  915. }
  916. }
  917. if (b.count("tags")) {
  918. json &tags = b["tags"];
  919. if (tags.is_array()) {
  920. std::map< uint64_t,json > ntags;
  921. for(unsigned long i=0;i<tags.size();++i) {
  922. json &tag = tags[i];
  923. if (tag.is_object()) {
  924. json ntag = json::object();
  925. const uint64_t tagId = OSUtils::jsonInt(tag["id"],0ULL);
  926. ntag["id"] = tagId;
  927. if (tag.find("default") == tag.end())
  928. ntag["default"] = json();
  929. else ntag["default"] = OSUtils::jsonInt(tag["default"],0ULL);
  930. ntags[tagId] = ntag;
  931. }
  932. }
  933. json ntagsa = json::array();
  934. for(std::map< uint64_t,json >::iterator t(ntags.begin());t!=ntags.end();++t)
  935. ntagsa.push_back(t->second);
  936. network["tags"] = ntagsa;
  937. }
  938. }
  939. } catch ( ... ) {
  940. responseBody = "{ \"message\": \"exception occurred while parsing body variables\" }";
  941. responseContentType = "application/json";
  942. return 400;
  943. }
  944. network["id"] = nwids;
  945. network["nwid"] = nwids; // legacy
  946. if (network != origNetwork) {
  947. json &revj = network["revision"];
  948. network["revision"] = (revj.is_number() ? ((uint64_t)revj + 1ULL) : 1ULL);
  949. network["lastModified"] = now;
  950. {
  951. Mutex::Lock _l(_db_m);
  952. _db.put("network",nwids,network);
  953. }
  954. // Send an update to all members of the network
  955. _db.filter((std::string("network/") + nwids + "/member/"),120000,[this,&now,&nwid](const std::string &n,const json &obj) {
  956. _pushMemberUpdate(now,nwid,obj);
  957. return true; // do not delete
  958. });
  959. }
  960. _NetworkMemberInfo nmi;
  961. _getNetworkMemberInfo(now,nwid,nmi);
  962. _addNetworkNonPersistedFields(network,now,nmi);
  963. responseBody = OSUtils::jsonDump(network);
  964. responseContentType = "application/json";
  965. return 200;
  966. } // else 404
  967. } // else 404
  968. } // else 404
  969. return 404;
  970. }
  971. unsigned int EmbeddedNetworkController::handleControlPlaneHttpDELETE(
  972. const std::vector<std::string> &path,
  973. const std::map<std::string,std::string> &urlArgs,
  974. const std::map<std::string,std::string> &headers,
  975. const std::string &body,
  976. std::string &responseBody,
  977. std::string &responseContentType)
  978. {
  979. if (path.empty())
  980. return 404;
  981. if (path[0] == "network") {
  982. if ((path.size() >= 2)&&(path[1].length() == 16)) {
  983. const uint64_t nwid = Utils::hexStrToU64(path[1].c_str());
  984. char nwids[24];
  985. Utils::snprintf(nwids,sizeof(nwids),"%.16llx",nwid);
  986. json network;
  987. {
  988. Mutex::Lock _l(_db_m);
  989. network = _db.get("network",nwids,0);
  990. }
  991. if (!network.size())
  992. return 404;
  993. if (path.size() >= 3) {
  994. if ((path.size() == 4)&&(path[2] == "member")&&(path[3].length() == 10)) {
  995. const uint64_t address = Utils::hexStrToU64(path[3].c_str());
  996. Mutex::Lock _l(_db_m);
  997. json member = _db.get("network",nwids,"member",Address(address).toString(),0);
  998. _db.erase("network",nwids,"member",Address(address).toString());
  999. if (!member.size())
  1000. return 404;
  1001. responseBody = OSUtils::jsonDump(member);
  1002. responseContentType = "application/json";
  1003. return 200;
  1004. }
  1005. } else {
  1006. Mutex::Lock _l(_db_m);
  1007. std::string pfx("network/"); pfx.append(nwids);
  1008. _db.filter(pfx,120000,[](const std::string &n,const json &obj) {
  1009. return false; // delete
  1010. });
  1011. Mutex::Lock _l2(_nmiCache_m);
  1012. _nmiCache.erase(nwid);
  1013. responseBody = OSUtils::jsonDump(network);
  1014. responseContentType = "application/json";
  1015. return 200;
  1016. }
  1017. } // else 404
  1018. } // else 404
  1019. return 404;
  1020. }
  1021. void EmbeddedNetworkController::threadMain()
  1022. throw()
  1023. {
  1024. uint64_t lastCircuitTestCheck = 0;
  1025. for(;;) {
  1026. _RQEntry *const qe = _queue.get(); // waits on next request
  1027. if (!qe) break; // enqueue a NULL to terminate threads
  1028. try {
  1029. _request(qe->nwid,qe->fromAddr,qe->requestPacketId,qe->identity,qe->metaData);
  1030. } catch ( ... ) {}
  1031. delete qe;
  1032. uint64_t now = OSUtils::now();
  1033. if ((now - lastCircuitTestCheck) > ZT_EMBEDDEDNETWORKCONTROLLER_CIRCUIT_TEST_EXPIRATION) {
  1034. lastCircuitTestCheck = now;
  1035. Mutex::Lock _l(_tests_m);
  1036. for(std::list< ZT_CircuitTest >::iterator i(_tests.begin());i!=_tests.end();) {
  1037. if ((now - i->timestamp) > ZT_EMBEDDEDNETWORKCONTROLLER_CIRCUIT_TEST_EXPIRATION) {
  1038. _node->circuitTestEnd(&(*i));
  1039. _tests.erase(i++);
  1040. } else ++i;
  1041. }
  1042. }
  1043. }
  1044. }
  1045. void EmbeddedNetworkController::_circuitTestCallback(ZT_Node *node,ZT_CircuitTest *test,const ZT_CircuitTestReport *report)
  1046. {
  1047. char tmp[1024],id[128];
  1048. EmbeddedNetworkController *const self = reinterpret_cast<EmbeddedNetworkController *>(test->ptr);
  1049. if ((!test)||(!report)||(!test->credentialNetworkId)) return; // sanity check
  1050. const uint64_t now = OSUtils::now();
  1051. Utils::snprintf(id,sizeof(id),"network/%.16llx/test/%.16llx-%.16llx-%.10llx-%.10llx",test->credentialNetworkId,test->testId,now,report->upstream,report->current);
  1052. Utils::snprintf(tmp,sizeof(tmp),
  1053. "{\"id\": \"%s\","
  1054. "\"timestamp\": %llu,"
  1055. "\"networkId\": \"%.16llx\","
  1056. "\"testId\": \"%.16llx\","
  1057. "\"upstream\": \"%.10llx\","
  1058. "\"current\": \"%.10llx\","
  1059. "\"receivedTimestamp\": %llu,"
  1060. "\"sourcePacketId\": \"%.16llx\","
  1061. "\"flags\": %llu,"
  1062. "\"sourcePacketHopCount\": %u,"
  1063. "\"errorCode\": %u,"
  1064. "\"vendor\": %d,"
  1065. "\"protocolVersion\": %u,"
  1066. "\"majorVersion\": %u,"
  1067. "\"minorVersion\": %u,"
  1068. "\"revision\": %u,"
  1069. "\"platform\": %d,"
  1070. "\"architecture\": %d,"
  1071. "\"receivedOnLocalAddress\": \"%s\","
  1072. "\"receivedFromRemoteAddress\": \"%s\","
  1073. "\"receivedFromLinkQuality\": %f}",
  1074. id + 30, // last bit only, not leading path
  1075. (unsigned long long)test->timestamp,
  1076. (unsigned long long)test->credentialNetworkId,
  1077. (unsigned long long)test->testId,
  1078. (unsigned long long)report->upstream,
  1079. (unsigned long long)report->current,
  1080. (unsigned long long)now,
  1081. (unsigned long long)report->sourcePacketId,
  1082. (unsigned long long)report->flags,
  1083. report->sourcePacketHopCount,
  1084. report->errorCode,
  1085. (int)report->vendor,
  1086. report->protocolVersion,
  1087. report->majorVersion,
  1088. report->minorVersion,
  1089. report->revision,
  1090. (int)report->platform,
  1091. (int)report->architecture,
  1092. reinterpret_cast<const InetAddress *>(&(report->receivedOnLocalAddress))->toString().c_str(),
  1093. reinterpret_cast<const InetAddress *>(&(report->receivedFromRemoteAddress))->toString().c_str(),
  1094. ((double)report->receivedFromLinkQuality / (double)ZT_PATH_LINK_QUALITY_MAX));
  1095. Mutex::Lock _l(self->_db_m);
  1096. self->_db.writeRaw(id,std::string(tmp));
  1097. }
  1098. void EmbeddedNetworkController::_request(
  1099. uint64_t nwid,
  1100. const InetAddress &fromAddr,
  1101. uint64_t requestPacketId,
  1102. const Identity &identity,
  1103. const Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> &metaData)
  1104. {
  1105. if (((!_signingId)||(!_signingId.hasPrivate()))||(_signingId.address().toInt() != (nwid >> 24))||(!_sender))
  1106. return;
  1107. const uint64_t now = OSUtils::now();
  1108. if (requestPacketId) {
  1109. Mutex::Lock _l(_lastRequestTime_m);
  1110. uint64_t &lrt = _lastRequestTime[std::pair<uint64_t,uint64_t>(identity.address().toInt(),nwid)];
  1111. if ((now - lrt) <= ZT_NETCONF_MIN_REQUEST_PERIOD)
  1112. return;
  1113. lrt = now;
  1114. }
  1115. char nwids[24];
  1116. Utils::snprintf(nwids,sizeof(nwids),"%.16llx",nwid);
  1117. json network;
  1118. json member;
  1119. {
  1120. Mutex::Lock _l(_db_m);
  1121. network = _db.get("network",nwids,0);
  1122. member = _db.get("network",nwids,"member",identity.address().toString(),0);
  1123. }
  1124. if (!network.size()) {
  1125. _sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_OBJECT_NOT_FOUND);
  1126. return;
  1127. }
  1128. const bool newMember = (member.size() == 0);
  1129. json origMember(member); // for detecting modification later
  1130. _initMember(member);
  1131. {
  1132. std::string haveIdStr(OSUtils::jsonString(member["identity"],""));
  1133. if (haveIdStr.length() > 0) {
  1134. // If we already know this member's identity perform a full compare. This prevents
  1135. // a "collision" from being able to auth onto our network in place of an already
  1136. // known member.
  1137. try {
  1138. if (Identity(haveIdStr.c_str()) != identity) {
  1139. _sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_ACCESS_DENIED);
  1140. return;
  1141. }
  1142. } catch ( ... ) {
  1143. _sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_ACCESS_DENIED);
  1144. return;
  1145. }
  1146. } else {
  1147. // If we do not yet know this member's identity, learn it.
  1148. member["identity"] = identity.toString(false);
  1149. }
  1150. }
  1151. // These are always the same, but make sure they are set
  1152. member["id"] = identity.address().toString();
  1153. member["address"] = member["id"];
  1154. member["nwid"] = nwids;
  1155. // Determine whether and how member is authorized
  1156. const char *authorizedBy = (const char *)0;
  1157. bool autoAuthorized = false;
  1158. json autoAuthCredentialType,autoAuthCredential;
  1159. if (OSUtils::jsonBool(member["authorized"],false)) {
  1160. authorizedBy = "memberIsAuthorized";
  1161. } else if (!OSUtils::jsonBool(network["private"],true)) {
  1162. authorizedBy = "networkIsPublic";
  1163. json &ahist = member["authHistory"];
  1164. if ((!ahist.is_array())||(ahist.size() == 0))
  1165. autoAuthorized = true;
  1166. } else {
  1167. char presentedAuth[512];
  1168. if (metaData.get(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_AUTH,presentedAuth,sizeof(presentedAuth)) > 0) {
  1169. presentedAuth[511] = (char)0; // sanity check
  1170. // Check for bearer token presented by member
  1171. if ((strlen(presentedAuth) > 6)&&(!strncmp(presentedAuth,"token:",6))) {
  1172. const char *const presentedToken = presentedAuth + 6;
  1173. json &authTokens = network["authTokens"];
  1174. if (authTokens.is_array()) {
  1175. for(unsigned long i=0;i<authTokens.size();++i) {
  1176. json &token = authTokens[i];
  1177. if (token.is_object()) {
  1178. const uint64_t expires = OSUtils::jsonInt(token["expires"],0ULL);
  1179. const uint64_t maxUses = OSUtils::jsonInt(token["maxUsesPerMember"],0ULL);
  1180. std::string tstr = OSUtils::jsonString(token["token"],"");
  1181. if (((expires == 0ULL)||(expires > now))&&(tstr == presentedToken)) {
  1182. bool usable = (maxUses == 0);
  1183. if (!usable) {
  1184. uint64_t useCount = 0;
  1185. json &ahist = member["authHistory"];
  1186. if (ahist.is_array()) {
  1187. for(unsigned long j=0;j<ahist.size();++j) {
  1188. json &ah = ahist[j];
  1189. if ((OSUtils::jsonString(ah["ct"],"") == "token")&&(OSUtils::jsonString(ah["c"],"") == tstr)&&(OSUtils::jsonBool(ah["a"],false)))
  1190. ++useCount;
  1191. }
  1192. }
  1193. usable = (useCount < maxUses);
  1194. }
  1195. if (usable) {
  1196. authorizedBy = "token";
  1197. autoAuthorized = true;
  1198. autoAuthCredentialType = "token";
  1199. autoAuthCredential = tstr;
  1200. }
  1201. }
  1202. }
  1203. }
  1204. }
  1205. }
  1206. }
  1207. }
  1208. // If we auto-authorized, update member record
  1209. if ((autoAuthorized)&&(authorizedBy)) {
  1210. member["authorized"] = true;
  1211. member["lastAuthorizedTime"] = now;
  1212. json ah;
  1213. ah["a"] = true;
  1214. ah["by"] = authorizedBy;
  1215. ah["ts"] = now;
  1216. ah["ct"] = autoAuthCredentialType;
  1217. ah["c"] = autoAuthCredential;
  1218. member["authHistory"].push_back(ah);
  1219. json &revj = member["revision"];
  1220. member["revision"] = (revj.is_number() ? ((uint64_t)revj + 1ULL) : 1ULL);
  1221. }
  1222. // Log this request
  1223. if (requestPacketId) { // only log if this is a request, not for generated pushes
  1224. json rlEntry = json::object();
  1225. rlEntry["ts"] = now;
  1226. rlEntry["auth"] = (authorizedBy) ? true : false;
  1227. rlEntry["authBy"] = (authorizedBy) ? authorizedBy : "";
  1228. rlEntry["vMajor"] = metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_NODE_MAJOR_VERSION,0);
  1229. rlEntry["vMinor"] = metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_NODE_MINOR_VERSION,0);
  1230. rlEntry["vRev"] = metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_NODE_REVISION,0);
  1231. rlEntry["vProto"] = metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_PROTOCOL_VERSION,0);
  1232. if (fromAddr)
  1233. rlEntry["fromAddr"] = fromAddr.toString();
  1234. json recentLog = json::array();
  1235. recentLog.push_back(rlEntry);
  1236. json &oldLog = member["recentLog"];
  1237. if (oldLog.is_array()) {
  1238. for(unsigned long i=0;i<oldLog.size();++i) {
  1239. recentLog.push_back(oldLog[i]);
  1240. if (recentLog.size() >= ZT_NETCONF_DB_MEMBER_HISTORY_LENGTH)
  1241. break;
  1242. }
  1243. }
  1244. member["recentLog"] = recentLog;
  1245. // Also only do this on real requests
  1246. member["lastRequestMetaData"] = metaData.data();
  1247. }
  1248. // If they are not authorized, STOP!
  1249. if (!authorizedBy) {
  1250. if (origMember != member) {
  1251. member["lastModified"] = now;
  1252. Mutex::Lock _l(_db_m);
  1253. _db.put("network",nwids,"member",identity.address().toString(),member);
  1254. }
  1255. _sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_ACCESS_DENIED);
  1256. return;
  1257. }
  1258. // -------------------------------------------------------------------------
  1259. // If we made it this far, they are authorized.
  1260. // -------------------------------------------------------------------------
  1261. NetworkConfig nc;
  1262. _NetworkMemberInfo nmi;
  1263. _getNetworkMemberInfo(now,nwid,nmi);
  1264. uint64_t credentialtmd = ZT_NETWORKCONFIG_DEFAULT_CREDENTIAL_TIME_MAX_MAX_DELTA;
  1265. if (now > nmi.mostRecentDeauthTime) {
  1266. // If we recently de-authorized a member, shrink credential TTL/max delta to
  1267. // be below the threshold required to exclude it. Cap this to a min/max to
  1268. // prevent jitter or absurdly large values.
  1269. const uint64_t deauthWindow = now - nmi.mostRecentDeauthTime;
  1270. if (deauthWindow < ZT_NETWORKCONFIG_DEFAULT_CREDENTIAL_TIME_MIN_MAX_DELTA) {
  1271. credentialtmd = ZT_NETWORKCONFIG_DEFAULT_CREDENTIAL_TIME_MIN_MAX_DELTA;
  1272. } else if (deauthWindow < (ZT_NETWORKCONFIG_DEFAULT_CREDENTIAL_TIME_MAX_MAX_DELTA + 5000ULL)) {
  1273. credentialtmd = deauthWindow - 5000ULL;
  1274. }
  1275. }
  1276. nc.networkId = nwid;
  1277. nc.type = OSUtils::jsonBool(network["private"],true) ? ZT_NETWORK_TYPE_PRIVATE : ZT_NETWORK_TYPE_PUBLIC;
  1278. nc.timestamp = now;
  1279. nc.credentialTimeMaxDelta = credentialtmd;
  1280. nc.revision = OSUtils::jsonInt(network["revision"],0ULL);
  1281. nc.issuedTo = identity.address();
  1282. if (OSUtils::jsonBool(network["enableBroadcast"],true)) nc.flags |= ZT_NETWORKCONFIG_FLAG_ENABLE_BROADCAST;
  1283. if (OSUtils::jsonBool(network["allowPassiveBridging"],false)) nc.flags |= ZT_NETWORKCONFIG_FLAG_ALLOW_PASSIVE_BRIDGING;
  1284. Utils::scopy(nc.name,sizeof(nc.name),OSUtils::jsonString(network["name"],"").c_str());
  1285. nc.multicastLimit = (unsigned int)OSUtils::jsonInt(network["multicastLimit"],32ULL);
  1286. for(std::set<Address>::const_iterator ab(nmi.activeBridges.begin());ab!=nmi.activeBridges.end();++ab) {
  1287. nc.addSpecialist(*ab,ZT_NETWORKCONFIG_SPECIALIST_TYPE_ACTIVE_BRIDGE);
  1288. }
  1289. json &v4AssignMode = network["v4AssignMode"];
  1290. json &v6AssignMode = network["v6AssignMode"];
  1291. json &ipAssignmentPools = network["ipAssignmentPools"];
  1292. json &routes = network["routes"];
  1293. json &rules = network["rules"];
  1294. json &capabilities = network["capabilities"];
  1295. json &tags = network["tags"];
  1296. json &memberCapabilities = member["capabilities"];
  1297. json &memberTags = member["tags"];
  1298. if (metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_RULES_ENGINE_REV,0) <= 0) {
  1299. // Old versions with no rules engine support get an allow everything rule.
  1300. // Since rules are enforced bidirectionally, newer versions *will* still
  1301. // enforce rules on the inbound side.
  1302. nc.ruleCount = 1;
  1303. nc.rules[0].t = ZT_NETWORK_RULE_ACTION_ACCEPT;
  1304. } else {
  1305. if (rules.is_array()) {
  1306. for(unsigned long i=0;i<rules.size();++i) {
  1307. if (nc.ruleCount >= ZT_MAX_NETWORK_RULES)
  1308. break;
  1309. if (_parseRule(rules[i],nc.rules[nc.ruleCount]))
  1310. ++nc.ruleCount;
  1311. }
  1312. }
  1313. std::map< uint64_t,json * > capsById;
  1314. if (!memberCapabilities.is_array())
  1315. memberCapabilities = json::array();
  1316. if (capabilities.is_array()) {
  1317. for(unsigned long i=0;i<capabilities.size();++i) {
  1318. json &cap = capabilities[i];
  1319. if (cap.is_object()) {
  1320. const uint64_t id = OSUtils::jsonInt(cap["id"],0ULL) & 0xffffffffULL;
  1321. capsById[id] = &cap;
  1322. if ((newMember)&&(OSUtils::jsonBool(cap["default"],false))) {
  1323. bool have = false;
  1324. for(unsigned long i=0;i<memberCapabilities.size();++i) {
  1325. if (id == (OSUtils::jsonInt(memberCapabilities[i],0ULL) & 0xffffffffULL)) {
  1326. have = true;
  1327. break;
  1328. }
  1329. }
  1330. if (!have)
  1331. memberCapabilities.push_back(id);
  1332. }
  1333. }
  1334. }
  1335. }
  1336. for(unsigned long i=0;i<memberCapabilities.size();++i) {
  1337. const uint64_t capId = OSUtils::jsonInt(memberCapabilities[i],0ULL) & 0xffffffffULL;
  1338. std::map< uint64_t,json * >::const_iterator ctmp = capsById.find(capId);
  1339. if (ctmp != capsById.end()) {
  1340. json *cap = ctmp->second;
  1341. if ((cap)&&(cap->is_object())&&(cap->size() > 0)) {
  1342. ZT_VirtualNetworkRule capr[ZT_MAX_CAPABILITY_RULES];
  1343. unsigned int caprc = 0;
  1344. json &caprj = (*cap)["rules"];
  1345. if ((caprj.is_array())&&(caprj.size() > 0)) {
  1346. for(unsigned long j=0;j<caprj.size();++j) {
  1347. if (caprc >= ZT_MAX_CAPABILITY_RULES)
  1348. break;
  1349. if (_parseRule(caprj[j],capr[caprc]))
  1350. ++caprc;
  1351. }
  1352. }
  1353. nc.capabilities[nc.capabilityCount] = Capability((uint32_t)capId,nwid,now,1,capr,caprc);
  1354. if (nc.capabilities[nc.capabilityCount].sign(_signingId,identity.address()))
  1355. ++nc.capabilityCount;
  1356. if (nc.capabilityCount >= ZT_MAX_NETWORK_CAPABILITIES)
  1357. break;
  1358. }
  1359. }
  1360. }
  1361. std::map< uint32_t,uint32_t > memberTagsById;
  1362. if (memberTags.is_array()) {
  1363. for(unsigned long i=0;i<memberTags.size();++i) {
  1364. json &t = memberTags[i];
  1365. if ((t.is_array())&&(t.size() == 2))
  1366. memberTagsById[(uint32_t)(OSUtils::jsonInt(t[0],0ULL) & 0xffffffffULL)] = (uint32_t)(OSUtils::jsonInt(t[1],0ULL) & 0xffffffffULL);
  1367. }
  1368. }
  1369. if (tags.is_array()) { // check network tags array for defaults that are not present in member tags
  1370. for(unsigned long i=0;i<tags.size();++i) {
  1371. json &t = tags[i];
  1372. if (t.is_object()) {
  1373. const uint32_t id = (uint32_t)(OSUtils::jsonInt(t["id"],0) & 0xffffffffULL);
  1374. json &dfl = t["default"];
  1375. if ((dfl.is_number())&&(memberTagsById.find(id) == memberTagsById.end())) {
  1376. memberTagsById[id] = (uint32_t)(OSUtils::jsonInt(dfl,0) & 0xffffffffULL);
  1377. json mt = json::array();
  1378. mt.push_back(id);
  1379. mt.push_back(dfl);
  1380. memberTags.push_back(mt); // add default to member tags if not present
  1381. }
  1382. }
  1383. }
  1384. }
  1385. for(std::map< uint32_t,uint32_t >::const_iterator t(memberTagsById.begin());t!=memberTagsById.end();++t) {
  1386. if (nc.tagCount >= ZT_MAX_NETWORK_TAGS)
  1387. break;
  1388. nc.tags[nc.tagCount] = Tag(nwid,now,identity.address(),t->first,t->second);
  1389. if (nc.tags[nc.tagCount].sign(_signingId))
  1390. ++nc.tagCount;
  1391. }
  1392. }
  1393. if (routes.is_array()) {
  1394. for(unsigned long i=0;i<routes.size();++i) {
  1395. if (nc.routeCount >= ZT_MAX_NETWORK_ROUTES)
  1396. break;
  1397. json &route = routes[i];
  1398. json &target = route["target"];
  1399. json &via = route["via"];
  1400. if (target.is_string()) {
  1401. const InetAddress t(target.get<std::string>());
  1402. InetAddress v;
  1403. if (via.is_string()) v.fromString(via.get<std::string>());
  1404. if ((t.ss_family == AF_INET)||(t.ss_family == AF_INET6)) {
  1405. ZT_VirtualNetworkRoute *r = &(nc.routes[nc.routeCount]);
  1406. *(reinterpret_cast<InetAddress *>(&(r->target))) = t;
  1407. if (v.ss_family == t.ss_family)
  1408. *(reinterpret_cast<InetAddress *>(&(r->via))) = v;
  1409. ++nc.routeCount;
  1410. }
  1411. }
  1412. }
  1413. }
  1414. const bool noAutoAssignIps = OSUtils::jsonBool(member["noAutoAssignIps"],false);
  1415. if ((v6AssignMode.is_object())&&(!noAutoAssignIps)) {
  1416. if ((OSUtils::jsonBool(v6AssignMode["rfc4193"],false))&&(nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES)) {
  1417. nc.staticIps[nc.staticIpCount++] = InetAddress::makeIpv6rfc4193(nwid,identity.address().toInt());
  1418. nc.flags |= ZT_NETWORKCONFIG_FLAG_ENABLE_IPV6_NDP_EMULATION;
  1419. }
  1420. if ((OSUtils::jsonBool(v6AssignMode["6plane"],false))&&(nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES)) {
  1421. nc.staticIps[nc.staticIpCount++] = InetAddress::makeIpv66plane(nwid,identity.address().toInt());
  1422. nc.flags |= ZT_NETWORKCONFIG_FLAG_ENABLE_IPV6_NDP_EMULATION;
  1423. }
  1424. }
  1425. bool haveManagedIpv4AutoAssignment = false;
  1426. bool haveManagedIpv6AutoAssignment = false; // "special" NDP-emulated address types do not count
  1427. json ipAssignments = member["ipAssignments"]; // we want to make a copy
  1428. if (ipAssignments.is_array()) {
  1429. for(unsigned long i=0;i<ipAssignments.size();++i) {
  1430. if (!ipAssignments[i].is_string())
  1431. continue;
  1432. std::string ips = ipAssignments[i];
  1433. InetAddress ip(ips);
  1434. // IP assignments are only pushed if there is a corresponding local route. We also now get the netmask bits from
  1435. // this route, ignoring the netmask bits field of the assigned IP itself. Using that was worthless and a source
  1436. // of user error / poor UX.
  1437. int routedNetmaskBits = 0;
  1438. for(unsigned int rk=0;rk<nc.routeCount;++rk) {
  1439. if ( (!nc.routes[rk].via.ss_family) && (reinterpret_cast<const InetAddress *>(&(nc.routes[rk].target))->containsAddress(ip)) )
  1440. routedNetmaskBits = reinterpret_cast<const InetAddress *>(&(nc.routes[rk].target))->netmaskBits();
  1441. }
  1442. if (routedNetmaskBits > 0) {
  1443. if (nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES) {
  1444. ip.setPort(routedNetmaskBits);
  1445. nc.staticIps[nc.staticIpCount++] = ip;
  1446. }
  1447. if (ip.ss_family == AF_INET)
  1448. haveManagedIpv4AutoAssignment = true;
  1449. else if (ip.ss_family == AF_INET6)
  1450. haveManagedIpv6AutoAssignment = true;
  1451. }
  1452. }
  1453. } else {
  1454. ipAssignments = json::array();
  1455. }
  1456. if ( (ipAssignmentPools.is_array()) && ((v6AssignMode.is_object())&&(OSUtils::jsonBool(v6AssignMode["zt"],false))) && (!haveManagedIpv6AutoAssignment) && (!noAutoAssignIps) ) {
  1457. for(unsigned long p=0;((p<ipAssignmentPools.size())&&(!haveManagedIpv6AutoAssignment));++p) {
  1458. json &pool = ipAssignmentPools[p];
  1459. if (pool.is_object()) {
  1460. InetAddress ipRangeStart(OSUtils::jsonString(pool["ipRangeStart"],""));
  1461. InetAddress ipRangeEnd(OSUtils::jsonString(pool["ipRangeEnd"],""));
  1462. if ( (ipRangeStart.ss_family == AF_INET6) && (ipRangeEnd.ss_family == AF_INET6) ) {
  1463. uint64_t s[2],e[2],x[2],xx[2];
  1464. memcpy(s,ipRangeStart.rawIpData(),16);
  1465. memcpy(e,ipRangeEnd.rawIpData(),16);
  1466. s[0] = Utils::ntoh(s[0]);
  1467. s[1] = Utils::ntoh(s[1]);
  1468. e[0] = Utils::ntoh(e[0]);
  1469. e[1] = Utils::ntoh(e[1]);
  1470. x[0] = s[0];
  1471. x[1] = s[1];
  1472. for(unsigned int trialCount=0;trialCount<1000;++trialCount) {
  1473. if ((trialCount == 0)&&(e[1] > s[1])&&((e[1] - s[1]) >= 0xffffffffffULL)) {
  1474. // First see if we can just cram a ZeroTier ID into the higher 64 bits. If so do that.
  1475. xx[0] = Utils::hton(x[0]);
  1476. xx[1] = Utils::hton(x[1] + identity.address().toInt());
  1477. } else {
  1478. // Otherwise pick random addresses -- this technically doesn't explore the whole range if the lower 64 bit range is >= 1 but that won't matter since that would be huge anyway
  1479. Utils::getSecureRandom((void *)xx,16);
  1480. if ((e[0] > s[0]))
  1481. xx[0] %= (e[0] - s[0]);
  1482. else xx[0] = 0;
  1483. if ((e[1] > s[1]))
  1484. xx[1] %= (e[1] - s[1]);
  1485. else xx[1] = 0;
  1486. xx[0] = Utils::hton(x[0] + xx[0]);
  1487. xx[1] = Utils::hton(x[1] + xx[1]);
  1488. }
  1489. InetAddress ip6((const void *)xx,16,0);
  1490. // Check if this IP is within a local-to-Ethernet routed network
  1491. int routedNetmaskBits = 0;
  1492. for(unsigned int rk=0;rk<nc.routeCount;++rk) {
  1493. if ( (!nc.routes[rk].via.ss_family) && (nc.routes[rk].target.ss_family == AF_INET6) && (reinterpret_cast<const InetAddress *>(&(nc.routes[rk].target))->containsAddress(ip6)) )
  1494. routedNetmaskBits = reinterpret_cast<const InetAddress *>(&(nc.routes[rk].target))->netmaskBits();
  1495. }
  1496. // If it's routed, then try to claim and assign it and if successful end loop
  1497. if ((routedNetmaskBits > 0)&&(!nmi.allocatedIps.count(ip6))) {
  1498. ipAssignments.push_back(ip6.toIpString());
  1499. member["ipAssignments"] = ipAssignments;
  1500. ip6.setPort((unsigned int)routedNetmaskBits);
  1501. if (nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES)
  1502. nc.staticIps[nc.staticIpCount++] = ip6;
  1503. haveManagedIpv6AutoAssignment = true;
  1504. _clearNetworkMemberInfoCache(nwid); // clear cache to prevent IP assignment duplication on many rapid assigns
  1505. break;
  1506. }
  1507. }
  1508. }
  1509. }
  1510. }
  1511. }
  1512. if ( (ipAssignmentPools.is_array()) && ((v4AssignMode.is_object())&&(OSUtils::jsonBool(v4AssignMode["zt"],false))) && (!haveManagedIpv4AutoAssignment) && (!noAutoAssignIps) ) {
  1513. for(unsigned long p=0;((p<ipAssignmentPools.size())&&(!haveManagedIpv4AutoAssignment));++p) {
  1514. json &pool = ipAssignmentPools[p];
  1515. if (pool.is_object()) {
  1516. InetAddress ipRangeStartIA(OSUtils::jsonString(pool["ipRangeStart"],""));
  1517. InetAddress ipRangeEndIA(OSUtils::jsonString(pool["ipRangeEnd"],""));
  1518. if ( (ipRangeStartIA.ss_family == AF_INET) && (ipRangeEndIA.ss_family == AF_INET) ) {
  1519. uint32_t ipRangeStart = Utils::ntoh((uint32_t)(reinterpret_cast<struct sockaddr_in *>(&ipRangeStartIA)->sin_addr.s_addr));
  1520. uint32_t ipRangeEnd = Utils::ntoh((uint32_t)(reinterpret_cast<struct sockaddr_in *>(&ipRangeEndIA)->sin_addr.s_addr));
  1521. if ((ipRangeEnd < ipRangeStart)||(ipRangeStart == 0))
  1522. continue;
  1523. uint32_t ipRangeLen = ipRangeEnd - ipRangeStart;
  1524. // Start with the LSB of the member's address
  1525. uint32_t ipTrialCounter = (uint32_t)(identity.address().toInt() & 0xffffffff);
  1526. for(uint32_t k=ipRangeStart,trialCount=0;((k<=ipRangeEnd)&&(trialCount < 1000));++k,++trialCount) {
  1527. uint32_t ip = (ipRangeLen > 0) ? (ipRangeStart + (ipTrialCounter % ipRangeLen)) : ipRangeStart;
  1528. ++ipTrialCounter;
  1529. if ((ip & 0x000000ff) == 0x000000ff)
  1530. continue; // don't allow addresses that end in .255
  1531. // Check if this IP is within a local-to-Ethernet routed network
  1532. int routedNetmaskBits = -1;
  1533. for(unsigned int rk=0;rk<nc.routeCount;++rk) {
  1534. if (nc.routes[rk].target.ss_family == AF_INET) {
  1535. uint32_t targetIp = Utils::ntoh((uint32_t)(reinterpret_cast<const struct sockaddr_in *>(&(nc.routes[rk].target))->sin_addr.s_addr));
  1536. int targetBits = Utils::ntoh((uint16_t)(reinterpret_cast<const struct sockaddr_in *>(&(nc.routes[rk].target))->sin_port));
  1537. if ((ip & (0xffffffff << (32 - targetBits))) == targetIp) {
  1538. routedNetmaskBits = targetBits;
  1539. break;
  1540. }
  1541. }
  1542. }
  1543. // If it's routed, then try to claim and assign it and if successful end loop
  1544. const InetAddress ip4(Utils::hton(ip),0);
  1545. if ((routedNetmaskBits > 0)&&(!nmi.allocatedIps.count(ip4))) {
  1546. ipAssignments.push_back(ip4.toIpString());
  1547. member["ipAssignments"] = ipAssignments;
  1548. if (nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES) {
  1549. struct sockaddr_in *const v4ip = reinterpret_cast<struct sockaddr_in *>(&(nc.staticIps[nc.staticIpCount++]));
  1550. v4ip->sin_family = AF_INET;
  1551. v4ip->sin_port = Utils::hton((uint16_t)routedNetmaskBits);
  1552. v4ip->sin_addr.s_addr = Utils::hton(ip);
  1553. }
  1554. haveManagedIpv4AutoAssignment = true;
  1555. _clearNetworkMemberInfoCache(nwid); // clear cache to prevent IP assignment duplication on many rapid assigns
  1556. break;
  1557. }
  1558. }
  1559. }
  1560. }
  1561. }
  1562. }
  1563. // Issue a certificate of ownership for all static IPs
  1564. if (nc.staticIpCount) {
  1565. nc.certificatesOfOwnership[0] = CertificateOfOwnership(nwid,now,identity.address(),1);
  1566. for(unsigned int i=0;i<nc.staticIpCount;++i)
  1567. nc.certificatesOfOwnership[0].addThing(nc.staticIps[i]);
  1568. nc.certificatesOfOwnership[0].sign(_signingId);
  1569. nc.certificateOfOwnershipCount = 1;
  1570. }
  1571. CertificateOfMembership com(now,credentialtmd,nwid,identity.address());
  1572. if (com.sign(_signingId)) {
  1573. nc.com = com;
  1574. } else {
  1575. _sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_INTERNAL_SERVER_ERROR);
  1576. return;
  1577. }
  1578. if (member != origMember) {
  1579. member["lastModified"] = now;
  1580. Mutex::Lock _l(_db_m);
  1581. _db.put("network",nwids,"member",identity.address().toString(),member);
  1582. }
  1583. _sender->ncSendConfig(nwid,requestPacketId,identity.address(),nc,metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_VERSION,0) < 6);
  1584. }
  1585. void EmbeddedNetworkController::_getNetworkMemberInfo(uint64_t now,uint64_t nwid,_NetworkMemberInfo &nmi)
  1586. {
  1587. char pfx[256];
  1588. Utils::snprintf(pfx,sizeof(pfx),"network/%.16llx/member",nwid);
  1589. {
  1590. Mutex::Lock _l(_nmiCache_m);
  1591. std::map<uint64_t,_NetworkMemberInfo>::iterator c(_nmiCache.find(nwid));
  1592. if ((c != _nmiCache.end())&&((now - c->second.nmiTimestamp) < 1000)) { // a short duration cache but limits CPU use on big networks
  1593. nmi = c->second;
  1594. return;
  1595. }
  1596. }
  1597. {
  1598. Mutex::Lock _l(_db_m);
  1599. _db.filter(pfx,120000,[&nmi,&now](const std::string &n,const json &member) {
  1600. try {
  1601. if (OSUtils::jsonBool(member["authorized"],false)) {
  1602. ++nmi.authorizedMemberCount;
  1603. if (member.count("recentLog")) {
  1604. const json &mlog = member["recentLog"];
  1605. if ((mlog.is_array())&&(mlog.size() > 0)) {
  1606. const json &mlog1 = mlog[0];
  1607. if (mlog1.is_object()) {
  1608. if ((now - OSUtils::jsonInt(mlog1["ts"],0ULL)) < ZT_NETCONF_NODE_ACTIVE_THRESHOLD)
  1609. ++nmi.activeMemberCount;
  1610. }
  1611. }
  1612. }
  1613. if (OSUtils::jsonBool(member["activeBridge"],false)) {
  1614. nmi.activeBridges.insert(Address(Utils::hexStrToU64(OSUtils::jsonString(member["id"],"0000000000").c_str())));
  1615. }
  1616. if (member.count("ipAssignments")) {
  1617. const json &mips = member["ipAssignments"];
  1618. if (mips.is_array()) {
  1619. for(unsigned long i=0;i<mips.size();++i) {
  1620. InetAddress mip(OSUtils::jsonString(mips[i],""));
  1621. if ((mip.ss_family == AF_INET)||(mip.ss_family == AF_INET6))
  1622. nmi.allocatedIps.insert(mip);
  1623. }
  1624. }
  1625. }
  1626. } else {
  1627. nmi.mostRecentDeauthTime = std::max(nmi.mostRecentDeauthTime,OSUtils::jsonInt(member["lastDeauthorizedTime"],0ULL));
  1628. }
  1629. } catch ( ... ) {}
  1630. return true;
  1631. });
  1632. }
  1633. nmi.nmiTimestamp = now;
  1634. {
  1635. Mutex::Lock _l(_nmiCache_m);
  1636. _nmiCache[nwid] = nmi;
  1637. }
  1638. }
  1639. void EmbeddedNetworkController::_pushMemberUpdate(uint64_t now,uint64_t nwid,const nlohmann::json &member)
  1640. {
  1641. try {
  1642. const std::string idstr = member["identity"];
  1643. const std::string mdstr = member["lastRequestMetaData"];
  1644. if ((idstr.length() > 0)&&(mdstr.length() > 0)) {
  1645. const Identity id(idstr);
  1646. bool online;
  1647. {
  1648. Mutex::Lock _l(_lastRequestTime_m);
  1649. std::map< std::pair<uint64_t,uint64_t>,uint64_t >::iterator lrt(_lastRequestTime.find(std::pair<uint64_t,uint64_t>(id.address().toInt(),nwid)));
  1650. online = ( (lrt != _lastRequestTime.end()) && ((now - lrt->second) < ZT_NETWORK_AUTOCONF_DELAY) );
  1651. }
  1652. if (online) {
  1653. Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> *metaData = new Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY>(mdstr.c_str());
  1654. try {
  1655. this->request(nwid,InetAddress(),0,id,*metaData);
  1656. } catch ( ... ) {}
  1657. delete metaData;
  1658. }
  1659. }
  1660. } catch ( ... ) {}
  1661. }
  1662. } // namespace ZeroTier