ZeroTierOne.h 57 KB

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