| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806 | /* * ZeroTier One - Network Virtualization Everywhere * Copyright (C) 2011-2015  ZeroTier, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program.  If not, see <http://www.gnu.org/licenses/>. */#include <stdint.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#include <time.h>#ifndef _WIN32#include <sys/time.h>#endif#include <sys/types.h>#include <algorithm>#include <utility>#include <stdexcept>#include <set>#include <map>#include <thread>#include "../include/ZeroTierOne.h"#include "../node/Constants.hpp"#include "EmbeddedNetworkController.hpp"#include "../node/Node.hpp"#include "../node/Utils.hpp"#include "../node/CertificateOfMembership.hpp"#include "../node/NetworkConfig.hpp"#include "../node/Dictionary.hpp"#include "../node/InetAddress.hpp"#include "../node/MAC.hpp"#include "../node/Address.hpp"using json = nlohmann::json;// API version reported via JSON control plane#define ZT_NETCONF_CONTROLLER_API_VERSION 3// Number of requests to remember in member history#define ZT_NETCONF_DB_MEMBER_HISTORY_LENGTH 2// Min duration between requests for an address/nwid combo to prevent floods#define ZT_NETCONF_MIN_REQUEST_PERIOD 1000// Nodes are considered active if they've queried in less than this long#define ZT_NETCONF_NODE_ACTIVE_THRESHOLD (ZT_NETWORK_AUTOCONF_DELAY * 2)namespace ZeroTier {static json _renderRule(ZT_VirtualNetworkRule &rule){	char tmp[128];	json r = json::object();	const ZT_VirtualNetworkRuleType rt = (ZT_VirtualNetworkRuleType)(rule.t & 0x3f);	switch(rt) {		case ZT_NETWORK_RULE_ACTION_DROP:			r["type"] = "ACTION_DROP";			break;		case ZT_NETWORK_RULE_ACTION_ACCEPT:			r["type"] = "ACTION_ACCEPT";			break;		case ZT_NETWORK_RULE_ACTION_TEE:			r["type"] = "ACTION_TEE";			r["address"] = Address(rule.v.fwd.address).toString();			r["flags"] = (unsigned int)rule.v.fwd.flags;			r["length"] = (unsigned int)rule.v.fwd.length;			break;		case ZT_NETWORK_RULE_ACTION_WATCH:			r["type"] = "ACTION_WATCH";			r["address"] = Address(rule.v.fwd.address).toString();			r["flags"] = (unsigned int)rule.v.fwd.flags;			r["length"] = (unsigned int)rule.v.fwd.length;			break;		case ZT_NETWORK_RULE_ACTION_REDIRECT:			r["type"] = "ACTION_REDIRECT";			r["address"] = Address(rule.v.fwd.address).toString();			r["flags"] = (unsigned int)rule.v.fwd.flags;			break;		case ZT_NETWORK_RULE_ACTION_BREAK:			r["type"] = "ACTION_BREAK";			break;		default:			break;	}	if (r.size() == 0) {		switch(rt) {			case ZT_NETWORK_RULE_MATCH_SOURCE_ZEROTIER_ADDRESS:				r["type"] = "MATCH_SOURCE_ZEROTIER_ADDRESS";				r["zt"] = Address(rule.v.zt).toString();				break;			case ZT_NETWORK_RULE_MATCH_DEST_ZEROTIER_ADDRESS:				r["type"] = "MATCH_DEST_ZEROTIER_ADDRESS";				r["zt"] = Address(rule.v.zt).toString();				break;			case ZT_NETWORK_RULE_MATCH_VLAN_ID:				r["type"] = "MATCH_VLAN_ID";				r["vlanId"] = (unsigned int)rule.v.vlanId;				break;			case ZT_NETWORK_RULE_MATCH_VLAN_PCP:				r["type"] = "MATCH_VLAN_PCP";				r["vlanPcp"] = (unsigned int)rule.v.vlanPcp;				break;			case ZT_NETWORK_RULE_MATCH_VLAN_DEI:				r["type"] = "MATCH_VLAN_DEI";				r["vlanDei"] = (unsigned int)rule.v.vlanDei;				break;			case ZT_NETWORK_RULE_MATCH_MAC_SOURCE:				r["type"] = "MATCH_MAC_SOURCE";				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]);				r["mac"] = tmp;				break;			case ZT_NETWORK_RULE_MATCH_MAC_DEST:				r["type"] = "MATCH_MAC_DEST";				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]);				r["mac"] = tmp;				break;			case ZT_NETWORK_RULE_MATCH_IPV4_SOURCE:				r["type"] = "MATCH_IPV4_SOURCE";				r["ip"] = InetAddress(&(rule.v.ipv4.ip),4,(unsigned int)rule.v.ipv4.mask).toString();				break;			case ZT_NETWORK_RULE_MATCH_IPV4_DEST:				r["type"] = "MATCH_IPV4_DEST";				r["ip"] = InetAddress(&(rule.v.ipv4.ip),4,(unsigned int)rule.v.ipv4.mask).toString();				break;			case ZT_NETWORK_RULE_MATCH_IPV6_SOURCE:				r["type"] = "MATCH_IPV6_SOURCE";				r["ip"] = InetAddress(rule.v.ipv6.ip,16,(unsigned int)rule.v.ipv6.mask).toString();				break;			case ZT_NETWORK_RULE_MATCH_IPV6_DEST:				r["type"] = "MATCH_IPV6_DEST";				r["ip"] = InetAddress(rule.v.ipv6.ip,16,(unsigned int)rule.v.ipv6.mask).toString();				break;			case ZT_NETWORK_RULE_MATCH_IP_TOS:				r["type"] = "MATCH_IP_TOS";				r["mask"] = (unsigned int)rule.v.ipTos.mask;				r["start"] = (unsigned int)rule.v.ipTos.value[0];				r["end"] = (unsigned int)rule.v.ipTos.value[1];				break;			case ZT_NETWORK_RULE_MATCH_IP_PROTOCOL:				r["type"] = "MATCH_IP_PROTOCOL";				r["ipProtocol"] = (unsigned int)rule.v.ipProtocol;				break;			case ZT_NETWORK_RULE_MATCH_ETHERTYPE:				r["type"] = "MATCH_ETHERTYPE";				r["etherType"] = (unsigned int)rule.v.etherType;				break;			case ZT_NETWORK_RULE_MATCH_ICMP:				r["type"] = "MATCH_ICMP";				r["icmpType"] = (unsigned int)rule.v.icmp.type;				if ((rule.v.icmp.flags & 0x01) != 0)					r["icmpCode"] = (unsigned int)rule.v.icmp.code;				else r["icmpCode"] = json();				break;			case ZT_NETWORK_RULE_MATCH_IP_SOURCE_PORT_RANGE:				r["type"] = "MATCH_IP_SOURCE_PORT_RANGE";				r["start"] = (unsigned int)rule.v.port[0];				r["end"] = (unsigned int)rule.v.port[1];				break;			case ZT_NETWORK_RULE_MATCH_IP_DEST_PORT_RANGE:				r["type"] = "MATCH_IP_DEST_PORT_RANGE";				r["start"] = (unsigned int)rule.v.port[0];				r["end"] = (unsigned int)rule.v.port[1];				break;			case ZT_NETWORK_RULE_MATCH_CHARACTERISTICS:				r["type"] = "MATCH_CHARACTERISTICS";				Utils::snprintf(tmp,sizeof(tmp),"%.16llx",rule.v.characteristics);				r["mask"] = tmp;				break;			case ZT_NETWORK_RULE_MATCH_FRAME_SIZE_RANGE:				r["type"] = "MATCH_FRAME_SIZE_RANGE";				r["start"] = (unsigned int)rule.v.frameSize[0];				r["end"] = (unsigned int)rule.v.frameSize[1];				break;			case ZT_NETWORK_RULE_MATCH_RANDOM:				r["type"] = "MATCH_RANDOM";				r["probability"] = (unsigned long)rule.v.randomProbability;				break;			case ZT_NETWORK_RULE_MATCH_TAGS_DIFFERENCE:				r["type"] = "MATCH_TAGS_DIFFERENCE";				r["id"] = rule.v.tag.id;				r["value"] = rule.v.tag.value;				break;			case ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_AND:				r["type"] = "MATCH_TAGS_BITWISE_AND";				r["id"] = rule.v.tag.id;				r["value"] = rule.v.tag.value;				break;			case ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_OR:				r["type"] = "MATCH_TAGS_BITWISE_OR";				r["id"] = rule.v.tag.id;				r["value"] = rule.v.tag.value;				break;			case ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_XOR:				r["type"] = "MATCH_TAGS_BITWISE_XOR";				r["id"] = rule.v.tag.id;				r["value"] = rule.v.tag.value;				break;			case ZT_NETWORK_RULE_MATCH_TAGS_EQUAL:				r["type"] = "MATCH_TAGS_EQUAL";				r["id"] = rule.v.tag.id;				r["value"] = rule.v.tag.value;				break;			case ZT_NETWORK_RULE_MATCH_TAG_SENDER:				r["type"] = "MATCH_TAG_SENDER";				r["id"] = rule.v.tag.id;				r["value"] = rule.v.tag.value;				break;			case ZT_NETWORK_RULE_MATCH_TAG_RECEIVER:				r["type"] = "MATCH_TAG_RECEIVER";				r["id"] = rule.v.tag.id;				r["value"] = rule.v.tag.value;				break;			default:				break;		}		if (r.size() > 0) {			r["not"] = ((rule.t & 0x80) != 0);			r["or"] = ((rule.t & 0x40) != 0);		}	}	return r;}static bool _parseRule(json &r,ZT_VirtualNetworkRule &rule){	if (!r.is_object())		return false;	const std::string t(OSUtils::jsonString(r["type"],""));	memset(&rule,0,sizeof(ZT_VirtualNetworkRule));	if (OSUtils::jsonBool(r["not"],false))		rule.t = 0x80;	else rule.t = 0x00;	if (OSUtils::jsonBool(r["or"],false))		rule.t |= 0x40;	bool tag = false;	if (t == "ACTION_DROP") {		rule.t |= ZT_NETWORK_RULE_ACTION_DROP;		return true;	} else if (t == "ACTION_ACCEPT") {		rule.t |= ZT_NETWORK_RULE_ACTION_ACCEPT;		return true;	} else if (t == "ACTION_TEE") {		rule.t |= ZT_NETWORK_RULE_ACTION_TEE;		rule.v.fwd.address = Utils::hexStrToU64(OSUtils::jsonString(r["address"],"0").c_str()) & 0xffffffffffULL;		rule.v.fwd.flags = (uint32_t)(OSUtils::jsonInt(r["flags"],0ULL) & 0xffffffffULL);		rule.v.fwd.length = (uint16_t)(OSUtils::jsonInt(r["length"],0ULL) & 0xffffULL);		return true;	} else if (t == "ACTION_WATCH") {		rule.t |= ZT_NETWORK_RULE_ACTION_WATCH;		rule.v.fwd.address = Utils::hexStrToU64(OSUtils::jsonString(r["address"],"0").c_str()) & 0xffffffffffULL;		rule.v.fwd.flags = (uint32_t)(OSUtils::jsonInt(r["flags"],0ULL) & 0xffffffffULL);		rule.v.fwd.length = (uint16_t)(OSUtils::jsonInt(r["length"],0ULL) & 0xffffULL);		return true;	} else if (t == "ACTION_REDIRECT") {		rule.t |= ZT_NETWORK_RULE_ACTION_REDIRECT;		rule.v.fwd.address = Utils::hexStrToU64(OSUtils::jsonString(r["address"],"0").c_str()) & 0xffffffffffULL;		rule.v.fwd.flags = (uint32_t)(OSUtils::jsonInt(r["flags"],0ULL) & 0xffffffffULL);		return true;	} else if (t == "ACTION_BREAK") {		rule.t |= ZT_NETWORK_RULE_ACTION_BREAK;		return true;	} else if (t == "MATCH_SOURCE_ZEROTIER_ADDRESS") {		rule.t |= ZT_NETWORK_RULE_MATCH_SOURCE_ZEROTIER_ADDRESS;		rule.v.zt = Utils::hexStrToU64(OSUtils::jsonString(r["zt"],"0").c_str()) & 0xffffffffffULL;		return true;	} else if (t == "MATCH_DEST_ZEROTIER_ADDRESS") {		rule.t |= ZT_NETWORK_RULE_MATCH_DEST_ZEROTIER_ADDRESS;		rule.v.zt = Utils::hexStrToU64(OSUtils::jsonString(r["zt"],"0").c_str()) & 0xffffffffffULL;		return true;	} else if (t == "MATCH_VLAN_ID") {		rule.t |= ZT_NETWORK_RULE_MATCH_VLAN_ID;		rule.v.vlanId = (uint16_t)(OSUtils::jsonInt(r["vlanId"],0ULL) & 0xffffULL);		return true;	} else if (t == "MATCH_VLAN_PCP") {		rule.t |= ZT_NETWORK_RULE_MATCH_VLAN_PCP;		rule.v.vlanPcp = (uint8_t)(OSUtils::jsonInt(r["vlanPcp"],0ULL) & 0xffULL);		return true;	} else if (t == "MATCH_VLAN_DEI") {		rule.t |= ZT_NETWORK_RULE_MATCH_VLAN_DEI;		rule.v.vlanDei = (uint8_t)(OSUtils::jsonInt(r["vlanDei"],0ULL) & 0xffULL);		return true;	} else if (t == "MATCH_MAC_SOURCE") {		rule.t |= ZT_NETWORK_RULE_MATCH_MAC_SOURCE;		const std::string mac(OSUtils::jsonString(r["mac"],"0"));		Utils::unhex(mac.c_str(),(unsigned int)mac.length(),rule.v.mac,6);		return true;	} else if (t == "MATCH_MAC_DEST") {		rule.t |= ZT_NETWORK_RULE_MATCH_MAC_DEST;		const std::string mac(OSUtils::jsonString(r["mac"],"0"));		Utils::unhex(mac.c_str(),(unsigned int)mac.length(),rule.v.mac,6);		return true;	} else if (t == "MATCH_IPV4_SOURCE") {		rule.t |= ZT_NETWORK_RULE_MATCH_IPV4_SOURCE;		InetAddress ip(OSUtils::jsonString(r["ip"],"0.0.0.0"));		rule.v.ipv4.ip = reinterpret_cast<struct sockaddr_in *>(&ip)->sin_addr.s_addr;		rule.v.ipv4.mask = Utils::ntoh(reinterpret_cast<struct sockaddr_in *>(&ip)->sin_port) & 0xff;		if (rule.v.ipv4.mask > 32) rule.v.ipv4.mask = 32;		return true;	} else if (t == "MATCH_IPV4_DEST") {		rule.t |= ZT_NETWORK_RULE_MATCH_IPV4_DEST;		InetAddress ip(OSUtils::jsonString(r["ip"],"0.0.0.0"));		rule.v.ipv4.ip = reinterpret_cast<struct sockaddr_in *>(&ip)->sin_addr.s_addr;		rule.v.ipv4.mask = Utils::ntoh(reinterpret_cast<struct sockaddr_in *>(&ip)->sin_port) & 0xff;		if (rule.v.ipv4.mask > 32) rule.v.ipv4.mask = 32;		return true;	} else if (t == "MATCH_IPV6_SOURCE") {		rule.t |= ZT_NETWORK_RULE_MATCH_IPV6_SOURCE;		InetAddress ip(OSUtils::jsonString(r["ip"],"::0"));		memcpy(rule.v.ipv6.ip,reinterpret_cast<struct sockaddr_in6 *>(&ip)->sin6_addr.s6_addr,16);		rule.v.ipv6.mask = Utils::ntoh(reinterpret_cast<struct sockaddr_in6 *>(&ip)->sin6_port) & 0xff;		if (rule.v.ipv6.mask > 128) rule.v.ipv6.mask = 128;		return true;	} else if (t == "MATCH_IPV6_DEST") {		rule.t |= ZT_NETWORK_RULE_MATCH_IPV6_DEST;		InetAddress ip(OSUtils::jsonString(r["ip"],"::0"));		memcpy(rule.v.ipv6.ip,reinterpret_cast<struct sockaddr_in6 *>(&ip)->sin6_addr.s6_addr,16);		rule.v.ipv6.mask = Utils::ntoh(reinterpret_cast<struct sockaddr_in6 *>(&ip)->sin6_port) & 0xff;		if (rule.v.ipv6.mask > 128) rule.v.ipv6.mask = 128;		return true;	} else if (t == "MATCH_IP_TOS") {		rule.t |= ZT_NETWORK_RULE_MATCH_IP_TOS;		rule.v.ipTos.mask = (uint8_t)(OSUtils::jsonInt(r["mask"],0ULL) & 0xffULL);		rule.v.ipTos.value[0] = (uint8_t)(OSUtils::jsonInt(r["start"],0ULL) & 0xffULL);		rule.v.ipTos.value[1] = (uint8_t)(OSUtils::jsonInt(r["end"],0ULL) & 0xffULL);		return true;	} else if (t == "MATCH_IP_PROTOCOL") {		rule.t |= ZT_NETWORK_RULE_MATCH_IP_PROTOCOL;		rule.v.ipProtocol = (uint8_t)(OSUtils::jsonInt(r["ipProtocol"],0ULL) & 0xffULL);		return true;	} else if (t == "MATCH_ETHERTYPE") {		rule.t |= ZT_NETWORK_RULE_MATCH_ETHERTYPE;		rule.v.etherType = (uint16_t)(OSUtils::jsonInt(r["etherType"],0ULL) & 0xffffULL);		return true;	} else if (t == "MATCH_ICMP") {		rule.t |= ZT_NETWORK_RULE_MATCH_ICMP;		rule.v.icmp.type = (uint8_t)(OSUtils::jsonInt(r["icmpType"],0ULL) & 0xffULL);		json &code = r["icmpCode"];		if (code.is_null()) {			rule.v.icmp.code = 0;			rule.v.icmp.flags = 0x00;		} else {			rule.v.icmp.code = (uint8_t)(OSUtils::jsonInt(code,0ULL) & 0xffULL);			rule.v.icmp.flags = 0x01;		}		return true;	} else if (t == "MATCH_IP_SOURCE_PORT_RANGE") {		rule.t |= ZT_NETWORK_RULE_MATCH_IP_SOURCE_PORT_RANGE;		rule.v.port[0] = (uint16_t)(OSUtils::jsonInt(r["start"],0ULL) & 0xffffULL);		rule.v.port[1] = (uint16_t)(OSUtils::jsonInt(r["end"],(uint64_t)rule.v.port[0]) & 0xffffULL);		return true;	} else if (t == "MATCH_IP_DEST_PORT_RANGE") {		rule.t |= ZT_NETWORK_RULE_MATCH_IP_DEST_PORT_RANGE;		rule.v.port[0] = (uint16_t)(OSUtils::jsonInt(r["start"],0ULL) & 0xffffULL);		rule.v.port[1] = (uint16_t)(OSUtils::jsonInt(r["end"],(uint64_t)rule.v.port[0]) & 0xffffULL);		return true;	} else if (t == "MATCH_CHARACTERISTICS") {		rule.t |= ZT_NETWORK_RULE_MATCH_CHARACTERISTICS;		if (r.count("mask")) {			json &v = r["mask"];			if (v.is_number()) {				rule.v.characteristics = v;			} else {				std::string tmp = v;				rule.v.characteristics = Utils::hexStrToU64(tmp.c_str());			}		}		return true;	} else if (t == "MATCH_FRAME_SIZE_RANGE") {		rule.t |= ZT_NETWORK_RULE_MATCH_FRAME_SIZE_RANGE;		rule.v.frameSize[0] = (uint16_t)(OSUtils::jsonInt(r["start"],0ULL) & 0xffffULL);		rule.v.frameSize[1] = (uint16_t)(OSUtils::jsonInt(r["end"],(uint64_t)rule.v.frameSize[0]) & 0xffffULL);		return true;	} else if (t == "MATCH_RANDOM") {		rule.t |= ZT_NETWORK_RULE_MATCH_RANDOM;		rule.v.randomProbability = (uint32_t)(OSUtils::jsonInt(r["probability"],0ULL) & 0xffffffffULL);		return true;	} else if (t == "MATCH_TAGS_DIFFERENCE") {		rule.t |= ZT_NETWORK_RULE_MATCH_TAGS_DIFFERENCE;		tag = true;	} else if (t == "MATCH_TAGS_BITWISE_AND") {		rule.t |= ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_AND;		tag = true;	} else if (t == "MATCH_TAGS_BITWISE_OR") {		rule.t |= ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_OR;		tag = true;	} else if (t == "MATCH_TAGS_BITWISE_XOR") {		rule.t |= ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_XOR;		tag = true;	} else if (t == "MATCH_TAGS_EQUAL") {		rule.t |= ZT_NETWORK_RULE_MATCH_TAGS_EQUAL;		tag = true;	} else if (t == "MATCH_TAG_SENDER") {		rule.t |= ZT_NETWORK_RULE_MATCH_TAG_SENDER;		tag = true;	} else if (t == "MATCH_TAG_RECEIVER") {		rule.t |= ZT_NETWORK_RULE_MATCH_TAG_RECEIVER;		tag = true;	}	if (tag) {		rule.v.tag.id = (uint32_t)(OSUtils::jsonInt(r["id"],0ULL) & 0xffffffffULL);		rule.v.tag.value = (uint32_t)(OSUtils::jsonInt(r["value"],0ULL) & 0xffffffffULL);		return true;	}	return false;}EmbeddedNetworkController::EmbeddedNetworkController(Node *node,const char *dbPath) :	_startTime(OSUtils::now()),	_running(true),	_db(dbPath),	_node(node){}EmbeddedNetworkController::~EmbeddedNetworkController(){	_running = false;	std::vector<Thread> t;	{		Mutex::Lock _l(_threads_m);		t = _threads;	}	if (t.size() > 0) {		for(unsigned long i=0,j=(unsigned long)(t.size() * 4);i<j;++i)			_queue.post((_RQEntry *)0);		/*		for(std::vector<Thread>::iterator i(t.begin());i!=t.end();++i)			Thread::join(*i);		*/	}}void EmbeddedNetworkController::init(const Identity &signingId,Sender *sender){	this->_sender = sender;	this->_signingId = signingId;}void EmbeddedNetworkController::request(	uint64_t nwid,	const InetAddress &fromAddr,	uint64_t requestPacketId,	const Identity &identity,	const Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> &metaData){	if (((!_signingId)||(!_signingId.hasPrivate()))||(_signingId.address().toInt() != (nwid >> 24))||(!_sender))		return;	{		Mutex::Lock _l(_threads_m);		if (_threads.size() == 0) {			long hwc = (long)std::thread::hardware_concurrency();			if (hwc <= 0)				hwc = 1;			for(long i=0;i<hwc;++i)				_threads.push_back(Thread::start(this));		}	}	_RQEntry *qe = new _RQEntry;	qe->nwid = nwid;	qe->requestPacketId = requestPacketId;	qe->fromAddr = fromAddr;	qe->identity = identity;	qe->metaData = metaData;	_queue.post(qe);}unsigned int EmbeddedNetworkController::handleControlPlaneHttpGET(	const std::vector<std::string> &path,	const std::map<std::string,std::string> &urlArgs,	const std::map<std::string,std::string> &headers,	const std::string &body,	std::string &responseBody,	std::string &responseContentType){	if ((path.size() > 0)&&(path[0] == "network")) {		if ((path.size() >= 2)&&(path[1].length() == 16)) {			const uint64_t nwid = Utils::hexStrToU64(path[1].c_str());			char nwids[24];			Utils::snprintf(nwids,sizeof(nwids),"%.16llx",(unsigned long long)nwid);			json network(_db.get("network",nwids));			if (!network.size())				return 404;			if (path.size() >= 3) {				if (path[2] == "member") {					if (path.size() >= 4) {						const uint64_t address = Utils::hexStrToU64(path[3].c_str());						json member(_db.get("network",nwids,"member",Address(address).toString()));						if (!member.size())							return 404;						_addMemberNonPersistedFields(member,OSUtils::now());						responseBody = OSUtils::jsonDump(member);						responseContentType = "application/json";					} else {						responseBody = "{";						_db.filter((std::string("network/") + nwids + "/member/"),[&responseBody](const std::string &n,const json &member) {							if ((member.is_object())&&(member.size() > 0)) {								responseBody.append((responseBody.length() == 1) ? "\"" : ",\"");								responseBody.append(OSUtils::jsonString(member["id"],"0"));								responseBody.append("\":");								responseBody.append(OSUtils::jsonString(member["revision"],"0"));							}							return true; // never delete						});						responseBody.push_back('}');						responseContentType = "application/json";					}					return 200;				} // else 404			} else {				const uint64_t now = OSUtils::now();				_NetworkMemberInfo nmi;				_getNetworkMemberInfo(now,nwid,nmi);				_addNetworkNonPersistedFields(network,now,nmi);				responseBody = OSUtils::jsonDump(network);				responseContentType = "application/json";				return 200;			}		} else if (path.size() == 1) {			std::set<std::string> networkIds;			_db.filter("network/",[&networkIds](const std::string &n,const json &obj) {				if (n.length() == (16 + 8))					networkIds.insert(n.substr(8));				return true; // do not delete			});			responseBody.push_back('[');			for(std::set<std::string>::iterator i(networkIds.begin());i!=networkIds.end();++i) {				responseBody.append((responseBody.length() == 1) ? "\"" : ",\"");				responseBody.append(*i);				responseBody.append("\"");			}			responseBody.push_back(']');			responseContentType = "application/json";			return 200;		} // else 404	} else {		char tmp[4096];		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());		responseBody = tmp;		responseContentType = "application/json";		return 200;	}	return 404;}unsigned int EmbeddedNetworkController::handleControlPlaneHttpPOST(	const std::vector<std::string> &path,	const std::map<std::string,std::string> &urlArgs,	const std::map<std::string,std::string> &headers,	const std::string &body,	std::string &responseBody,	std::string &responseContentType){	if (path.empty())		return 404;	json b;	try {		b = OSUtils::jsonParse(body);		if (!b.is_object()) {			responseBody = "{ \"message\": \"body is not a JSON object\" }";			responseContentType = "application/json";			return 400;		}	} catch ( ... ) {		responseBody = "{ \"message\": \"body JSON is invalid\" }";		responseContentType = "application/json";		return 400;	}	const uint64_t now = OSUtils::now();	if (path[0] == "network") {		if ((path.size() >= 2)&&(path[1].length() == 16)) {			uint64_t nwid = Utils::hexStrToU64(path[1].c_str());			char nwids[24];			Utils::snprintf(nwids,sizeof(nwids),"%.16llx",(unsigned long long)nwid);			if (path.size() >= 3) {				if ((path.size() == 4)&&(path[2] == "member")&&(path[3].length() == 10)) {					uint64_t address = Utils::hexStrToU64(path[3].c_str());					char addrs[24];					Utils::snprintf(addrs,sizeof(addrs),"%.10llx",(unsigned long long)address);					json member(_db.get("network",nwids,"member",Address(address).toString()));					json origMember(member); // for detecting changes					_initMember(member);					try {						if (b.count("activeBridge")) member["activeBridge"] = OSUtils::jsonBool(b["activeBridge"],false);						if (b.count("noAutoAssignIps")) member["noAutoAssignIps"] = OSUtils::jsonBool(b["noAutoAssignIps"],false);						if (b.count("authorized")) {							const bool newAuth = OSUtils::jsonBool(b["authorized"],false);							if (newAuth != OSUtils::jsonBool(member["authorized"],false)) {								member["authorized"] = newAuth;								member[((newAuth) ? "lastAuthorizedTime" : "lastDeauthorizedTime")] = now;								json ah;								ah["a"] = newAuth;								ah["by"] = "api";								ah["ts"] = now;								ah["ct"] = json();								ah["c"] = json();								member["authHistory"].push_back(ah);								// Member is being de-authorized, so spray Revocation objects to all online members								if (!newAuth) {									_clearNetworkMemberInfoCache(nwid);									Revocation rev((uint32_t)_node->prng(),nwid,0,now,ZT_REVOCATION_FLAG_FAST_PROPAGATE,Address(address),Revocation::CREDENTIAL_TYPE_COM);									rev.sign(_signingId);									Mutex::Lock _l(_lastRequestTime_m);									for(std::map< std::pair<uint64_t,uint64_t>,uint64_t >::iterator i(_lastRequestTime.begin());i!=_lastRequestTime.end();++i) {										if ((now - i->second) < ZT_NETWORK_AUTOCONF_DELAY)											_node->ncSendRevocation(Address(i->first.first),rev);									}								}							}						}						if (b.count("ipAssignments")) {							json &ipa = b["ipAssignments"];							if (ipa.is_array()) {								json mipa(json::array());								for(unsigned long i=0;i<ipa.size();++i) {									std::string ips = ipa[i];									InetAddress ip(ips);									if ((ip.ss_family == AF_INET)||(ip.ss_family == AF_INET6)) {										mipa.push_back(ip.toIpString());									}								}								member["ipAssignments"] = mipa;							}						}						if (b.count("tags")) {							json &tags = b["tags"];							if (tags.is_array()) {								std::map<uint64_t,uint64_t> mtags;								for(unsigned long i=0;i<tags.size();++i) {									json &tag = tags[i];									if ((tag.is_array())&&(tag.size() == 2))										mtags[OSUtils::jsonInt(tag[0],0ULL) & 0xffffffffULL] = OSUtils::jsonInt(tag[1],0ULL) & 0xffffffffULL;								}								json mtagsa = json::array();								for(std::map<uint64_t,uint64_t>::iterator t(mtags.begin());t!=mtags.end();++t) {									json ta = json::array();									ta.push_back(t->first);									ta.push_back(t->second);									mtagsa.push_back(ta);								}								member["tags"] = mtagsa;							}						}						if (b.count("capabilities")) {							json &capabilities = b["capabilities"];							if (capabilities.is_array()) {								json mcaps = json::array();								for(unsigned long i=0;i<capabilities.size();++i) {									mcaps.push_back(OSUtils::jsonInt(capabilities[i],0ULL));								}								std::sort(mcaps.begin(),mcaps.end());								mcaps.erase(std::unique(mcaps.begin(),mcaps.end()),mcaps.end());								member["capabilities"] = mcaps;							}						}					} catch ( ... ) {						responseBody = "{ \"message\": \"exception while processing parameters in JSON body\" }";						responseContentType = "application/json";						return 400;					}					member["id"] = addrs;					member["address"] = addrs; // legacy					member["nwid"] = nwids;					if (member != origMember) {						member["lastModified"] = now;						json &revj = member["revision"];						member["revision"] = (revj.is_number() ? ((uint64_t)revj + 1ULL) : 1ULL);						_db.put("network",nwids,"member",Address(address).toString(),member);						_pushMemberUpdate(now,nwid,member);					}					// Add non-persisted fields					member["clock"] = now;					responseBody = OSUtils::jsonDump(member);					responseContentType = "application/json";					return 200;				} else if ((path.size() == 3)&&(path[2] == "test")) {					Mutex::Lock _l(_tests_m);					_tests.push_back(ZT_CircuitTest());					ZT_CircuitTest *const test = &(_tests.back());					memset(test,0,sizeof(ZT_CircuitTest));					Utils::getSecureRandom(&(test->testId),sizeof(test->testId));					test->credentialNetworkId = nwid;					test->ptr = (void *)this;					json hops = b["hops"];					if (hops.is_array()) {						for(unsigned long i=0;i<hops.size();++i) {							json &hops2 = hops[i];							if (hops2.is_array()) {								for(unsigned long j=0;j<hops2.size();++j) {									std::string s = hops2[j];									test->hops[test->hopCount].addresses[test->hops[test->hopCount].breadth++] = Utils::hexStrToU64(s.c_str()) & 0xffffffffffULL;								}								++test->hopCount;							} else if (hops2.is_string()) {								std::string s = hops2;								test->hops[test->hopCount].addresses[test->hops[test->hopCount].breadth++] = Utils::hexStrToU64(s.c_str()) & 0xffffffffffULL;								++test->hopCount;							}						}					}					test->reportAtEveryHop = (OSUtils::jsonBool(b["reportAtEveryHop"],true) ? 1 : 0);					if (!test->hopCount) {						_tests.pop_back();						responseBody = "{ \"message\": \"a test must contain at least one hop\" }";						responseContentType = "application/json";						return 400;					}					test->timestamp = OSUtils::now();					if (_node) {						_node->circuitTestBegin((void *)0,test,&(EmbeddedNetworkController::_circuitTestCallback));					} else {						_tests.pop_back();						return 500;					}					char json[512];					Utils::snprintf(json,sizeof(json),"{\"testId\":\"%.16llx\",\"timestamp\":%llu}",test->testId,test->timestamp);					responseBody = json;					responseContentType = "application/json";					return 200;				} // else 404			} else {				// POST to network ID				// Magic ID ending with ______ picks a random unused network ID				if (path[1].substr(10) == "______") {					nwid = 0;					uint64_t nwidPrefix = (Utils::hexStrToU64(path[1].substr(0,10).c_str()) << 24) & 0xffffffffff000000ULL;					uint64_t nwidPostfix = 0;					for(unsigned long k=0;k<100000;++k) { // sanity limit on trials						Utils::getSecureRandom(&nwidPostfix,sizeof(nwidPostfix));						uint64_t tryNwid = nwidPrefix | (nwidPostfix & 0xffffffULL);						if ((tryNwid & 0xffffffULL) == 0ULL) tryNwid |= 1ULL;						Utils::snprintf(nwids,sizeof(nwids),"%.16llx",(unsigned long long)tryNwid);						if (_db.get("network",nwids).size() <= 0) {							nwid = tryNwid;							break;						}					}					if (!nwid)						return 503;				}				json network(_db.get("network",nwids));				json origNetwork(network); // for detecting changes				_initNetwork(network);				try {					if (b.count("name")) network["name"] = OSUtils::jsonString(b["name"],"");					if (b.count("private")) network["private"] = OSUtils::jsonBool(b["private"],true);					if (b.count("enableBroadcast")) network["enableBroadcast"] = OSUtils::jsonBool(b["enableBroadcast"],false);					if (b.count("allowPassiveBridging")) network["allowPassiveBridging"] = OSUtils::jsonBool(b["allowPassiveBridging"],false);					if (b.count("multicastLimit")) network["multicastLimit"] = OSUtils::jsonInt(b["multicastLimit"],32ULL);					if (b.count("v4AssignMode")) {						json nv4m;						json &v4m = b["v4AssignMode"];						if (v4m.is_string()) { // backward compatibility							nv4m["zt"] = (OSUtils::jsonString(v4m,"") == "zt");						} else if (v4m.is_object()) {							nv4m["zt"] = OSUtils::jsonBool(v4m["zt"],false);						} else nv4m["zt"] = false;						network["v4AssignMode"] = nv4m;					}					if (b.count("v6AssignMode")) {						json nv6m;						json &v6m = b["v6AssignMode"];						if (!nv6m.is_object()) nv6m = json::object();						if (v6m.is_string()) { // backward compatibility							std::vector<std::string> v6ms(OSUtils::split(OSUtils::jsonString(v6m,"").c_str(),",","",""));							std::sort(v6ms.begin(),v6ms.end());							v6ms.erase(std::unique(v6ms.begin(),v6ms.end()),v6ms.end());							nv6m["rfc4193"] = false;							nv6m["zt"] = false;							nv6m["6plane"] = false;							for(std::vector<std::string>::iterator i(v6ms.begin());i!=v6ms.end();++i) {								if (*i == "rfc4193")									nv6m["rfc4193"] = true;								else if (*i == "zt")									nv6m["zt"] = true;								else if (*i == "6plane")									nv6m["6plane"] = true;							}						} else if (v6m.is_object()) {							if (v6m.count("rfc4193")) nv6m["rfc4193"] = OSUtils::jsonBool(v6m["rfc4193"],false);							if (v6m.count("zt")) nv6m["zt"] = OSUtils::jsonBool(v6m["zt"],false);							if (v6m.count("6plane")) nv6m["6plane"] = OSUtils::jsonBool(v6m["6plane"],false);						} else {							nv6m["rfc4193"] = false;							nv6m["zt"] = false;							nv6m["6plane"] = false;						}						network["v6AssignMode"] = nv6m;					}					if (b.count("routes")) {						json &rts = b["routes"];						if (rts.is_array()) {							json nrts = json::array();							for(unsigned long i=0;i<rts.size();++i) {								json &rt = rts[i];								if (rt.is_object()) {									json &target = rt["target"];									json &via = rt["via"];									if (target.is_string()) {										InetAddress t(target.get<std::string>());										InetAddress v;										if (via.is_string()) v.fromString(via.get<std::string>());										if ( ((t.ss_family == AF_INET)||(t.ss_family == AF_INET6)) && (t.netmaskBitsValid()) ) {											json tmp;											tmp["target"] = t.toString();											if (v.ss_family == t.ss_family)												tmp["via"] = v.toIpString();											else tmp["via"] = json();											nrts.push_back(tmp);										}									}								}							}							network["routes"] = nrts;						}					}					if (b.count("ipAssignmentPools")) {						json &ipp = b["ipAssignmentPools"];						if (ipp.is_array()) {							json nipp = json::array();							for(unsigned long i=0;i<ipp.size();++i) {								json &ip = ipp[i];								if ((ip.is_object())&&(ip.count("ipRangeStart"))&&(ip.count("ipRangeEnd"))) {									InetAddress f(OSUtils::jsonString(ip["ipRangeStart"],""));									InetAddress t(OSUtils::jsonString(ip["ipRangeEnd"],""));									if ( ((f.ss_family == AF_INET)||(f.ss_family == AF_INET6)) && (f.ss_family == t.ss_family) ) {										json tmp = json::object();										tmp["ipRangeStart"] = f.toIpString();										tmp["ipRangeEnd"] = t.toIpString();										nipp.push_back(tmp);									}								}							}							network["ipAssignmentPools"] = nipp;						}					}					if (b.count("rules")) {						json &rules = b["rules"];						if (rules.is_array()) {							json nrules = json::array();							for(unsigned long i=0;i<rules.size();++i) {								json &rule = rules[i];								if (rule.is_object()) {									ZT_VirtualNetworkRule ztr;									if (_parseRule(rule,ztr))										nrules.push_back(_renderRule(ztr));								}							}							network["rules"] = nrules;						}					}					if (b.count("authTokens")) {						json &authTokens = b["authTokens"];						if (authTokens.is_array()) {							json nat = json::array();							for(unsigned long i=0;i<authTokens.size();++i) {								json &token = authTokens[i];								if (token.is_object()) {									std::string tstr = token["token"];									if (tstr.length() > 0) {										json t = json::object();										t["token"] = tstr;										t["expires"] = OSUtils::jsonInt(token["expires"],0ULL);										t["maxUsesPerMember"] = OSUtils::jsonInt(token["maxUsesPerMember"],0ULL);										nat.push_back(t);									}								}							}							network["authTokens"] = nat;						}					}					if (b.count("capabilities")) {						json &capabilities = b["capabilities"];						if (capabilities.is_array()) {							std::map< uint64_t,json > ncaps;							for(unsigned long i=0;i<capabilities.size();++i) {								json &cap = capabilities[i];								if (cap.is_object()) {									json ncap = json::object();									const uint64_t capId = OSUtils::jsonInt(cap["id"],0ULL);									ncap["id"] = capId;									ncap["default"] = OSUtils::jsonBool(cap["default"],false);									json &rules = cap["rules"];									json nrules = json::array();									if (rules.is_array()) {										for(unsigned long i=0;i<rules.size();++i) {											json &rule = rules[i];											if (rule.is_object()) {												ZT_VirtualNetworkRule ztr;												if (_parseRule(rule,ztr))													nrules.push_back(_renderRule(ztr));											}										}									}									ncap["rules"] = nrules;									ncaps[capId] = ncap;								}							}							json ncapsa = json::array();							for(std::map< uint64_t,json >::iterator c(ncaps.begin());c!=ncaps.end();++c)								ncapsa.push_back(c->second);							network["capabilities"] = ncapsa;						}					}					if (b.count("tags")) {						json &tags = b["tags"];						if (tags.is_array()) {							std::map< uint64_t,json > ntags;							for(unsigned long i=0;i<tags.size();++i) {								json &tag = tags[i];								if (tag.is_object()) {									json ntag = json::object();									const uint64_t tagId = OSUtils::jsonInt(tag["id"],0ULL);									ntag["id"] = tagId;									json &dfl = tag["default"];									if (dfl.is_null())										ntag["default"] = dfl;									else ntag["default"] = OSUtils::jsonInt(dfl,0ULL);									ntags[tagId] = ntag;								}							}							json ntagsa = json::array();							for(std::map< uint64_t,json >::iterator t(ntags.begin());t!=ntags.end();++t)								ntagsa.push_back(t->second);							network["tags"] = ntagsa;						}					}				} catch ( ... ) {					responseBody = "{ \"message\": \"exception occurred while parsing body variables\" }";					responseContentType = "application/json";					return 400;				}				network["id"] = nwids;				network["nwid"] = nwids; // legacy				if (network != origNetwork) {					json &revj = network["revision"];					network["revision"] = (revj.is_number() ? ((uint64_t)revj + 1ULL) : 1ULL);					network["lastModified"] = now;					_db.put("network",nwids,network);					// Send an update to all members of the network					_db.filter((std::string("network/") + nwids + "/member/"),[this,&now,&nwid](const std::string &n,const json &obj) {						_pushMemberUpdate(now,nwid,obj);						return true; // do not delete					});				}				_NetworkMemberInfo nmi;				_getNetworkMemberInfo(now,nwid,nmi);				_addNetworkNonPersistedFields(network,now,nmi);				responseBody = OSUtils::jsonDump(network);				responseContentType = "application/json";				return 200;			} // else 404		} // else 404	} else if (path[0] == "ping") {		json testRec;		const uint64_t now = OSUtils::now();		testRec["clock"] = now;		testRec["uptime"] = (now - _startTime);		testRec["content"] = b;		responseBody = OSUtils::jsonDump(testRec);		_db.writeRaw("pong",responseBody);		responseContentType = "application/json";		return 200;	}	return 404;}unsigned int EmbeddedNetworkController::handleControlPlaneHttpDELETE(	const std::vector<std::string> &path,	const std::map<std::string,std::string> &urlArgs,	const std::map<std::string,std::string> &headers,	const std::string &body,	std::string &responseBody,	std::string &responseContentType){	if (path.empty())		return 404;	if (path[0] == "network") {		if ((path.size() >= 2)&&(path[1].length() == 16)) {			const uint64_t nwid = Utils::hexStrToU64(path[1].c_str());			char nwids[24];			Utils::snprintf(nwids,sizeof(nwids),"%.16llx",nwid);			json network(_db.get("network",nwids));			if (!network.size())				return 404;			if (path.size() >= 3) {				if ((path.size() == 4)&&(path[2] == "member")&&(path[3].length() == 10)) {					const uint64_t address = Utils::hexStrToU64(path[3].c_str());					json member = _db.get("network",nwids,"member",Address(address).toString());					_db.erase("network",nwids,"member",Address(address).toString());					if (!member.size())						return 404;					responseBody = OSUtils::jsonDump(member);					responseContentType = "application/json";					return 200;				}			} else {				std::string pfx("network/");				pfx.append(nwids);				_db.filter(pfx,[](const std::string &n,const json &obj) {					return false; // delete				});				Mutex::Lock _l2(_nmiCache_m);				_nmiCache.erase(nwid);				responseBody = OSUtils::jsonDump(network);				responseContentType = "application/json";				return 200;			}		} // else 404	} // else 404	return 404;}void EmbeddedNetworkController::threadMain()	throw(){	uint64_t lastCircuitTestCheck = 0;	_RQEntry *qe = (_RQEntry *)0;	while ((_running)&&((qe = _queue.get()))) {		try {			_request(qe->nwid,qe->fromAddr,qe->requestPacketId,qe->identity,qe->metaData);		} catch ( ... ) {}		delete qe;		if (_running) {			uint64_t now = OSUtils::now();			if ((now - lastCircuitTestCheck) > ZT_EMBEDDEDNETWORKCONTROLLER_CIRCUIT_TEST_EXPIRATION) {				lastCircuitTestCheck = now;				Mutex::Lock _l(_tests_m);				for(std::list< ZT_CircuitTest >::iterator i(_tests.begin());i!=_tests.end();) {					if ((now - i->timestamp) > ZT_EMBEDDEDNETWORKCONTROLLER_CIRCUIT_TEST_EXPIRATION) {						_node->circuitTestEnd(&(*i));						_tests.erase(i++);					} else ++i;				}			}		}	}}void EmbeddedNetworkController::_circuitTestCallback(ZT_Node *node,ZT_CircuitTest *test,const ZT_CircuitTestReport *report){	char tmp[1024],id[128];	EmbeddedNetworkController *const self = reinterpret_cast<EmbeddedNetworkController *>(test->ptr);	if ((!test)||(!report)||(!test->credentialNetworkId)) return; // sanity check	const uint64_t now = OSUtils::now();	Utils::snprintf(id,sizeof(id),"network/%.16llx/test/%.16llx-%.16llx-%.10llx-%.10llx",test->credentialNetworkId,test->testId,now,report->upstream,report->current);	Utils::snprintf(tmp,sizeof(tmp),		"{\"id\": \"%s\","		"\"timestamp\": %llu,"		"\"networkId\": \"%.16llx\","		"\"testId\": \"%.16llx\","		"\"upstream\": \"%.10llx\","		"\"current\": \"%.10llx\","		"\"receivedTimestamp\": %llu,"		"\"sourcePacketId\": \"%.16llx\","		"\"flags\": %llu,"		"\"sourcePacketHopCount\": %u,"		"\"errorCode\": %u,"		"\"vendor\": %d,"		"\"protocolVersion\": %u,"		"\"majorVersion\": %u,"		"\"minorVersion\": %u,"		"\"revision\": %u,"		"\"platform\": %d,"		"\"architecture\": %d,"		"\"receivedOnLocalAddress\": \"%s\","		"\"receivedFromRemoteAddress\": \"%s\","		"\"receivedFromLinkQuality\": %f}",		id + 30, // last bit only, not leading path		(unsigned long long)test->timestamp,		(unsigned long long)test->credentialNetworkId,		(unsigned long long)test->testId,		(unsigned long long)report->upstream,		(unsigned long long)report->current,		(unsigned long long)now,		(unsigned long long)report->sourcePacketId,		(unsigned long long)report->flags,		report->sourcePacketHopCount,		report->errorCode,		(int)report->vendor,		report->protocolVersion,		report->majorVersion,		report->minorVersion,		report->revision,		(int)report->platform,		(int)report->architecture,		reinterpret_cast<const InetAddress *>(&(report->receivedOnLocalAddress))->toString().c_str(),		reinterpret_cast<const InetAddress *>(&(report->receivedFromRemoteAddress))->toString().c_str(),		((double)report->receivedFromLinkQuality / (double)ZT_PATH_LINK_QUALITY_MAX));	self->_db.writeRaw(id,std::string(tmp));}void EmbeddedNetworkController::_request(	uint64_t nwid,	const InetAddress &fromAddr,	uint64_t requestPacketId,	const Identity &identity,	const Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> &metaData){	if (((!_signingId)||(!_signingId.hasPrivate()))||(_signingId.address().toInt() != (nwid >> 24))||(!_sender))		return;	const uint64_t now = OSUtils::now();	if (requestPacketId) {		Mutex::Lock _l(_lastRequestTime_m);		uint64_t &lrt = _lastRequestTime[std::pair<uint64_t,uint64_t>(identity.address().toInt(),nwid)];		if ((now - lrt) <= ZT_NETCONF_MIN_REQUEST_PERIOD)			return;		lrt = now;	}	char nwids[24];	Utils::snprintf(nwids,sizeof(nwids),"%.16llx",nwid);	json network(_db.get("network",nwids));	json member(_db.get("network",nwids,"member",identity.address().toString()));	if (!network.size()) {		_sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_OBJECT_NOT_FOUND);		return;	}	const bool newMember = (member.size() == 0);	json origMember(member); // for detecting modification later	_initMember(member);	{		std::string haveIdStr(OSUtils::jsonString(member["identity"],""));		if (haveIdStr.length() > 0) {			// If we already know this member's identity perform a full compare. This prevents			// a "collision" from being able to auth onto our network in place of an already			// known member.			try {				if (Identity(haveIdStr.c_str()) != identity) {					_sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_ACCESS_DENIED);					return;				}			} catch ( ... ) {				_sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_ACCESS_DENIED);				return;			}		} else {			// If we do not yet know this member's identity, learn it.			member["identity"] = identity.toString(false);		}	}	// These are always the same, but make sure they are set	member["id"] = identity.address().toString();	member["address"] = member["id"];	member["nwid"] = nwids;	// Determine whether and how member is authorized	const char *authorizedBy = (const char *)0;	bool autoAuthorized = false;	json autoAuthCredentialType,autoAuthCredential;	if (OSUtils::jsonBool(member["authorized"],false)) {		authorizedBy = "memberIsAuthorized";	} else if (!OSUtils::jsonBool(network["private"],true)) {		authorizedBy = "networkIsPublic";		json &ahist = member["authHistory"];		if ((!ahist.is_array())||(ahist.size() == 0))			autoAuthorized = true;	} else {		char presentedAuth[512];		if (metaData.get(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_AUTH,presentedAuth,sizeof(presentedAuth)) > 0) {			presentedAuth[511] = (char)0; // sanity check			// Check for bearer token presented by member			if ((strlen(presentedAuth) > 6)&&(!strncmp(presentedAuth,"token:",6))) {				const char *const presentedToken = presentedAuth + 6;				json &authTokens = network["authTokens"];				if (authTokens.is_array()) {					for(unsigned long i=0;i<authTokens.size();++i) {						json &token = authTokens[i];						if (token.is_object()) {							const uint64_t expires = OSUtils::jsonInt(token["expires"],0ULL);							const uint64_t maxUses = OSUtils::jsonInt(token["maxUsesPerMember"],0ULL);							std::string tstr = OSUtils::jsonString(token["token"],"");							if (((expires == 0ULL)||(expires > now))&&(tstr == presentedToken)) {								bool usable = (maxUses == 0);								if (!usable) {									uint64_t useCount = 0;									json &ahist = member["authHistory"];									if (ahist.is_array()) {										for(unsigned long j=0;j<ahist.size();++j) {											json &ah = ahist[j];											if ((OSUtils::jsonString(ah["ct"],"") == "token")&&(OSUtils::jsonString(ah["c"],"") == tstr)&&(OSUtils::jsonBool(ah["a"],false)))												++useCount;										}									}									usable = (useCount < maxUses);								}								if (usable) {									authorizedBy = "token";									autoAuthorized = true;									autoAuthCredentialType = "token";									autoAuthCredential = tstr;								}							}						}					}				}			}		}	}	// If we auto-authorized, update member record	if ((autoAuthorized)&&(authorizedBy)) {		member["authorized"] = true;		member["lastAuthorizedTime"] = now;		json ah;		ah["a"] = true;		ah["by"] = authorizedBy;		ah["ts"] = now;		ah["ct"] = autoAuthCredentialType;		ah["c"] = autoAuthCredential;		member["authHistory"].push_back(ah);		json &revj = member["revision"];		member["revision"] = (revj.is_number() ? ((uint64_t)revj + 1ULL) : 1ULL);	}	// Log this request	if (requestPacketId) { // only log if this is a request, not for generated pushes		json rlEntry = json::object();		rlEntry["ts"] = now;		rlEntry["auth"] = (authorizedBy) ? true : false;		rlEntry["authBy"] = (authorizedBy) ? authorizedBy : "";		rlEntry["vMajor"] = metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_NODE_MAJOR_VERSION,0);		rlEntry["vMinor"] = metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_NODE_MINOR_VERSION,0);		rlEntry["vRev"] = metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_NODE_REVISION,0);		rlEntry["vProto"] = metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_PROTOCOL_VERSION,0);		if (fromAddr)			rlEntry["fromAddr"] = fromAddr.toString();		json recentLog = json::array();		recentLog.push_back(rlEntry);		json &oldLog = member["recentLog"];		if (oldLog.is_array()) {			for(unsigned long i=0;i<oldLog.size();++i) {				recentLog.push_back(oldLog[i]);				if (recentLog.size() >= ZT_NETCONF_DB_MEMBER_HISTORY_LENGTH)					break;			}		}		member["recentLog"] = recentLog;		// Also only do this on real requests		member["lastRequestMetaData"] = metaData.data();	}	// If they are not authorized, STOP!	if (!authorizedBy) {		if (origMember != member) {			member["lastModified"] = now;			_db.put("network",nwids,"member",identity.address().toString(),member);		}		_sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_ACCESS_DENIED);		return;	}	// -------------------------------------------------------------------------	// If we made it this far, they are authorized.	// -------------------------------------------------------------------------	NetworkConfig nc;	_NetworkMemberInfo nmi;	_getNetworkMemberInfo(now,nwid,nmi);	uint64_t credentialtmd = ZT_NETWORKCONFIG_DEFAULT_CREDENTIAL_TIME_MAX_MAX_DELTA;	if (now > nmi.mostRecentDeauthTime) {		// If we recently de-authorized a member, shrink credential TTL/max delta to		// be below the threshold required to exclude it. Cap this to a min/max to		// prevent jitter or absurdly large values.		const uint64_t deauthWindow = now - nmi.mostRecentDeauthTime;		if (deauthWindow < ZT_NETWORKCONFIG_DEFAULT_CREDENTIAL_TIME_MIN_MAX_DELTA) {			credentialtmd = ZT_NETWORKCONFIG_DEFAULT_CREDENTIAL_TIME_MIN_MAX_DELTA;		} else if (deauthWindow < (ZT_NETWORKCONFIG_DEFAULT_CREDENTIAL_TIME_MAX_MAX_DELTA + 5000ULL)) {			credentialtmd = deauthWindow - 5000ULL;		}	}	nc.networkId = nwid;	nc.type = OSUtils::jsonBool(network["private"],true) ? ZT_NETWORK_TYPE_PRIVATE : ZT_NETWORK_TYPE_PUBLIC;	nc.timestamp = now;	nc.credentialTimeMaxDelta = credentialtmd;	nc.revision = OSUtils::jsonInt(network["revision"],0ULL);	nc.issuedTo = identity.address();	if (OSUtils::jsonBool(network["enableBroadcast"],true)) nc.flags |= ZT_NETWORKCONFIG_FLAG_ENABLE_BROADCAST;	if (OSUtils::jsonBool(network["allowPassiveBridging"],false)) nc.flags |= ZT_NETWORKCONFIG_FLAG_ALLOW_PASSIVE_BRIDGING;	Utils::scopy(nc.name,sizeof(nc.name),OSUtils::jsonString(network["name"],"").c_str());	nc.multicastLimit = (unsigned int)OSUtils::jsonInt(network["multicastLimit"],32ULL);	for(std::set<Address>::const_iterator ab(nmi.activeBridges.begin());ab!=nmi.activeBridges.end();++ab) {		nc.addSpecialist(*ab,ZT_NETWORKCONFIG_SPECIALIST_TYPE_ACTIVE_BRIDGE);	}	json &v4AssignMode = network["v4AssignMode"];	json &v6AssignMode = network["v6AssignMode"];	json &ipAssignmentPools = network["ipAssignmentPools"];	json &routes = network["routes"];	json &rules = network["rules"];	json &capabilities = network["capabilities"];	json &tags = network["tags"];	json &memberCapabilities = member["capabilities"];	json &memberTags = member["tags"];	if (metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_RULES_ENGINE_REV,0) <= 0) {		// Old versions with no rules engine support get an allow everything rule.		// Since rules are enforced bidirectionally, newer versions *will* still		// enforce rules on the inbound side.		nc.ruleCount = 1;		nc.rules[0].t = ZT_NETWORK_RULE_ACTION_ACCEPT;	} else {		if (rules.is_array()) {			for(unsigned long i=0;i<rules.size();++i) {				if (nc.ruleCount >= ZT_MAX_NETWORK_RULES)					break;				if (_parseRule(rules[i],nc.rules[nc.ruleCount]))					++nc.ruleCount;			}		}		std::map< uint64_t,json * > capsById;		if (!memberCapabilities.is_array())			memberCapabilities = json::array();		if (capabilities.is_array()) {			for(unsigned long i=0;i<capabilities.size();++i) {				json &cap = capabilities[i];				if (cap.is_object()) {					const uint64_t id = OSUtils::jsonInt(cap["id"],0ULL) & 0xffffffffULL;					capsById[id] = ∩					if ((newMember)&&(OSUtils::jsonBool(cap["default"],false))) {						bool have = false;						for(unsigned long i=0;i<memberCapabilities.size();++i) {							if (id == (OSUtils::jsonInt(memberCapabilities[i],0ULL) & 0xffffffffULL)) {								have = true;								break;							}						}						if (!have)							memberCapabilities.push_back(id);					}				}			}		}		for(unsigned long i=0;i<memberCapabilities.size();++i) {			const uint64_t capId = OSUtils::jsonInt(memberCapabilities[i],0ULL) & 0xffffffffULL;			std::map< uint64_t,json * >::const_iterator ctmp = capsById.find(capId);			if (ctmp != capsById.end()) {				json *cap = ctmp->second;				if ((cap)&&(cap->is_object())&&(cap->size() > 0)) {					ZT_VirtualNetworkRule capr[ZT_MAX_CAPABILITY_RULES];					unsigned int caprc = 0;					json &caprj = (*cap)["rules"];					if ((caprj.is_array())&&(caprj.size() > 0)) {						for(unsigned long j=0;j<caprj.size();++j) {							if (caprc >= ZT_MAX_CAPABILITY_RULES)								break;							if (_parseRule(caprj[j],capr[caprc]))								++caprc;						}					}					nc.capabilities[nc.capabilityCount] = Capability((uint32_t)capId,nwid,now,1,capr,caprc);					if (nc.capabilities[nc.capabilityCount].sign(_signingId,identity.address()))						++nc.capabilityCount;					if (nc.capabilityCount >= ZT_MAX_NETWORK_CAPABILITIES)						break;				}			}		}		std::map< uint32_t,uint32_t > memberTagsById;		if (memberTags.is_array()) {			for(unsigned long i=0;i<memberTags.size();++i) {				json &t = memberTags[i];				if ((t.is_array())&&(t.size() == 2))					memberTagsById[(uint32_t)(OSUtils::jsonInt(t[0],0ULL) & 0xffffffffULL)] = (uint32_t)(OSUtils::jsonInt(t[1],0ULL) & 0xffffffffULL);			}		}		if (tags.is_array()) { // check network tags array for defaults that are not present in member tags			for(unsigned long i=0;i<tags.size();++i) {				json &t = tags[i];				if (t.is_object()) {					const uint32_t id = (uint32_t)(OSUtils::jsonInt(t["id"],0) & 0xffffffffULL);					json &dfl = t["default"];					if ((dfl.is_number())&&(memberTagsById.find(id) == memberTagsById.end())) {						memberTagsById[id] = (uint32_t)(OSUtils::jsonInt(dfl,0) & 0xffffffffULL);						json mt = json::array();						mt.push_back(id);						mt.push_back(dfl);						memberTags.push_back(mt); // add default to member tags if not present					}				}			}		}		for(std::map< uint32_t,uint32_t >::const_iterator t(memberTagsById.begin());t!=memberTagsById.end();++t) {			if (nc.tagCount >= ZT_MAX_NETWORK_TAGS)				break;			nc.tags[nc.tagCount] = Tag(nwid,now,identity.address(),t->first,t->second);			if (nc.tags[nc.tagCount].sign(_signingId))				++nc.tagCount;		}	}	if (routes.is_array()) {		for(unsigned long i=0;i<routes.size();++i) {			if (nc.routeCount >= ZT_MAX_NETWORK_ROUTES)				break;			json &route = routes[i];			json &target = route["target"];			json &via = route["via"];			if (target.is_string()) {				const InetAddress t(target.get<std::string>());				InetAddress v;				if (via.is_string()) v.fromString(via.get<std::string>());				if ((t.ss_family == AF_INET)||(t.ss_family == AF_INET6)) {					ZT_VirtualNetworkRoute *r = &(nc.routes[nc.routeCount]);					*(reinterpret_cast<InetAddress *>(&(r->target))) = t;					if (v.ss_family == t.ss_family)						*(reinterpret_cast<InetAddress *>(&(r->via))) = v;					++nc.routeCount;				}			}		}	}	const bool noAutoAssignIps = OSUtils::jsonBool(member["noAutoAssignIps"],false);	if ((v6AssignMode.is_object())&&(!noAutoAssignIps)) {		if ((OSUtils::jsonBool(v6AssignMode["rfc4193"],false))&&(nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES)) {			nc.staticIps[nc.staticIpCount++] = InetAddress::makeIpv6rfc4193(nwid,identity.address().toInt());			nc.flags |= ZT_NETWORKCONFIG_FLAG_ENABLE_IPV6_NDP_EMULATION;		}		if ((OSUtils::jsonBool(v6AssignMode["6plane"],false))&&(nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES)) {			nc.staticIps[nc.staticIpCount++] = InetAddress::makeIpv66plane(nwid,identity.address().toInt());			nc.flags |= ZT_NETWORKCONFIG_FLAG_ENABLE_IPV6_NDP_EMULATION;		}	}	bool haveManagedIpv4AutoAssignment = false;	bool haveManagedIpv6AutoAssignment = false; // "special" NDP-emulated address types do not count	json ipAssignments = member["ipAssignments"]; // we want to make a copy	if (ipAssignments.is_array()) {		for(unsigned long i=0;i<ipAssignments.size();++i) {			if (!ipAssignments[i].is_string())				continue;			std::string ips = ipAssignments[i];			InetAddress ip(ips);			// IP assignments are only pushed if there is a corresponding local route. We also now get the netmask bits from			// this route, ignoring the netmask bits field of the assigned IP itself. Using that was worthless and a source			// of user error / poor UX.			int routedNetmaskBits = 0;			for(unsigned int rk=0;rk<nc.routeCount;++rk) {				if ( (!nc.routes[rk].via.ss_family) && (reinterpret_cast<const InetAddress *>(&(nc.routes[rk].target))->containsAddress(ip)) )					routedNetmaskBits = reinterpret_cast<const InetAddress *>(&(nc.routes[rk].target))->netmaskBits();			}			if (routedNetmaskBits > 0) {				if (nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES) {					ip.setPort(routedNetmaskBits);					nc.staticIps[nc.staticIpCount++] = ip;				}				if (ip.ss_family == AF_INET)					haveManagedIpv4AutoAssignment = true;				else if (ip.ss_family == AF_INET6)					haveManagedIpv6AutoAssignment = true;			}		}	} else {		ipAssignments = json::array();	}	if ( (ipAssignmentPools.is_array()) && ((v6AssignMode.is_object())&&(OSUtils::jsonBool(v6AssignMode["zt"],false))) && (!haveManagedIpv6AutoAssignment) && (!noAutoAssignIps) ) {		for(unsigned long p=0;((p<ipAssignmentPools.size())&&(!haveManagedIpv6AutoAssignment));++p) {			json &pool = ipAssignmentPools[p];			if (pool.is_object()) {				InetAddress ipRangeStart(OSUtils::jsonString(pool["ipRangeStart"],""));				InetAddress ipRangeEnd(OSUtils::jsonString(pool["ipRangeEnd"],""));				if ( (ipRangeStart.ss_family == AF_INET6) && (ipRangeEnd.ss_family == AF_INET6) ) {					uint64_t s[2],e[2],x[2],xx[2];					memcpy(s,ipRangeStart.rawIpData(),16);					memcpy(e,ipRangeEnd.rawIpData(),16);					s[0] = Utils::ntoh(s[0]);					s[1] = Utils::ntoh(s[1]);					e[0] = Utils::ntoh(e[0]);					e[1] = Utils::ntoh(e[1]);					x[0] = s[0];					x[1] = s[1];					for(unsigned int trialCount=0;trialCount<1000;++trialCount) {						if ((trialCount == 0)&&(e[1] > s[1])&&((e[1] - s[1]) >= 0xffffffffffULL)) {							// First see if we can just cram a ZeroTier ID into the higher 64 bits. If so do that.							xx[0] = Utils::hton(x[0]);							xx[1] = Utils::hton(x[1] + identity.address().toInt());						} else {							// 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							Utils::getSecureRandom((void *)xx,16);							if ((e[0] > s[0]))								xx[0] %= (e[0] - s[0]);							else xx[0] = 0;							if ((e[1] > s[1]))								xx[1] %= (e[1] - s[1]);							else xx[1] = 0;							xx[0] = Utils::hton(x[0] + xx[0]);							xx[1] = Utils::hton(x[1] + xx[1]);						}						InetAddress ip6((const void *)xx,16,0);						// Check if this IP is within a local-to-Ethernet routed network						int routedNetmaskBits = 0;						for(unsigned int rk=0;rk<nc.routeCount;++rk) {							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)) )								routedNetmaskBits = reinterpret_cast<const InetAddress *>(&(nc.routes[rk].target))->netmaskBits();						}						// If it's routed, then try to claim and assign it and if successful end loop						if ((routedNetmaskBits > 0)&&(!nmi.allocatedIps.count(ip6))) {							ipAssignments.push_back(ip6.toIpString());							member["ipAssignments"] = ipAssignments;							ip6.setPort((unsigned int)routedNetmaskBits);							if (nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES)								nc.staticIps[nc.staticIpCount++] = ip6;							haveManagedIpv6AutoAssignment = true;							_clearNetworkMemberInfoCache(nwid); // clear cache to prevent IP assignment duplication on many rapid assigns							break;						}					}				}			}		}	}	if ( (ipAssignmentPools.is_array()) && ((v4AssignMode.is_object())&&(OSUtils::jsonBool(v4AssignMode["zt"],false))) && (!haveManagedIpv4AutoAssignment) && (!noAutoAssignIps) ) {		for(unsigned long p=0;((p<ipAssignmentPools.size())&&(!haveManagedIpv4AutoAssignment));++p) {			json &pool = ipAssignmentPools[p];			if (pool.is_object()) {				InetAddress ipRangeStartIA(OSUtils::jsonString(pool["ipRangeStart"],""));				InetAddress ipRangeEndIA(OSUtils::jsonString(pool["ipRangeEnd"],""));				if ( (ipRangeStartIA.ss_family == AF_INET) && (ipRangeEndIA.ss_family == AF_INET) ) {					uint32_t ipRangeStart = Utils::ntoh((uint32_t)(reinterpret_cast<struct sockaddr_in *>(&ipRangeStartIA)->sin_addr.s_addr));					uint32_t ipRangeEnd = Utils::ntoh((uint32_t)(reinterpret_cast<struct sockaddr_in *>(&ipRangeEndIA)->sin_addr.s_addr));					if ((ipRangeEnd < ipRangeStart)||(ipRangeStart == 0))						continue;					uint32_t ipRangeLen = ipRangeEnd - ipRangeStart;					// Start with the LSB of the member's address					uint32_t ipTrialCounter = (uint32_t)(identity.address().toInt() & 0xffffffff);					for(uint32_t k=ipRangeStart,trialCount=0;((k<=ipRangeEnd)&&(trialCount < 1000));++k,++trialCount) {						uint32_t ip = (ipRangeLen > 0) ? (ipRangeStart + (ipTrialCounter % ipRangeLen)) : ipRangeStart;						++ipTrialCounter;						if ((ip & 0x000000ff) == 0x000000ff)							continue; // don't allow addresses that end in .255						// Check if this IP is within a local-to-Ethernet routed network						int routedNetmaskBits = -1;						for(unsigned int rk=0;rk<nc.routeCount;++rk) {							if (nc.routes[rk].target.ss_family == AF_INET) {								uint32_t targetIp = Utils::ntoh((uint32_t)(reinterpret_cast<const struct sockaddr_in *>(&(nc.routes[rk].target))->sin_addr.s_addr));								int targetBits = Utils::ntoh((uint16_t)(reinterpret_cast<const struct sockaddr_in *>(&(nc.routes[rk].target))->sin_port));								if ((ip & (0xffffffff << (32 - targetBits))) == targetIp) {									routedNetmaskBits = targetBits;									break;								}							}						}						// If it's routed, then try to claim and assign it and if successful end loop						const InetAddress ip4(Utils::hton(ip),0);						if ((routedNetmaskBits > 0)&&(!nmi.allocatedIps.count(ip4))) {							ipAssignments.push_back(ip4.toIpString());							member["ipAssignments"] = ipAssignments;							if (nc.staticIpCount < ZT_MAX_ZT_ASSIGNED_ADDRESSES) {								struct sockaddr_in *const v4ip = reinterpret_cast<struct sockaddr_in *>(&(nc.staticIps[nc.staticIpCount++]));								v4ip->sin_family = AF_INET;								v4ip->sin_port = Utils::hton((uint16_t)routedNetmaskBits);								v4ip->sin_addr.s_addr = Utils::hton(ip);							}							haveManagedIpv4AutoAssignment = true;							_clearNetworkMemberInfoCache(nwid); // clear cache to prevent IP assignment duplication on many rapid assigns							break;						}					}				}			}		}	}	// Issue a certificate of ownership for all static IPs	if (nc.staticIpCount) {		nc.certificatesOfOwnership[0] = CertificateOfOwnership(nwid,now,identity.address(),1);		for(unsigned int i=0;i<nc.staticIpCount;++i)			nc.certificatesOfOwnership[0].addThing(nc.staticIps[i]);		nc.certificatesOfOwnership[0].sign(_signingId);		nc.certificateOfOwnershipCount = 1;	}	CertificateOfMembership com(now,credentialtmd,nwid,identity.address());	if (com.sign(_signingId)) {		nc.com = com;	} else {		_sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_INTERNAL_SERVER_ERROR);		return;	}	if (member != origMember) {		member["lastModified"] = now;		_db.put("network",nwids,"member",identity.address().toString(),member);	}	_sender->ncSendConfig(nwid,requestPacketId,identity.address(),nc,metaData.getUI(ZT_NETWORKCONFIG_REQUEST_METADATA_KEY_VERSION,0) < 6);}void EmbeddedNetworkController::_getNetworkMemberInfo(uint64_t now,uint64_t nwid,_NetworkMemberInfo &nmi){	char pfx[256];	Utils::snprintf(pfx,sizeof(pfx),"network/%.16llx/member",nwid);	Mutex::Lock _l(_nmiCache_m);	std::map<uint64_t,_NetworkMemberInfo>::iterator c(_nmiCache.find(nwid));	if ((c != _nmiCache.end())&&((now - c->second.nmiTimestamp) < 1000)) { // a short duration cache but limits CPU use on big networks		nmi = c->second;		return;	}	_db.filter(pfx,[&nmi,&now](const std::string &n,const json &member) {		try {			if (OSUtils::jsonBool(member["authorized"],false)) {				++nmi.authorizedMemberCount;				if (member.count("recentLog")) {					const json &mlog = member["recentLog"];					if ((mlog.is_array())&&(mlog.size() > 0)) {						const json &mlog1 = mlog[0];						if (mlog1.is_object()) {							if ((now - OSUtils::jsonInt(mlog1["ts"],0ULL)) < ZT_NETCONF_NODE_ACTIVE_THRESHOLD)								++nmi.activeMemberCount;						}					}				}				if (OSUtils::jsonBool(member["activeBridge"],false)) {					nmi.activeBridges.insert(Address(Utils::hexStrToU64(OSUtils::jsonString(member["id"],"0000000000").c_str())));				}				if (member.count("ipAssignments")) {					const json &mips = member["ipAssignments"];					if (mips.is_array()) {						for(unsigned long i=0;i<mips.size();++i) {							InetAddress mip(OSUtils::jsonString(mips[i],""));							if ((mip.ss_family == AF_INET)||(mip.ss_family == AF_INET6))								nmi.allocatedIps.insert(mip);						}					}				}			} else {				nmi.mostRecentDeauthTime = std::max(nmi.mostRecentDeauthTime,OSUtils::jsonInt(member["lastDeauthorizedTime"],0ULL));			}		} catch ( ... ) {}		return true;	});	nmi.nmiTimestamp = now;	_nmiCache[nwid] = nmi;}void EmbeddedNetworkController::_pushMemberUpdate(uint64_t now,uint64_t nwid,const nlohmann::json &member){	try {		const std::string idstr = member["identity"];		const std::string mdstr = member["lastRequestMetaData"];		if ((idstr.length() > 0)&&(mdstr.length() > 0)) {			const Identity id(idstr);			bool online;			{				Mutex::Lock _l(_lastRequestTime_m);				std::map< std::pair<uint64_t,uint64_t>,uint64_t >::iterator lrt(_lastRequestTime.find(std::pair<uint64_t,uint64_t>(id.address().toInt(),nwid)));				online = ( (lrt != _lastRequestTime.end()) && ((now - lrt->second) < ZT_NETWORK_AUTOCONF_DELAY) );			}			if (online) {				Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> *metaData = new Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY>(mdstr.c_str());				try {					this->request(nwid,InetAddress(),0,id,*metaData);				} catch ( ... ) {}				delete metaData;			}		}	} catch ( ... ) {}}} // namespace ZeroTier
 |