ZeroTierOne.h 56 KB

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