ZeroTierOne.h 52 KB

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