ZeroTierOne.h 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211
  1. /*
  2. * Copyright (c)2019 ZeroTier, Inc.
  3. *
  4. * Use of this software is governed by the Business Source License included
  5. * in the LICENSE.TXT file in the project's root directory.
  6. *
  7. * Change Date: 2025-01-01
  8. *
  9. * On the date above, in accordance with the Business Source License, use
  10. * of this software will be governed by version 2.0 of the Apache License.
  11. */
  12. /****/
  13. /*
  14. * This defines the external C API for ZeroTier's core network virtualization
  15. * engine.
  16. */
  17. #ifndef ZT_ZEROTIER_API_H
  18. #define ZT_ZEROTIER_API_H
  19. #include <stdint.h>
  20. // For the struct sockaddr_storage structure
  21. #if defined(_WIN32) || defined(_WIN64)
  22. #include <WinSock2.h>
  23. #include <WS2tcpip.h>
  24. #include <Windows.h>
  25. #else /* not Windows */
  26. #include <arpa/inet.h>
  27. #include <netinet/in.h>
  28. #include <sys/types.h>
  29. #include <sys/socket.h>
  30. #endif /* Windows or not */
  31. #if defined (_MSC_VER)
  32. #ifdef ZT_EXPORT
  33. #define ZT_SDK_API __declspec(dllexport)
  34. #else
  35. #define ZT_SDK_API __declspec(dllimport)
  36. #if !defined(ZT_SDK)
  37. #ifdef _DEBUG
  38. #ifdef _WIN64
  39. #pragma comment(lib, "ZeroTierOne_x64d.lib")
  40. #else
  41. #pragma comment(lib, "ZeroTierOne_x86d.lib")
  42. #endif
  43. #else
  44. #ifdef _WIN64
  45. #pragma comment(lib, "ZeroTierOne_x64.lib")
  46. #else
  47. #pragma comment(lib, "ZeroTierOne_x86.lib")
  48. #endif
  49. #endif
  50. #endif
  51. #endif
  52. #else
  53. #define ZT_SDK_API
  54. #endif
  55. #ifdef __cplusplus
  56. extern "C" {
  57. #endif
  58. /****************************************************************************/
  59. /* Core constants */
  60. /****************************************************************************/
  61. /**
  62. * Default UDP port for devices running a ZeroTier endpoint
  63. */
  64. #define ZT_DEFAULT_PORT 9993
  65. /**
  66. * Minimum MTU, which is the minimum allowed by IPv6 and several specs
  67. */
  68. #define ZT_MIN_MTU 1280
  69. /**
  70. * Maximum MTU for ZeroTier virtual networks
  71. */
  72. #define ZT_MAX_MTU 10000
  73. /**
  74. * Minimum UDP payload size allowed
  75. */
  76. #define ZT_MIN_PHYSMTU 1400
  77. /**
  78. * Default UDP payload size (physical path MTU) not including UDP and IP overhead
  79. *
  80. * This is small enough for PPPoE and for Google Cloud's bizarrely tiny MTUs.
  81. * A 2800 byte payload still fits into two packets, so this should not impact
  82. * real world throughput at all vs the previous default of 1444.
  83. */
  84. #define ZT_DEFAULT_PHYSMTU 1432
  85. /**
  86. * Maximum physical UDP payload
  87. */
  88. #define ZT_MAX_PHYSPAYLOAD 10100
  89. /**
  90. * Headroom for max physical MTU
  91. */
  92. #define ZT_MAX_HEADROOM 224
  93. /**
  94. * Maximum payload MTU for UDP packets
  95. */
  96. #define ZT_MAX_PHYSMTU (ZT_MAX_PHYSPAYLOAD + ZT_MAX_HEADROOM)
  97. /**
  98. * Maximum size of a remote trace message's serialized Dictionary
  99. */
  100. #define ZT_MAX_REMOTE_TRACE_SIZE 10000
  101. /**
  102. * Maximum length of network short name
  103. */
  104. #define ZT_MAX_NETWORK_SHORT_NAME_LENGTH 127
  105. /**
  106. * Maximum number of pushed routes on a network
  107. */
  108. #define ZT_MAX_NETWORK_ROUTES 32
  109. /**
  110. * Maximum number of statically assigned IP addresses per network endpoint using ZT address management (not DHCP)
  111. */
  112. #define ZT_MAX_ZT_ASSIGNED_ADDRESSES 16
  113. /**
  114. * Maximum number of "specialists" on a network -- bridges, relays, etc.
  115. */
  116. #define ZT_MAX_NETWORK_SPECIALISTS 256
  117. /**
  118. * Maximum number of multicast group subscriptions per network
  119. */
  120. #define ZT_MAX_NETWORK_MULTICAST_SUBSCRIPTIONS 4096
  121. /**
  122. * Rules engine revision ID, which specifies rules engine capabilities
  123. */
  124. #define ZT_RULES_ENGINE_REVISION 1
  125. /**
  126. * Maximum number of base (non-capability) network rules
  127. */
  128. #define ZT_MAX_NETWORK_RULES 1024
  129. /**
  130. * Maximum number of per-member capabilities per network
  131. */
  132. #define ZT_MAX_NETWORK_CAPABILITIES 128
  133. /**
  134. * Maximum number of per-member tags per network
  135. */
  136. #define ZT_MAX_NETWORK_TAGS 128
  137. /**
  138. * Maximum number of direct network paths to a given peer
  139. */
  140. #define ZT_MAX_PEER_NETWORK_PATHS 16
  141. /**
  142. * Maximum number of path configurations that can be set
  143. */
  144. #define ZT_MAX_CONFIGURABLE_PATHS 32
  145. /**
  146. * Maximum number of rules per capability
  147. */
  148. #define ZT_MAX_CAPABILITY_RULES 64
  149. /**
  150. * Maximum number of certificates of ownership to assign to a single network member
  151. */
  152. #define ZT_MAX_CERTIFICATES_OF_OWNERSHIP 4
  153. /**
  154. * Global maximum length for capability chain of custody (including initial issue)
  155. */
  156. #define ZT_MAX_CAPABILITY_CUSTODY_CHAIN_LENGTH 7
  157. /**
  158. * Maximum number of multicast groups a device / network interface can be subscribed to at once
  159. */
  160. #define ZT_MAX_MULTICAST_SUBSCRIPTIONS 1024
  161. /**
  162. * Maximum value for link quality (min is 0)
  163. */
  164. #define ZT_PATH_LINK_QUALITY_MAX 0xff
  165. /**
  166. * Maximum number of DNS servers per domain
  167. */
  168. #define ZT_MAX_DNS_SERVERS 4
  169. /**
  170. * Packet characteristics flag: packet direction, 1 if inbound 0 if outbound
  171. */
  172. #define ZT_RULE_PACKET_CHARACTERISTICS_INBOUND 0x8000000000000000ULL
  173. /**
  174. * Packet characteristics flag: multicast or broadcast destination MAC
  175. */
  176. #define ZT_RULE_PACKET_CHARACTERISTICS_MULTICAST 0x4000000000000000ULL
  177. /**
  178. * Packet characteristics flag: broadcast destination MAC
  179. */
  180. #define ZT_RULE_PACKET_CHARACTERISTICS_BROADCAST 0x2000000000000000ULL
  181. /**
  182. * Packet characteristics flag: sending IP address has a certificate of ownership
  183. */
  184. #define ZT_RULE_PACKET_CHARACTERISTICS_SENDER_IP_AUTHENTICATED 0x1000000000000000ULL
  185. /**
  186. * Packet characteristics flag: sending MAC address has a certificate of ownership
  187. */
  188. #define ZT_RULE_PACKET_CHARACTERISTICS_SENDER_MAC_AUTHENTICATED 0x0800000000000000ULL
  189. /**
  190. * Packet characteristics flag: TCP left-most reserved bit
  191. */
  192. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_RESERVED_0 0x0000000000000800ULL
  193. /**
  194. * Packet characteristics flag: TCP middle reserved bit
  195. */
  196. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_RESERVED_1 0x0000000000000400ULL
  197. /**
  198. * Packet characteristics flag: TCP right-most reserved bit
  199. */
  200. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_RESERVED_2 0x0000000000000200ULL
  201. /**
  202. * Packet characteristics flag: TCP NS flag
  203. */
  204. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_NS 0x0000000000000100ULL
  205. /**
  206. * Packet characteristics flag: TCP CWR flag
  207. */
  208. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_CWR 0x0000000000000080ULL
  209. /**
  210. * Packet characteristics flag: TCP ECE flag
  211. */
  212. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_ECE 0x0000000000000040ULL
  213. /**
  214. * Packet characteristics flag: TCP URG flag
  215. */
  216. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_URG 0x0000000000000020ULL
  217. /**
  218. * Packet characteristics flag: TCP ACK flag
  219. */
  220. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_ACK 0x0000000000000010ULL
  221. /**
  222. * Packet characteristics flag: TCP PSH flag
  223. */
  224. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_PSH 0x0000000000000008ULL
  225. /**
  226. * Packet characteristics flag: TCP RST flag
  227. */
  228. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_RST 0x0000000000000004ULL
  229. /**
  230. * Packet characteristics flag: TCP SYN flag
  231. */
  232. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_SYN 0x0000000000000002ULL
  233. /**
  234. * Packet characteristics flag: TCP FIN flag
  235. */
  236. #define ZT_RULE_PACKET_CHARACTERISTICS_TCP_FIN 0x0000000000000001ULL
  237. // Fields in remote trace dictionaries
  238. #define ZT_REMOTE_TRACE_FIELD__EVENT "event"
  239. #define ZT_REMOTE_TRACE_FIELD__NODE_ID "nodeId"
  240. #define ZT_REMOTE_TRACE_FIELD__PACKET_ID "packetId"
  241. #define ZT_REMOTE_TRACE_FIELD__PACKET_VERB "packetVerb"
  242. #define ZT_REMOTE_TRACE_FIELD__PACKET_TRUSTED_PATH_ID "packetTrustedPathId"
  243. #define ZT_REMOTE_TRACE_FIELD__PACKET_TRUSTED_PATH_APPROVED "packetTrustedPathApproved"
  244. #define ZT_REMOTE_TRACE_FIELD__PACKET_HOPS "packetHops"
  245. #define ZT_REMOTE_TRACE_FIELD__REMOTE_ZTADDR "remoteZtAddr"
  246. #define ZT_REMOTE_TRACE_FIELD__REMOTE_PHYADDR "remotePhyAddr"
  247. #define ZT_REMOTE_TRACE_FIELD__LOCAL_ZTADDR "localZtAddr"
  248. #define ZT_REMOTE_TRACE_FIELD__LOCAL_PHYADDR "localPhyAddr"
  249. #define ZT_REMOTE_TRACE_FIELD__LOCAL_SOCKET "localSocket"
  250. #define ZT_REMOTE_TRACE_FIELD__IP_SCOPE "phyAddrIpScope"
  251. #define ZT_REMOTE_TRACE_FIELD__NETWORK_ID "networkId"
  252. #define ZT_REMOTE_TRACE_FIELD__SOURCE_ZTADDR "sourceZtAddr"
  253. #define ZT_REMOTE_TRACE_FIELD__DEST_ZTADDR "destZtAddr"
  254. #define ZT_REMOTE_TRACE_FIELD__SOURCE_MAC "sourceMac"
  255. #define ZT_REMOTE_TRACE_FIELD__DEST_MAC "destMac"
  256. #define ZT_REMOTE_TRACE_FIELD__ETHERTYPE "etherType"
  257. #define ZT_REMOTE_TRACE_FIELD__VLAN_ID "vlanId"
  258. #define ZT_REMOTE_TRACE_FIELD__FRAME_LENGTH "frameLength"
  259. #define ZT_REMOTE_TRACE_FIELD__FRAME_DATA "frameData"
  260. #define ZT_REMOTE_TRACE_FIELD__FILTER_FLAG_NOTEE "filterNoTee"
  261. #define ZT_REMOTE_TRACE_FIELD__FILTER_FLAG_INBOUND "filterInbound"
  262. #define ZT_REMOTE_TRACE_FIELD__FILTER_RESULT "filterResult"
  263. #define ZT_REMOTE_TRACE_FIELD__FILTER_BASE_RULE_LOG "filterBaseRuleLog"
  264. #define ZT_REMOTE_TRACE_FIELD__FILTER_CAP_RULE_LOG "filterCapRuleLog"
  265. #define ZT_REMOTE_TRACE_FIELD__FILTER_CAP_ID "filterMatchingCapId"
  266. #define ZT_REMOTE_TRACE_FIELD__CREDENTIAL_TYPE "credType"
  267. #define ZT_REMOTE_TRACE_FIELD__CREDENTIAL_ID "credId"
  268. #define ZT_REMOTE_TRACE_FIELD__CREDENTIAL_TIMESTAMP "credTs"
  269. #define ZT_REMOTE_TRACE_FIELD__CREDENTIAL_INFO "credInfo"
  270. #define ZT_REMOTE_TRACE_FIELD__CREDENTIAL_ISSUED_TO "credIssuedTo"
  271. #define ZT_REMOTE_TRACE_FIELD__CREDENTIAL_REVOCATION_TARGET "credRevocationTarget"
  272. #define ZT_REMOTE_TRACE_FIELD__REASON "reason"
  273. #define ZT_REMOTE_TRACE_FIELD__NETWORK_CONTROLLER_ID "networkControllerId"
  274. // Event types in remote traces
  275. #define ZT_REMOTE_TRACE_EVENT__RESETTING_PATHS_IN_SCOPE 0x1000
  276. #define ZT_REMOTE_TRACE_EVENT__PEER_CONFIRMING_UNKNOWN_PATH 0x1001
  277. #define ZT_REMOTE_TRACE_EVENT__PEER_LEARNED_NEW_PATH 0x1002
  278. #define ZT_REMOTE_TRACE_EVENT__PEER_REDIRECTED 0x1003
  279. #define ZT_REMOTE_TRACE_EVENT__PACKET_MAC_FAILURE 0x1004
  280. #define ZT_REMOTE_TRACE_EVENT__PACKET_INVALID 0x1005
  281. #define ZT_REMOTE_TRACE_EVENT__DROPPED_HELLO 0x1006
  282. #define ZT_REMOTE_TRACE_EVENT__OUTGOING_NETWORK_FRAME_DROPPED 0x2000
  283. #define ZT_REMOTE_TRACE_EVENT__INCOMING_NETWORK_ACCESS_DENIED 0x2001
  284. #define ZT_REMOTE_TRACE_EVENT__INCOMING_NETWORK_FRAME_DROPPED 0x2002
  285. #define ZT_REMOTE_TRACE_EVENT__CREDENTIAL_REJECTED 0x2003
  286. #define ZT_REMOTE_TRACE_EVENT__CREDENTIAL_ACCEPTED 0x2004
  287. #define ZT_REMOTE_TRACE_EVENT__NETWORK_CONFIG_REQUEST_SENT 0x2005
  288. #define ZT_REMOTE_TRACE_EVENT__NETWORK_FILTER_TRACE 0x2006
  289. // Event types in remote traces in hex string form
  290. #define ZT_REMOTE_TRACE_EVENT__RESETTING_PATHS_IN_SCOPE_S "1000"
  291. #define ZT_REMOTE_TRACE_EVENT__PEER_CONFIRMING_UNKNOWN_PATH_S "1001"
  292. #define ZT_REMOTE_TRACE_EVENT__PEER_LEARNED_NEW_PATH_S "1002"
  293. #define ZT_REMOTE_TRACE_EVENT__PEER_REDIRECTED_S "1003"
  294. #define ZT_REMOTE_TRACE_EVENT__PACKET_MAC_FAILURE_S "1004"
  295. #define ZT_REMOTE_TRACE_EVENT__PACKET_INVALID_S "1005"
  296. #define ZT_REMOTE_TRACE_EVENT__DROPPED_HELLO_S "1006"
  297. #define ZT_REMOTE_TRACE_EVENT__OUTGOING_NETWORK_FRAME_DROPPED_S "2000"
  298. #define ZT_REMOTE_TRACE_EVENT__INCOMING_NETWORK_ACCESS_DENIED_S "2001"
  299. #define ZT_REMOTE_TRACE_EVENT__INCOMING_NETWORK_FRAME_DROPPED_S "2002"
  300. #define ZT_REMOTE_TRACE_EVENT__CREDENTIAL_REJECTED_S "2003"
  301. #define ZT_REMOTE_TRACE_EVENT__CREDENTIAL_ACCEPTED_S "2004"
  302. #define ZT_REMOTE_TRACE_EVENT__NETWORK_CONFIG_REQUEST_SENT_S "2005"
  303. #define ZT_REMOTE_TRACE_EVENT__NETWORK_FILTER_TRACE_S "2006"
  304. /****************************************************************************/
  305. /* Structures and other types */
  306. /****************************************************************************/
  307. /**
  308. * Function return code: OK (0) or error results
  309. *
  310. * Use ZT_ResultCode_isFatal() to check for a fatal error. If a fatal error
  311. * occurs, the node should be considered to not be working correctly. These
  312. * indicate serious problems like an inaccessible data store or a compile
  313. * problem.
  314. */
  315. enum ZT_ResultCode
  316. {
  317. /**
  318. * Operation completed normally
  319. */
  320. ZT_RESULT_OK = 0,
  321. /**
  322. * Call produced no error but no action was taken
  323. */
  324. ZT_RESULT_OK_IGNORED = 1,
  325. // Fatal errors (>100, <1000)
  326. /**
  327. * Ran out of memory
  328. */
  329. ZT_RESULT_FATAL_ERROR_OUT_OF_MEMORY = 100,
  330. /**
  331. * Data store is not writable or has failed
  332. */
  333. ZT_RESULT_FATAL_ERROR_DATA_STORE_FAILED = 101,
  334. /**
  335. * Internal error (e.g. unexpected exception indicating bug or build problem)
  336. */
  337. ZT_RESULT_FATAL_ERROR_INTERNAL = 102,
  338. // Non-fatal errors (>1000)
  339. /**
  340. * Network ID not valid
  341. */
  342. ZT_RESULT_ERROR_NETWORK_NOT_FOUND = 1000,
  343. /**
  344. * The requested operation is not supported on this version or build
  345. */
  346. ZT_RESULT_ERROR_UNSUPPORTED_OPERATION = 1001,
  347. /**
  348. * The requested operation was given a bad parameter or was called in an invalid state
  349. */
  350. ZT_RESULT_ERROR_BAD_PARAMETER = 1002
  351. };
  352. /**
  353. * @param x Result code
  354. * @return True if result code indicates a fatal error
  355. */
  356. #define ZT_ResultCode_isFatal(x) ((((int)(x)) >= 100)&&(((int)(x)) < 1000))
  357. /**
  358. * Multipath bonding policy
  359. */
  360. enum ZT_MultipathBondingPolicy
  361. {
  362. /**
  363. * Normal operation. No fault tolerance, no load balancing
  364. */
  365. ZT_BONDING_POLICY_NONE = 0,
  366. /**
  367. * Sends traffic out on only one path at a time. Configurable immediate
  368. * fail-over.
  369. */
  370. ZT_BONDING_POLICY_ACTIVE_BACKUP = 1,
  371. /**
  372. * Sends traffic out on all paths
  373. */
  374. ZT_BONDING_POLICY_BROADCAST = 2,
  375. /**
  376. * Stripes packets across all paths
  377. */
  378. ZT_BONDING_POLICY_BALANCE_RR = 3,
  379. /**
  380. * Packets destined for specific peers will always be sent over the same
  381. * path.
  382. */
  383. ZT_BONDING_POLICY_BALANCE_XOR = 4,
  384. /**
  385. * Balances flows among all paths according to path performance
  386. */
  387. ZT_BONDING_POLICY_BALANCE_AWARE = 5
  388. };
  389. /**
  390. * Multipath active re-selection policy (linkSelectMethod)
  391. */
  392. enum ZT_MultipathLinkSelectMethod
  393. {
  394. /**
  395. * Primary link regains status as active link whenever it comes back up
  396. * (default when links are explicitly specified)
  397. */
  398. ZT_MULTIPATH_RESELECTION_POLICY_ALWAYS = 0,
  399. /**
  400. * Primary link regains status as active link when it comes back up and
  401. * (if) it is better than the currently-active link.
  402. */
  403. ZT_MULTIPATH_RESELECTION_POLICY_BETTER = 1,
  404. /**
  405. * Primary link regains status as active link only if the currently-active
  406. * link fails.
  407. */
  408. ZT_MULTIPATH_RESELECTION_POLICY_FAILURE = 2,
  409. /**
  410. * The primary link can change if a superior path is detected.
  411. * (default if user provides no fail-over guidance)
  412. */
  413. ZT_MULTIPATH_RESELECTION_POLICY_OPTIMIZE = 3
  414. };
  415. /**
  416. * Mode of multipath link interface
  417. */
  418. enum ZT_MultipathLinkMode
  419. {
  420. ZT_MULTIPATH_SLAVE_MODE_PRIMARY = 0,
  421. ZT_MULTIPATH_SLAVE_MODE_SPARE = 1
  422. };
  423. /**
  424. * Strategy for path monitoring
  425. */
  426. enum ZT_MultipathMonitorStrategy
  427. {
  428. /**
  429. * Use bonding policy's default strategy
  430. */
  431. ZT_MULTIPATH_SLAVE_MONITOR_STRATEGY_DEFAULT = 0,
  432. /**
  433. * Does not actively send probes to judge aliveness, will rely
  434. * on conventional traffic and summary statistics.
  435. */
  436. ZT_MULTIPATH_SLAVE_MONITOR_STRATEGY_PASSIVE = 1,
  437. /**
  438. * Sends probes at a constant rate to judge aliveness.
  439. */
  440. ZT_MULTIPATH_SLAVE_MONITOR_STRATEGY_ACTIVE = 2,
  441. /**
  442. * Sends probes at varying rates which correlate to native
  443. * traffic loads to judge aliveness.
  444. */
  445. ZT_MULTIPATH_SLAVE_MONITOR_STRATEGY_DYNAMIC = 3
  446. };
  447. /**
  448. * Strategy for re-balancing protocol flows
  449. */
  450. enum ZT_MultipathFlowRebalanceStrategy
  451. {
  452. /**
  453. * Flows will only be re-balanced among links during
  454. * assignment or failover. This minimizes the possibility
  455. * of sequence reordering and is thus the default setting.
  456. */
  457. ZT_MULTIPATH_FLOW_REBALANCE_STRATEGY_PASSIVE = 0,
  458. /**
  459. * Flows that are active may be re-assigned to a new more
  460. * suitable link if it can be done without disrupting the flow.
  461. * This setting can sometimes cause sequence re-ordering.
  462. */
  463. ZT_MULTIPATH_FLOW_REBALANCE_STRATEGY_OPPORTUNISTIC = 0,
  464. /**
  465. * Flows will be continuously re-assigned the most suitable link
  466. * in order to maximize "balance". This can often cause sequence
  467. * reordering and is thus only reccomended for protocols like UDP.
  468. */
  469. ZT_MULTIPATH_FLOW_REBALANCE_STRATEGY_AGGRESSIVE = 2
  470. };
  471. /**
  472. * Indices for the path quality weight vector
  473. */
  474. enum ZT_MultipathQualityWeightIndex
  475. {
  476. ZT_QOS_LAT_IDX,
  477. ZT_QOS_LTM_IDX,
  478. ZT_QOS_PDV_IDX,
  479. ZT_QOS_PLR_IDX,
  480. ZT_QOS_PER_IDX,
  481. ZT_QOS_THR_IDX,
  482. ZT_QOS_THM_IDX,
  483. ZT_QOS_THV_IDX,
  484. ZT_QOS_AGE_IDX,
  485. ZT_QOS_SCP_IDX,
  486. ZT_QOS_WEIGHT_SIZE
  487. };
  488. /**
  489. * Status codes sent to status update callback when things happen
  490. */
  491. enum ZT_Event
  492. {
  493. /**
  494. * Node has been initialized
  495. *
  496. * This is the first event generated, and is always sent. It may occur
  497. * before Node's constructor returns.
  498. *
  499. * Meta-data: none
  500. */
  501. ZT_EVENT_UP = 0,
  502. /**
  503. * Node is offline -- network does not seem to be reachable by any available strategy
  504. *
  505. * Meta-data: none
  506. */
  507. ZT_EVENT_OFFLINE = 1,
  508. /**
  509. * Node is online -- at least one upstream node appears reachable
  510. *
  511. * Meta-data: none
  512. */
  513. ZT_EVENT_ONLINE = 2,
  514. /**
  515. * Node is shutting down
  516. *
  517. * This is generated within Node's destructor when it is being shut down.
  518. * It's done for convenience, since cleaning up other state in the event
  519. * handler may appear more idiomatic.
  520. *
  521. * Meta-data: none
  522. */
  523. ZT_EVENT_DOWN = 3,
  524. /**
  525. * Your identity has collided with another node's ZeroTier address
  526. *
  527. * This happens if two different public keys both hash (via the algorithm
  528. * in Identity::generate()) to the same 40-bit ZeroTier address.
  529. *
  530. * This is something you should "never" see, where "never" is defined as
  531. * once per 2^39 new node initializations / identity creations. If you do
  532. * see it, you're going to see it very soon after a node is first
  533. * initialized.
  534. *
  535. * This is reported as an event rather than a return code since it's
  536. * detected asynchronously via error messages from authoritative nodes.
  537. *
  538. * If this occurs, you must shut down and delete the node, delete the
  539. * identity.secret record/file from the data store, and restart to generate
  540. * a new identity. If you don't do this, you will not be able to communicate
  541. * with other nodes.
  542. *
  543. * We'd automate this process, but we don't think silently deleting
  544. * private keys or changing our address without telling the calling code
  545. * is good form. It violates the principle of least surprise.
  546. *
  547. * You can technically get away with not handling this, but we recommend
  548. * doing so in a mature reliable application. Besides, handling this
  549. * condition is a good way to make sure it never arises. It's like how
  550. * umbrellas prevent rain and smoke detectors prevent fires. They do, right?
  551. *
  552. * Meta-data: none
  553. */
  554. ZT_EVENT_FATAL_ERROR_IDENTITY_COLLISION = 4,
  555. /**
  556. * Trace (debugging) message
  557. *
  558. * These events are only generated if this is a TRACE-enabled build.
  559. *
  560. * Meta-data: C string, TRACE message
  561. */
  562. ZT_EVENT_TRACE = 5,
  563. /**
  564. * VERB_USER_MESSAGE received
  565. *
  566. * These are generated when a VERB_USER_MESSAGE packet is received via
  567. * ZeroTier VL1.
  568. *
  569. * Meta-data: ZT_UserMessage structure
  570. */
  571. ZT_EVENT_USER_MESSAGE = 6,
  572. /**
  573. * Remote trace received
  574. *
  575. * These are generated when a VERB_REMOTE_TRACE is received. Note
  576. * that any node can fling one of these at us. It is your responsibility
  577. * to filter and determine if it's worth paying attention to. If it's
  578. * not just drop it. Most nodes that are not active controllers ignore
  579. * these, and controllers only save them if they pertain to networks
  580. * with remote tracing enabled.
  581. *
  582. * Meta-data: ZT_RemoteTrace structure
  583. */
  584. ZT_EVENT_REMOTE_TRACE = 7
  585. };
  586. /**
  587. * Payload of REMOTE_TRACE event
  588. */
  589. typedef struct
  590. {
  591. /**
  592. * ZeroTier address of sender
  593. */
  594. uint64_t origin;
  595. /**
  596. * Null-terminated Dictionary containing key/value pairs sent by origin
  597. *
  598. * This *should* be a dictionary, but the implementation only checks
  599. * that it is a valid non-empty C-style null-terminated string. Be very
  600. * careful to use a well-tested parser to parse this as it represents
  601. * data received from a potentially un-trusted peer on the network.
  602. * Invalid payloads should be dropped.
  603. *
  604. * The contents of data[] may be modified.
  605. */
  606. char *data;
  607. /**
  608. * Length of dict[] in bytes, including terminating null
  609. */
  610. unsigned int len;
  611. } ZT_RemoteTrace;
  612. /**
  613. * User message used with ZT_EVENT_USER_MESSAGE
  614. *
  615. * These are direct VL1 P2P messages for application use. Encryption and
  616. * authentication in the ZeroTier protocol will guarantee the origin
  617. * address and message content, but you are responsible for any other
  618. * levels of authentication or access control that are required. Any node
  619. * in the world can send you a user message! (Unless your network is air
  620. * gapped.)
  621. */
  622. typedef struct
  623. {
  624. /**
  625. * ZeroTier address of sender (least significant 40 bits)
  626. */
  627. uint64_t origin;
  628. /**
  629. * User message type ID
  630. */
  631. uint64_t typeId;
  632. /**
  633. * User message data (not including type ID)
  634. */
  635. const void *data;
  636. /**
  637. * Length of data in bytes
  638. */
  639. unsigned int length;
  640. } ZT_UserMessage;
  641. /**
  642. * Current node status
  643. */
  644. typedef struct
  645. {
  646. /**
  647. * 40-bit ZeroTier address of this node
  648. */
  649. uint64_t address;
  650. /**
  651. * Public identity in string-serialized form (safe to send to others)
  652. *
  653. * This pointer will remain valid as long as the node exists.
  654. */
  655. const char *publicIdentity;
  656. /**
  657. * Full identity including secret key in string-serialized form
  658. *
  659. * This pointer will remain valid as long as the node exists.
  660. */
  661. const char *secretIdentity;
  662. /**
  663. * True if some kind of connectivity appears available
  664. */
  665. int online;
  666. } ZT_NodeStatus;
  667. /**
  668. * Internal node statistics
  669. *
  670. * This structure is subject to change between versions.
  671. */
  672. typedef struct
  673. {
  674. /**
  675. * Number of each protocol verb (possible verbs 0..31) received
  676. */
  677. uint64_t inVerbCounts[32];
  678. /**
  679. * Number of bytes for each protocol verb received
  680. */
  681. uint64_t inVerbBytes[32];
  682. } ZT_NodeStatistics;
  683. /**
  684. * Virtual network status codes
  685. */
  686. enum ZT_VirtualNetworkStatus
  687. {
  688. /**
  689. * Waiting for network configuration (also means revision == 0)
  690. */
  691. ZT_NETWORK_STATUS_REQUESTING_CONFIGURATION = 0,
  692. /**
  693. * Configuration received and we are authorized
  694. */
  695. ZT_NETWORK_STATUS_OK = 1,
  696. /**
  697. * Netconf master told us 'nope'
  698. */
  699. ZT_NETWORK_STATUS_ACCESS_DENIED = 2,
  700. /**
  701. * Netconf master exists, but this virtual network does not
  702. */
  703. ZT_NETWORK_STATUS_NOT_FOUND = 3,
  704. /**
  705. * Initialization of network failed or other internal error
  706. */
  707. ZT_NETWORK_STATUS_PORT_ERROR = 4,
  708. /**
  709. * ZeroTier core version too old
  710. */
  711. ZT_NETWORK_STATUS_CLIENT_TOO_OLD = 5,
  712. /**
  713. * External authentication is required (e.g. SSO)
  714. */
  715. ZT_NETWORK_STATUS_AUTHENTICATION_REQUIRED = 6
  716. };
  717. /**
  718. * Virtual network type codes
  719. */
  720. enum ZT_VirtualNetworkType
  721. {
  722. /**
  723. * Private networks are authorized via certificates of membership
  724. */
  725. ZT_NETWORK_TYPE_PRIVATE = 0,
  726. /**
  727. * Public networks have no access control -- they'll always be AUTHORIZED
  728. */
  729. ZT_NETWORK_TYPE_PUBLIC = 1
  730. };
  731. /**
  732. * The type of a virtual network rules table entry
  733. *
  734. * These must be from 0 to 63 since the most significant two bits of each
  735. * rule type are NOT (MSB) and AND/OR.
  736. *
  737. * Each rule is composed of zero or more MATCHes followed by an ACTION.
  738. * An ACTION with no MATCHes is always taken.
  739. */
  740. enum ZT_VirtualNetworkRuleType
  741. {
  742. // 0 to 15 reserved for actions
  743. /**
  744. * Drop frame
  745. */
  746. ZT_NETWORK_RULE_ACTION_DROP = 0,
  747. /**
  748. * Accept and pass frame
  749. */
  750. ZT_NETWORK_RULE_ACTION_ACCEPT = 1,
  751. /**
  752. * Forward a copy of this frame to an observer (by ZT address)
  753. */
  754. ZT_NETWORK_RULE_ACTION_TEE = 2,
  755. /**
  756. * Exactly like TEE but mandates ACKs from observer
  757. */
  758. ZT_NETWORK_RULE_ACTION_WATCH = 3,
  759. /**
  760. * Drop and redirect this frame to another node (by ZT address)
  761. */
  762. ZT_NETWORK_RULE_ACTION_REDIRECT = 4,
  763. /**
  764. * Stop evaluating rule set (drops unless there are capabilities, etc.)
  765. */
  766. ZT_NETWORK_RULE_ACTION_BREAK = 5,
  767. /**
  768. * Place a matching frame in the specified QoS bucket
  769. */
  770. ZT_NETWORK_RULE_ACTION_PRIORITY = 6,
  771. /**
  772. * Maximum ID for an ACTION, anything higher is a MATCH
  773. */
  774. ZT_NETWORK_RULE_ACTION__MAX_ID = 15,
  775. // 16 to 63 reserved for match criteria
  776. ZT_NETWORK_RULE_MATCH_SOURCE_ZEROTIER_ADDRESS = 24,
  777. ZT_NETWORK_RULE_MATCH_DEST_ZEROTIER_ADDRESS = 25,
  778. ZT_NETWORK_RULE_MATCH_VLAN_ID = 26,
  779. ZT_NETWORK_RULE_MATCH_VLAN_PCP = 27,
  780. ZT_NETWORK_RULE_MATCH_VLAN_DEI = 28,
  781. ZT_NETWORK_RULE_MATCH_MAC_SOURCE = 29,
  782. ZT_NETWORK_RULE_MATCH_MAC_DEST = 30,
  783. ZT_NETWORK_RULE_MATCH_IPV4_SOURCE = 31,
  784. ZT_NETWORK_RULE_MATCH_IPV4_DEST = 32,
  785. ZT_NETWORK_RULE_MATCH_IPV6_SOURCE = 33,
  786. ZT_NETWORK_RULE_MATCH_IPV6_DEST = 34,
  787. ZT_NETWORK_RULE_MATCH_IP_TOS = 35,
  788. ZT_NETWORK_RULE_MATCH_IP_PROTOCOL = 36,
  789. ZT_NETWORK_RULE_MATCH_ETHERTYPE = 37,
  790. ZT_NETWORK_RULE_MATCH_ICMP = 38,
  791. ZT_NETWORK_RULE_MATCH_IP_SOURCE_PORT_RANGE = 39,
  792. ZT_NETWORK_RULE_MATCH_IP_DEST_PORT_RANGE = 40,
  793. ZT_NETWORK_RULE_MATCH_CHARACTERISTICS = 41,
  794. ZT_NETWORK_RULE_MATCH_FRAME_SIZE_RANGE = 42,
  795. ZT_NETWORK_RULE_MATCH_RANDOM = 43,
  796. ZT_NETWORK_RULE_MATCH_TAGS_DIFFERENCE = 44,
  797. ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_AND = 45,
  798. ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_OR = 46,
  799. ZT_NETWORK_RULE_MATCH_TAGS_BITWISE_XOR = 47,
  800. ZT_NETWORK_RULE_MATCH_TAGS_EQUAL = 48,
  801. ZT_NETWORK_RULE_MATCH_TAG_SENDER = 49,
  802. ZT_NETWORK_RULE_MATCH_TAG_RECEIVER = 50,
  803. ZT_NETWORK_RULE_MATCH_INTEGER_RANGE = 51,
  804. /**
  805. * Maximum ID allowed for a MATCH entry in the rules table
  806. */
  807. ZT_NETWORK_RULE_MATCH__MAX_ID = 63
  808. };
  809. /**
  810. * Network flow rule
  811. *
  812. * Rules are stored in a table in which one or more match entries is followed
  813. * by an action. If more than one match precedes an action, the rule is
  814. * the AND of all matches. An action with no match is always taken since it
  815. * matches anything. If nothing matches, the default action is DROP.
  816. *
  817. * This is designed to be a more memory-efficient way of storing rules than
  818. * a wide table, yet still fast and simple to access in code.
  819. */
  820. typedef struct
  821. {
  822. /**
  823. * Type and flags
  824. *
  825. * Bits are: NOTTTTTT
  826. *
  827. * N - If true, sense of match is inverted (no effect on actions)
  828. * O - If true, result is ORed with previous instead of ANDed (no effect on actions)
  829. * T - Rule or action type
  830. *
  831. * AND with 0x3f to get type, 0x80 to get NOT bit, and 0x40 to get OR bit.
  832. */
  833. uint8_t t;
  834. /**
  835. * Union containing the value of this rule -- which field is used depends on 't'
  836. */
  837. union {
  838. /**
  839. * IPv6 address in big-endian / network byte order and netmask bits
  840. */
  841. struct {
  842. uint8_t ip[16];
  843. uint8_t mask;
  844. } ipv6;
  845. /**
  846. * IPv4 address in big-endian / network byte order
  847. */
  848. struct {
  849. uint32_t ip;
  850. uint8_t mask;
  851. } ipv4;
  852. /**
  853. * Integer range match in packet payload
  854. *
  855. * This allows matching of ranges of integers up to 64 bits wide where
  856. * the range is +/- INT32_MAX. It's packed this way so it fits in 16
  857. * bytes and doesn't enlarge the overall size of this union.
  858. */
  859. struct {
  860. uint64_t start; // integer range start
  861. uint32_t end; // end of integer range (relative to start, inclusive, 0 for equality w/start)
  862. uint16_t idx; // index in packet of integer
  863. uint8_t format; // bits in integer (range 1-64, ((format&63)+1)) and endianness (MSB 1 for little, 0 for big)
  864. } intRange;
  865. /**
  866. * Packet characteristic flags being matched
  867. */
  868. uint64_t characteristics;
  869. /**
  870. * IP port range -- start-end inclusive -- host byte order
  871. */
  872. uint16_t port[2];
  873. /**
  874. * 40-bit ZeroTier address (in least significant bits, host byte order)
  875. */
  876. uint64_t zt;
  877. /**
  878. * 0 = never, UINT32_MAX = always
  879. */
  880. uint32_t randomProbability;
  881. /**
  882. * 48-bit Ethernet MAC address in big-endian order
  883. */
  884. uint8_t mac[6];
  885. /**
  886. * VLAN ID in host byte order
  887. */
  888. uint16_t vlanId;
  889. /**
  890. * VLAN PCP (least significant 3 bits)
  891. */
  892. uint8_t vlanPcp;
  893. /**
  894. * VLAN DEI (single bit / boolean)
  895. */
  896. uint8_t vlanDei;
  897. /**
  898. * Ethernet type in host byte order
  899. */
  900. uint16_t etherType;
  901. /**
  902. * IP protocol
  903. */
  904. uint8_t ipProtocol;
  905. /**
  906. * IP type of service a.k.a. DSCP field
  907. */
  908. struct {
  909. uint8_t mask;
  910. uint8_t value[2];
  911. } ipTos;
  912. /**
  913. * Ethernet packet size in host byte order (start-end, inclusive)
  914. */
  915. uint16_t frameSize[2];
  916. /**
  917. * ICMP type and code
  918. */
  919. struct {
  920. uint8_t type; // ICMP type, always matched
  921. uint8_t code; // ICMP code if matched
  922. uint8_t flags; // flag 0x01 means also match code, otherwise only match type
  923. } icmp;
  924. /**
  925. * For tag-related rules
  926. */
  927. struct {
  928. uint32_t id;
  929. uint32_t value;
  930. } tag;
  931. /**
  932. * Destinations for TEE and REDIRECT
  933. */
  934. struct {
  935. uint64_t address;
  936. uint32_t flags;
  937. uint16_t length;
  938. } fwd;
  939. /**
  940. * Quality of Service (QoS) bucket we want a frame to be placed in
  941. */
  942. uint8_t qosBucket;
  943. } v;
  944. } ZT_VirtualNetworkRule;
  945. /**
  946. * A route to be pushed on a virtual network
  947. */
  948. typedef struct
  949. {
  950. /**
  951. * Target network / netmask bits (in port field) or NULL or 0.0.0.0/0 for default
  952. */
  953. struct sockaddr_storage target;
  954. /**
  955. * Gateway IP address (port ignored) or NULL (family == 0) for LAN-local (no gateway)
  956. */
  957. struct sockaddr_storage via;
  958. /**
  959. * Route flags
  960. */
  961. uint16_t flags;
  962. /**
  963. * Route metric (not currently used)
  964. */
  965. uint16_t metric;
  966. } ZT_VirtualNetworkRoute;
  967. /**
  968. * DNS configuration to be pushed on a virtual network
  969. */
  970. typedef struct
  971. {
  972. char domain[128];
  973. struct sockaddr_storage server_addr[ZT_MAX_DNS_SERVERS];
  974. } ZT_VirtualNetworkDNS;
  975. /**
  976. * An Ethernet multicast group
  977. */
  978. typedef struct
  979. {
  980. /**
  981. * MAC address (least significant 48 bits)
  982. */
  983. uint64_t mac;
  984. /**
  985. * Additional distinguishing information (usually zero)
  986. */
  987. unsigned long adi;
  988. } ZT_MulticastGroup;
  989. /**
  990. * Virtual network configuration update type
  991. */
  992. enum ZT_VirtualNetworkConfigOperation
  993. {
  994. /**
  995. * Network is coming up (either for the first time or after service restart)
  996. */
  997. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_UP = 1,
  998. /**
  999. * Network configuration has been updated
  1000. */
  1001. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_CONFIG_UPDATE = 2,
  1002. /**
  1003. * Network is going down (not permanently)
  1004. */
  1005. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DOWN = 3,
  1006. /**
  1007. * Network is going down permanently (leave/delete)
  1008. */
  1009. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY = 4
  1010. };
  1011. /**
  1012. * What trust hierarchy role does this peer have?
  1013. */
  1014. enum ZT_PeerRole
  1015. {
  1016. ZT_PEER_ROLE_LEAF = 0, // ordinary node
  1017. ZT_PEER_ROLE_MOON = 1, // moon root
  1018. ZT_PEER_ROLE_PLANET = 2 // planetary root
  1019. };
  1020. /**
  1021. * Vendor ID
  1022. */
  1023. enum ZT_Vendor
  1024. {
  1025. ZT_VENDOR_UNSPECIFIED = 0,
  1026. ZT_VENDOR_ZEROTIER = 1
  1027. };
  1028. /**
  1029. * Platform type
  1030. */
  1031. enum ZT_Platform
  1032. {
  1033. ZT_PLATFORM_UNSPECIFIED = 0,
  1034. ZT_PLATFORM_LINUX = 1,
  1035. ZT_PLATFORM_WINDOWS = 2,
  1036. ZT_PLATFORM_MACOS = 3,
  1037. ZT_PLATFORM_ANDROID = 4,
  1038. ZT_PLATFORM_IOS = 5,
  1039. ZT_PLATFORM_SOLARIS_SMARTOS = 6,
  1040. ZT_PLATFORM_FREEBSD = 7,
  1041. ZT_PLATFORM_NETBSD = 8,
  1042. ZT_PLATFORM_OPENBSD = 9,
  1043. ZT_PLATFORM_RISCOS = 10,
  1044. ZT_PLATFORM_VXWORKS = 11,
  1045. ZT_PLATFORM_FREERTOS = 12,
  1046. ZT_PLATFORM_SYSBIOS = 13,
  1047. ZT_PLATFORM_HURD = 14,
  1048. ZT_PLATFORM_WEB = 15
  1049. };
  1050. /**
  1051. * Architecture type
  1052. */
  1053. enum ZT_Architecture
  1054. {
  1055. ZT_ARCHITECTURE_UNSPECIFIED = 0,
  1056. ZT_ARCHITECTURE_X86 = 1,
  1057. ZT_ARCHITECTURE_X64 = 2,
  1058. ZT_ARCHITECTURE_ARM32 = 3,
  1059. ZT_ARCHITECTURE_ARM64 = 4,
  1060. ZT_ARCHITECTURE_MIPS32 = 5,
  1061. ZT_ARCHITECTURE_MIPS64 = 6,
  1062. ZT_ARCHITECTURE_POWER32 = 7,
  1063. ZT_ARCHITECTURE_POWER64 = 8,
  1064. ZT_ARCHITECTURE_OPENRISC32 = 9,
  1065. ZT_ARCHITECTURE_OPENRISC64 = 10,
  1066. ZT_ARCHITECTURE_SPARC32 = 11,
  1067. ZT_ARCHITECTURE_SPARC64 = 12,
  1068. ZT_ARCHITECTURE_DOTNET_CLR = 13,
  1069. ZT_ARCHITECTURE_JAVA_JVM = 14,
  1070. ZT_ARCHITECTURE_WEB = 15,
  1071. ZT_ARCHITECTURE_S390X = 16
  1072. };
  1073. /**
  1074. * Virtual network configuration
  1075. */
  1076. typedef struct
  1077. {
  1078. /**
  1079. * 64-bit ZeroTier network ID
  1080. */
  1081. uint64_t nwid;
  1082. /**
  1083. * Ethernet MAC (48 bits) that should be assigned to port
  1084. */
  1085. uint64_t mac;
  1086. /**
  1087. * Network name (from network configuration master)
  1088. */
  1089. char name[ZT_MAX_NETWORK_SHORT_NAME_LENGTH + 1];
  1090. /**
  1091. * Network configuration request status
  1092. */
  1093. enum ZT_VirtualNetworkStatus status;
  1094. /**
  1095. * Network type
  1096. */
  1097. enum ZT_VirtualNetworkType type;
  1098. /**
  1099. * Maximum interface MTU
  1100. */
  1101. unsigned int mtu;
  1102. /**
  1103. * If nonzero, the network this port belongs to indicates DHCP availability
  1104. *
  1105. * This is a suggestion. The underlying implementation is free to ignore it
  1106. * for security or other reasons. This is simply a netconf parameter that
  1107. * means 'DHCP is available on this network.'
  1108. */
  1109. int dhcp;
  1110. /**
  1111. * If nonzero, this port is allowed to bridge to other networks
  1112. *
  1113. * This is informational. If this is false (0), bridged packets will simply
  1114. * be dropped and bridging won't work.
  1115. */
  1116. int bridge;
  1117. /**
  1118. * If nonzero, this network supports and allows broadcast (ff:ff:ff:ff:ff:ff) traffic
  1119. */
  1120. int broadcastEnabled;
  1121. /**
  1122. * If the network is in PORT_ERROR state, this is the (negative) error code most recently reported
  1123. */
  1124. int portError;
  1125. /**
  1126. * Revision number as reported by controller or 0 if still waiting for config
  1127. */
  1128. unsigned long netconfRevision;
  1129. /**
  1130. * Number of assigned addresses
  1131. */
  1132. unsigned int assignedAddressCount;
  1133. /**
  1134. * ZeroTier-assigned addresses (in sockaddr_storage structures)
  1135. *
  1136. * For IP, the port number of the sockaddr_XX structure contains the number
  1137. * of bits in the address netmask. Only the IP address and port are used.
  1138. * Other fields like interface number can be ignored.
  1139. *
  1140. * This is only used for ZeroTier-managed address assignments sent by the
  1141. * virtual network's configuration master.
  1142. */
  1143. struct sockaddr_storage assignedAddresses[ZT_MAX_ZT_ASSIGNED_ADDRESSES];
  1144. /**
  1145. * Number of ZT-pushed routes
  1146. */
  1147. unsigned int routeCount;
  1148. /**
  1149. * Routes (excluding those implied by assigned addresses and their masks)
  1150. */
  1151. ZT_VirtualNetworkRoute routes[ZT_MAX_NETWORK_ROUTES];
  1152. /**
  1153. * Number of multicast groups subscribed
  1154. */
  1155. unsigned int multicastSubscriptionCount;
  1156. /**
  1157. * Multicast groups to which this network's device is subscribed
  1158. */
  1159. struct {
  1160. uint64_t mac; /* MAC in lower 48 bits */
  1161. uint32_t adi; /* Additional distinguishing information, usually zero except for IPv4 ARP groups */
  1162. } multicastSubscriptions[ZT_MAX_MULTICAST_SUBSCRIPTIONS];
  1163. /**
  1164. * Network specific DNS configuration
  1165. */
  1166. ZT_VirtualNetworkDNS dns;
  1167. /**
  1168. * If the status us AUTHENTICATION_REQUIRED, this may contain a URL for authentication.
  1169. */
  1170. char authenticationURL[2048];
  1171. /**
  1172. * Time that current authentication expires or -1 if external authentication is not required.
  1173. */
  1174. int64_t authenticationExpiryTime;
  1175. } ZT_VirtualNetworkConfig;
  1176. /**
  1177. * A list of networks
  1178. */
  1179. typedef struct
  1180. {
  1181. ZT_VirtualNetworkConfig *networks;
  1182. unsigned long networkCount;
  1183. } ZT_VirtualNetworkList;
  1184. /**
  1185. * Physical path configuration
  1186. */
  1187. typedef struct {
  1188. /**
  1189. * If non-zero set this physical network path to be trusted to disable encryption and authentication
  1190. */
  1191. uint64_t trustedPathId;
  1192. /**
  1193. * Physical path MTU from ZT_MIN_PHYSMTU and ZT_MAX_PHYSMTU or <= 0 to use default
  1194. */
  1195. int mtu;
  1196. } ZT_PhysicalPathConfiguration;
  1197. /**
  1198. * Physical network path to a peer
  1199. */
  1200. typedef struct
  1201. {
  1202. /**
  1203. * Address of endpoint
  1204. */
  1205. struct sockaddr_storage address;
  1206. /**
  1207. * Time of last send in milliseconds or 0 for never
  1208. */
  1209. uint64_t lastSend;
  1210. /**
  1211. * Time of last receive in milliseconds or 0 for never
  1212. */
  1213. uint64_t lastReceive;
  1214. /**
  1215. * Is this a trusted path? If so this will be its nonzero ID.
  1216. */
  1217. uint64_t trustedPathId;
  1218. /**
  1219. * Mean latency
  1220. */
  1221. float latencyMean;
  1222. /**
  1223. * Maximum observed latency
  1224. */
  1225. float latencyMax;
  1226. /**
  1227. * Variance of latency
  1228. */
  1229. float latencyVariance;
  1230. /**
  1231. * Packet loss ratio
  1232. */
  1233. float packetLossRatio;
  1234. /**
  1235. * Packet error ratio
  1236. */
  1237. float packetErrorRatio;
  1238. /**
  1239. * Mean throughput
  1240. */
  1241. uint64_t throughputMean;
  1242. /**
  1243. * Maximum observed throughput
  1244. */
  1245. float throughputMax;
  1246. /**
  1247. * Throughput variance
  1248. */
  1249. float throughputVariance;
  1250. /**
  1251. * Address scope
  1252. */
  1253. uint8_t scope;
  1254. /**
  1255. * Percentage of traffic allocated to this path
  1256. */
  1257. float allocation;
  1258. /**
  1259. * Name of physical interface (for monitoring)
  1260. */
  1261. char ifname[32];
  1262. uint64_t localSocket;
  1263. /**
  1264. * Is path expired?
  1265. */
  1266. int expired;
  1267. /**
  1268. * Is path preferred?
  1269. */
  1270. int preferred;
  1271. } ZT_PeerPhysicalPath;
  1272. /**
  1273. * Peer status result buffer
  1274. */
  1275. typedef struct
  1276. {
  1277. /**
  1278. * ZeroTier address (40 bits)
  1279. */
  1280. uint64_t address;
  1281. /**
  1282. * Remote major version or -1 if not known
  1283. */
  1284. int versionMajor;
  1285. /**
  1286. * Remote minor version or -1 if not known
  1287. */
  1288. int versionMinor;
  1289. /**
  1290. * Remote revision or -1 if not known
  1291. */
  1292. int versionRev;
  1293. /**
  1294. * Last measured latency in milliseconds or -1 if unknown
  1295. */
  1296. int latency;
  1297. /**
  1298. * What trust hierarchy role does this device have?
  1299. */
  1300. enum ZT_PeerRole role;
  1301. /**
  1302. * Whether a multi-link bond has formed
  1303. */
  1304. bool isBonded;
  1305. /**
  1306. * The bonding policy used to bond to this peer
  1307. */
  1308. int bondingPolicy;
  1309. /**
  1310. * The health status of the bond to this peer
  1311. */
  1312. bool isHealthy;
  1313. /**
  1314. * The number of links that comprise the bond to this peer that are considered alive
  1315. */
  1316. int numAliveLinks;
  1317. /**
  1318. * The number of links that comprise the bond to this peer
  1319. */
  1320. int numTotalLinks;
  1321. /**
  1322. * The user-specified bond template name
  1323. */
  1324. char customBondName[32];
  1325. /**
  1326. * Number of paths (size of paths[])
  1327. */
  1328. unsigned int pathCount;
  1329. /**
  1330. * Known network paths to peer
  1331. */
  1332. ZT_PeerPhysicalPath paths[ZT_MAX_PEER_NETWORK_PATHS];
  1333. } ZT_Peer;
  1334. /**
  1335. * List of peers
  1336. */
  1337. typedef struct
  1338. {
  1339. ZT_Peer *peers;
  1340. unsigned long peerCount;
  1341. } ZT_PeerList;
  1342. /**
  1343. * ZeroTier core state objects
  1344. */
  1345. enum ZT_StateObjectType
  1346. {
  1347. /**
  1348. * Null object -- ignored
  1349. */
  1350. ZT_STATE_OBJECT_NULL = 0,
  1351. /**
  1352. * Public address and public key
  1353. *
  1354. * Object ID: this node's address if known, or 0 if unknown (first query)
  1355. * Canonical path: <HOME>/identity.public
  1356. * Persistence: required
  1357. */
  1358. ZT_STATE_OBJECT_IDENTITY_PUBLIC = 1,
  1359. /**
  1360. * Full identity with secret key
  1361. *
  1362. * Object ID: this node's address if known, or 0 if unknown (first query)
  1363. * Canonical path: <HOME>/identity.secret
  1364. * Persistence: required, should be stored with restricted permissions e.g. mode 0600 on *nix
  1365. */
  1366. ZT_STATE_OBJECT_IDENTITY_SECRET = 2,
  1367. /**
  1368. * The planet (there is only one per... well... planet!)
  1369. *
  1370. * Object ID: world ID of planet, or 0 if unknown (first query)
  1371. * Canonical path: <HOME>/planet
  1372. * Persistence: recommended
  1373. */
  1374. ZT_STATE_OBJECT_PLANET = 3,
  1375. /**
  1376. * A moon (federated root set)
  1377. *
  1378. * Object ID: world ID of moon
  1379. * Canonical path: <HOME>/moons.d/<ID>.moon (16-digit hex ID)
  1380. * Persistence: required if moon memberships should persist
  1381. */
  1382. ZT_STATE_OBJECT_MOON = 4,
  1383. /**
  1384. * Peer and related state
  1385. *
  1386. * Object ID: peer address
  1387. * Canonical path: <HOME>/peers.d/<ID> (10-digit address
  1388. * Persistence: optional, can be cleared at any time
  1389. */
  1390. ZT_STATE_OBJECT_PEER = 5,
  1391. /**
  1392. * Network configuration
  1393. *
  1394. * Object ID: peer address
  1395. * Canonical path: <HOME>/networks.d/<NETWORKID>.conf (16-digit hex ID)
  1396. * Persistence: required if network memberships should persist
  1397. */
  1398. ZT_STATE_OBJECT_NETWORK_CONFIG = 6
  1399. };
  1400. /**
  1401. * An instance of a ZeroTier One node (opaque)
  1402. */
  1403. typedef void ZT_Node;
  1404. /****************************************************************************/
  1405. /* Callbacks used by Node API */
  1406. /****************************************************************************/
  1407. /**
  1408. * Callback called to update virtual network port configuration
  1409. *
  1410. * This can be called at any time to update the configuration of a virtual
  1411. * network port. The parameter after the network ID specifies whether this
  1412. * port is being brought up, updated, brought down, or permanently deleted.
  1413. *
  1414. * This in turn should be used by the underlying implementation to create
  1415. * and configure tap devices at the OS (or virtual network stack) layer.
  1416. *
  1417. * The supplied config pointer is not guaranteed to remain valid, so make
  1418. * a copy if you want one.
  1419. *
  1420. * This should not call multicastSubscribe() or other network-modifying
  1421. * methods, as this could cause a deadlock in multithreaded or interrupt
  1422. * driven environments.
  1423. *
  1424. * This must return 0 on success. It can return any OS-dependent error code
  1425. * on failure, and this results in the network being placed into the
  1426. * PORT_ERROR state.
  1427. */
  1428. typedef int (*ZT_VirtualNetworkConfigFunction)(
  1429. ZT_Node *, /* Node */
  1430. void *, /* User ptr */
  1431. void *, /* Thread ptr */
  1432. uint64_t, /* Network ID */
  1433. void **, /* Modifiable network user PTR */
  1434. enum ZT_VirtualNetworkConfigOperation, /* Config operation */
  1435. const ZT_VirtualNetworkConfig *); /* Network configuration */
  1436. /**
  1437. * Function to send a frame out to a virtual network port
  1438. *
  1439. * Parameters: (1) node, (2) user ptr, (3) network ID, (4) source MAC,
  1440. * (5) destination MAC, (6) ethertype, (7) VLAN ID, (8) frame data,
  1441. * (9) frame length.
  1442. */
  1443. typedef void (*ZT_VirtualNetworkFrameFunction)(
  1444. ZT_Node *, /* Node */
  1445. void *, /* User ptr */
  1446. void *, /* Thread ptr */
  1447. uint64_t, /* Network ID */
  1448. void **, /* Modifiable network user PTR */
  1449. uint64_t, /* Source MAC */
  1450. uint64_t, /* Destination MAC */
  1451. unsigned int, /* Ethernet type */
  1452. unsigned int, /* VLAN ID (0 for none) */
  1453. const void *, /* Frame data */
  1454. unsigned int); /* Frame length */
  1455. /**
  1456. * Callback for events
  1457. *
  1458. * Events are generated when the node's status changes in a significant way
  1459. * and on certain non-fatal errors and events of interest. The final void
  1460. * parameter points to event meta-data. The type of event meta-data (and
  1461. * whether it is present at all) is event type dependent. See the comments
  1462. * in the definition of ZT_Event.
  1463. */
  1464. typedef void (*ZT_EventCallback)(
  1465. ZT_Node *, /* Node */
  1466. void *, /* User ptr */
  1467. void *, /* Thread ptr */
  1468. enum ZT_Event, /* Event type */
  1469. const void *); /* Event payload (if applicable) */
  1470. /**
  1471. * Callback for storing and/or publishing state information
  1472. *
  1473. * See ZT_StateObjectType docs for information about each state object type
  1474. * and when and if it needs to be persisted.
  1475. *
  1476. * An object of length -1 is sent to indicate that an object should be
  1477. * deleted.
  1478. */
  1479. typedef void (*ZT_StatePutFunction)(
  1480. ZT_Node *, /* Node */
  1481. void *, /* User ptr */
  1482. void *, /* Thread ptr */
  1483. enum ZT_StateObjectType, /* State object type */
  1484. const uint64_t [2], /* State object ID (if applicable) */
  1485. const void *, /* State object data */
  1486. int); /* Length of data or -1 to delete */
  1487. /**
  1488. * Callback for retrieving stored state information
  1489. *
  1490. * This function should return the number of bytes actually stored to the
  1491. * buffer or -1 if the state object was not found or the buffer was too
  1492. * small to store it.
  1493. */
  1494. typedef int (*ZT_StateGetFunction)(
  1495. ZT_Node *, /* Node */
  1496. void *, /* User ptr */
  1497. void *, /* Thread ptr */
  1498. enum ZT_StateObjectType, /* State object type */
  1499. const uint64_t [2], /* State object ID (if applicable) */
  1500. void *, /* Buffer to store state object data */
  1501. unsigned int); /* Length of data buffer in bytes */
  1502. /**
  1503. * Function to send a ZeroTier packet out over the physical wire (L2/L3)
  1504. *
  1505. * Parameters:
  1506. * (1) Node
  1507. * (2) User pointer
  1508. * (3) Local socket or -1 for "all" or "any"
  1509. * (4) Remote address
  1510. * (5) Packet data
  1511. * (6) Packet length
  1512. * (7) Desired IP TTL or 0 to use default
  1513. *
  1514. * If there is only one local socket, the local socket can be ignored.
  1515. * If the local socket is -1, the packet should be sent out from all
  1516. * bound local sockets or a random bound local socket.
  1517. *
  1518. * If TTL is nonzero, packets should have their IP TTL value set to this
  1519. * value if possible. If this is not possible it is acceptable to ignore
  1520. * this value and send anyway with normal or default TTL.
  1521. *
  1522. * The function must return zero on success and may return any error code
  1523. * on failure. Note that success does not (of course) guarantee packet
  1524. * delivery. It only means that the packet appears to have been sent.
  1525. */
  1526. typedef int (*ZT_WirePacketSendFunction)(
  1527. ZT_Node *, /* Node */
  1528. void *, /* User ptr */
  1529. void *, /* Thread ptr */
  1530. int64_t, /* Local socket */
  1531. const struct sockaddr_storage *, /* Remote address */
  1532. const void *, /* Packet data */
  1533. unsigned int, /* Packet length */
  1534. unsigned int); /* TTL or 0 to use default */
  1535. /**
  1536. * Function to check whether a path should be used for ZeroTier traffic
  1537. *
  1538. * Parameters:
  1539. * (1) Node
  1540. * (2) User pointer
  1541. * (3) ZeroTier address or 0 for none/any
  1542. * (4) Local socket or -1 if unknown
  1543. * (5) Remote address
  1544. *
  1545. * This function must return nonzero (true) if the path should be used.
  1546. *
  1547. * If no path check function is specified, ZeroTier will still exclude paths
  1548. * that overlap with ZeroTier-assigned and managed IP address blocks. But the
  1549. * use of a path check function is recommended to ensure that recursion does
  1550. * not occur in cases where addresses are assigned by the OS or managed by
  1551. * an out of band mechanism like DHCP. The path check function should examine
  1552. * all configured ZeroTier interfaces and check to ensure that the supplied
  1553. * addresses will not result in ZeroTier traffic being sent over a ZeroTier
  1554. * interface (recursion).
  1555. */
  1556. typedef int (*ZT_PathCheckFunction)(
  1557. ZT_Node *, /* Node */
  1558. void *, /* User ptr */
  1559. void *, /* Thread ptr */
  1560. uint64_t, /* ZeroTier address */
  1561. int64_t, /* Local socket or -1 if unknown */
  1562. const struct sockaddr_storage *); /* Remote address */
  1563. /**
  1564. * Function to get physical addresses for ZeroTier peers
  1565. *
  1566. * Parameters:
  1567. * (1) Node
  1568. * (2) User pointer
  1569. * (3) ZeroTier address (least significant 40 bits)
  1570. * (4) Desired address family or -1 for any
  1571. * (5) Buffer to fill with result
  1572. *
  1573. * If provided this function will be occasionally called to get physical
  1574. * addresses that might be tried to reach a ZeroTier address. It must
  1575. * return a nonzero (true) value if the result buffer has been filled
  1576. * with an address.
  1577. */
  1578. typedef int (*ZT_PathLookupFunction)(
  1579. ZT_Node *, /* Node */
  1580. void *, /* User ptr */
  1581. void *, /* Thread ptr */
  1582. uint64_t, /* ZeroTier address (40 bits) */
  1583. int, /* Desired ss_family or -1 for any */
  1584. struct sockaddr_storage *); /* Result buffer */
  1585. /****************************************************************************/
  1586. /* C Node API */
  1587. /****************************************************************************/
  1588. /**
  1589. * Structure for configuring ZeroTier core callback functions
  1590. */
  1591. struct ZT_Node_Callbacks
  1592. {
  1593. /**
  1594. * Struct version -- must currently be 0
  1595. */
  1596. long version;
  1597. /**
  1598. * REQUIRED: Function to store and/or replicate state objects
  1599. */
  1600. ZT_StatePutFunction statePutFunction;
  1601. /**
  1602. * REQUIRED: Function to retrieve state objects from an object store
  1603. */
  1604. ZT_StateGetFunction stateGetFunction;
  1605. /**
  1606. * REQUIRED: Function to send packets over the physical wire
  1607. */
  1608. ZT_WirePacketSendFunction wirePacketSendFunction;
  1609. /**
  1610. * REQUIRED: Function to inject frames into a virtual network's TAP
  1611. */
  1612. ZT_VirtualNetworkFrameFunction virtualNetworkFrameFunction;
  1613. /**
  1614. * REQUIRED: Function to be called when virtual networks are configured or changed
  1615. */
  1616. ZT_VirtualNetworkConfigFunction virtualNetworkConfigFunction;
  1617. /**
  1618. * REQUIRED: Function to be called to notify external code of important events
  1619. */
  1620. ZT_EventCallback eventCallback;
  1621. /**
  1622. * OPTIONAL: Function to check whether a given physical path should be used
  1623. */
  1624. ZT_PathCheckFunction pathCheckFunction;
  1625. /**
  1626. * OPTIONAL: Function to get hints to physical paths to ZeroTier addresses
  1627. */
  1628. ZT_PathLookupFunction pathLookupFunction;
  1629. };
  1630. /**
  1631. * Create a new ZeroTier node
  1632. *
  1633. * This will attempt to load its identity via the state get function in the
  1634. * callback struct. If that fails it will generate a new identity and store
  1635. * it. Identity generation can take anywhere from a few hundred milliseconds
  1636. * to a few seconds depending on your CPU speed.
  1637. *
  1638. * @param node Result: pointer is set to new node instance on success
  1639. * @param uptr User pointer to pass to functions/callbacks
  1640. * @param tptr Thread pointer to pass to functions/callbacks resulting from this call
  1641. * @param callbacks Callback function configuration
  1642. * @param now Current clock in milliseconds
  1643. * @return OK (0) or error code if a fatal error condition has occurred
  1644. */
  1645. ZT_SDK_API enum ZT_ResultCode ZT_Node_new(ZT_Node **node,void *uptr,void *tptr,const struct ZT_Node_Callbacks *callbacks,int64_t now);
  1646. /**
  1647. * Delete a node and free all resources it consumes
  1648. *
  1649. * If you are using multiple threads, all other threads must be shut down
  1650. * first. This can crash if processXXX() methods are in progress.
  1651. *
  1652. * @param node Node to delete
  1653. */
  1654. ZT_SDK_API void ZT_Node_delete(ZT_Node *node);
  1655. /**
  1656. * Process a packet received from the physical wire
  1657. *
  1658. * @param node Node instance
  1659. * @param tptr Thread pointer to pass to functions/callbacks resulting from this call
  1660. * @param now Current clock in milliseconds
  1661. * @param localSocket Local socket (you can use 0 if only one local socket is bound and ignore this)
  1662. * @param remoteAddress Origin of packet
  1663. * @param packetData Packet data
  1664. * @param packetLength Packet length
  1665. * @param nextBackgroundTaskDeadline Value/result: set to deadline for next call to processBackgroundTasks()
  1666. * @return OK (0) or error code if a fatal error condition has occurred
  1667. */
  1668. ZT_SDK_API enum ZT_ResultCode ZT_Node_processWirePacket(
  1669. ZT_Node *node,
  1670. void *tptr,
  1671. int64_t now,
  1672. int64_t localSocket,
  1673. const struct sockaddr_storage *remoteAddress,
  1674. const void *packetData,
  1675. unsigned int packetLength,
  1676. volatile int64_t *nextBackgroundTaskDeadline);
  1677. /**
  1678. * Process a frame from a virtual network port (tap)
  1679. *
  1680. * @param node Node instance
  1681. * @param tptr Thread pointer to pass to functions/callbacks resulting from this call
  1682. * @param now Current clock in milliseconds
  1683. * @param nwid ZeroTier 64-bit virtual network ID
  1684. * @param sourceMac Source MAC address (least significant 48 bits)
  1685. * @param destMac Destination MAC address (least significant 48 bits)
  1686. * @param etherType 16-bit Ethernet frame type
  1687. * @param vlanId 10-bit VLAN ID or 0 if none
  1688. * @param frameData Frame payload data
  1689. * @param frameLength Frame payload length
  1690. * @param nextBackgroundTaskDeadline Value/result: set to deadline for next call to processBackgroundTasks()
  1691. * @return OK (0) or error code if a fatal error condition has occurred
  1692. */
  1693. ZT_SDK_API enum ZT_ResultCode ZT_Node_processVirtualNetworkFrame(
  1694. ZT_Node *node,
  1695. void *tptr,
  1696. int64_t now,
  1697. uint64_t nwid,
  1698. uint64_t sourceMac,
  1699. uint64_t destMac,
  1700. unsigned int etherType,
  1701. unsigned int vlanId,
  1702. const void *frameData,
  1703. unsigned int frameLength,
  1704. volatile int64_t *nextBackgroundTaskDeadline);
  1705. /**
  1706. * Perform periodic background operations
  1707. *
  1708. * @param node Node instance
  1709. * @param tptr Thread pointer to pass to functions/callbacks resulting from this call
  1710. * @param now Current clock in milliseconds
  1711. * @param nextBackgroundTaskDeadline Value/result: set to deadline for next call to processBackgroundTasks()
  1712. * @return OK (0) or error code if a fatal error condition has occurred
  1713. */
  1714. ZT_SDK_API enum ZT_ResultCode ZT_Node_processBackgroundTasks(ZT_Node *node,void *tptr,int64_t now,volatile int64_t *nextBackgroundTaskDeadline);
  1715. /**
  1716. * Join a network
  1717. *
  1718. * This may generate calls to the port config callback before it returns,
  1719. * or these may be differed if a netconf is not available yet.
  1720. *
  1721. * If we are already a member of the network, nothing is done and OK is
  1722. * returned.
  1723. *
  1724. * @param node Node instance
  1725. * @param nwid 64-bit ZeroTier network ID
  1726. * @param uptr An arbitrary pointer to associate with this network (default: NULL)
  1727. * @return OK (0) or error code if a fatal error condition has occurred
  1728. */
  1729. ZT_SDK_API enum ZT_ResultCode ZT_Node_join(ZT_Node *node,uint64_t nwid,void *uptr,void *tptr);
  1730. /**
  1731. * Leave a network
  1732. *
  1733. * If a port has been configured for this network this will generate a call
  1734. * to the port config callback with a NULL second parameter to indicate that
  1735. * the port is now deleted.
  1736. *
  1737. * The uptr parameter is optional and is NULL by default. If it is not NULL,
  1738. * the pointer it points to is set to this network's uptr on success.
  1739. *
  1740. * @param node Node instance
  1741. * @param nwid 64-bit network ID
  1742. * @param uptr Target pointer is set to uptr (if not NULL)
  1743. * @return OK (0) or error code if a fatal error condition has occurred
  1744. */
  1745. ZT_SDK_API enum ZT_ResultCode ZT_Node_leave(ZT_Node *node,uint64_t nwid,void **uptr,void *tptr);
  1746. /**
  1747. * Subscribe to an Ethernet multicast group
  1748. *
  1749. * ADI stands for additional distinguishing information. This defaults to zero
  1750. * and is rarely used. Right now its only use is to enable IPv4 ARP to scale,
  1751. * and this must be done.
  1752. *
  1753. * For IPv4 ARP, the implementation must subscribe to 0xffffffffffff (the
  1754. * broadcast address) but with an ADI equal to each IPv4 address in host
  1755. * byte order. This converts ARP from a non-scalable broadcast protocol to
  1756. * a scalable multicast protocol with perfect address specificity.
  1757. *
  1758. * If this is not done, ARP will not work reliably.
  1759. *
  1760. * Multiple calls to subscribe to the same multicast address will have no
  1761. * effect. It is perfectly safe to do this.
  1762. *
  1763. * This does not generate an update call to networkConfigCallback().
  1764. *
  1765. * @param node Node instance
  1766. * @param tptr Thread pointer to pass to functions/callbacks resulting from this call
  1767. * @param nwid 64-bit network ID
  1768. * @param multicastGroup Ethernet multicast or broadcast MAC (least significant 48 bits)
  1769. * @param multicastAdi Multicast ADI (least significant 32 bits only, use 0 if not needed)
  1770. * @return OK (0) or error code if a fatal error condition has occurred
  1771. */
  1772. ZT_SDK_API enum ZT_ResultCode ZT_Node_multicastSubscribe(ZT_Node *node,void *tptr,uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi);
  1773. /**
  1774. * Unsubscribe from an Ethernet multicast group (or all groups)
  1775. *
  1776. * If multicastGroup is zero (0), this will unsubscribe from all groups. If
  1777. * you are not subscribed to a group this has no effect.
  1778. *
  1779. * This does not generate an update call to networkConfigCallback().
  1780. *
  1781. * @param node Node instance
  1782. * @param nwid 64-bit network ID
  1783. * @param multicastGroup Ethernet multicast or broadcast MAC (least significant 48 bits)
  1784. * @param multicastAdi Multicast ADI (least significant 32 bits only, use 0 if not needed)
  1785. * @return OK (0) or error code if a fatal error condition has occurred
  1786. */
  1787. ZT_SDK_API enum ZT_ResultCode ZT_Node_multicastUnsubscribe(ZT_Node *node,uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi);
  1788. /**
  1789. * Add or update a moon
  1790. *
  1791. * Moons are persisted in the data store in moons.d/, so this can persist
  1792. * across invocations if the contents of moon.d are scanned and orbit is
  1793. * called for each on startup.
  1794. *
  1795. * @param node Node instance
  1796. * @param tptr Thread pointer to pass to functions/callbacks resulting from this call
  1797. * @param moonWorldId Moon's world ID
  1798. * @param moonSeed If non-zero, the ZeroTier address of any member of the moon to query for moon definition
  1799. * @param len Length of moonWorld in bytes
  1800. * @return Error if moon was invalid or failed to be added
  1801. */
  1802. ZT_SDK_API enum ZT_ResultCode ZT_Node_orbit(ZT_Node *node,void *tptr,uint64_t moonWorldId,uint64_t moonSeed);
  1803. /**
  1804. * Remove a moon (does nothing if not present)
  1805. *
  1806. * @param node Node instance
  1807. * @param tptr Thread pointer to pass to functions/callbacks resulting from this call
  1808. * @param moonWorldId World ID of moon to remove
  1809. * @return Error if anything bad happened
  1810. */
  1811. ZT_SDK_API enum ZT_ResultCode ZT_Node_deorbit(ZT_Node *node,void *tptr,uint64_t moonWorldId);
  1812. /**
  1813. * Get this node's 40-bit ZeroTier address
  1814. *
  1815. * @param node Node instance
  1816. * @return ZeroTier address (least significant 40 bits of 64-bit int)
  1817. */
  1818. ZT_SDK_API uint64_t ZT_Node_address(ZT_Node *node);
  1819. /**
  1820. * Get the status of this node
  1821. *
  1822. * @param node Node instance
  1823. * @param status Buffer to fill with current node status
  1824. */
  1825. ZT_SDK_API void ZT_Node_status(ZT_Node *node,ZT_NodeStatus *status);
  1826. /**
  1827. * Get a list of known peer nodes
  1828. *
  1829. * The pointer returned here must be freed with freeQueryResult()
  1830. * when you are done with it.
  1831. *
  1832. * @param node Node instance
  1833. * @return List of known peers or NULL on failure
  1834. */
  1835. ZT_SDK_API ZT_PeerList *ZT_Node_peers(ZT_Node *node);
  1836. /**
  1837. * Get the status of a virtual network
  1838. *
  1839. * The pointer returned here must be freed with freeQueryResult()
  1840. * when you are done with it.
  1841. *
  1842. * @param node Node instance
  1843. * @param nwid 64-bit network ID
  1844. * @return Network configuration or NULL if we are not a member of this network
  1845. */
  1846. ZT_SDK_API ZT_VirtualNetworkConfig *ZT_Node_networkConfig(ZT_Node *node,uint64_t nwid);
  1847. /**
  1848. * Enumerate and get status of all networks
  1849. *
  1850. * @param node Node instance
  1851. * @return List of networks or NULL on failure
  1852. */
  1853. ZT_SDK_API ZT_VirtualNetworkList *ZT_Node_networks(ZT_Node *node);
  1854. /**
  1855. * Free a query result buffer
  1856. *
  1857. * Use this to free the return values of listNetworks(), listPeers(), etc.
  1858. *
  1859. * @param node Node instance
  1860. * @param qr Query result buffer
  1861. */
  1862. ZT_SDK_API void ZT_Node_freeQueryResult(ZT_Node *node,void *qr);
  1863. /**
  1864. * Add a local interface address
  1865. *
  1866. * This is used to make ZeroTier aware of those local interface addresses
  1867. * that you wish to use for ZeroTier communication. This is optional, and if
  1868. * it is not used ZeroTier will rely upon upstream peers (and roots) to
  1869. * perform empirical address discovery and NAT traversal. But the use of this
  1870. * method is recommended as it improves peer discovery when both peers are
  1871. * on the same LAN.
  1872. *
  1873. * It is the responsibility of the caller to take care that these are never
  1874. * ZeroTier interface addresses, whether these are assigned by ZeroTier or
  1875. * are otherwise assigned to an interface managed by this ZeroTier instance.
  1876. * This can cause recursion or other undesirable behavior.
  1877. *
  1878. * This returns a boolean indicating whether or not the address was
  1879. * accepted. ZeroTier will only communicate over certain address types
  1880. * and (for IP) address classes.
  1881. *
  1882. * @param addr Local interface address
  1883. * @return Boolean: non-zero if address was accepted and added
  1884. */
  1885. ZT_SDK_API int ZT_Node_addLocalInterfaceAddress(ZT_Node *node,const struct sockaddr_storage *addr);
  1886. /**
  1887. * Clear local interface addresses
  1888. */
  1889. ZT_SDK_API void ZT_Node_clearLocalInterfaceAddresses(ZT_Node *node);
  1890. /**
  1891. * Send a VERB_USER_MESSAGE to another ZeroTier node
  1892. *
  1893. * There is no delivery guarantee here. Failure can occur if the message is
  1894. * too large or if dest is not a valid ZeroTier address.
  1895. *
  1896. * @param node Node instance
  1897. * @param tptr Thread pointer to pass to functions/callbacks resulting from this call
  1898. * @param dest Destination ZeroTier address
  1899. * @param typeId VERB_USER_MESSAGE type ID
  1900. * @param data Payload data to attach to user message
  1901. * @param len Length of data in bytes
  1902. * @return Boolean: non-zero on success, zero on failure
  1903. */
  1904. ZT_SDK_API int ZT_Node_sendUserMessage(ZT_Node *node,void *tptr,uint64_t dest,uint64_t typeId,const void *data,unsigned int len);
  1905. /**
  1906. * Set a network configuration master instance for this node
  1907. *
  1908. * Normal nodes should not need to use this. This is for nodes with
  1909. * special compiled-in support for acting as network configuration
  1910. * masters / controllers.
  1911. *
  1912. * The supplied instance must be a C++ object that inherits from the
  1913. * NetworkConfigMaster base class in node/. No type checking is performed,
  1914. * so a pointer to anything else will result in a crash.
  1915. *
  1916. * @param node ZertTier One node
  1917. * @param networkConfigMasterInstance Instance of NetworkConfigMaster C++ class or NULL to disable
  1918. * @return OK (0) or error code if a fatal error condition has occurred
  1919. */
  1920. ZT_SDK_API void ZT_Node_setNetconfMaster(ZT_Node *node,void *networkConfigMasterInstance);
  1921. /**
  1922. * Set configuration for a given physical path
  1923. *
  1924. * @param node Node instance
  1925. * @param pathNetwork Network/CIDR of path or NULL to clear the cache and reset all paths to default
  1926. * @param pathConfig Path configuration or NULL to erase this entry and therefore reset it to NULL
  1927. * @return OK or error code
  1928. */
  1929. ZT_SDK_API enum ZT_ResultCode ZT_Node_setPhysicalPathConfiguration(ZT_Node *node,const struct sockaddr_storage *pathNetwork,const ZT_PhysicalPathConfiguration *pathConfig);
  1930. /**
  1931. * Get ZeroTier One version
  1932. *
  1933. * @param major Result: major version
  1934. * @param minor Result: minor version
  1935. * @param revision Result: revision
  1936. */
  1937. ZT_SDK_API void ZT_version(int *major,int *minor,int *revision);
  1938. #ifdef __cplusplus
  1939. }
  1940. #endif
  1941. #endif