ZeroTierOne.h 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100
  1. /*
  2. * ZeroTier One - Network Virtualization Everywhere
  3. * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
  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. /*
  19. * This defines the external C API for ZeroTier's core network virtualization
  20. * engine.
  21. */
  22. #ifndef ZT_ZEROTIERONE_H
  23. #define ZT_ZEROTIERONE_H
  24. #include <stdint.h>
  25. // For the struct sockaddr_storage structure
  26. #if defined(_WIN32) || defined(_WIN64)
  27. #include <WinSock2.h>
  28. #include <WS2tcpip.h>
  29. #include <Windows.h>
  30. #else /* not Windows */
  31. #include <arpa/inet.h>
  32. #include <netinet/in.h>
  33. #include <sys/types.h>
  34. #include <sys/socket.h>
  35. #endif /* Windows or not */
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39. /****************************************************************************/
  40. /* Core constants */
  41. /****************************************************************************/
  42. /**
  43. * Default UDP port for devices running a ZeroTier endpoint
  44. */
  45. #define ZT_DEFAULT_PORT 9993
  46. /**
  47. * Maximum MTU for ZeroTier virtual networks
  48. *
  49. * This is pretty much an unchangeable global constant. To make it change
  50. * across nodes would require logic to send ICMP packet too big messages,
  51. * which would complicate things. 1500 has been good enough on most LANs
  52. * for ages, so a larger MTU should be fine for the forseeable future. This
  53. * typically results in two UDP packets per single large frame. Experimental
  54. * results seem to show that this is good. Larger MTUs resulting in more
  55. * fragments seemed too brittle on slow/crummy links for no benefit.
  56. *
  57. * If this does change, also change it in tap.h in the tuntaposx code under
  58. * mac-tap.
  59. *
  60. * Overhead for a normal frame split into two packets:
  61. *
  62. * 1414 = 1444 (typical UDP MTU) - 28 (packet header) - 2 (ethertype)
  63. * 1428 = 1444 (typical UDP MTU) - 16 (fragment header)
  64. * SUM: 2842
  65. *
  66. * We use 2800, which leaves some room for other payload in other types of
  67. * messages such as multicast propagation or future support for bridging.
  68. */
  69. #define ZT_MAX_MTU 2800
  70. /**
  71. * Maximum length of network short name
  72. */
  73. #define ZT_MAX_NETWORK_SHORT_NAME_LENGTH 127
  74. /**
  75. * Maximum number of pushed routes on a network
  76. */
  77. #define ZT_MAX_NETWORK_ROUTES 32
  78. /**
  79. * Maximum number of statically assigned IP addresses per network endpoint using ZT address management (not DHCP)
  80. */
  81. #define ZT_MAX_ZT_ASSIGNED_ADDRESSES 16
  82. /**
  83. * Maximum number of "specialists" on a network -- bridges, relays, etc.
  84. */
  85. #define ZT_MAX_NETWORK_SPECIALISTS 256
  86. /**
  87. * Maximum number of multicast group subscriptions per network
  88. */
  89. #define ZT_MAX_NETWORK_MULTICAST_SUBSCRIPTIONS 4096
  90. /**
  91. * Rules engine revision ID, which specifies rules engine capabilities
  92. */
  93. #define ZT_RULES_ENGINE_REVISION 1
  94. /**
  95. * Maximum number of base (non-capability) network rules
  96. */
  97. #define ZT_MAX_NETWORK_RULES 1024
  98. /**
  99. * Maximum number of per-member capabilities per network
  100. */
  101. #define ZT_MAX_NETWORK_CAPABILITIES 128
  102. /**
  103. * Maximum number of per-member tags per network
  104. */
  105. #define ZT_MAX_NETWORK_TAGS 128
  106. /**
  107. * Maximum number of direct network paths to a given peer
  108. */
  109. #define ZT_MAX_PEER_NETWORK_PATHS 4
  110. /**
  111. * Maximum number of trusted physical network paths
  112. */
  113. #define ZT_MAX_TRUSTED_PATHS 16
  114. /**
  115. * Maximum number of rules per capability
  116. */
  117. #define ZT_MAX_CAPABILITY_RULES 64
  118. /**
  119. * Global maximum length for capability chain of custody (including initial issue)
  120. */
  121. #define ZT_MAX_CAPABILITY_CUSTODY_CHAIN_LENGTH 7
  122. /**
  123. * Maximum number of hops in a ZeroTier circuit test
  124. *
  125. * This is more or less the max that can be fit in a given packet (with
  126. * fragmentation) and only one address per hop.
  127. */
  128. #define ZT_CIRCUIT_TEST_MAX_HOPS 256
  129. /**
  130. * Maximum number of addresses per hop in a circuit test
  131. */
  132. #define ZT_CIRCUIT_TEST_MAX_HOP_BREADTH 8
  133. /**
  134. * Circuit test report flag: upstream peer authorized in path (e.g. by network COM)
  135. */
  136. #define ZT_CIRCUIT_TEST_REPORT_FLAGS_UPSTREAM_AUTHORIZED_IN_PATH 0x0000000000000001ULL
  137. /**
  138. * Maximum number of cluster members (and max member ID plus one)
  139. */
  140. #define ZT_CLUSTER_MAX_MEMBERS 128
  141. /**
  142. * Maximum number of physical ZeroTier addresses a cluster member can report
  143. */
  144. #define ZT_CLUSTER_MAX_ZT_PHYSICAL_ADDRESSES 16
  145. /**
  146. * Maximum allowed cluster message length in bytes
  147. */
  148. #define ZT_CLUSTER_MAX_MESSAGE_LENGTH (1500 - 48)
  149. /**
  150. * Packet characteristics flag: packet direction, 1 if inbound 0 if outbound
  151. */
  152. #define ZT_RULE_PACKET_CHARACTERISTICS_INBOUND 0x8000000000000000ULL
  153. /**
  154. * Packet characteristics flag: multicast or broadcast destination MAC
  155. */
  156. #define ZT_RULE_PACKET_CHARACTERISTICS_MULTICAST 0x4000000000000000ULL
  157. /**
  158. * Packet characteristics flag: broadcast destination MAC
  159. */
  160. #define ZT_RULE_PACKET_CHARACTERISTICS_BROADCAST 0x2000000000000000ULL
  161. /**
  162. * Packet characteristics flag: TCP left-most reserved bit
  163. */
  164. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_RESERVED_0 0x0000000000000800ULL
  165. /**
  166. * Packet characteristics flag: TCP middle reserved bit
  167. */
  168. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_RESERVED_1 0x0000000000000400ULL
  169. /**
  170. * Packet characteristics flag: TCP right-most reserved bit
  171. */
  172. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_RESERVED_2 0x0000000000000200ULL
  173. /**
  174. * Packet characteristics flag: TCP NS flag
  175. */
  176. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_NS 0x0000000000000100ULL
  177. /**
  178. * Packet characteristics flag: TCP CWR flag
  179. */
  180. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_CWR 0x0000000000000080ULL
  181. /**
  182. * Packet characteristics flag: TCP ECE flag
  183. */
  184. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_ECE 0x0000000000000040ULL
  185. /**
  186. * Packet characteristics flag: TCP URG flag
  187. */
  188. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_URG 0x0000000000000020ULL
  189. /**
  190. * Packet characteristics flag: TCP ACK flag
  191. */
  192. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_ACK 0x0000000000000010ULL
  193. /**
  194. * Packet characteristics flag: TCP PSH flag
  195. */
  196. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_PSH 0x0000000000000008ULL
  197. /**
  198. * Packet characteristics flag: TCP RST flag
  199. */
  200. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_RST 0x0000000000000004ULL
  201. /**
  202. * Packet characteristics flag: TCP SYN flag
  203. */
  204. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_SYN 0x0000000000000002ULL
  205. /**
  206. * Packet characteristics flag: TCP FIN flag
  207. */
  208. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_FIN 0x0000000000000001ULL
  209. /**
  210. * A null/empty sockaddr (all zero) to signify an unspecified socket address
  211. */
  212. extern const struct sockaddr_storage ZT_SOCKADDR_NULL;
  213. /****************************************************************************/
  214. /* Structures and other types */
  215. /****************************************************************************/
  216. /**
  217. * Function return code: OK (0) or error results
  218. *
  219. * Use ZT_ResultCode_isFatal() to check for a fatal error. If a fatal error
  220. * occurs, the node should be considered to not be working correctly. These
  221. * indicate serious problems like an inaccessible data store or a compile
  222. * problem.
  223. */
  224. enum ZT_ResultCode
  225. {
  226. /**
  227. * Operation completed normally
  228. */
  229. ZT_RESULT_OK = 0,
  230. // Fatal errors (>0, <1000)
  231. /**
  232. * Ran out of memory
  233. */
  234. ZT_RESULT_FATAL_ERROR_OUT_OF_MEMORY = 1,
  235. /**
  236. * Data store is not writable or has failed
  237. */
  238. ZT_RESULT_FATAL_ERROR_DATA_STORE_FAILED = 2,
  239. /**
  240. * Internal error (e.g. unexpected exception indicating bug or build problem)
  241. */
  242. ZT_RESULT_FATAL_ERROR_INTERNAL = 3,
  243. // Non-fatal errors (>1000)
  244. /**
  245. * Network ID not valid
  246. */
  247. ZT_RESULT_ERROR_NETWORK_NOT_FOUND = 1000,
  248. /**
  249. * The requested operation is not supported on this version or build
  250. */
  251. ZT_RESULT_ERROR_UNSUPPORTED_OPERATION = 1001,
  252. /**
  253. * The requestion operation was given a bad parameter or was called in an invalid state
  254. */
  255. ZT_RESULT_ERROR_BAD_PARAMETER = 1002
  256. };
  257. /**
  258. * @param x Result code
  259. * @return True if result code indicates a fatal error
  260. */
  261. #define ZT_ResultCode_isFatal(x) ((((int)(x)) > 0)&&(((int)(x)) < 1000))
  262. /**
  263. * Status codes sent to status update callback when things happen
  264. */
  265. enum ZT_Event
  266. {
  267. /**
  268. * Node has been initialized
  269. *
  270. * This is the first event generated, and is always sent. It may occur
  271. * before Node's constructor returns.
  272. *
  273. * Meta-data: none
  274. */
  275. ZT_EVENT_UP = 0,
  276. /**
  277. * Node is offline -- network does not seem to be reachable by any available strategy
  278. *
  279. * Meta-data: none
  280. */
  281. ZT_EVENT_OFFLINE = 1,
  282. /**
  283. * Node is online -- at least one upstream node appears reachable
  284. *
  285. * Meta-data: none
  286. */
  287. ZT_EVENT_ONLINE = 2,
  288. /**
  289. * Node is shutting down
  290. *
  291. * This is generated within Node's destructor when it is being shut down.
  292. * It's done for convenience, since cleaning up other state in the event
  293. * handler may appear more idiomatic.
  294. *
  295. * Meta-data: none
  296. */
  297. ZT_EVENT_DOWN = 3,
  298. /**
  299. * Your identity has collided with another node's ZeroTier address
  300. *
  301. * This happens if two different public keys both hash (via the algorithm
  302. * in Identity::generate()) to the same 40-bit ZeroTier address.
  303. *
  304. * This is something you should "never" see, where "never" is defined as
  305. * once per 2^39 new node initializations / identity creations. If you do
  306. * see it, you're going to see it very soon after a node is first
  307. * initialized.
  308. *
  309. * This is reported as an event rather than a return code since it's
  310. * detected asynchronously via error messages from authoritative nodes.
  311. *
  312. * If this occurs, you must shut down and delete the node, delete the
  313. * identity.secret record/file from the data store, and restart to generate
  314. * a new identity. If you don't do this, you will not be able to communicate
  315. * with other nodes.
  316. *
  317. * We'd automate this process, but we don't think silently deleting
  318. * private keys or changing our address without telling the calling code
  319. * is good form. It violates the principle of least surprise.
  320. *
  321. * You can technically get away with not handling this, but we recommend
  322. * doing so in a mature reliable application. Besides, handling this
  323. * condition is a good way to make sure it never arises. It's like how
  324. * umbrellas prevent rain and smoke detectors prevent fires. They do, right?
  325. *
  326. * Meta-data: none
  327. */
  328. ZT_EVENT_FATAL_ERROR_IDENTITY_COLLISION = 4,
  329. /**
  330. * Trace (debugging) message
  331. *
  332. * These events are only generated if this is a TRACE-enabled build.
  333. *
  334. * Meta-data: C string, TRACE message
  335. */
  336. ZT_EVENT_TRACE = 5,
  337. /**
  338. * VERB_USER_MESSAGE received
  339. *
  340. * These are generated when a VERB_USER_MESSAGE packet is received via
  341. * ZeroTier VL1.
  342. *
  343. * Meta-data: ZT_UserMessage structure
  344. */
  345. ZT_EVENT_USER_MESSAGE = 6
  346. };
  347. /**
  348. * User message used with ZT_EVENT_USER_MESSAGE
  349. */
  350. typedef struct
  351. {
  352. /**
  353. * ZeroTier address of sender (least significant 40 bits)
  354. */
  355. uint64_t origin;
  356. /**
  357. * User message type ID
  358. */
  359. uint64_t typeId;
  360. /**
  361. * User message data (not including type ID)
  362. */
  363. const void *data;
  364. /**
  365. * Length of data in bytes
  366. */
  367. unsigned int length;
  368. } ZT_UserMessage;
  369. /**
  370. * Current node status
  371. */
  372. typedef struct
  373. {
  374. /**
  375. * 40-bit ZeroTier address of this node
  376. */
  377. uint64_t address;
  378. /**
  379. * Current world ID
  380. */
  381. uint64_t worldId;
  382. /**
  383. * Current world revision/timestamp
  384. */
  385. uint64_t worldTimestamp;
  386. /**
  387. * Public identity in string-serialized form (safe to send to others)
  388. *
  389. * This pointer will remain valid as long as the node exists.
  390. */
  391. const char *publicIdentity;
  392. /**
  393. * Full identity including secret key in string-serialized form
  394. *
  395. * This pointer will remain valid as long as the node exists.
  396. */
  397. const char *secretIdentity;
  398. /**
  399. * True if some kind of connectivity appears available
  400. */
  401. int online;
  402. } ZT_NodeStatus;
  403. /**
  404. * Virtual network status codes
  405. */
  406. enum ZT_VirtualNetworkStatus
  407. {
  408. /**
  409. * Waiting for network configuration (also means revision == 0)
  410. */
  411. ZT_NETWORK_STATUS_REQUESTING_CONFIGURATION = 0,
  412. /**
  413. * Configuration received and we are authorized
  414. */
  415. ZT_NETWORK_STATUS_OK = 1,
  416. /**
  417. * Netconf master told us 'nope'
  418. */
  419. ZT_NETWORK_STATUS_ACCESS_DENIED = 2,
  420. /**
  421. * Netconf master exists, but this virtual network does not
  422. */
  423. ZT_NETWORK_STATUS_NOT_FOUND = 3,
  424. /**
  425. * Initialization of network failed or other internal error
  426. */
  427. ZT_NETWORK_STATUS_PORT_ERROR = 4,
  428. /**
  429. * ZeroTier core version too old
  430. */
  431. ZT_NETWORK_STATUS_CLIENT_TOO_OLD = 5
  432. };
  433. /**
  434. * Virtual network type codes
  435. */
  436. enum ZT_VirtualNetworkType
  437. {
  438. /**
  439. * Private networks are authorized via certificates of membership
  440. */
  441. ZT_NETWORK_TYPE_PRIVATE = 0,
  442. /**
  443. * Public networks have no access control -- they'll always be AUTHORIZED
  444. */
  445. ZT_NETWORK_TYPE_PUBLIC = 1
  446. };
  447. /**
  448. * The type of a virtual network rules table entry
  449. *
  450. * These must be from 0 to 63 since the most significant two bits of each
  451. * rule type are NOT (MSB) and AND/OR.
  452. *
  453. * Each rule is composed of zero or more MATCHes followed by an ACTION.
  454. * An ACTION with no MATCHes is always taken.
  455. */
  456. enum ZT_VirtualNetworkRuleType
  457. {
  458. // 0 to 15 reserved for actions
  459. /**
  460. * Drop frame
  461. */
  462. ZT_NETWORK_RULE_ACTION_DROP = 0,
  463. /**
  464. * Accept and pass frame
  465. */
  466. ZT_NETWORK_RULE_ACTION_ACCEPT = 1,
  467. /**
  468. * Forward a copy of this frame to an observer (by ZT address)
  469. */
  470. ZT_NETWORK_RULE_ACTION_TEE = 2,
  471. /**
  472. * Exactly like TEE but mandates ACKs from observer
  473. */
  474. ZT_NETWORK_RULE_ACTION_WATCH = 3,
  475. /**
  476. * Drop and redirect this frame to another node (by ZT address)
  477. */
  478. ZT_NETWORK_RULE_ACTION_REDIRECT = 4,
  479. /**
  480. * Log if match and if rule debugging is enabled in the build, otherwise does nothing (for developers)
  481. */
  482. ZT_NETWORK_RULE_ACTION_DEBUG_LOG = 5,
  483. /**
  484. * Maximum ID for an ACTION, anything higher is a MATCH
  485. */
  486. ZT_NETWORK_RULE_ACTION__MAX_ID = 15,
  487. // 16 to 63 reserved for match criteria
  488. ZT_NETWORK_RULE_MATCH_SOURCE_ZEROTIER_ADDRESS = 24,
  489. ZT_NETWORK_RULE_MATCH_DEST_ZEROTIER_ADDRESS = 25,
  490. ZT_NETWORK_RULE_MATCH_VLAN_ID = 26,
  491. ZT_NETWORK_RULE_MATCH_VLAN_PCP = 27,
  492. ZT_NETWORK_RULE_MATCH_VLAN_DEI = 28,
  493. ZT_NETWORK_RULE_MATCH_MAC_SOURCE = 29,
  494. ZT_NETWORK_RULE_MATCH_MAC_DEST = 30,
  495. ZT_NETWORK_RULE_MATCH_IPV4_SOURCE = 31,
  496. ZT_NETWORK_RULE_MATCH_IPV4_DEST = 32,
  497. ZT_NETWORK_RULE_MATCH_IPV6_SOURCE = 33,
  498. ZT_NETWORK_RULE_MATCH_IPV6_DEST = 34,
  499. ZT_NETWORK_RULE_MATCH_IP_TOS = 35,
  500. ZT_NETWORK_RULE_MATCH_IP_PROTOCOL = 36,
  501. ZT_NETWORK_RULE_MATCH_ETHERTYPE = 37,
  502. ZT_NETWORK_RULE_MATCH_ICMP = 38,
  503. ZT_NETWORK_RULE_MATCH_IP_SOURCE_PORT_RANGE = 39,
  504. ZT_NETWORK_RULE_MATCH_IP_DEST_PORT_RANGE = 40,
  505. ZT_NETWORK_RULE_MATCH_CHARACTERISTICS = 41,
  506. ZT_NETWORK_RULE_MATCH_FRAME_SIZE_RANGE = 42,
  507. ZT_NETWORK_RULE_MATCH_RANDOM = 43,
  508. ZT_NETWORK_RULE_MATCH_TAGS_DIFFERENCE = 44,
  509. ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_AND = 45,
  510. ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_OR = 46,
  511. ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_XOR = 47,
  512. ZT_NETWORK_RULE_MATCH_TAGS_EQUAL = 48,
  513. /**
  514. * Maximum ID allowed for a MATCH entry in the rules table
  515. */
  516. ZT_NETWORK_RULE_MATCH__MAX_ID = 63
  517. };
  518. /**
  519. * Network flow rule
  520. *
  521. * Rules are stored in a table in which one or more match entries is followed
  522. * by an action. If more than one match precedes an action, the rule is
  523. * the AND of all matches. An action with no match is always taken since it
  524. * matches anything. If nothing matches, the default action is DROP.
  525. *
  526. * This is designed to be a more memory-efficient way of storing rules than
  527. * a wide table, yet still fast and simple to access in code.
  528. */
  529. typedef struct
  530. {
  531. /**
  532. * Least significant 7 bits: ZT_VirtualNetworkRuleType, most significant 1 bit is NOT bit
  533. *
  534. * If the NOT bit is set, then matches will be interpreted as "does not
  535. * match." The NOT bit has no effect on actions.
  536. *
  537. * Use "& 0x7f" to get the enum and "& 0x80" to get the NOT flag.
  538. *
  539. * The union 'v' is a variant type, and this selects which field in 'v' is
  540. * actually used and valid.
  541. */
  542. uint8_t t;
  543. /**
  544. * Union containing the value of this rule -- which field is used depends on 't'
  545. */
  546. union {
  547. /**
  548. * IPv6 address in big-endian / network byte order and netmask bits
  549. */
  550. struct {
  551. uint8_t ip[16];
  552. uint8_t mask;
  553. } ipv6;
  554. /**
  555. * IPv4 address in big-endian / network byte order
  556. */
  557. struct {
  558. uint32_t ip;
  559. uint8_t mask;
  560. } ipv4;
  561. /**
  562. * Packet characteristic flags being matched
  563. */
  564. uint64_t characteristics;
  565. /**
  566. * IP port range -- start-end inclusive -- host byte order
  567. */
  568. uint16_t port[2];
  569. /**
  570. * 40-bit ZeroTier address (in least significant bits, host byte order)
  571. */
  572. uint64_t zt;
  573. /**
  574. * 0 = never, UINT32_MAX = always
  575. */
  576. uint32_t randomProbability;
  577. /**
  578. * 48-bit Ethernet MAC address in big-endian order
  579. */
  580. uint8_t mac[6];
  581. /**
  582. * VLAN ID in host byte order
  583. */
  584. uint16_t vlanId;
  585. /**
  586. * VLAN PCP (least significant 3 bits)
  587. */
  588. uint8_t vlanPcp;
  589. /**
  590. * VLAN DEI (single bit / boolean)
  591. */
  592. uint8_t vlanDei;
  593. /**
  594. * Ethernet type in host byte order
  595. */
  596. uint16_t etherType;
  597. /**
  598. * IP protocol
  599. */
  600. uint8_t ipProtocol;
  601. /**
  602. * IP type of service a.k.a. DSCP field
  603. */
  604. uint8_t ipTos;
  605. /**
  606. * Ethernet packet size in host byte order (start-end, inclusive)
  607. */
  608. uint16_t frameSize[2];
  609. /**
  610. * ICMP type and code
  611. */
  612. struct {
  613. uint8_t type; // ICMP type, always matched
  614. uint8_t code; // ICMP code if matched
  615. uint8_t flags; // flag 0x01 means also match code, otherwise only match type
  616. } icmp;
  617. /**
  618. * For tag-related rules
  619. */
  620. struct {
  621. uint32_t id;
  622. uint32_t value;
  623. } tag;
  624. /**
  625. * Destinations for TEE and REDIRECT
  626. */
  627. struct {
  628. uint64_t address;
  629. uint32_t flags;
  630. uint16_t length;
  631. } fwd;
  632. } v;
  633. } ZT_VirtualNetworkRule;
  634. typedef struct
  635. {
  636. /**
  637. * 128-bit ID (GUID) of this capability
  638. */
  639. uint64_t id[2];
  640. /**
  641. * Expiration time (measured vs. network config timestamp issued by controller)
  642. */
  643. uint64_t expiration;
  644. struct {
  645. uint64_t from;
  646. uint64_t to;
  647. } custody[ZT_MAX_CAPABILITY_CUSTODY_CHAIN_LENGTH];
  648. } ZT_VirtualNetworkCapability;
  649. /**
  650. * A route to be pushed on a virtual network
  651. */
  652. typedef struct
  653. {
  654. /**
  655. * Target network / netmask bits (in port field) or NULL or 0.0.0.0/0 for default
  656. */
  657. struct sockaddr_storage target;
  658. /**
  659. * Gateway IP address (port ignored) or NULL (family == 0) for LAN-local (no gateway)
  660. */
  661. struct sockaddr_storage via;
  662. /**
  663. * Route flags
  664. */
  665. uint16_t flags;
  666. /**
  667. * Route metric (not currently used)
  668. */
  669. uint16_t metric;
  670. } ZT_VirtualNetworkRoute;
  671. /**
  672. * An Ethernet multicast group
  673. */
  674. typedef struct
  675. {
  676. /**
  677. * MAC address (least significant 48 bits)
  678. */
  679. uint64_t mac;
  680. /**
  681. * Additional distinguishing information (usually zero)
  682. */
  683. unsigned long adi;
  684. } ZT_MulticastGroup;
  685. /**
  686. * Virtual network configuration update type
  687. */
  688. enum ZT_VirtualNetworkConfigOperation
  689. {
  690. /**
  691. * Network is coming up (either for the first time or after service restart)
  692. */
  693. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_UP = 1,
  694. /**
  695. * Network configuration has been updated
  696. */
  697. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_CONFIG_UPDATE = 2,
  698. /**
  699. * Network is going down (not permanently)
  700. */
  701. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DOWN = 3,
  702. /**
  703. * Network is going down permanently (leave/delete)
  704. */
  705. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY = 4
  706. };
  707. /**
  708. * What trust hierarchy role does this peer have?
  709. */
  710. enum ZT_PeerRole
  711. {
  712. ZT_PEER_ROLE_LEAF = 0, // ordinary node
  713. ZT_PEER_ROLE_UPSTREAM = 1, // moon root
  714. ZT_PEER_ROLE_ROOT = 2 // planetary root
  715. };
  716. /**
  717. * Vendor ID
  718. */
  719. enum ZT_Vendor
  720. {
  721. ZT_VENDOR_UNSPECIFIED = 0,
  722. ZT_VENDOR_ZEROTIER = 1
  723. };
  724. /**
  725. * Platform type
  726. */
  727. enum ZT_Platform
  728. {
  729. ZT_PLATFORM_UNSPECIFIED = 0,
  730. ZT_PLATFORM_LINUX = 1,
  731. ZT_PLATFORM_WINDOWS = 2,
  732. ZT_PLATFORM_MACOS = 3,
  733. ZT_PLATFORM_ANDROID = 4,
  734. ZT_PLATFORM_IOS = 5,
  735. ZT_PLATFORM_SOLARIS_SMARTOS = 6,
  736. ZT_PLATFORM_FREEBSD = 7,
  737. ZT_PLATFORM_NETBSD = 8,
  738. ZT_PLATFORM_OPENBSD = 9,
  739. ZT_PLATFORM_RISCOS = 10,
  740. ZT_PLATFORM_VXWORKS = 11,
  741. ZT_PLATFORM_FREERTOS = 12,
  742. ZT_PLATFORM_SYSBIOS = 13,
  743. ZT_PLATFORM_HURD = 14,
  744. ZT_PLATFORM_WEB = 15
  745. };
  746. /**
  747. * Architecture type
  748. */
  749. enum ZT_Architecture
  750. {
  751. ZT_ARCHITECTURE_UNSPECIFIED = 0,
  752. ZT_ARCHITECTURE_X86 = 1,
  753. ZT_ARCHITECTURE_X64 = 2,
  754. ZT_ARCHITECTURE_ARM32 = 3,
  755. ZT_ARCHITECTURE_ARM64 = 4,
  756. ZT_ARCHITECTURE_MIPS32 = 5,
  757. ZT_ARCHITECTURE_MIPS64 = 6,
  758. ZT_ARCHITECTURE_POWER32 = 7,
  759. ZT_ARCHITECTURE_POWER64 = 8,
  760. ZT_ARCHITECTURE_OPENRISC32 = 9,
  761. ZT_ARCHITECTURE_OPENRISC64 = 10,
  762. ZT_ARCHITECTURE_SPARC32 = 11,
  763. ZT_ARCHITECTURE_SPARC64 = 12,
  764. ZT_ARCHITECTURE_DOTNET_CLR = 13,
  765. ZT_ARCHITECTURE_JAVA_JVM = 14,
  766. ZT_ARCHITECTURE_WEB = 15
  767. };
  768. /**
  769. * Virtual network configuration
  770. */
  771. typedef struct
  772. {
  773. /**
  774. * 64-bit ZeroTier network ID
  775. */
  776. uint64_t nwid;
  777. /**
  778. * Ethernet MAC (48 bits) that should be assigned to port
  779. */
  780. uint64_t mac;
  781. /**
  782. * Network name (from network configuration master)
  783. */
  784. char name[ZT_MAX_NETWORK_SHORT_NAME_LENGTH + 1];
  785. /**
  786. * Network configuration request status
  787. */
  788. enum ZT_VirtualNetworkStatus status;
  789. /**
  790. * Network type
  791. */
  792. enum ZT_VirtualNetworkType type;
  793. /**
  794. * Maximum interface MTU
  795. */
  796. unsigned int mtu;
  797. /**
  798. * Recommended MTU to avoid fragmentation at the physical layer (hint)
  799. */
  800. unsigned int physicalMtu;
  801. /**
  802. * If nonzero, the network this port belongs to indicates DHCP availability
  803. *
  804. * This is a suggestion. The underlying implementation is free to ignore it
  805. * for security or other reasons. This is simply a netconf parameter that
  806. * means 'DHCP is available on this network.'
  807. */
  808. int dhcp;
  809. /**
  810. * If nonzero, this port is allowed to bridge to other networks
  811. *
  812. * This is informational. If this is false (0), bridged packets will simply
  813. * be dropped and bridging won't work.
  814. */
  815. int bridge;
  816. /**
  817. * If nonzero, this network supports and allows broadcast (ff:ff:ff:ff:ff:ff) traffic
  818. */
  819. int broadcastEnabled;
  820. /**
  821. * If the network is in PORT_ERROR state, this is the (negative) error code most recently reported
  822. */
  823. int portError;
  824. /**
  825. * Revision number as reported by controller or 0 if still waiting for config
  826. */
  827. unsigned long netconfRevision;
  828. /**
  829. * Number of assigned addresses
  830. */
  831. unsigned int assignedAddressCount;
  832. /**
  833. * ZeroTier-assigned addresses (in sockaddr_storage structures)
  834. *
  835. * For IP, the port number of the sockaddr_XX structure contains the number
  836. * of bits in the address netmask. Only the IP address and port are used.
  837. * Other fields like interface number can be ignored.
  838. *
  839. * This is only used for ZeroTier-managed address assignments sent by the
  840. * virtual network's configuration master.
  841. */
  842. struct sockaddr_storage assignedAddresses[ZT_MAX_ZT_ASSIGNED_ADDRESSES];
  843. /**
  844. * Number of ZT-pushed routes
  845. */
  846. unsigned int routeCount;
  847. /**
  848. * Routes (excluding those implied by assigned addresses and their masks)
  849. */
  850. ZT_VirtualNetworkRoute routes[ZT_MAX_NETWORK_ROUTES];
  851. } ZT_VirtualNetworkConfig;
  852. /**
  853. * A list of networks
  854. */
  855. typedef struct
  856. {
  857. ZT_VirtualNetworkConfig *networks;
  858. unsigned long networkCount;
  859. } ZT_VirtualNetworkList;
  860. /**
  861. * Physical network path to a peer
  862. */
  863. typedef struct
  864. {
  865. /**
  866. * Address of endpoint
  867. */
  868. struct sockaddr_storage address;
  869. /**
  870. * Time of last send in milliseconds or 0 for never
  871. */
  872. uint64_t lastSend;
  873. /**
  874. * Time of last receive in milliseconds or 0 for never
  875. */
  876. uint64_t lastReceive;
  877. /**
  878. * Is this a trusted path? If so this will be its nonzero ID.
  879. */
  880. uint64_t trustedPathId;
  881. /**
  882. * Is path expired?
  883. */
  884. int expired;
  885. /**
  886. * Is path preferred?
  887. */
  888. int preferred;
  889. } ZT_PeerPhysicalPath;
  890. /**
  891. * Peer status result buffer
  892. */
  893. typedef struct
  894. {
  895. /**
  896. * ZeroTier address (40 bits)
  897. */
  898. uint64_t address;
  899. /**
  900. * Remote major version or -1 if not known
  901. */
  902. int versionMajor;
  903. /**
  904. * Remote minor version or -1 if not known
  905. */
  906. int versionMinor;
  907. /**
  908. * Remote revision or -1 if not known
  909. */
  910. int versionRev;
  911. /**
  912. * Last measured latency in milliseconds or zero if unknown
  913. */
  914. unsigned int latency;
  915. /**
  916. * What trust hierarchy role does this device have?
  917. */
  918. enum ZT_PeerRole role;
  919. /**
  920. * Number of paths (size of paths[])
  921. */
  922. unsigned int pathCount;
  923. /**
  924. * Known network paths to peer
  925. */
  926. ZT_PeerPhysicalPath paths[ZT_MAX_PEER_NETWORK_PATHS];
  927. } ZT_Peer;
  928. /**
  929. * List of peers
  930. */
  931. typedef struct
  932. {
  933. ZT_Peer *peers;
  934. unsigned long peerCount;
  935. } ZT_PeerList;
  936. /**
  937. * ZeroTier circuit test configuration and path
  938. */
  939. typedef struct {
  940. /**
  941. * Test ID -- an arbitrary 64-bit identifier
  942. */
  943. uint64_t testId;
  944. /**
  945. * Timestamp -- sent with test and echoed back by each reporter
  946. */
  947. uint64_t timestamp;
  948. /**
  949. * Originator credential: network ID
  950. *
  951. * If this is nonzero, a network ID will be set for this test and
  952. * the originator must be its primary network controller. This is
  953. * currently the only authorization method available, so it must
  954. * be set to run a test.
  955. */
  956. uint64_t credentialNetworkId;
  957. /**
  958. * Hops in circuit test (a.k.a. FIFO for graph traversal)
  959. */
  960. struct {
  961. /**
  962. * Hop flags (currently unused, must be zero)
  963. */
  964. unsigned int flags;
  965. /**
  966. * Number of addresses in this hop (max: ZT_CIRCUIT_TEST_MAX_HOP_BREADTH)
  967. */
  968. unsigned int breadth;
  969. /**
  970. * 40-bit ZeroTier addresses (most significant 24 bits ignored)
  971. */
  972. uint64_t addresses[ZT_CIRCUIT_TEST_MAX_HOP_BREADTH];
  973. } hops[ZT_CIRCUIT_TEST_MAX_HOPS];
  974. /**
  975. * Number of hops (max: ZT_CIRCUIT_TEST_MAX_HOPS)
  976. */
  977. unsigned int hopCount;
  978. /**
  979. * If non-zero, circuit test will report back at every hop
  980. */
  981. int reportAtEveryHop;
  982. /**
  983. * An arbitrary user-settable pointer
  984. */
  985. void *ptr;
  986. /**
  987. * Pointer for internal use -- initialize to zero and do not modify
  988. */
  989. void *_internalPtr;
  990. } ZT_CircuitTest;
  991. /**
  992. * Circuit test result report
  993. */
  994. typedef struct {
  995. /**
  996. * Sender of report (current hop)
  997. */
  998. uint64_t current;
  999. /**
  1000. * Previous hop
  1001. */
  1002. uint64_t upstream;
  1003. /**
  1004. * 64-bit test ID
  1005. */
  1006. uint64_t testId;
  1007. /**
  1008. * Timestamp from original test (echoed back at each hop)
  1009. */
  1010. uint64_t timestamp;
  1011. /**
  1012. * 64-bit packet ID of packet received by the reporting device
  1013. */
  1014. uint64_t sourcePacketId;
  1015. /**
  1016. * Flags
  1017. */
  1018. uint64_t flags;
  1019. /**
  1020. * ZeroTier protocol-level hop count of packet received by reporting device (>0 indicates relayed)
  1021. */
  1022. unsigned int sourcePacketHopCount;
  1023. /**
  1024. * Error code (currently unused, will be zero)
  1025. */
  1026. unsigned int errorCode;
  1027. /**
  1028. * Remote device vendor ID
  1029. */
  1030. enum ZT_Vendor vendor;
  1031. /**
  1032. * Remote device protocol compliance version
  1033. */
  1034. unsigned int protocolVersion;
  1035. /**
  1036. * Software major version
  1037. */
  1038. unsigned int majorVersion;
  1039. /**
  1040. * Software minor version
  1041. */
  1042. unsigned int minorVersion;
  1043. /**
  1044. * Software revision
  1045. */
  1046. unsigned int revision;
  1047. /**
  1048. * Platform / OS
  1049. */
  1050. enum ZT_Platform platform;
  1051. /**
  1052. * System architecture
  1053. */
  1054. enum ZT_Architecture architecture;
  1055. /**
  1056. * Local device address on which packet was received by reporting device
  1057. *
  1058. * This may have ss_family equal to zero (null address) if unspecified.
  1059. */
  1060. struct sockaddr_storage receivedOnLocalAddress;
  1061. /**
  1062. * Remote address from which reporter received the test packet
  1063. *
  1064. * This may have ss_family set to zero (null address) if unspecified.
  1065. */
  1066. struct sockaddr_storage receivedFromRemoteAddress;
  1067. /**
  1068. * Next hops to which packets are being or will be sent by the reporter
  1069. *
  1070. * In addition to reporting back, the reporter may send the test on if
  1071. * there are more recipients in the FIFO. If it does this, it can report
  1072. * back the address(es) that make up the next hop and the physical address
  1073. * for each if it has one. The physical address being null/unspecified
  1074. * typically indicates that no direct path exists and the next packet
  1075. * will be relayed.
  1076. */
  1077. struct {
  1078. /**
  1079. * 40-bit ZeroTier address
  1080. */
  1081. uint64_t address;
  1082. /**
  1083. * Physical address or null address (ss_family == 0) if unspecified or unknown
  1084. */
  1085. struct sockaddr_storage physicalAddress;
  1086. } nextHops[ZT_CIRCUIT_TEST_MAX_HOP_BREADTH];
  1087. /**
  1088. * Number of next hops reported in nextHops[]
  1089. */
  1090. unsigned int nextHopCount;
  1091. } ZT_CircuitTestReport;
  1092. /**
  1093. * A cluster member's status
  1094. */
  1095. typedef struct {
  1096. /**
  1097. * This cluster member's ID (from 0 to 1-ZT_CLUSTER_MAX_MEMBERS)
  1098. */
  1099. unsigned int id;
  1100. /**
  1101. * Number of milliseconds since last 'alive' heartbeat message received via cluster backplane address
  1102. */
  1103. unsigned int msSinceLastHeartbeat;
  1104. /**
  1105. * Non-zero if cluster member is alive
  1106. */
  1107. int alive;
  1108. /**
  1109. * X, Y, and Z coordinates of this member (if specified, otherwise zero)
  1110. *
  1111. * What these mean depends on the location scheme being used for
  1112. * location-aware clustering. At present this is GeoIP and these
  1113. * will be the X, Y, and Z coordinates of the location on a spherical
  1114. * approximation of Earth where Earth's core is the origin (in km).
  1115. * They don't have to be perfect and need only be comparable with others
  1116. * to find shortest path via the standard vector distance formula.
  1117. */
  1118. int x,y,z;
  1119. /**
  1120. * Cluster member's last reported load
  1121. */
  1122. uint64_t load;
  1123. /**
  1124. * Number of peers
  1125. */
  1126. uint64_t peers;
  1127. /**
  1128. * Physical ZeroTier endpoints for this member (where peers are sent when directed here)
  1129. */
  1130. struct sockaddr_storage zeroTierPhysicalEndpoints[ZT_CLUSTER_MAX_ZT_PHYSICAL_ADDRESSES];
  1131. /**
  1132. * Number of physical ZeroTier endpoints this member is announcing
  1133. */
  1134. unsigned int numZeroTierPhysicalEndpoints;
  1135. } ZT_ClusterMemberStatus;
  1136. /**
  1137. * ZeroTier cluster status
  1138. */
  1139. typedef struct {
  1140. /**
  1141. * My cluster member ID (a record for 'self' is included in member[])
  1142. */
  1143. unsigned int myId;
  1144. /**
  1145. * Number of cluster members
  1146. */
  1147. unsigned int clusterSize;
  1148. /**
  1149. * Cluster member statuses
  1150. */
  1151. ZT_ClusterMemberStatus members[ZT_CLUSTER_MAX_MEMBERS];
  1152. } ZT_ClusterStatus;
  1153. /**
  1154. * An instance of a ZeroTier One node (opaque)
  1155. */
  1156. typedef void ZT_Node;
  1157. /****************************************************************************/
  1158. /* Callbacks used by Node API */
  1159. /****************************************************************************/
  1160. /**
  1161. * Callback called to update virtual network port configuration
  1162. *
  1163. * This can be called at any time to update the configuration of a virtual
  1164. * network port. The parameter after the network ID specifies whether this
  1165. * port is being brought up, updated, brought down, or permanently deleted.
  1166. *
  1167. * This in turn should be used by the underlying implementation to create
  1168. * and configure tap devices at the OS (or virtual network stack) layer.
  1169. *
  1170. * The supplied config pointer is not guaranteed to remain valid, so make
  1171. * a copy if you want one.
  1172. *
  1173. * This should not call multicastSubscribe() or other network-modifying
  1174. * methods, as this could cause a deadlock in multithreaded or interrupt
  1175. * driven environments.
  1176. *
  1177. * This must return 0 on success. It can return any OS-dependent error code
  1178. * on failure, and this results in the network being placed into the
  1179. * PORT_ERROR state.
  1180. */
  1181. typedef int (*ZT_VirtualNetworkConfigFunction)(
  1182. ZT_Node *, /* Node */
  1183. void *, /* User ptr */
  1184. uint64_t, /* Network ID */
  1185. void **, /* Modifiable network user PTR */
  1186. enum ZT_VirtualNetworkConfigOperation, /* Config operation */
  1187. const ZT_VirtualNetworkConfig *); /* Network configuration */
  1188. /**
  1189. * Function to send a frame out to a virtual network port
  1190. *
  1191. * Parameters: (1) node, (2) user ptr, (3) network ID, (4) source MAC,
  1192. * (5) destination MAC, (6) ethertype, (7) VLAN ID, (8) frame data,
  1193. * (9) frame length.
  1194. */
  1195. typedef void (*ZT_VirtualNetworkFrameFunction)(
  1196. ZT_Node *, /* Node */
  1197. void *, /* User ptr */
  1198. uint64_t, /* Network ID */
  1199. void **, /* Modifiable network user PTR */
  1200. uint64_t, /* Source MAC */
  1201. uint64_t, /* Destination MAC */
  1202. unsigned int, /* Ethernet type */
  1203. unsigned int, /* VLAN ID (0 for none) */
  1204. const void *, /* Frame data */
  1205. unsigned int); /* Frame length */
  1206. /**
  1207. * Callback for events
  1208. *
  1209. * Events are generated when the node's status changes in a significant way
  1210. * and on certain non-fatal errors and events of interest. The final void
  1211. * parameter points to event meta-data. The type of event meta-data (and
  1212. * whether it is present at all) is event type dependent. See the comments
  1213. * in the definition of ZT_Event.
  1214. */
  1215. typedef void (*ZT_EventCallback)(
  1216. ZT_Node *,
  1217. void *,
  1218. enum ZT_Event,
  1219. const void *);
  1220. /**
  1221. * Function to get an object from the data store
  1222. *
  1223. * Parameters: (1) object name, (2) buffer to fill, (3) size of buffer, (4)
  1224. * index in object to start reading, (5) result parameter that must be set
  1225. * to the actual size of the object if it exists.
  1226. *
  1227. * Object names can contain forward slash (/) path separators. They will
  1228. * never contain .. or backslash (\), so this is safe to map as a Unix-style
  1229. * path if the underlying storage permits. For security reasons we recommend
  1230. * returning errors if .. or \ are used.
  1231. *
  1232. * The function must return the actual number of bytes read. If the object
  1233. * doesn't exist, it should return -1. -2 should be returned on other errors
  1234. * such as errors accessing underlying storage.
  1235. *
  1236. * If the read doesn't fit in the buffer, the max number of bytes should be
  1237. * read. The caller may call the function multiple times to read the whole
  1238. * object.
  1239. */
  1240. typedef long (*ZT_DataStoreGetFunction)(
  1241. ZT_Node *,
  1242. void *,
  1243. const char *,
  1244. void *,
  1245. unsigned long,
  1246. unsigned long,
  1247. unsigned long *);
  1248. /**
  1249. * Function to store an object in the data store
  1250. *
  1251. * Parameters: (1) node, (2) user ptr, (3) object name, (4) object data,
  1252. * (5) object size, (6) secure? (bool).
  1253. *
  1254. * If secure is true, the file should be set readable and writable only
  1255. * to the user running ZeroTier One. What this means is platform-specific.
  1256. *
  1257. * Name semantics are the same as the get function. This must return zero on
  1258. * success. You can return any OS-specific error code on failure, as these
  1259. * may be visible in logs or error messages and might aid in debugging.
  1260. *
  1261. * If the data pointer is null, this must be interpreted as a delete
  1262. * operation.
  1263. */
  1264. typedef int (*ZT_DataStorePutFunction)(
  1265. ZT_Node *,
  1266. void *,
  1267. const char *,
  1268. const void *,
  1269. unsigned long,
  1270. int);
  1271. /**
  1272. * Function to send a ZeroTier packet out over the wire
  1273. *
  1274. * Parameters:
  1275. * (1) Node
  1276. * (2) User pointer
  1277. * (3) Local interface address
  1278. * (4) Remote address
  1279. * (5) Packet data
  1280. * (6) Packet length
  1281. * (7) Desired IP TTL or 0 to use default
  1282. *
  1283. * If there is only one local interface it is safe to ignore the local
  1284. * interface address. Otherwise if running with multiple interfaces, the
  1285. * correct local interface should be chosen by address unless NULL. If
  1286. * the ss_family field is zero (NULL address), a random or preferred
  1287. * default interface should be used.
  1288. *
  1289. * If TTL is nonzero, packets should have their IP TTL value set to this
  1290. * value if possible. If this is not possible it is acceptable to ignore
  1291. * this value and send anyway with normal or default TTL.
  1292. *
  1293. * The function must return zero on success and may return any error code
  1294. * on failure. Note that success does not (of course) guarantee packet
  1295. * delivery. It only means that the packet appears to have been sent.
  1296. */
  1297. typedef int (*ZT_WirePacketSendFunction)(
  1298. ZT_Node *, /* Node */
  1299. void *, /* User ptr */
  1300. const struct sockaddr_storage *, /* Local address */
  1301. const struct sockaddr_storage *, /* Remote address */
  1302. const void *, /* Packet data */
  1303. unsigned int, /* Packet length */
  1304. unsigned int); /* TTL or 0 to use default */
  1305. /**
  1306. * Function to check whether a path should be used for ZeroTier traffic
  1307. *
  1308. * Paramters:
  1309. * (1) Node
  1310. * (2) User pointer
  1311. * (3) ZeroTier address or 0 for none/any
  1312. * (4) Local interface address
  1313. * (5) Remote address
  1314. *
  1315. * This function must return nonzero (true) if the path should be used.
  1316. *
  1317. * If no path check function is specified, ZeroTier will still exclude paths
  1318. * that overlap with ZeroTier-assigned and managed IP address blocks. But the
  1319. * use of a path check function is recommended to ensure that recursion does
  1320. * not occur in cases where addresses are assigned by the OS or managed by
  1321. * an out of band mechanism like DHCP. The path check function should examine
  1322. * all configured ZeroTier interfaces and check to ensure that the supplied
  1323. * addresses will not result in ZeroTier traffic being sent over a ZeroTier
  1324. * interface (recursion).
  1325. *
  1326. * Obviously this is not required in configurations where this can't happen,
  1327. * such as network containers or embedded.
  1328. */
  1329. typedef int (*ZT_PathCheckFunction)(
  1330. ZT_Node *, /* Node */
  1331. void *, /* User ptr */
  1332. uint64_t, /* ZeroTier address */
  1333. const struct sockaddr_storage *, /* Local address */
  1334. const struct sockaddr_storage *); /* Remote address */
  1335. /**
  1336. * Function to get physical addresses for ZeroTier peers
  1337. *
  1338. * Parameters:
  1339. * (1) Node
  1340. * (2) User pointer
  1341. * (3) ZeroTier address (least significant 40 bits)
  1342. * (4) Desried address family or -1 for any
  1343. * (5) Buffer to fill with result
  1344. *
  1345. * If provided this function will be occasionally called to get physical
  1346. * addresses that might be tried to reach a ZeroTier address. It must
  1347. * return a nonzero (true) value if the result buffer has been filled
  1348. * with an address.
  1349. */
  1350. typedef int (*ZT_PathLookupFunction)(
  1351. ZT_Node *, /* Node */
  1352. void *, /* User ptr */
  1353. uint64_t, /* ZeroTier address (40 bits) */
  1354. int, /* Desired ss_family or -1 for any */
  1355. struct sockaddr_storage *); /* Result buffer */
  1356. /****************************************************************************/
  1357. /* C Node API */
  1358. /****************************************************************************/
  1359. /**
  1360. * Structure for configuring ZeroTier core callback functions
  1361. */
  1362. struct ZT_Node_Callbacks
  1363. {
  1364. /**
  1365. * Struct version -- must currently be 0
  1366. */
  1367. long version;
  1368. /**
  1369. * REQUIRED: Function to get objects from persistent storage
  1370. */
  1371. ZT_DataStoreGetFunction dataStoreGetFunction;
  1372. /**
  1373. * REQUIRED: Function to store objects in persistent storage
  1374. */
  1375. ZT_DataStorePutFunction dataStorePutFunction;
  1376. /**
  1377. * REQUIRED: Function to send packets over the physical wire
  1378. */
  1379. ZT_WirePacketSendFunction wirePacketSendFunction;
  1380. /**
  1381. * REQUIRED: Function to inject frames into a virtual network's TAP
  1382. */
  1383. ZT_VirtualNetworkFrameFunction virtualNetworkFrameFunction;
  1384. /**
  1385. * REQUIRED: Function to be called when virtual networks are configured or changed
  1386. */
  1387. ZT_VirtualNetworkConfigFunction virtualNetworkConfigFunction;
  1388. /**
  1389. * REQUIRED: Function to be called to notify external code of important events
  1390. */
  1391. ZT_EventCallback eventCallback;
  1392. /**
  1393. * OPTIONAL: Function to check whether a given physical path should be used
  1394. */
  1395. ZT_PathCheckFunction pathCheckFunction;
  1396. /**
  1397. * OPTIONAL: Function to get hints to physical paths to ZeroTier addresses
  1398. */
  1399. ZT_PathLookupFunction pathLookupFunction;
  1400. };
  1401. /**
  1402. * Create a new ZeroTier One node
  1403. *
  1404. * Note that this can take a few seconds the first time it's called, as it
  1405. * will generate an identity.
  1406. *
  1407. * TODO: should consolidate function pointers into versioned structure for
  1408. * better API stability.
  1409. *
  1410. * @param node Result: pointer is set to new node instance on success
  1411. * @param uptr User pointer to pass to functions/callbacks
  1412. * @param callbacks Callback function configuration
  1413. * @param now Current clock in milliseconds
  1414. * @return OK (0) or error code if a fatal error condition has occurred
  1415. */
  1416. enum ZT_ResultCode ZT_Node_new(ZT_Node **node,void *uptr,const struct ZT_Node_Callbacks *callbacks,uint64_t now);
  1417. /**
  1418. * Delete a node and free all resources it consumes
  1419. *
  1420. * If you are using multiple threads, all other threads must be shut down
  1421. * first. This can crash if processXXX() methods are in progress.
  1422. *
  1423. * @param node Node to delete
  1424. */
  1425. void ZT_Node_delete(ZT_Node *node);
  1426. /**
  1427. * Process a packet received from the physical wire
  1428. *
  1429. * @param node Node instance
  1430. * @param now Current clock in milliseconds
  1431. * @param localAddress Local address, or point to ZT_SOCKADDR_NULL if unspecified
  1432. * @param remoteAddress Origin of packet
  1433. * @param packetData Packet data
  1434. * @param packetLength Packet length
  1435. * @param nextBackgroundTaskDeadline Value/result: set to deadline for next call to processBackgroundTasks()
  1436. * @return OK (0) or error code if a fatal error condition has occurred
  1437. */
  1438. enum ZT_ResultCode ZT_Node_processWirePacket(
  1439. ZT_Node *node,
  1440. uint64_t now,
  1441. const struct sockaddr_storage *localAddress,
  1442. const struct sockaddr_storage *remoteAddress,
  1443. const void *packetData,
  1444. unsigned int packetLength,
  1445. volatile uint64_t *nextBackgroundTaskDeadline);
  1446. /**
  1447. * Process a frame from a virtual network port (tap)
  1448. *
  1449. * @param node Node instance
  1450. * @param now Current clock in milliseconds
  1451. * @param nwid ZeroTier 64-bit virtual network ID
  1452. * @param sourceMac Source MAC address (least significant 48 bits)
  1453. * @param destMac Destination MAC address (least significant 48 bits)
  1454. * @param etherType 16-bit Ethernet frame type
  1455. * @param vlanId 10-bit VLAN ID or 0 if none
  1456. * @param frameData Frame payload data
  1457. * @param frameLength Frame payload length
  1458. * @param nextBackgroundTaskDeadline Value/result: set to deadline for next call to processBackgroundTasks()
  1459. * @return OK (0) or error code if a fatal error condition has occurred
  1460. */
  1461. enum ZT_ResultCode ZT_Node_processVirtualNetworkFrame(
  1462. ZT_Node *node,
  1463. uint64_t now,
  1464. uint64_t nwid,
  1465. uint64_t sourceMac,
  1466. uint64_t destMac,
  1467. unsigned int etherType,
  1468. unsigned int vlanId,
  1469. const void *frameData,
  1470. unsigned int frameLength,
  1471. volatile uint64_t *nextBackgroundTaskDeadline);
  1472. /**
  1473. * Perform periodic background operations
  1474. *
  1475. * @param node Node instance
  1476. * @param now Current clock in milliseconds
  1477. * @param nextBackgroundTaskDeadline Value/result: set to deadline for next call to processBackgroundTasks()
  1478. * @return OK (0) or error code if a fatal error condition has occurred
  1479. */
  1480. enum ZT_ResultCode ZT_Node_processBackgroundTasks(ZT_Node *node,uint64_t now,volatile uint64_t *nextBackgroundTaskDeadline);
  1481. /**
  1482. * Join a network
  1483. *
  1484. * This may generate calls to the port config callback before it returns,
  1485. * or these may be deffered if a netconf is not available yet.
  1486. *
  1487. * If we are already a member of the network, nothing is done and OK is
  1488. * returned.
  1489. *
  1490. * @param node Node instance
  1491. * @param nwid 64-bit ZeroTier network ID
  1492. * @param uptr An arbitrary pointer to associate with this network (default: NULL)
  1493. * @return OK (0) or error code if a fatal error condition has occurred
  1494. */
  1495. enum ZT_ResultCode ZT_Node_join(ZT_Node *node,uint64_t nwid,void *uptr);
  1496. /**
  1497. * Leave a network
  1498. *
  1499. * If a port has been configured for this network this will generate a call
  1500. * to the port config callback with a NULL second parameter to indicate that
  1501. * the port is now deleted.
  1502. *
  1503. * The uptr parameter is optional and is NULL by default. If it is not NULL,
  1504. * the pointer it points to is set to this network's uptr on success.
  1505. *
  1506. * @param node Node instance
  1507. * @param nwid 64-bit network ID
  1508. * @param uptr Target pointer is set to uptr (if not NULL)
  1509. * @return OK (0) or error code if a fatal error condition has occurred
  1510. */
  1511. enum ZT_ResultCode ZT_Node_leave(ZT_Node *node,uint64_t nwid,void **uptr);
  1512. /**
  1513. * Subscribe to an Ethernet multicast group
  1514. *
  1515. * ADI stands for additional distinguishing information. This defaults to zero
  1516. * and is rarely used. Right now its only use is to enable IPv4 ARP to scale,
  1517. * and this must be done.
  1518. *
  1519. * For IPv4 ARP, the implementation must subscribe to 0xffffffffffff (the
  1520. * broadcast address) but with an ADI equal to each IPv4 address in host
  1521. * byte order. This converts ARP from a non-scalable broadcast protocol to
  1522. * a scalable multicast protocol with perfect address specificity.
  1523. *
  1524. * If this is not done, ARP will not work reliably.
  1525. *
  1526. * Multiple calls to subscribe to the same multicast address will have no
  1527. * effect. It is perfectly safe to do this.
  1528. *
  1529. * This does not generate an update call to networkConfigCallback().
  1530. *
  1531. * @param node Node instance
  1532. * @param nwid 64-bit network ID
  1533. * @param multicastGroup Ethernet multicast or broadcast MAC (least significant 48 bits)
  1534. * @param multicastAdi Multicast ADI (least significant 32 bits only, use 0 if not needed)
  1535. * @return OK (0) or error code if a fatal error condition has occurred
  1536. */
  1537. enum ZT_ResultCode ZT_Node_multicastSubscribe(ZT_Node *node,uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi);
  1538. /**
  1539. * Unsubscribe from an Ethernet multicast group (or all groups)
  1540. *
  1541. * If multicastGroup is zero (0), this will unsubscribe from all groups. If
  1542. * you are not subscribed to a group this has no effect.
  1543. *
  1544. * This does not generate an update call to networkConfigCallback().
  1545. *
  1546. * @param node Node instance
  1547. * @param nwid 64-bit network ID
  1548. * @param multicastGroup Ethernet multicast or broadcast MAC (least significant 48 bits)
  1549. * @param multicastAdi Multicast ADI (least significant 32 bits only, use 0 if not needed)
  1550. * @return OK (0) or error code if a fatal error condition has occurred
  1551. */
  1552. enum ZT_ResultCode ZT_Node_multicastUnsubscribe(ZT_Node *node,uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi);
  1553. /**
  1554. * Add or update a moon
  1555. *
  1556. * Moons are persisted in the data store in moons.d/, so this can persist
  1557. * across invocations if the contents of moon.d are scanned and orbit is
  1558. * called for each on startup.
  1559. *
  1560. * @param moonWorldId Moon's world ID
  1561. * @param len Length of moonWorld in bytes
  1562. * @return Error if moon was invalid or failed to be added
  1563. */
  1564. enum ZT_ResultCode ZT_Node_orbit(ZT_Node *node,uint64_t moonWorldId);
  1565. /**
  1566. * Remove a moon (does nothing if not present)
  1567. *
  1568. * @param node Node instance
  1569. * @param moonWorldId World ID of moon to remove
  1570. * @return Error if anything bad happened
  1571. */
  1572. ZT_ResultCode ZT_Node_deorbit(ZT_Node *node,uint64_t moonWorldId);
  1573. /**
  1574. * Get this node's 40-bit ZeroTier address
  1575. *
  1576. * @param node Node instance
  1577. * @return ZeroTier address (least significant 40 bits of 64-bit int)
  1578. */
  1579. uint64_t ZT_Node_address(ZT_Node *node);
  1580. /**
  1581. * Get the status of this node
  1582. *
  1583. * @param node Node instance
  1584. * @param status Buffer to fill with current node status
  1585. */
  1586. void ZT_Node_status(ZT_Node *node,ZT_NodeStatus *status);
  1587. /**
  1588. * Get a list of known peer nodes
  1589. *
  1590. * The pointer returned here must be freed with freeQueryResult()
  1591. * when you are done with it.
  1592. *
  1593. * @param node Node instance
  1594. * @return List of known peers or NULL on failure
  1595. */
  1596. ZT_PeerList *ZT_Node_peers(ZT_Node *node);
  1597. /**
  1598. * Get the status of a virtual network
  1599. *
  1600. * The pointer returned here must be freed with freeQueryResult()
  1601. * when you are done with it.
  1602. *
  1603. * @param node Node instance
  1604. * @param nwid 64-bit network ID
  1605. * @return Network configuration or NULL if we are not a member of this network
  1606. */
  1607. ZT_VirtualNetworkConfig *ZT_Node_networkConfig(ZT_Node *node,uint64_t nwid);
  1608. /**
  1609. * Enumerate and get status of all networks
  1610. *
  1611. * @param node Node instance
  1612. * @return List of networks or NULL on failure
  1613. */
  1614. ZT_VirtualNetworkList *ZT_Node_networks(ZT_Node *node);
  1615. /**
  1616. * Free a query result buffer
  1617. *
  1618. * Use this to free the return values of listNetworks(), listPeers(), etc.
  1619. *
  1620. * @param node Node instance
  1621. * @param qr Query result buffer
  1622. */
  1623. void ZT_Node_freeQueryResult(ZT_Node *node,void *qr);
  1624. /**
  1625. * Add a local interface address
  1626. *
  1627. * This is used to make ZeroTier aware of those local interface addresses
  1628. * that you wish to use for ZeroTier communication. This is optional, and if
  1629. * it is not used ZeroTier will rely upon upstream peers (and roots) to
  1630. * perform empirical address discovery and NAT traversal. But the use of this
  1631. * method is recommended as it improves peer discovery when both peers are
  1632. * on the same LAN.
  1633. *
  1634. * It is the responsibility of the caller to take care that these are never
  1635. * ZeroTier interface addresses, whether these are assigned by ZeroTier or
  1636. * are otherwise assigned to an interface managed by this ZeroTier instance.
  1637. * This can cause recursion or other undesirable behavior.
  1638. *
  1639. * This returns a boolean indicating whether or not the address was
  1640. * accepted. ZeroTier will only communicate over certain address types
  1641. * and (for IP) address classes.
  1642. *
  1643. * @param addr Local interface address
  1644. * @return Boolean: non-zero if address was accepted and added
  1645. */
  1646. int ZT_Node_addLocalInterfaceAddress(ZT_Node *node,const struct sockaddr_storage *addr);
  1647. /**
  1648. * Clear local interface addresses
  1649. */
  1650. void ZT_Node_clearLocalInterfaceAddresses(ZT_Node *node);
  1651. /**
  1652. * Send a VERB_USER_MESSAGE to another ZeroTier node
  1653. *
  1654. * There is no delivery guarantee here. Failure can occur if the message is
  1655. * too large or if dest is not a valid ZeroTier address.
  1656. *
  1657. * @param dest Destination ZeroTier address
  1658. * @param typeId VERB_USER_MESSAGE type ID
  1659. * @param data Payload data to attach to user message
  1660. * @param len Length of data in bytes
  1661. * @return Boolean: non-zero on success, zero on failure
  1662. */
  1663. int ZT_Node_sendUserMessage(ZT_Node *node,uint64_t dest,uint64_t typeId,const void *data,unsigned int len);
  1664. /**
  1665. * Set a network configuration master instance for this node
  1666. *
  1667. * Normal nodes should not need to use this. This is for nodes with
  1668. * special compiled-in support for acting as network configuration
  1669. * masters / controllers.
  1670. *
  1671. * The supplied instance must be a C++ object that inherits from the
  1672. * NetworkConfigMaster base class in node/. No type checking is performed,
  1673. * so a pointer to anything else will result in a crash.
  1674. *
  1675. * @param node ZertTier One node
  1676. * @param networkConfigMasterInstance Instance of NetworkConfigMaster C++ class or NULL to disable
  1677. * @return OK (0) or error code if a fatal error condition has occurred
  1678. */
  1679. void ZT_Node_setNetconfMaster(ZT_Node *node,void *networkConfigMasterInstance);
  1680. /**
  1681. * Initiate a VL1 circuit test
  1682. *
  1683. * This sends an initial VERB_CIRCUIT_TEST and reports results back to the
  1684. * supplied callback until circuitTestEnd() is called. The supplied
  1685. * ZT_CircuitTest structure should be initially zeroed and then filled
  1686. * in with settings and hops.
  1687. *
  1688. * It is the caller's responsibility to call circuitTestEnd() and then
  1689. * to dispose of the test structure. Otherwise this node will listen
  1690. * for results forever.
  1691. *
  1692. * @param node Node instance
  1693. * @param test Test configuration
  1694. * @param reportCallback Function to call each time a report is received
  1695. * @return OK or error if, for example, test is too big for a packet or support isn't compiled in
  1696. */
  1697. enum ZT_ResultCode ZT_Node_circuitTestBegin(ZT_Node *node,ZT_CircuitTest *test,void (*reportCallback)(ZT_Node *, ZT_CircuitTest *,const ZT_CircuitTestReport *));
  1698. /**
  1699. * Stop listening for results to a given circuit test
  1700. *
  1701. * This does not free the 'test' structure. The caller may do that
  1702. * after calling this method to unregister it.
  1703. *
  1704. * Any reports that are received for a given test ID after it is
  1705. * terminated are ignored.
  1706. *
  1707. * @param node Node instance
  1708. * @param test Test configuration to unregister
  1709. */
  1710. void ZT_Node_circuitTestEnd(ZT_Node *node,ZT_CircuitTest *test);
  1711. /**
  1712. * Initialize cluster operation
  1713. *
  1714. * This initializes the internal structures and state for cluster operation.
  1715. * It takes two function pointers. The first is to a function that can be
  1716. * used to send data to cluster peers (mechanism is not defined by Node),
  1717. * and the second is to a function that can be used to get the location of
  1718. * a physical address in X,Y,Z coordinate space (e.g. as cartesian coordinates
  1719. * projected from the center of the Earth).
  1720. *
  1721. * Send function takes an arbitrary pointer followed by the cluster member ID
  1722. * to send data to, a pointer to the data, and the length of the data. The
  1723. * maximum message length is ZT_CLUSTER_MAX_MESSAGE_LENGTH (65535). Messages
  1724. * must be delivered whole and may be dropped or transposed, though high
  1725. * failure rates are undesirable and can cause problems. Validity checking or
  1726. * CRC is also not required since the Node validates the authenticity of
  1727. * cluster messages using cryptogrphic methods and will silently drop invalid
  1728. * messages.
  1729. *
  1730. * Address to location function is optional and if NULL geo-handoff is not
  1731. * enabled (in this case x, y, and z in clusterInit are also unused). It
  1732. * takes an arbitrary pointer followed by a physical address and three result
  1733. * parameters for x, y, and z. It returns zero on failure or nonzero if these
  1734. * three coordinates have been set. Coordinate space is arbitrary and can be
  1735. * e.g. coordinates on Earth relative to Earth's center. These can be obtained
  1736. * from latitutde and longitude with versions of the Haversine formula.
  1737. *
  1738. * See: http://stackoverflow.com/questions/1185408/converting-from-longitude-latitude-to-cartesian-coordinates
  1739. *
  1740. * Neither the send nor the address to location function should block. If the
  1741. * address to location function does not have a location for an address, it
  1742. * should return zero and then look up the address for future use since it
  1743. * will be called again in (typically) 1-3 minutes.
  1744. *
  1745. * Note that both functions can be called from any thread from which the
  1746. * various Node functions are called, and so must be thread safe if multiple
  1747. * threads are being used.
  1748. *
  1749. * @param node Node instance
  1750. * @param myId My cluster member ID (less than or equal to ZT_CLUSTER_MAX_MEMBERS)
  1751. * @param zeroTierPhysicalEndpoints Preferred physical address(es) for ZeroTier clients to contact this cluster member (for peer redirect)
  1752. * @param numZeroTierPhysicalEndpoints Number of physical endpoints in zeroTierPhysicalEndpoints[] (max allowed: 255)
  1753. * @param x My cluster member's X location
  1754. * @param y My cluster member's Y location
  1755. * @param z My cluster member's Z location
  1756. * @param sendFunction Function to be called to send data to other cluster members
  1757. * @param sendFunctionArg First argument to sendFunction()
  1758. * @param addressToLocationFunction Function to be called to get the location of a physical address or NULL to disable geo-handoff
  1759. * @param addressToLocationFunctionArg First argument to addressToLocationFunction()
  1760. * @return OK or UNSUPPORTED_OPERATION if this Node was not built with cluster support
  1761. */
  1762. enum ZT_ResultCode ZT_Node_clusterInit(
  1763. ZT_Node *node,
  1764. unsigned int myId,
  1765. const struct sockaddr_storage *zeroTierPhysicalEndpoints,
  1766. unsigned int numZeroTierPhysicalEndpoints,
  1767. int x,
  1768. int y,
  1769. int z,
  1770. void (*sendFunction)(void *,unsigned int,const void *,unsigned int),
  1771. void *sendFunctionArg,
  1772. int (*addressToLocationFunction)(void *,const struct sockaddr_storage *,int *,int *,int *),
  1773. void *addressToLocationFunctionArg);
  1774. /**
  1775. * Add a member to this cluster
  1776. *
  1777. * Calling this without having called clusterInit() will do nothing.
  1778. *
  1779. * @param node Node instance
  1780. * @param memberId Member ID (must be less than or equal to ZT_CLUSTER_MAX_MEMBERS)
  1781. * @return OK or error if clustering is disabled, ID invalid, etc.
  1782. */
  1783. enum ZT_ResultCode ZT_Node_clusterAddMember(ZT_Node *node,unsigned int memberId);
  1784. /**
  1785. * Remove a member from this cluster
  1786. *
  1787. * Calling this without having called clusterInit() will do nothing.
  1788. *
  1789. * @param node Node instance
  1790. * @param memberId Member ID to remove (nothing happens if not present)
  1791. */
  1792. void ZT_Node_clusterRemoveMember(ZT_Node *node,unsigned int memberId);
  1793. /**
  1794. * Handle an incoming cluster state message
  1795. *
  1796. * The message itself contains cluster member IDs, and invalid or badly
  1797. * addressed messages will be silently discarded.
  1798. *
  1799. * Calling this without having called clusterInit() will do nothing.
  1800. *
  1801. * @param node Node instance
  1802. * @param msg Cluster message
  1803. * @param len Length of cluster message
  1804. */
  1805. void ZT_Node_clusterHandleIncomingMessage(ZT_Node *node,const void *msg,unsigned int len);
  1806. /**
  1807. * Get the current status of the cluster from this node's point of view
  1808. *
  1809. * Calling this without clusterInit() or without cluster support will just
  1810. * zero out the structure and show a cluster size of zero.
  1811. *
  1812. * @param node Node instance
  1813. * @param cs Cluster status structure to fill with data
  1814. */
  1815. void ZT_Node_clusterStatus(ZT_Node *node,ZT_ClusterStatus *cs);
  1816. /**
  1817. * Set trusted paths
  1818. *
  1819. * A trusted path is a physical network (network/bits) over which both
  1820. * encryption and authentication can be skipped to improve performance.
  1821. * Each trusted path must have a non-zero unique ID that is the same across
  1822. * all participating nodes.
  1823. *
  1824. * We don't recommend using trusted paths at all unless you really *need*
  1825. * near-bare-metal performance. Even on a LAN authentication and encryption
  1826. * are never a bad thing, and anything that introduces an "escape hatch"
  1827. * for encryption should be treated with the utmost care.
  1828. *
  1829. * Calling with NULL pointers for networks and ids and a count of zero clears
  1830. * all trusted paths.
  1831. *
  1832. * @param node Node instance
  1833. * @param networks Array of [count] networks
  1834. * @param ids Array of [count] corresponding non-zero path IDs (zero path IDs are ignored)
  1835. * @param count Number of trusted paths-- values greater than ZT_MAX_TRUSTED_PATHS are clipped
  1836. */
  1837. void ZT_Node_setTrustedPaths(ZT_Node *node,const struct sockaddr_storage *networks,const uint64_t *ids,unsigned int count);
  1838. /**
  1839. * Get ZeroTier One version
  1840. *
  1841. * @param major Result: major version
  1842. * @param minor Result: minor version
  1843. * @param revision Result: revision
  1844. */
  1845. void ZT_version(int *major,int *minor,int *revision);
  1846. #ifdef __cplusplus
  1847. }
  1848. #endif
  1849. #endif