EmbeddedNetworkController.cpp 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  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 2
  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. _startTime(OSUtils::now()),
  410. _threadsStarted(false),
  411. _db(dbPath),
  412. _node(node)
  413. {
  414. }
  415. EmbeddedNetworkController::~EmbeddedNetworkController()
  416. {
  417. Mutex::Lock _l(_threads_m);
  418. if (_threadsStarted) {
  419. for(int i=0;i<(ZT_EMBEDDEDNETWORKCONTROLLER_BACKGROUND_THREAD_COUNT*2);++i)
  420. _queue.post((_RQEntry *)0);
  421. for(int i=0;i<ZT_EMBEDDEDNETWORKCONTROLLER_BACKGROUND_THREAD_COUNT;++i)
  422. Thread::join(_threads[i]);
  423. }
  424. }
  425. void EmbeddedNetworkController::init(const Identity &signingId,Sender *sender)
  426. {
  427. this->_sender = sender;
  428. this->_signingId = signingId;
  429. }
  430. void EmbeddedNetworkController::request(
  431. uint64_t nwid,
  432. const InetAddress &fromAddr,
  433. uint64_t requestPacketId,
  434. const Identity &identity,
  435. const Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> &metaData)
  436. {
  437. if (((!_signingId)||(!_signingId.hasPrivate()))||(_signingId.address().toInt() != (nwid >> 24))||(!_sender))
  438. return;
  439. {
  440. Mutex::Lock _l(_threads_m);
  441. if (!_threadsStarted) {
  442. for(int i=0;i<ZT_EMBEDDEDNETWORKCONTROLLER_BACKGROUND_THREAD_COUNT;++i)
  443. _threads[i] = Thread::start(this);
  444. }
  445. _threadsStarted = true;
  446. }
  447. _RQEntry *qe = new _RQEntry;
  448. qe->nwid = nwid;
  449. qe->requestPacketId = requestPacketId;
  450. qe->fromAddr = fromAddr;
  451. qe->identity = identity;
  452. qe->metaData = metaData;
  453. _queue.post(qe);
  454. }
  455. unsigned int EmbeddedNetworkController::handleControlPlaneHttpGET(
  456. const std::vector<std::string> &path,
  457. const std::map<std::string,std::string> &urlArgs,
  458. const std::map<std::string,std::string> &headers,
  459. const std::string &body,
  460. std::string &responseBody,
  461. std::string &responseContentType)
  462. {
  463. if ((path.size() > 0)&&(path[0] == "network")) {
  464. if ((path.size() >= 2)&&(path[1].length() == 16)) {
  465. const uint64_t nwid = Utils::hexStrToU64(path[1].c_str());
  466. char nwids[24];
  467. Utils::snprintf(nwids,sizeof(nwids),"%.16llx",(unsigned long long)nwid);
  468. json network;
  469. {
  470. Mutex::Lock _l(_db_m);
  471. network = _db.get("network",nwids);
  472. }
  473. if (!network.size())
  474. return 404;
  475. if (path.size() >= 3) {
  476. if (path[2] == "member") {
  477. if (path.size() >= 4) {
  478. const uint64_t address = Utils::hexStrToU64(path[3].c_str());
  479. json member;
  480. {
  481. Mutex::Lock _l(_db_m);
  482. member = _db.get("network",nwids,"member",Address(address).toString());
  483. }
  484. if (!member.size())
  485. return 404;
  486. _addMemberNonPersistedFields(member,OSUtils::now());
  487. responseBody = OSUtils::jsonDump(member);
  488. responseContentType = "application/json";
  489. return 200;
  490. } else {
  491. Mutex::Lock _l(_db_m);
  492. responseBody = "{";
  493. _db.filter((std::string("network/") + nwids + "/member/"),[&responseBody](const std::string &n,const json &member) {
  494. if ((member.is_object())&&(member.size() > 0)) {
  495. responseBody.append((responseBody.length() == 1) ? "\"" : ",\"");
  496. responseBody.append(OSUtils::jsonString(member["id"],"0"));
  497. responseBody.append("\":");
  498. responseBody.append(OSUtils::jsonString(member["revision"],"0"));
  499. }
  500. return true; // never delete
  501. });
  502. responseBody.push_back('}');
  503. responseContentType = "application/json";
  504. return 200;
  505. }
  506. } // else 404
  507. } else {
  508. const uint64_t now = OSUtils::now();
  509. _NetworkMemberInfo nmi;
  510. _getNetworkMemberInfo(now,nwid,nmi);
  511. _addNetworkNonPersistedFields(network,now,nmi);
  512. responseBody = OSUtils::jsonDump(network);
  513. responseContentType = "application/json";
  514. return 200;
  515. }
  516. } else if (path.size() == 1) {
  517. std::set<std::string> networkIds;
  518. {
  519. Mutex::Lock _l(_db_m);
  520. _db.filter("network/",[&networkIds](const std::string &n,const json &obj) {
  521. if (n.length() == (16 + 8))
  522. networkIds.insert(n.substr(8));
  523. return true; // do not delete
  524. });
  525. }
  526. responseBody.push_back('[');
  527. for(std::set<std::string>::iterator i(networkIds.begin());i!=networkIds.end();++i) {
  528. responseBody.append((responseBody.length() == 1) ? "\"" : ",\"");
  529. responseBody.append(*i);
  530. responseBody.append("\"");
  531. }
  532. responseBody.push_back(']');
  533. responseContentType = "application/json";
  534. return 200;
  535. } // else 404
  536. } else {
  537. char tmp[4096];
  538. 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());
  539. responseBody = tmp;
  540. responseContentType = "application/json";
  541. return 200;
  542. }
  543. return 404;
  544. }
  545. unsigned int EmbeddedNetworkController::handleControlPlaneHttpPOST(
  546. const std::vector<std::string> &path,
  547. const std::map<std::string,std::string> &urlArgs,
  548. const std::map<std::string,std::string> &headers,
  549. const std::string &body,
  550. std::string &responseBody,
  551. std::string &responseContentType)
  552. {
  553. if (path.empty())
  554. return 404;
  555. json b;
  556. try {
  557. b = OSUtils::jsonParse(body);
  558. if (!b.is_object()) {
  559. responseBody = "{ \"message\": \"body is not a JSON object\" }";
  560. responseContentType = "application/json";
  561. return 400;
  562. }
  563. } catch ( ... ) {
  564. responseBody = "{ \"message\": \"body JSON is invalid\" }";
  565. responseContentType = "application/json";
  566. return 400;
  567. }
  568. const uint64_t now = OSUtils::now();
  569. if (path[0] == "network") {
  570. if ((path.size() >= 2)&&(path[1].length() == 16)) {
  571. uint64_t nwid = Utils::hexStrToU64(path[1].c_str());
  572. char nwids[24];
  573. Utils::snprintf(nwids,sizeof(nwids),"%.16llx",(unsigned long long)nwid);
  574. if (path.size() >= 3) {
  575. if ((path.size() == 4)&&(path[2] == "member")&&(path[3].length() == 10)) {
  576. uint64_t address = Utils::hexStrToU64(path[3].c_str());
  577. char addrs[24];
  578. Utils::snprintf(addrs,sizeof(addrs),"%.10llx",(unsigned long long)address);
  579. json member;
  580. {
  581. Mutex::Lock _l(_db_m);
  582. member = _db.get("network",nwids,"member",Address(address).toString());
  583. }
  584. json origMember(member); // for detecting changes
  585. _initMember(member);
  586. try {
  587. if (b.count("activeBridge")) member["activeBridge"] = OSUtils::jsonBool(b["activeBridge"],false);
  588. if (b.count("noAutoAssignIps")) member["noAutoAssignIps"] = OSUtils::jsonBool(b["noAutoAssignIps"],false);
  589. if (b.count("authorized")) {
  590. const bool newAuth = OSUtils::jsonBool(b["authorized"],false);
  591. if (newAuth != OSUtils::jsonBool(member["authorized"],false)) {
  592. member["authorized"] = newAuth;
  593. member[((newAuth) ? "lastAuthorizedTime" : "lastDeauthorizedTime")] = now;
  594. json ah;
  595. ah["a"] = newAuth;
  596. ah["by"] = "api";
  597. ah["ts"] = now;
  598. ah["ct"] = json();
  599. ah["c"] = json();
  600. member["authHistory"].push_back(ah);
  601. // Member is being de-authorized, so spray Revocation objects to all online members
  602. if (!newAuth) {
  603. _clearNetworkMemberInfoCache(nwid);
  604. Revocation rev((uint32_t)_node->prng(),nwid,0,now,ZT_REVOCATION_FLAG_FAST_PROPAGATE,Address(address),Revocation::CREDENTIAL_TYPE_COM);
  605. rev.sign(_signingId);
  606. Mutex::Lock _l(_lastRequestTime_m);
  607. for(std::map< std::pair<uint64_t,uint64_t>,uint64_t >::iterator i(_lastRequestTime.begin());i!=_lastRequestTime.end();++i) {
  608. if ((now - i->second) < ZT_NETWORK_AUTOCONF_DELAY)
  609. _node->ncSendRevocation(Address(i->first.first),rev);
  610. }
  611. }
  612. }
  613. }
  614. if (b.count("ipAssignments")) {
  615. json &ipa = b["ipAssignments"];
  616. if (ipa.is_array()) {
  617. json mipa(json::array());
  618. for(unsigned long i=0;i<ipa.size();++i) {
  619. std::string ips = ipa[i];
  620. InetAddress ip(ips);
  621. if ((ip.ss_family == AF_INET)||(ip.ss_family == AF_INET6)) {
  622. mipa.push_back(ip.toIpString());
  623. }
  624. }
  625. member["ipAssignments"] = mipa;
  626. }
  627. }
  628. if (b.count("tags")) {
  629. json &tags = b["tags"];
  630. if (tags.is_array()) {
  631. std::map<uint64_t,uint64_t> mtags;
  632. for(unsigned long i=0;i<tags.size();++i) {
  633. json &tag = tags[i];
  634. if ((tag.is_array())&&(tag.size() == 2))
  635. mtags[OSUtils::jsonInt(tag[0],0ULL) & 0xffffffffULL] = OSUtils::jsonInt(tag[1],0ULL) & 0xffffffffULL;
  636. }
  637. json mtagsa = json::array();
  638. for(std::map<uint64_t,uint64_t>::iterator t(mtags.begin());t!=mtags.end();++t) {
  639. json ta = json::array();
  640. ta.push_back(t->first);
  641. ta.push_back(t->second);
  642. mtagsa.push_back(ta);
  643. }
  644. member["tags"] = mtagsa;
  645. }
  646. }
  647. if (b.count("capabilities")) {
  648. json &capabilities = b["capabilities"];
  649. if (capabilities.is_array()) {
  650. json mcaps = json::array();
  651. for(unsigned long i=0;i<capabilities.size();++i) {
  652. mcaps.push_back(OSUtils::jsonInt(capabilities[i],0ULL));
  653. }
  654. std::sort(mcaps.begin(),mcaps.end());
  655. mcaps.erase(std::unique(mcaps.begin(),mcaps.end()),mcaps.end());
  656. member["capabilities"] = mcaps;
  657. }
  658. }
  659. } catch ( ... ) {
  660. responseBody = "{ \"message\": \"exception while processing parameters in JSON body\" }";
  661. responseContentType = "application/json";
  662. return 400;
  663. }
  664. member["id"] = addrs;
  665. member["address"] = addrs; // legacy
  666. member["nwid"] = nwids;
  667. if (member != origMember) {
  668. member["lastModified"] = now;
  669. json &revj = member["revision"];
  670. member["revision"] = (revj.is_number() ? ((uint64_t)revj + 1ULL) : 1ULL);
  671. {
  672. Mutex::Lock _l(_db_m);
  673. _db.put("network",nwids,"member",Address(address).toString(),member);
  674. }
  675. _pushMemberUpdate(now,nwid,member);
  676. }
  677. // Add non-persisted fields
  678. member["clock"] = now;
  679. responseBody = OSUtils::jsonDump(member);
  680. responseContentType = "application/json";
  681. return 200;
  682. } else if ((path.size() == 3)&&(path[2] == "test")) {
  683. Mutex::Lock _l(_tests_m);
  684. _tests.push_back(ZT_CircuitTest());
  685. ZT_CircuitTest *const test = &(_tests.back());
  686. memset(test,0,sizeof(ZT_CircuitTest));
  687. Utils::getSecureRandom(&(test->testId),sizeof(test->testId));
  688. test->credentialNetworkId = nwid;
  689. test->ptr = (void *)this;
  690. json hops = b["hops"];
  691. if (hops.is_array()) {
  692. for(unsigned long i=0;i<hops.size();++i) {
  693. json &hops2 = hops[i];
  694. if (hops2.is_array()) {
  695. for(unsigned long j=0;j<hops2.size();++j) {
  696. std::string s = hops2[j];
  697. test->hops[test->hopCount].addresses[test->hops[test->hopCount].breadth++] = Utils::hexStrToU64(s.c_str()) & 0xffffffffffULL;
  698. }
  699. ++test->hopCount;
  700. } else if (hops2.is_string()) {
  701. std::string s = hops2;
  702. test->hops[test->hopCount].addresses[test->hops[test->hopCount].breadth++] = Utils::hexStrToU64(s.c_str()) & 0xffffffffffULL;
  703. ++test->hopCount;
  704. }
  705. }
  706. }
  707. test->reportAtEveryHop = (OSUtils::jsonBool(b["reportAtEveryHop"],true) ? 1 : 0);
  708. if (!test->hopCount) {
  709. _tests.pop_back();
  710. responseBody = "{ \"message\": \"a test must contain at least one hop\" }";
  711. responseContentType = "application/json";
  712. return 400;
  713. }
  714. test->timestamp = OSUtils::now();
  715. if (_node) {
  716. _node->circuitTestBegin((void *)0,test,&(EmbeddedNetworkController::_circuitTestCallback));
  717. } else {
  718. _tests.pop_back();
  719. return 500;
  720. }
  721. char json[512];
  722. Utils::snprintf(json,sizeof(json),"{\"testId\":\"%.16llx\",\"timestamp\":%llu}",test->testId,test->timestamp);
  723. responseBody = json;
  724. responseContentType = "application/json";
  725. return 200;
  726. } // else 404
  727. } else {
  728. // POST to network ID
  729. json network;
  730. {
  731. Mutex::Lock _l(_db_m);
  732. // Magic ID ending with ______ picks a random unused network ID
  733. if (path[1].substr(10) == "______") {
  734. nwid = 0;
  735. uint64_t nwidPrefix = (Utils::hexStrToU64(path[1].substr(0,10).c_str()) << 24) & 0xffffffffff000000ULL;
  736. uint64_t nwidPostfix = 0;
  737. for(unsigned long k=0;k<100000;++k) { // sanity limit on trials
  738. Utils::getSecureRandom(&nwidPostfix,sizeof(nwidPostfix));
  739. uint64_t tryNwid = nwidPrefix | (nwidPostfix & 0xffffffULL);
  740. if ((tryNwid & 0xffffffULL) == 0ULL) tryNwid |= 1ULL;
  741. Utils::snprintf(nwids,sizeof(nwids),"%.16llx",(unsigned long long)tryNwid);
  742. if (_db.get("network",nwids).size() <= 0) {
  743. nwid = tryNwid;
  744. break;
  745. }
  746. }
  747. if (!nwid)
  748. return 503;
  749. }
  750. network = _db.get("network",nwids);
  751. }
  752. json origNetwork(network); // for detecting changes
  753. _initNetwork(network);
  754. try {
  755. if (b.count("name")) network["name"] = OSUtils::jsonString(b["name"],"");
  756. if (b.count("private")) network["private"] = OSUtils::jsonBool(b["private"],true);
  757. if (b.count("enableBroadcast")) network["enableBroadcast"] = OSUtils::jsonBool(b["enableBroadcast"],false);
  758. if (b.count("allowPassiveBridging")) network["allowPassiveBridging"] = OSUtils::jsonBool(b["allowPassiveBridging"],false);
  759. if (b.count("multicastLimit")) network["multicastLimit"] = OSUtils::jsonInt(b["multicastLimit"],32ULL);
  760. if (b.count("v4AssignMode")) {
  761. json nv4m;
  762. json &v4m = b["v4AssignMode"];
  763. if (v4m.is_string()) { // backward compatibility
  764. nv4m["zt"] = (OSUtils::jsonString(v4m,"") == "zt");
  765. } else if (v4m.is_object()) {
  766. nv4m["zt"] = OSUtils::jsonBool(v4m["zt"],false);
  767. } else nv4m["zt"] = false;
  768. network["v4AssignMode"] = nv4m;
  769. }
  770. if (b.count("v6AssignMode")) {
  771. json nv6m;
  772. json &v6m = b["v6AssignMode"];
  773. if (!nv6m.is_object()) nv6m = json::object();
  774. if (v6m.is_string()) { // backward compatibility
  775. std::vector<std::string> v6ms(OSUtils::split(OSUtils::jsonString(v6m,"").c_str(),",","",""));
  776. std::sort(v6ms.begin(),v6ms.end());
  777. v6ms.erase(std::unique(v6ms.begin(),v6ms.end()),v6ms.end());
  778. nv6m["rfc4193"] = false;
  779. nv6m["zt"] = false;
  780. nv6m["6plane"] = false;
  781. for(std::vector<std::string>::iterator i(v6ms.begin());i!=v6ms.end();++i) {
  782. if (*i == "rfc4193")
  783. nv6m["rfc4193"] = true;
  784. else if (*i == "zt")
  785. nv6m["zt"] = true;
  786. else if (*i == "6plane")
  787. nv6m["6plane"] = true;
  788. }
  789. } else if (v6m.is_object()) {
  790. if (v6m.count("rfc4193")) nv6m["rfc4193"] = OSUtils::jsonBool(v6m["rfc4193"],false);
  791. if (v6m.count("zt")) nv6m["zt"] = OSUtils::jsonBool(v6m["zt"],false);
  792. if (v6m.count("6plane")) nv6m["6plane"] = OSUtils::jsonBool(v6m["6plane"],false);
  793. } else {
  794. nv6m["rfc4193"] = false;
  795. nv6m["zt"] = false;
  796. nv6m["6plane"] = false;
  797. }
  798. network["v6AssignMode"] = nv6m;
  799. }
  800. if (b.count("routes")) {
  801. json &rts = b["routes"];
  802. if (rts.is_array()) {
  803. json nrts = json::array();
  804. for(unsigned long i=0;i<rts.size();++i) {
  805. json &rt = rts[i];
  806. if (rt.is_object()) {
  807. json &target = rt["target"];
  808. json &via = rt["via"];
  809. if (target.is_string()) {
  810. InetAddress t(target.get<std::string>());
  811. InetAddress v;
  812. if (via.is_string()) v.fromString(via.get<std::string>());
  813. if ( ((t.ss_family == AF_INET)||(t.ss_family == AF_INET6)) && (t.netmaskBitsValid()) ) {
  814. json tmp;
  815. tmp["target"] = t.toString();
  816. if (v.ss_family == t.ss_family)
  817. tmp["via"] = v.toIpString();
  818. else tmp["via"] = json();
  819. nrts.push_back(tmp);
  820. }
  821. }
  822. }
  823. }
  824. network["routes"] = nrts;
  825. }
  826. }
  827. if (b.count("ipAssignmentPools")) {
  828. json &ipp = b["ipAssignmentPools"];
  829. if (ipp.is_array()) {
  830. json nipp = json::array();
  831. for(unsigned long i=0;i<ipp.size();++i) {
  832. json &ip = ipp[i];
  833. if ((ip.is_object())&&(ip.count("ipRangeStart"))&&(ip.count("ipRangeEnd"))) {
  834. InetAddress f(OSUtils::jsonString(ip["ipRangeStart"],""));
  835. InetAddress t(OSUtils::jsonString(ip["ipRangeEnd"],""));
  836. if ( ((f.ss_family == AF_INET)||(f.ss_family == AF_INET6)) && (f.ss_family == t.ss_family) ) {
  837. json tmp = json::object();
  838. tmp["ipRangeStart"] = f.toIpString();
  839. tmp["ipRangeEnd"] = t.toIpString();
  840. nipp.push_back(tmp);
  841. }
  842. }
  843. }
  844. network["ipAssignmentPools"] = nipp;
  845. }
  846. }
  847. if (b.count("rules")) {
  848. json &rules = b["rules"];
  849. if (rules.is_array()) {
  850. json nrules = json::array();
  851. for(unsigned long i=0;i<rules.size();++i) {
  852. json &rule = rules[i];
  853. if (rule.is_object()) {
  854. ZT_VirtualNetworkRule ztr;
  855. if (_parseRule(rule,ztr))
  856. nrules.push_back(_renderRule(ztr));
  857. }
  858. }
  859. network["rules"] = nrules;
  860. }
  861. }
  862. if (b.count("authTokens")) {
  863. json &authTokens = b["authTokens"];
  864. if (authTokens.is_array()) {
  865. json nat = json::array();
  866. for(unsigned long i=0;i<authTokens.size();++i) {
  867. json &token = authTokens[i];
  868. if (token.is_object()) {
  869. std::string tstr = token["token"];
  870. if (tstr.length() > 0) {
  871. json t = json::object();
  872. t["token"] = tstr;
  873. t["expires"] = OSUtils::jsonInt(token["expires"],0ULL);
  874. t["maxUsesPerMember"] = OSUtils::jsonInt(token["maxUsesPerMember"],0ULL);
  875. nat.push_back(t);
  876. }
  877. }
  878. }
  879. network["authTokens"] = nat;
  880. }
  881. }
  882. if (b.count("capabilities")) {
  883. json &capabilities = b["capabilities"];
  884. if (capabilities.is_array()) {
  885. std::map< uint64_t,json > ncaps;
  886. for(unsigned long i=0;i<capabilities.size();++i) {
  887. json &cap = capabilities[i];
  888. if (cap.is_object()) {
  889. json ncap = json::object();
  890. const uint64_t capId = OSUtils::jsonInt(cap["id"],0ULL);
  891. ncap["id"] = capId;
  892. ncap["default"] = OSUtils::jsonBool(cap["default"],false);
  893. json &rules = cap["rules"];
  894. json nrules = json::array();
  895. if (rules.is_array()) {
  896. for(unsigned long i=0;i<rules.size();++i) {
  897. json &rule = rules[i];
  898. if (rule.is_object()) {
  899. ZT_VirtualNetworkRule ztr;
  900. if (_parseRule(rule,ztr))
  901. nrules.push_back(_renderRule(ztr));
  902. }
  903. }
  904. }
  905. ncap["rules"] = nrules;
  906. ncaps[capId] = ncap;
  907. }
  908. }
  909. json ncapsa = json::array();
  910. for(std::map< uint64_t,json >::iterator c(ncaps.begin());c!=ncaps.end();++c)
  911. ncapsa.push_back(c->second);
  912. network["capabilities"] = ncapsa;
  913. }
  914. }
  915. if (b.count("tags")) {
  916. json &tags = b["tags"];
  917. if (tags.is_array()) {
  918. std::map< uint64_t,json > ntags;
  919. for(unsigned long i=0;i<tags.size();++i) {
  920. json &tag = tags[i];
  921. if (tag.is_object()) {
  922. json ntag = json::object();
  923. const uint64_t tagId = OSUtils::jsonInt(tag["id"],0ULL);
  924. ntag["id"] = tagId;
  925. json &dfl = tag["default"];
  926. if (dfl.is_null())
  927. ntag["default"] = dfl;
  928. else ntag["default"] = OSUtils::jsonInt(dfl,0ULL);
  929. ntags[tagId] = ntag;
  930. }
  931. }
  932. json ntagsa = json::array();
  933. for(std::map< uint64_t,json >::iterator t(ntags.begin());t!=ntags.end();++t)
  934. ntagsa.push_back(t->second);
  935. network["tags"] = ntagsa;
  936. }
  937. }
  938. } catch ( ... ) {
  939. responseBody = "{ \"message\": \"exception occurred while parsing body variables\" }";
  940. responseContentType = "application/json";
  941. return 400;
  942. }
  943. network["id"] = nwids;
  944. network["nwid"] = nwids; // legacy
  945. if (network != origNetwork) {
  946. json &revj = network["revision"];
  947. network["revision"] = (revj.is_number() ? ((uint64_t)revj + 1ULL) : 1ULL);
  948. network["lastModified"] = now;
  949. {
  950. Mutex::Lock _l(_db_m);
  951. _db.put("network",nwids,network);
  952. }
  953. // Send an update to all members of the network
  954. _db.filter((std::string("network/") + nwids + "/member/"),[this,&now,&nwid](const std::string &n,const json &obj) {
  955. _pushMemberUpdate(now,nwid,obj);
  956. return true; // do not delete
  957. });
  958. }
  959. _NetworkMemberInfo nmi;
  960. _getNetworkMemberInfo(now,nwid,nmi);
  961. _addNetworkNonPersistedFields(network,now,nmi);
  962. responseBody = OSUtils::jsonDump(network);
  963. responseContentType = "application/json";
  964. return 200;
  965. } // else 404
  966. } // else 404
  967. } else if (path[0] == "ping") {
  968. json testRec;
  969. const uint64_t now = OSUtils::now();
  970. testRec["clock"] = now;
  971. testRec["uptime"] = (now - _startTime);
  972. testRec["content"] = b;
  973. responseBody = OSUtils::jsonDump(testRec);
  974. _db.writeRaw("pong",responseBody);
  975. responseContentType = "application/json";
  976. return 200;
  977. }
  978. return 404;
  979. }
  980. unsigned int EmbeddedNetworkController::handleControlPlaneHttpDELETE(
  981. const std::vector<std::string> &path,
  982. const std::map<std::string,std::string> &urlArgs,
  983. const std::map<std::string,std::string> &headers,
  984. const std::string &body,
  985. std::string &responseBody,
  986. std::string &responseContentType)
  987. {
  988. if (path.empty())
  989. return 404;
  990. if (path[0] == "network") {
  991. if ((path.size() >= 2)&&(path[1].length() == 16)) {
  992. const uint64_t nwid = Utils::hexStrToU64(path[1].c_str());
  993. char nwids[24];
  994. Utils::snprintf(nwids,sizeof(nwids),"%.16llx",nwid);
  995. json network;
  996. {
  997. Mutex::Lock _l(_db_m);
  998. network = _db.get("network",nwids);
  999. }
  1000. if (!network.size())
  1001. return 404;
  1002. if (path.size() >= 3) {
  1003. if ((path.size() == 4)&&(path[2] == "member")&&(path[3].length() == 10)) {
  1004. const uint64_t address = Utils::hexStrToU64(path[3].c_str());
  1005. Mutex::Lock _l(_db_m);
  1006. json member = _db.get("network",nwids,"member",Address(address).toString());
  1007. _db.erase("network",nwids,"member",Address(address).toString());
  1008. if (!member.size())
  1009. return 404;
  1010. responseBody = OSUtils::jsonDump(member);
  1011. responseContentType = "application/json";
  1012. return 200;
  1013. }
  1014. } else {
  1015. Mutex::Lock _l(_db_m);
  1016. std::string pfx("network/");
  1017. pfx.append(nwids);
  1018. _db.filter(pfx,[](const std::string &n,const json &obj) {
  1019. return false; // delete
  1020. });
  1021. Mutex::Lock _l2(_nmiCache_m);
  1022. _nmiCache.erase(nwid);
  1023. responseBody = OSUtils::jsonDump(network);
  1024. responseContentType = "application/json";
  1025. return 200;
  1026. }
  1027. } // else 404
  1028. } // else 404
  1029. return 404;
  1030. }
  1031. void EmbeddedNetworkController::threadMain()
  1032. throw()
  1033. {
  1034. uint64_t lastCircuitTestCheck = 0;
  1035. for(;;) {
  1036. _RQEntry *const qe = _queue.get(); // waits on next request
  1037. if (!qe) break; // enqueue a NULL to terminate threads
  1038. try {
  1039. _request(qe->nwid,qe->fromAddr,qe->requestPacketId,qe->identity,qe->metaData);
  1040. } catch ( ... ) {}
  1041. delete qe;
  1042. uint64_t now = OSUtils::now();
  1043. if ((now - lastCircuitTestCheck) > ZT_EMBEDDEDNETWORKCONTROLLER_CIRCUIT_TEST_EXPIRATION) {
  1044. lastCircuitTestCheck = now;
  1045. Mutex::Lock _l(_tests_m);
  1046. for(std::list< ZT_CircuitTest >::iterator i(_tests.begin());i!=_tests.end();) {
  1047. if ((now - i->timestamp) > ZT_EMBEDDEDNETWORKCONTROLLER_CIRCUIT_TEST_EXPIRATION) {
  1048. _node->circuitTestEnd(&(*i));
  1049. _tests.erase(i++);
  1050. } else ++i;
  1051. }
  1052. }
  1053. }
  1054. }
  1055. void EmbeddedNetworkController::_circuitTestCallback(ZT_Node *node,ZT_CircuitTest *test,const ZT_CircuitTestReport *report)
  1056. {
  1057. char tmp[1024],id[128];
  1058. EmbeddedNetworkController *const self = reinterpret_cast<EmbeddedNetworkController *>(test->ptr);
  1059. if ((!test)||(!report)||(!test->credentialNetworkId)) return; // sanity check
  1060. const uint64_t now = OSUtils::now();
  1061. Utils::snprintf(id,sizeof(id),"network/%.16llx/test/%.16llx-%.16llx-%.10llx-%.10llx",test->credentialNetworkId,test->testId,now,report->upstream,report->current);
  1062. Utils::snprintf(tmp,sizeof(tmp),
  1063. "{\"id\": \"%s\","
  1064. "\"timestamp\": %llu,"
  1065. "\"networkId\": \"%.16llx\","
  1066. "\"testId\": \"%.16llx\","
  1067. "\"upstream\": \"%.10llx\","
  1068. "\"current\": \"%.10llx\","
  1069. "\"receivedTimestamp\": %llu,"
  1070. "\"sourcePacketId\": \"%.16llx\","
  1071. "\"flags\": %llu,"
  1072. "\"sourcePacketHopCount\": %u,"
  1073. "\"errorCode\": %u,"
  1074. "\"vendor\": %d,"
  1075. "\"protocolVersion\": %u,"
  1076. "\"majorVersion\": %u,"
  1077. "\"minorVersion\": %u,"
  1078. "\"revision\": %u,"
  1079. "\"platform\": %d,"
  1080. "\"architecture\": %d,"
  1081. "\"receivedOnLocalAddress\": \"%s\","
  1082. "\"receivedFromRemoteAddress\": \"%s\","
  1083. "\"receivedFromLinkQuality\": %f}",
  1084. id + 30, // last bit only, not leading path
  1085. (unsigned long long)test->timestamp,
  1086. (unsigned long long)test->credentialNetworkId,
  1087. (unsigned long long)test->testId,
  1088. (unsigned long long)report->upstream,
  1089. (unsigned long long)report->current,
  1090. (unsigned long long)now,
  1091. (unsigned long long)report->sourcePacketId,
  1092. (unsigned long long)report->flags,
  1093. report->sourcePacketHopCount,
  1094. report->errorCode,
  1095. (int)report->vendor,
  1096. report->protocolVersion,
  1097. report->majorVersion,
  1098. report->minorVersion,
  1099. report->revision,
  1100. (int)report->platform,
  1101. (int)report->architecture,
  1102. reinterpret_cast<const InetAddress *>(&(report->receivedOnLocalAddress))->toString().c_str(),
  1103. reinterpret_cast<const InetAddress *>(&(report->receivedFromRemoteAddress))->toString().c_str(),
  1104. ((double)report->receivedFromLinkQuality / (double)ZT_PATH_LINK_QUALITY_MAX));
  1105. Mutex::Lock _l(self->_db_m);
  1106. self->_db.writeRaw(id,std::string(tmp));
  1107. }
  1108. void EmbeddedNetworkController::_request(
  1109. uint64_t nwid,
  1110. const InetAddress &fromAddr,
  1111. uint64_t requestPacketId,
  1112. const Identity &identity,
  1113. const Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> &metaData)
  1114. {
  1115. if (((!_signingId)||(!_signingId.hasPrivate()))||(_signingId.address().toInt() != (nwid >> 24))||(!_sender))
  1116. return;
  1117. const uint64_t now = OSUtils::now();
  1118. if (requestPacketId) {
  1119. Mutex::Lock _l(_lastRequestTime_m);
  1120. uint64_t &lrt = _lastRequestTime[std::pair<uint64_t,uint64_t>(identity.address().toInt(),nwid)];
  1121. if ((now - lrt) <= ZT_NETCONF_MIN_REQUEST_PERIOD)
  1122. return;
  1123. lrt = now;
  1124. }
  1125. char nwids[24];
  1126. Utils::snprintf(nwids,sizeof(nwids),"%.16llx",nwid);
  1127. json network;
  1128. json member;
  1129. {
  1130. Mutex::Lock _l(_db_m);
  1131. network = _db.get("network",nwids);
  1132. member = _db.get("network",nwids,"member",identity.address().toString());
  1133. }
  1134. if (!network.size()) {
  1135. _sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_OBJECT_NOT_FOUND);
  1136. return;
  1137. }
  1138. const bool newMember = (member.size() == 0);
  1139. json origMember(member); // for detecting modification later
  1140. _initMember(member);
  1141. {
  1142. std::string haveIdStr(OSUtils::jsonString(member["identity"],""));
  1143. if (haveIdStr.length() > 0) {
  1144. // If we already know this member's identity perform a full compare. This prevents
  1145. // a "collision" from being able to auth onto our network in place of an already
  1146. // known member.
  1147. try {
  1148. if (Identity(haveIdStr.c_str()) != identity) {
  1149. _sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_ACCESS_DENIED);
  1150. return;
  1151. }
  1152. } catch ( ... ) {
  1153. _sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_ACCESS_DENIED);
  1154. return;
  1155. }
  1156. } else {
  1157. // If we do not yet know this member's identity, learn it.
  1158. member["identity"] = identity.toString(false);
  1159. }
  1160. }
  1161. // These are always the same, but make sure they are set
  1162. member["id"] = identity.address().toString();
  1163. member["address"] = member["id"];
  1164. member["nwid"] = nwids;
  1165. // Determine whether and how member is authorized
  1166. const char *authorizedBy = (const char *)0;
  1167. bool autoAuthorized = false;
  1168. json autoAuthCredentialType,autoAuthCredential;
  1169. if (OSUtils::jsonBool(member["authorized"],false)) {
  1170. authorizedBy = "memberIsAuthorized";
  1171. } else if (!OSUtils::jsonBool(network["private"],true)) {
  1172. authorizedBy = "networkIsPublic";
  1173. json &ahist = member["authHistory"];
  1174. if ((!ahist.is_array())||(ahist.size() == 0))
  1175. autoAuthorized = true;
  1176. } else {
  1177. char presentedAuth[512];
  1178. if (metaData.get(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_AUTH,presentedAuth,sizeof(presentedAuth)) > 0) {
  1179. presentedAuth[511] = (char)0; // sanity check
  1180. // Check for bearer token presented by member
  1181. if ((strlen(presentedAuth) > 6)&&(!strncmp(presentedAuth,"token:",6))) {
  1182. const char *const presentedToken = presentedAuth + 6;
  1183. json &authTokens = network["authTokens"];
  1184. if (authTokens.is_array()) {
  1185. for(unsigned long i=0;i<authTokens.size();++i) {
  1186. json &token = authTokens[i];
  1187. if (token.is_object()) {
  1188. const uint64_t expires = OSUtils::jsonInt(token["expires"],0ULL);
  1189. const uint64_t maxUses = OSUtils::jsonInt(token["maxUsesPerMember"],0ULL);
  1190. std::string tstr = OSUtils::jsonString(token["token"],"");
  1191. if (((expires == 0ULL)||(expires > now))&&(tstr == presentedToken)) {
  1192. bool usable = (maxUses == 0);
  1193. if (!usable) {
  1194. uint64_t useCount = 0;
  1195. json &ahist = member["authHistory"];
  1196. if (ahist.is_array()) {
  1197. for(unsigned long j=0;j<ahist.size();++j) {
  1198. json &ah = ahist[j];
  1199. if ((OSUtils::jsonString(ah["ct"],"") == "token")&&(OSUtils::jsonString(ah["c"],"") == tstr)&&(OSUtils::jsonBool(ah["a"],false)))
  1200. ++useCount;
  1201. }
  1202. }
  1203. usable = (useCount < maxUses);
  1204. }
  1205. if (usable) {
  1206. authorizedBy = "token";
  1207. autoAuthorized = true;
  1208. autoAuthCredentialType = "token";
  1209. autoAuthCredential = tstr;
  1210. }
  1211. }
  1212. }
  1213. }
  1214. }
  1215. }
  1216. }
  1217. }
  1218. // If we auto-authorized, update member record
  1219. if ((autoAuthorized)&&(authorizedBy)) {
  1220. member["authorized"] = true;
  1221. member["lastAuthorizedTime"] = now;
  1222. json ah;
  1223. ah["a"] = true;
  1224. ah["by"] = authorizedBy;
  1225. ah["ts"] = now;
  1226. ah["ct"] = autoAuthCredentialType;
  1227. ah["c"] = autoAuthCredential;
  1228. member["authHistory"].push_back(ah);
  1229. json &revj = member["revision"];
  1230. member["revision"] = (revj.is_number() ? ((uint64_t)revj + 1ULL) : 1ULL);
  1231. }
  1232. // Log this request
  1233. if (requestPacketId) { // only log if this is a request, not for generated pushes
  1234. json rlEntry = json::object();
  1235. rlEntry["ts"] = now;
  1236. rlEntry["auth"] = (authorizedBy) ? true : false;
  1237. rlEntry["authBy"] = (authorizedBy) ? authorizedBy : "";
  1238. rlEntry["vMajor"] = metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_NODE_MAJOR_VERSION,0);
  1239. rlEntry["vMinor"] = metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_NODE_MINOR_VERSION,0);
  1240. rlEntry["vRev"] = metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_NODE_REVISION,0);
  1241. rlEntry["vProto"] = metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_PROTOCOL_VERSION,0);
  1242. if (fromAddr)
  1243. rlEntry["fromAddr"] = fromAddr.toString();
  1244. json recentLog = json::array();
  1245. recentLog.push_back(rlEntry);
  1246. json &oldLog = member["recentLog"];
  1247. if (oldLog.is_array()) {
  1248. for(unsigned long i=0;i<oldLog.size();++i) {
  1249. recentLog.push_back(oldLog[i]);
  1250. if (recentLog.size() >= ZT_NETCONF_DB_MEMBER_HISTORY_LENGTH)
  1251. break;
  1252. }
  1253. }
  1254. member["recentLog"] = recentLog;
  1255. // Also only do this on real requests
  1256. member["lastRequestMetaData"] = metaData.data();
  1257. }
  1258. // If they are not authorized, STOP!
  1259. if (!authorizedBy) {
  1260. if (origMember != member) {
  1261. member["lastModified"] = now;
  1262. Mutex::Lock _l(_db_m);
  1263. _db.put("network",nwids,"member",identity.address().toString(),member);
  1264. }
  1265. _sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_ACCESS_DENIED);
  1266. return;
  1267. }
  1268. // -------------------------------------------------------------------------
  1269. // If we made it this far, they are authorized.
  1270. // -------------------------------------------------------------------------
  1271. NetworkConfig nc;
  1272. _NetworkMemberInfo nmi;
  1273. _getNetworkMemberInfo(now,nwid,nmi);
  1274. uint64_t credentialtmd = ZT_NETWORKCONFIG_DEFAULT_CREDENTIAL_TIME_MAX_MAX_DELTA;
  1275. if (now > nmi.mostRecentDeauthTime) {
  1276. // If we recently de-authorized a member, shrink credential TTL/max delta to
  1277. // be below the threshold required to exclude it. Cap this to a min/max to
  1278. // prevent jitter or absurdly large values.
  1279. const uint64_t deauthWindow = now - nmi.mostRecentDeauthTime;
  1280. if (deauthWindow < ZT_NETWORKCONFIG_DEFAULT_CREDENTIAL_TIME_MIN_MAX_DELTA) {
  1281. credentialtmd = ZT_NETWORKCONFIG_DEFAULT_CREDENTIAL_TIME_MIN_MAX_DELTA;
  1282. } else if (deauthWindow < (ZT_NETWORKCONFIG_DEFAULT_CREDENTIAL_TIME_MAX_MAX_DELTA + 5000ULL)) {
  1283. credentialtmd = deauthWindow - 5000ULL;
  1284. }
  1285. }
  1286. nc.networkId = nwid;
  1287. nc.type = OSUtils::jsonBool(network["private"],true) ? ZT_NETWORK_TYPE_PRIVATE : ZT_NETWORK_TYPE_PUBLIC;
  1288. nc.timestamp = now;
  1289. nc.credentialTimeMaxDelta = credentialtmd;
  1290. nc.revision = OSUtils::jsonInt(network["revision"],0ULL);
  1291. nc.issuedTo = identity.address();
  1292. if (OSUtils::jsonBool(network["enableBroadcast"],true)) nc.flags |= ZT_NETWORKCONFIG_FLAG_ENABLE_BROADCAST;
  1293. if (OSUtils::jsonBool(network["allowPassiveBridging"],false)) nc.flags |= ZT_NETWORKCONFIG_FLAG_ALLOW_PASSIVE_BRIDGING;
  1294. Utils::scopy(nc.name,sizeof(nc.name),OSUtils::jsonString(network["name"],"").c_str());
  1295. nc.multicastLimit = (unsigned int)OSUtils::jsonInt(network["multicastLimit"],32ULL);
  1296. for(std::set<Address>::const_iterator ab(nmi.activeBridges.begin());ab!=nmi.activeBridges.end();++ab) {
  1297. nc.addSpecialist(*ab,ZT_NETWORKCONFIG_SPECIALIST_TYPE_ACTIVE_BRIDGE);
  1298. }
  1299. json &v4AssignMode = network["v4AssignMode"];
  1300. json &v6AssignMode = network["v6AssignMode"];
  1301. json &ipAssignmentPools = network["ipAssignmentPools"];
  1302. json &routes = network["routes"];
  1303. json &rules = network["rules"];
  1304. json &capabilities = network["capabilities"];
  1305. json &tags = network["tags"];
  1306. json &memberCapabilities = member["capabilities"];
  1307. json &memberTags = member["tags"];
  1308. if (metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_RULES_ENGINE_REV,0) <= 0) {
  1309. // Old versions with no rules engine support get an allow everything rule.
  1310. // Since rules are enforced bidirectionally, newer versions *will* still
  1311. // enforce rules on the inbound side.
  1312. nc.ruleCount = 1;
  1313. nc.rules[0].t = ZT_NETWORK_RULE_ACTION_ACCEPT;
  1314. } else {
  1315. if (rules.is_array()) {
  1316. for(unsigned long i=0;i<rules.size();++i) {
  1317. if (nc.ruleCount >= ZT_MAX_NETWORK_RULES)
  1318. break;
  1319. if (_parseRule(rules[i],nc.rules[nc.ruleCount]))
  1320. ++nc.ruleCount;
  1321. }
  1322. }
  1323. std::map< uint64_t,json * > capsById;
  1324. if (!memberCapabilities.is_array())
  1325. memberCapabilities = json::array();
  1326. if (capabilities.is_array()) {
  1327. for(unsigned long i=0;i<capabilities.size();++i) {
  1328. json &cap = capabilities[i];
  1329. if (cap.is_object()) {
  1330. const uint64_t id = OSUtils::jsonInt(cap["id"],0ULL) & 0xffffffffULL;
  1331. capsById[id] = &cap;
  1332. if ((newMember)&&(OSUtils::jsonBool(cap["default"],false))) {
  1333. bool have = false;
  1334. for(unsigned long i=0;i<memberCapabilities.size();++i) {
  1335. if (id == (OSUtils::jsonInt(memberCapabilities[i],0ULL) & 0xffffffffULL)) {
  1336. have = true;
  1337. break;
  1338. }
  1339. }
  1340. if (!have)
  1341. memberCapabilities.push_back(id);
  1342. }
  1343. }
  1344. }
  1345. }
  1346. for(unsigned long i=0;i<memberCapabilities.size();++i) {
  1347. const uint64_t capId = OSUtils::jsonInt(memberCapabilities[i],0ULL) & 0xffffffffULL;
  1348. std::map< uint64_t,json * >::const_iterator ctmp = capsById.find(capId);
  1349. if (ctmp != capsById.end()) {
  1350. json *cap = ctmp->second;
  1351. if ((cap)&&(cap->is_object())&&(cap->size() > 0)) {
  1352. ZT_VirtualNetworkRule capr[ZT_MAX_CAPABILITY_RULES];
  1353. unsigned int caprc = 0;
  1354. json &caprj = (*cap)["rules"];
  1355. if ((caprj.is_array())&&(caprj.size() > 0)) {
  1356. for(unsigned long j=0;j<caprj.size();++j) {
  1357. if (caprc >= ZT_MAX_CAPABILITY_RULES)
  1358. break;
  1359. if (_parseRule(caprj[j],capr[caprc]))
  1360. ++caprc;
  1361. }
  1362. }
  1363. nc.capabilities[nc.capabilityCount] = Capability((uint32_t)capId,nwid,now,1,capr,caprc);
  1364. if (nc.capabilities[nc.capabilityCount].sign(_signingId,identity.address()))
  1365. ++nc.capabilityCount;
  1366. if (nc.capabilityCount >= ZT_MAX_NETWORK_CAPABILITIES)
  1367. break;
  1368. }
  1369. }
  1370. }
  1371. std::map< uint32_t,uint32_t > memberTagsById;
  1372. if (memberTags.is_array()) {
  1373. for(unsigned long i=0;i<memberTags.size();++i) {
  1374. json &t = memberTags[i];
  1375. if ((t.is_array())&&(t.size() == 2))
  1376. memberTagsById[(uint32_t)(OSUtils::jsonInt(t[0],0ULL) & 0xffffffffULL)] = (uint32_t)(OSUtils::jsonInt(t[1],0ULL) & 0xffffffffULL);
  1377. }
  1378. }
  1379. if (tags.is_array()) { // check network tags array for defaults that are not present in member tags
  1380. for(unsigned long i=0;i<tags.size();++i) {
  1381. json &t = tags[i];
  1382. if (t.is_object()) {
  1383. const uint32_t id = (uint32_t)(OSUtils::jsonInt(t["id"],0) & 0xffffffffULL);
  1384. json &dfl = t["default"];
  1385. if ((dfl.is_number())&&(memberTagsById.find(id) == memberTagsById.end())) {
  1386. memberTagsById[id] = (uint32_t)(OSUtils::jsonInt(dfl,0) & 0xffffffffULL);
  1387. json mt = json::array();
  1388. mt.push_back(id);
  1389. mt.push_back(dfl);
  1390. memberTags.push_back(mt); // add default to member tags if not present
  1391. }
  1392. }
  1393. }
  1394. }
  1395. for(std::map< uint32_t,uint32_t >::const_iterator t(memberTagsById.begin());t!=memberTagsById.end();++t) {
  1396. if (nc.tagCount >= ZT_MAX_NETWORK_TAGS)
  1397. break;
  1398. nc.tags[nc.tagCount] = Tag(nwid,now,identity.address(),t->first,t->second);
  1399. if (nc.tags[nc.tagCount].sign(_signingId))
  1400. ++nc.tagCount;
  1401. }
  1402. }
  1403. if (routes.is_array()) {
  1404. for(unsigned long i=0;i<routes.size();++i) {
  1405. if (nc.routeCount >= ZT_MAX_NETWORK_ROUTES)
  1406. break;
  1407. json &route = routes[i];
  1408. json &target = route["target"];
  1409. json &via = route["via"];
  1410. if (target.is_string()) {
  1411. const InetAddress t(target.get<std::string>());
  1412. InetAddress v;
  1413. if (via.is_string()) v.fromString(via.get<std::string>());
  1414. if ((t.ss_family == AF_INET)||(t.ss_family == AF_INET6)) {
  1415. ZT_VirtualNetworkRoute *r = &(nc.routes[nc.routeCount]);
  1416. *(reinterpret_cast<InetAddress *>(&(r->target))) = t;
  1417. if (v.ss_family == t.ss_family)
  1418. *(reinterpret_cast<InetAddress *>(&(r->via))) = v;
  1419. ++nc.routeCount;
  1420. }
  1421. }
  1422. }
  1423. }
  1424. const bool noAutoAssignIps = OSUtils::jsonBool(member["noAutoAssignIps"],false);
  1425. if ((v6AssignMode.is_object())&&(!noAutoAssignIps)) {
  1426. if ((OSUtils::jsonBool(v6AssignMode["rfc4193"],false))&&(nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES)) {
  1427. nc.staticIps[nc.staticIpCount++] = InetAddress::makeIpv6rfc4193(nwid,identity.address().toInt());
  1428. nc.flags |= ZT_NETWORKCONFIG_FLAG_ENABLE_IPV6_NDP_EMULATION;
  1429. }
  1430. if ((OSUtils::jsonBool(v6AssignMode["6plane"],false))&&(nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES)) {
  1431. nc.staticIps[nc.staticIpCount++] = InetAddress::makeIpv66plane(nwid,identity.address().toInt());
  1432. nc.flags |= ZT_NETWORKCONFIG_FLAG_ENABLE_IPV6_NDP_EMULATION;
  1433. }
  1434. }
  1435. bool haveManagedIpv4AutoAssignment = false;
  1436. bool haveManagedIpv6AutoAssignment = false; // "special" NDP-emulated address types do not count
  1437. json ipAssignments = member["ipAssignments"]; // we want to make a copy
  1438. if (ipAssignments.is_array()) {
  1439. for(unsigned long i=0;i<ipAssignments.size();++i) {
  1440. if (!ipAssignments[i].is_string())
  1441. continue;
  1442. std::string ips = ipAssignments[i];
  1443. InetAddress ip(ips);
  1444. // IP assignments are only pushed if there is a corresponding local route. We also now get the netmask bits from
  1445. // this route, ignoring the netmask bits field of the assigned IP itself. Using that was worthless and a source
  1446. // of user error / poor UX.
  1447. int routedNetmaskBits = 0;
  1448. for(unsigned int rk=0;rk<nc.routeCount;++rk) {
  1449. if ( (!nc.routes[rk].via.ss_family) && (reinterpret_cast<const InetAddress *>(&(nc.routes[rk].target))->containsAddress(ip)) )
  1450. routedNetmaskBits = reinterpret_cast<const InetAddress *>(&(nc.routes[rk].target))->netmaskBits();
  1451. }
  1452. if (routedNetmaskBits > 0) {
  1453. if (nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES) {
  1454. ip.setPort(routedNetmaskBits);
  1455. nc.staticIps[nc.staticIpCount++] = ip;
  1456. }
  1457. if (ip.ss_family == AF_INET)
  1458. haveManagedIpv4AutoAssignment = true;
  1459. else if (ip.ss_family == AF_INET6)
  1460. haveManagedIpv6AutoAssignment = true;
  1461. }
  1462. }
  1463. } else {
  1464. ipAssignments = json::array();
  1465. }
  1466. if ( (ipAssignmentPools.is_array()) && ((v6AssignMode.is_object())&&(OSUtils::jsonBool(v6AssignMode["zt"],false))) && (!haveManagedIpv6AutoAssignment) && (!noAutoAssignIps) ) {
  1467. for(unsigned long p=0;((p<ipAssignmentPools.size())&&(!haveManagedIpv6AutoAssignment));++p) {
  1468. json &pool = ipAssignmentPools[p];
  1469. if (pool.is_object()) {
  1470. InetAddress ipRangeStart(OSUtils::jsonString(pool["ipRangeStart"],""));
  1471. InetAddress ipRangeEnd(OSUtils::jsonString(pool["ipRangeEnd"],""));
  1472. if ( (ipRangeStart.ss_family == AF_INET6) && (ipRangeEnd.ss_family == AF_INET6) ) {
  1473. uint64_t s[2],e[2],x[2],xx[2];
  1474. memcpy(s,ipRangeStart.rawIpData(),16);
  1475. memcpy(e,ipRangeEnd.rawIpData(),16);
  1476. s[0] = Utils::ntoh(s[0]);
  1477. s[1] = Utils::ntoh(s[1]);
  1478. e[0] = Utils::ntoh(e[0]);
  1479. e[1] = Utils::ntoh(e[1]);
  1480. x[0] = s[0];
  1481. x[1] = s[1];
  1482. for(unsigned int trialCount=0;trialCount<1000;++trialCount) {
  1483. if ((trialCount == 0)&&(e[1] > s[1])&&((e[1] - s[1]) >= 0xffffffffffULL)) {
  1484. // First see if we can just cram a ZeroTier ID into the higher 64 bits. If so do that.
  1485. xx[0] = Utils::hton(x[0]);
  1486. xx[1] = Utils::hton(x[1] + identity.address().toInt());
  1487. } else {
  1488. // 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
  1489. Utils::getSecureRandom((void *)xx,16);
  1490. if ((e[0] > s[0]))
  1491. xx[0] %= (e[0] - s[0]);
  1492. else xx[0] = 0;
  1493. if ((e[1] > s[1]))
  1494. xx[1] %= (e[1] - s[1]);
  1495. else xx[1] = 0;
  1496. xx[0] = Utils::hton(x[0] + xx[0]);
  1497. xx[1] = Utils::hton(x[1] + xx[1]);
  1498. }
  1499. InetAddress ip6((const void *)xx,16,0);
  1500. // Check if this IP is within a local-to-Ethernet routed network
  1501. int routedNetmaskBits = 0;
  1502. for(unsigned int rk=0;rk<nc.routeCount;++rk) {
  1503. 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)) )
  1504. routedNetmaskBits = reinterpret_cast<const InetAddress *>(&(nc.routes[rk].target))->netmaskBits();
  1505. }
  1506. // If it's routed, then try to claim and assign it and if successful end loop
  1507. if ((routedNetmaskBits > 0)&&(!nmi.allocatedIps.count(ip6))) {
  1508. ipAssignments.push_back(ip6.toIpString());
  1509. member["ipAssignments"] = ipAssignments;
  1510. ip6.setPort((unsigned int)routedNetmaskBits);
  1511. if (nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES)
  1512. nc.staticIps[nc.staticIpCount++] = ip6;
  1513. haveManagedIpv6AutoAssignment = true;
  1514. _clearNetworkMemberInfoCache(nwid); // clear cache to prevent IP assignment duplication on many rapid assigns
  1515. break;
  1516. }
  1517. }
  1518. }
  1519. }
  1520. }
  1521. }
  1522. if ( (ipAssignmentPools.is_array()) && ((v4AssignMode.is_object())&&(OSUtils::jsonBool(v4AssignMode["zt"],false))) && (!haveManagedIpv4AutoAssignment) && (!noAutoAssignIps) ) {
  1523. for(unsigned long p=0;((p<ipAssignmentPools.size())&&(!haveManagedIpv4AutoAssignment));++p) {
  1524. json &pool = ipAssignmentPools[p];
  1525. if (pool.is_object()) {
  1526. InetAddress ipRangeStartIA(OSUtils::jsonString(pool["ipRangeStart"],""));
  1527. InetAddress ipRangeEndIA(OSUtils::jsonString(pool["ipRangeEnd"],""));
  1528. if ( (ipRangeStartIA.ss_family == AF_INET) && (ipRangeEndIA.ss_family == AF_INET) ) {
  1529. uint32_t ipRangeStart = Utils::ntoh((uint32_t)(reinterpret_cast<struct sockaddr_in *>(&ipRangeStartIA)->sin_addr.s_addr));
  1530. uint32_t ipRangeEnd = Utils::ntoh((uint32_t)(reinterpret_cast<struct sockaddr_in *>(&ipRangeEndIA)->sin_addr.s_addr));
  1531. if ((ipRangeEnd < ipRangeStart)||(ipRangeStart == 0))
  1532. continue;
  1533. uint32_t ipRangeLen = ipRangeEnd - ipRangeStart;
  1534. // Start with the LSB of the member's address
  1535. uint32_t ipTrialCounter = (uint32_t)(identity.address().toInt() & 0xffffffff);
  1536. for(uint32_t k=ipRangeStart,trialCount=0;((k<=ipRangeEnd)&&(trialCount < 1000));++k,++trialCount) {
  1537. uint32_t ip = (ipRangeLen > 0) ? (ipRangeStart + (ipTrialCounter % ipRangeLen)) : ipRangeStart;
  1538. ++ipTrialCounter;
  1539. if ((ip & 0x000000ff) == 0x000000ff)
  1540. continue; // don't allow addresses that end in .255
  1541. // Check if this IP is within a local-to-Ethernet routed network
  1542. int routedNetmaskBits = -1;
  1543. for(unsigned int rk=0;rk<nc.routeCount;++rk) {
  1544. if (nc.routes[rk].target.ss_family == AF_INET) {
  1545. uint32_t targetIp = Utils::ntoh((uint32_t)(reinterpret_cast<const struct sockaddr_in *>(&(nc.routes[rk].target))->sin_addr.s_addr));
  1546. int targetBits = Utils::ntoh((uint16_t)(reinterpret_cast<const struct sockaddr_in *>(&(nc.routes[rk].target))->sin_port));
  1547. if ((ip & (0xffffffff << (32 - targetBits))) == targetIp) {
  1548. routedNetmaskBits = targetBits;
  1549. break;
  1550. }
  1551. }
  1552. }
  1553. // If it's routed, then try to claim and assign it and if successful end loop
  1554. const InetAddress ip4(Utils::hton(ip),0);
  1555. if ((routedNetmaskBits > 0)&&(!nmi.allocatedIps.count(ip4))) {
  1556. ipAssignments.push_back(ip4.toIpString());
  1557. member["ipAssignments"] = ipAssignments;
  1558. if (nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES) {
  1559. struct sockaddr_in *const v4ip = reinterpret_cast<struct sockaddr_in *>(&(nc.staticIps[nc.staticIpCount++]));
  1560. v4ip->sin_family = AF_INET;
  1561. v4ip->sin_port = Utils::hton((uint16_t)routedNetmaskBits);
  1562. v4ip->sin_addr.s_addr = Utils::hton(ip);
  1563. }
  1564. haveManagedIpv4AutoAssignment = true;
  1565. _clearNetworkMemberInfoCache(nwid); // clear cache to prevent IP assignment duplication on many rapid assigns
  1566. break;
  1567. }
  1568. }
  1569. }
  1570. }
  1571. }
  1572. }
  1573. // Issue a certificate of ownership for all static IPs
  1574. if (nc.staticIpCount) {
  1575. nc.certificatesOfOwnership[0] = CertificateOfOwnership(nwid,now,identity.address(),1);
  1576. for(unsigned int i=0;i<nc.staticIpCount;++i)
  1577. nc.certificatesOfOwnership[0].addThing(nc.staticIps[i]);
  1578. nc.certificatesOfOwnership[0].sign(_signingId);
  1579. nc.certificateOfOwnershipCount = 1;
  1580. }
  1581. CertificateOfMembership com(now,credentialtmd,nwid,identity.address());
  1582. if (com.sign(_signingId)) {
  1583. nc.com = com;
  1584. } else {
  1585. _sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_INTERNAL_SERVER_ERROR);
  1586. return;
  1587. }
  1588. if (member != origMember) {
  1589. member["lastModified"] = now;
  1590. Mutex::Lock _l(_db_m);
  1591. _db.put("network",nwids,"member",identity.address().toString(),member);
  1592. }
  1593. _sender->ncSendConfig(nwid,requestPacketId,identity.address(),nc,metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_VERSION,0) < 6);
  1594. }
  1595. void EmbeddedNetworkController::_getNetworkMemberInfo(uint64_t now,uint64_t nwid,_NetworkMemberInfo &nmi)
  1596. {
  1597. char pfx[256];
  1598. Utils::snprintf(pfx,sizeof(pfx),"network/%.16llx/member",nwid);
  1599. {
  1600. Mutex::Lock _l(_nmiCache_m);
  1601. std::map<uint64_t,_NetworkMemberInfo>::iterator c(_nmiCache.find(nwid));
  1602. if ((c != _nmiCache.end())&&((now - c->second.nmiTimestamp) < 1000)) { // a short duration cache but limits CPU use on big networks
  1603. nmi = c->second;
  1604. return;
  1605. }
  1606. }
  1607. {
  1608. Mutex::Lock _l(_db_m);
  1609. _db.filter(pfx,[&nmi,&now](const std::string &n,const json &member) {
  1610. try {
  1611. if (OSUtils::jsonBool(member["authorized"],false)) {
  1612. ++nmi.authorizedMemberCount;
  1613. if (member.count("recentLog")) {
  1614. const json &mlog = member["recentLog"];
  1615. if ((mlog.is_array())&&(mlog.size() > 0)) {
  1616. const json &mlog1 = mlog[0];
  1617. if (mlog1.is_object()) {
  1618. if ((now - OSUtils::jsonInt(mlog1["ts"],0ULL)) < ZT_NETCONF_NODE_ACTIVE_THRESHOLD)
  1619. ++nmi.activeMemberCount;
  1620. }
  1621. }
  1622. }
  1623. if (OSUtils::jsonBool(member["activeBridge"],false)) {
  1624. nmi.activeBridges.insert(Address(Utils::hexStrToU64(OSUtils::jsonString(member["id"],"0000000000").c_str())));
  1625. }
  1626. if (member.count("ipAssignments")) {
  1627. const json &mips = member["ipAssignments"];
  1628. if (mips.is_array()) {
  1629. for(unsigned long i=0;i<mips.size();++i) {
  1630. InetAddress mip(OSUtils::jsonString(mips[i],""));
  1631. if ((mip.ss_family == AF_INET)||(mip.ss_family == AF_INET6))
  1632. nmi.allocatedIps.insert(mip);
  1633. }
  1634. }
  1635. }
  1636. } else {
  1637. nmi.mostRecentDeauthTime = std::max(nmi.mostRecentDeauthTime,OSUtils::jsonInt(member["lastDeauthorizedTime"],0ULL));
  1638. }
  1639. } catch ( ... ) {}
  1640. return true;
  1641. });
  1642. }
  1643. nmi.nmiTimestamp = now;
  1644. {
  1645. Mutex::Lock _l(_nmiCache_m);
  1646. _nmiCache[nwid] = nmi;
  1647. }
  1648. }
  1649. void EmbeddedNetworkController::_pushMemberUpdate(uint64_t now,uint64_t nwid,const nlohmann::json &member)
  1650. {
  1651. try {
  1652. const std::string idstr = member["identity"];
  1653. const std::string mdstr = member["lastRequestMetaData"];
  1654. if ((idstr.length() > 0)&&(mdstr.length() > 0)) {
  1655. const Identity id(idstr);
  1656. bool online;
  1657. {
  1658. Mutex::Lock _l(_lastRequestTime_m);
  1659. std::map< std::pair<uint64_t,uint64_t>,uint64_t >::iterator lrt(_lastRequestTime.find(std::pair<uint64_t,uint64_t>(id.address().toInt(),nwid)));
  1660. online = ( (lrt != _lastRequestTime.end()) && ((now - lrt->second) < ZT_NETWORK_AUTOCONF_DELAY) );
  1661. }
  1662. if (online) {
  1663. Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> *metaData = new Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY>(mdstr.c_str());
  1664. try {
  1665. this->request(nwid,InetAddress(),0,id,*metaData);
  1666. } catch ( ... ) {}
  1667. delete metaData;
  1668. }
  1669. }
  1670. } catch ( ... ) {}
  1671. }
  1672. } // namespace ZeroTier