ZeroTierOne.h 53 KB

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