ZeroTierOne.h 54 KB

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