ZeroTierOne.h 58 KB

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