ZeroTierOne.h 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337
  1. /*
  2. * ZeroTier One - Network Virtualization Everywhere
  3. * Copyright (C) 2011-2015 ZeroTier, Inc.
  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. * ZeroTier may be used and distributed under the terms of the GPLv3, which
  21. * are available at: http://www.gnu.org/licenses/gpl-3.0.html
  22. *
  23. * If you would like to embed ZeroTier into a commercial application or
  24. * redistribute it in a modified binary form, please contact ZeroTier Networks
  25. * LLC. Start here: http://www.zerotier.com/
  26. */
  27. /*
  28. * This defines the external C API for ZeroTier's core network virtualization
  29. * engine.
  30. */
  31. #ifndef ZT_ZEROTIERONE_H
  32. #define ZT_ZEROTIERONE_H
  33. #include <stdint.h>
  34. // For the struct sockaddr_storage structure
  35. #if defined(_WIN32) || defined(_WIN64)
  36. #include <WinSock2.h>
  37. #include <WS2tcpip.h>
  38. #include <Windows.h>
  39. #else /* not Windows */
  40. #include <arpa/inet.h>
  41. #include <netinet/in.h>
  42. #include <sys/types.h>
  43. #include <sys/socket.h>
  44. #endif /* Windows or not */
  45. #ifdef __cplusplus
  46. extern "C" {
  47. #endif
  48. /****************************************************************************/
  49. /* Core constants */
  50. /****************************************************************************/
  51. /**
  52. * Default UDP port for devices running a ZeroTier endpoint
  53. */
  54. #define ZT_DEFAULT_PORT 9993
  55. /**
  56. * Maximum MTU for ZeroTier virtual networks
  57. *
  58. * This is pretty much an unchangeable global constant. To make it change
  59. * across nodes would require logic to send ICMP packet too big messages,
  60. * which would complicate things. 1500 has been good enough on most LANs
  61. * for ages, so a larger MTU should be fine for the forseeable future. This
  62. * typically results in two UDP packets per single large frame. Experimental
  63. * results seem to show that this is good. Larger MTUs resulting in more
  64. * fragments seemed too brittle on slow/crummy links for no benefit.
  65. *
  66. * If this does change, also change it in tap.h in the tuntaposx code under
  67. * mac-tap.
  68. *
  69. * Overhead for a normal frame split into two packets:
  70. *
  71. * 1414 = 1444 (typical UDP MTU) - 28 (packet header) - 2 (ethertype)
  72. * 1428 = 1444 (typical UDP MTU) - 16 (fragment header)
  73. * SUM: 2842
  74. *
  75. * We use 2800, which leaves some room for other payload in other types of
  76. * messages such as multicast propagation or future support for bridging.
  77. */
  78. #define ZT_MAX_MTU 2800
  79. /**
  80. * Maximum length of network short name
  81. */
  82. #define ZT_MAX_NETWORK_SHORT_NAME_LENGTH 255
  83. /**
  84. * Maximum number of statically assigned IP addresses per network endpoint using ZT address management (not DHCP)
  85. */
  86. #define ZT_MAX_ZT_ASSIGNED_ADDRESSES 16
  87. /**
  88. * Maximum number of multicast group subscriptions per network
  89. */
  90. #define ZT_MAX_NETWORK_MULTICAST_SUBSCRIPTIONS 4096
  91. /**
  92. * Maximum number of direct network paths to a given peer
  93. */
  94. #define ZT_MAX_PEER_NETWORK_PATHS 4
  95. /**
  96. * Feature flag: ZeroTier One was built to be thread-safe -- concurrent processXXX() calls are okay
  97. */
  98. #define ZT_FEATURE_FLAG_THREAD_SAFE 0x00000001
  99. /**
  100. * Feature flag: FIPS compliant build (not available yet, but reserved for future use if we ever do this)
  101. */
  102. #define ZT_FEATURE_FLAG_FIPS 0x00000002
  103. /**
  104. * Maximum number of hops in a ZeroTier circuit test
  105. *
  106. * This is more or less the max that can be fit in a given packet (with
  107. * fragmentation) and only one address per hop.
  108. */
  109. #define ZT_CIRCUIT_TEST_MAX_HOPS 512
  110. /**
  111. * Maximum number of addresses per hop in a circuit test
  112. */
  113. #define ZT_CIRCUIT_TEST_MAX_HOP_BREADTH 256
  114. /**
  115. * A null/empty sockaddr (all zero) to signify an unspecified socket address
  116. */
  117. extern const struct sockaddr_storage ZT_SOCKADDR_NULL;
  118. /****************************************************************************/
  119. /* Structures and other types */
  120. /****************************************************************************/
  121. /**
  122. * Function return code: OK (0) or error results
  123. *
  124. * Use ZT_ResultCode_isFatal() to check for a fatal error. If a fatal error
  125. * occurs, the node should be considered to not be working correctly. These
  126. * indicate serious problems like an inaccessible data store or a compile
  127. * problem.
  128. */
  129. enum ZT_ResultCode
  130. {
  131. /**
  132. * Operation completed normally
  133. */
  134. ZT_RESULT_OK = 0,
  135. // Fatal errors (>0, <1000)
  136. /**
  137. * Ran out of memory
  138. */
  139. ZT_RESULT_FATAL_ERROR_OUT_OF_MEMORY = 1,
  140. /**
  141. * Data store is not writable or has failed
  142. */
  143. ZT_RESULT_FATAL_ERROR_DATA_STORE_FAILED = 2,
  144. /**
  145. * Internal error (e.g. unexpected exception indicating bug or build problem)
  146. */
  147. ZT_RESULT_FATAL_ERROR_INTERNAL = 3,
  148. // Non-fatal errors (>1000)
  149. /**
  150. * Network ID not valid
  151. */
  152. ZT_RESULT_ERROR_NETWORK_NOT_FOUND = 1000
  153. };
  154. /**
  155. * @param x Result code
  156. * @return True if result code indicates a fatal error
  157. */
  158. #define ZT_ResultCode_isFatal(x) ((((int)(x)) > 0)&&(((int)(x)) < 1000))
  159. /**
  160. * Status codes sent to status update callback when things happen
  161. */
  162. enum ZT_Event
  163. {
  164. /**
  165. * Node has been initialized
  166. *
  167. * This is the first event generated, and is always sent. It may occur
  168. * before Node's constructor returns.
  169. *
  170. * Meta-data: none
  171. */
  172. ZT_EVENT_UP = 0,
  173. /**
  174. * Node is offline -- network does not seem to be reachable by any available strategy
  175. *
  176. * Meta-data: none
  177. */
  178. ZT_EVENT_OFFLINE = 1,
  179. /**
  180. * Node is online -- at least one upstream node appears reachable
  181. *
  182. * Meta-data: none
  183. */
  184. ZT_EVENT_ONLINE = 2,
  185. /**
  186. * Node is shutting down
  187. *
  188. * This is generated within Node's destructor when it is being shut down.
  189. * It's done for convenience, since cleaning up other state in the event
  190. * handler may appear more idiomatic.
  191. *
  192. * Meta-data: none
  193. */
  194. ZT_EVENT_DOWN = 3,
  195. /**
  196. * Your identity has collided with another node's ZeroTier address
  197. *
  198. * This happens if two different public keys both hash (via the algorithm
  199. * in Identity::generate()) to the same 40-bit ZeroTier address.
  200. *
  201. * This is something you should "never" see, where "never" is defined as
  202. * once per 2^39 new node initializations / identity creations. If you do
  203. * see it, you're going to see it very soon after a node is first
  204. * initialized.
  205. *
  206. * This is reported as an event rather than a return code since it's
  207. * detected asynchronously via error messages from authoritative nodes.
  208. *
  209. * If this occurs, you must shut down and delete the node, delete the
  210. * identity.secret record/file from the data store, and restart to generate
  211. * a new identity. If you don't do this, you will not be able to communicate
  212. * with other nodes.
  213. *
  214. * We'd automate this process, but we don't think silently deleting
  215. * private keys or changing our address without telling the calling code
  216. * is good form. It violates the principle of least surprise.
  217. *
  218. * You can technically get away with not handling this, but we recommend
  219. * doing so in a mature reliable application. Besides, handling this
  220. * condition is a good way to make sure it never arises. It's like how
  221. * umbrellas prevent rain and smoke detectors prevent fires. They do, right?
  222. *
  223. * Meta-data: none
  224. */
  225. ZT_EVENT_FATAL_ERROR_IDENTITY_COLLISION = 4,
  226. /**
  227. * Trace (debugging) message
  228. *
  229. * These events are only generated if this is a TRACE-enabled build.
  230. *
  231. * Meta-data: C string, TRACE message
  232. */
  233. ZT_EVENT_TRACE = 5
  234. };
  235. /**
  236. * Current node status
  237. */
  238. typedef struct
  239. {
  240. /**
  241. * 40-bit ZeroTier address of this node
  242. */
  243. uint64_t address;
  244. /**
  245. * Current world ID
  246. */
  247. uint64_t worldId;
  248. /**
  249. * Current world revision/timestamp
  250. */
  251. uint64_t worldTimestamp;
  252. /**
  253. * Public identity in string-serialized form (safe to send to others)
  254. *
  255. * This pointer will remain valid as long as the node exists.
  256. */
  257. const char *publicIdentity;
  258. /**
  259. * Full identity including secret key in string-serialized form
  260. *
  261. * This pointer will remain valid as long as the node exists.
  262. */
  263. const char *secretIdentity;
  264. /**
  265. * True if some kind of connectivity appears available
  266. */
  267. int online;
  268. } ZT_NodeStatus;
  269. /**
  270. * Virtual network status codes
  271. */
  272. enum ZT_VirtualNetworkStatus
  273. {
  274. /**
  275. * Waiting for network configuration (also means revision == 0)
  276. */
  277. ZT_NETWORK_STATUS_REQUESTING_CONFIGURATION = 0,
  278. /**
  279. * Configuration received and we are authorized
  280. */
  281. ZT_NETWORK_STATUS_OK = 1,
  282. /**
  283. * Netconf master told us 'nope'
  284. */
  285. ZT_NETWORK_STATUS_ACCESS_DENIED = 2,
  286. /**
  287. * Netconf master exists, but this virtual network does not
  288. */
  289. ZT_NETWORK_STATUS_NOT_FOUND = 3,
  290. /**
  291. * Initialization of network failed or other internal error
  292. */
  293. ZT_NETWORK_STATUS_PORT_ERROR = 4,
  294. /**
  295. * ZeroTier One version too old
  296. */
  297. ZT_NETWORK_STATUS_CLIENT_TOO_OLD = 5
  298. };
  299. /**
  300. * Virtual network type codes
  301. */
  302. enum ZT_VirtualNetworkType
  303. {
  304. /**
  305. * Private networks are authorized via certificates of membership
  306. */
  307. ZT_NETWORK_TYPE_PRIVATE = 0,
  308. /**
  309. * Public networks have no access control -- they'll always be AUTHORIZED
  310. */
  311. ZT_NETWORK_TYPE_PUBLIC = 1
  312. };
  313. /**
  314. * An Ethernet multicast group
  315. */
  316. typedef struct
  317. {
  318. /**
  319. * MAC address (least significant 48 bits)
  320. */
  321. uint64_t mac;
  322. /**
  323. * Additional distinguishing information (usually zero)
  324. */
  325. unsigned long adi;
  326. } ZT_MulticastGroup;
  327. /**
  328. * Virtual network configuration update type
  329. */
  330. enum ZT_VirtualNetworkConfigOperation
  331. {
  332. /**
  333. * Network is coming up (either for the first time or after service restart)
  334. */
  335. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_UP = 1,
  336. /**
  337. * Network configuration has been updated
  338. */
  339. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_CONFIG_UPDATE = 2,
  340. /**
  341. * Network is going down (not permanently)
  342. */
  343. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DOWN = 3,
  344. /**
  345. * Network is going down permanently (leave/delete)
  346. */
  347. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY = 4
  348. };
  349. /**
  350. * Local interface trust levels
  351. */
  352. enum ZT_LocalInterfaceAddressTrust {
  353. ZT_LOCAL_INTERFACE_ADDRESS_TRUST_NORMAL = 0,
  354. ZT_LOCAL_INTERFACE_ADDRESS_TRUST_PRIVACY = 10,
  355. ZT_LOCAL_INTERFACE_ADDRESS_TRUST_ULTIMATE = 20
  356. };
  357. /**
  358. * What trust hierarchy role does this peer have?
  359. */
  360. enum ZT_PeerRole {
  361. ZT_PEER_ROLE_LEAF = 0, // ordinary node
  362. ZT_PEER_ROLE_RELAY = 1, // relay node
  363. ZT_PEER_ROLE_ROOT = 2 // root server
  364. };
  365. /**
  366. * Vendor ID
  367. */
  368. enum ZT_Vendor {
  369. ZT_VENDOR_UNSPECIFIED = 0,
  370. ZT_VENDOR_ZEROTIER = 1
  371. };
  372. /**
  373. * Platform type
  374. */
  375. enum ZT_Platform {
  376. ZT_PLATFORM_UNSPECIFIED = 0,
  377. ZT_PLATFORM_LINUX = 1,
  378. ZT_PLATFORM_WINDOWS = 2,
  379. ZT_PLATFORM_MACOS = 3,
  380. ZT_PLATFORM_ANDROID = 4,
  381. ZT_PLATFORM_IOS = 5,
  382. ZT_PLATFORM_SOLARIS_SMARTOS = 6,
  383. ZT_PLATFORM_FREEBSD = 7,
  384. ZT_PLATFORM_NETBSD = 8,
  385. ZT_PLATFORM_OPENBSD = 9,
  386. ZT_PLATFORM_RISCOS = 10,
  387. ZT_PLATFORM_VXWORKS = 11,
  388. ZT_PLATFORM_FREERTOS = 12,
  389. ZT_PLATFORM_SYSBIOS = 13,
  390. ZT_PLATFORM_HURD = 14
  391. };
  392. /**
  393. * Architecture type
  394. */
  395. enum ZT_Architecture {
  396. ZT_ARCHITECTURE_UNSPECIFIED = 0,
  397. ZT_ARCHITECTURE_X86 = 1,
  398. ZT_ARCHITECTURE_X64 = 2,
  399. ZT_ARCHITECTURE_ARM32 = 3,
  400. ZT_ARCHITECTURE_ARM64 = 4,
  401. ZT_ARCHITECTURE_MIPS32 = 5,
  402. ZT_ARCHITECTURE_MIPS64 = 6,
  403. ZT_ARCHITECTURE_POWER32 = 7,
  404. ZT_ARCHITECTURE_POWER64 = 8
  405. };
  406. /**
  407. * Virtual network configuration
  408. */
  409. typedef struct
  410. {
  411. /**
  412. * 64-bit ZeroTier network ID
  413. */
  414. uint64_t nwid;
  415. /**
  416. * Ethernet MAC (48 bits) that should be assigned to port
  417. */
  418. uint64_t mac;
  419. /**
  420. * Network name (from network configuration master)
  421. */
  422. char name[ZT_MAX_NETWORK_SHORT_NAME_LENGTH + 1];
  423. /**
  424. * Network configuration request status
  425. */
  426. enum ZT_VirtualNetworkStatus status;
  427. /**
  428. * Network type
  429. */
  430. enum ZT_VirtualNetworkType type;
  431. /**
  432. * Maximum interface MTU
  433. */
  434. unsigned int mtu;
  435. /**
  436. * If nonzero, the network this port belongs to indicates DHCP availability
  437. *
  438. * This is a suggestion. The underlying implementation is free to ignore it
  439. * for security or other reasons. This is simply a netconf parameter that
  440. * means 'DHCP is available on this network.'
  441. */
  442. int dhcp;
  443. /**
  444. * If nonzero, this port is allowed to bridge to other networks
  445. *
  446. * This is informational. If this is false (0), bridged packets will simply
  447. * be dropped and bridging won't work.
  448. */
  449. int bridge;
  450. /**
  451. * If nonzero, this network supports and allows broadcast (ff:ff:ff:ff:ff:ff) traffic
  452. */
  453. int broadcastEnabled;
  454. /**
  455. * If the network is in PORT_ERROR state, this is the error most recently returned by the port config callback
  456. */
  457. int portError;
  458. /**
  459. * Is this network enabled? If not, all frames to/from are dropped.
  460. */
  461. int enabled;
  462. /**
  463. * Network config revision as reported by netconf master
  464. *
  465. * If this is zero, it means we're still waiting for our netconf.
  466. */
  467. unsigned long netconfRevision;
  468. /**
  469. * Number of multicast group subscriptions
  470. */
  471. unsigned int multicastSubscriptionCount;
  472. /**
  473. * Multicast group subscriptions
  474. */
  475. ZT_MulticastGroup multicastSubscriptions[ZT_MAX_NETWORK_MULTICAST_SUBSCRIPTIONS];
  476. /**
  477. * Number of assigned addresses
  478. */
  479. unsigned int assignedAddressCount;
  480. /**
  481. * ZeroTier-assigned addresses (in sockaddr_storage structures)
  482. *
  483. * For IP, the port number of the sockaddr_XX structure contains the number
  484. * of bits in the address netmask. Only the IP address and port are used.
  485. * Other fields like interface number can be ignored.
  486. *
  487. * This is only used for ZeroTier-managed address assignments sent by the
  488. * virtual network's configuration master.
  489. */
  490. struct sockaddr_storage assignedAddresses[ZT_MAX_ZT_ASSIGNED_ADDRESSES];
  491. } ZT_VirtualNetworkConfig;
  492. /**
  493. * A list of networks
  494. */
  495. typedef struct
  496. {
  497. ZT_VirtualNetworkConfig *networks;
  498. unsigned long networkCount;
  499. } ZT_VirtualNetworkList;
  500. /**
  501. * Physical network path to a peer
  502. */
  503. typedef struct
  504. {
  505. /**
  506. * Address of endpoint
  507. */
  508. struct sockaddr_storage address;
  509. /**
  510. * Time of last send in milliseconds or 0 for never
  511. */
  512. uint64_t lastSend;
  513. /**
  514. * Time of last receive in milliseconds or 0 for never
  515. */
  516. uint64_t lastReceive;
  517. /**
  518. * Is path active?
  519. */
  520. int active;
  521. /**
  522. * Is path preferred?
  523. */
  524. int preferred;
  525. } ZT_PeerPhysicalPath;
  526. /**
  527. * Peer status result buffer
  528. */
  529. typedef struct
  530. {
  531. /**
  532. * ZeroTier address (40 bits)
  533. */
  534. uint64_t address;
  535. /**
  536. * Time we last received a unicast frame from this peer
  537. */
  538. uint64_t lastUnicastFrame;
  539. /**
  540. * Time we last received a multicast rame from this peer
  541. */
  542. uint64_t lastMulticastFrame;
  543. /**
  544. * Remote major version or -1 if not known
  545. */
  546. int versionMajor;
  547. /**
  548. * Remote minor version or -1 if not known
  549. */
  550. int versionMinor;
  551. /**
  552. * Remote revision or -1 if not known
  553. */
  554. int versionRev;
  555. /**
  556. * Last measured latency in milliseconds or zero if unknown
  557. */
  558. unsigned int latency;
  559. /**
  560. * What trust hierarchy role does this device have?
  561. */
  562. enum ZT_PeerRole role;
  563. /**
  564. * Number of paths (size of paths[])
  565. */
  566. unsigned int pathCount;
  567. /**
  568. * Known network paths to peer
  569. */
  570. ZT_PeerPhysicalPath paths[ZT_MAX_PEER_NETWORK_PATHS];
  571. } ZT_Peer;
  572. /**
  573. * List of peers
  574. */
  575. typedef struct
  576. {
  577. ZT_Peer *peers;
  578. unsigned long peerCount;
  579. } ZT_PeerList;
  580. /**
  581. * ZeroTier circuit test configuration and path
  582. */
  583. typedef struct {
  584. /**
  585. * Test ID -- an arbitrary 64-bit identifier
  586. */
  587. uint64_t testId;
  588. /**
  589. * Timestamp -- sent with test and echoed back by each reporter
  590. */
  591. uint64_t timestamp;
  592. /**
  593. * Originator credential: network ID
  594. *
  595. * If this is nonzero, a network ID will be set for this test and
  596. * the originator must be its primary network controller. This is
  597. * currently the only authorization method available, so it must
  598. * be set to run a test.
  599. */
  600. uint64_t credentialNetworkId;
  601. /**
  602. * Hops in circuit test (a.k.a. FIFO for graph traversal)
  603. */
  604. struct {
  605. /**
  606. * Hop flags (currently unused, must be zero)
  607. */
  608. unsigned int flags;
  609. /**
  610. * Number of addresses in this hop (max: ZT_CIRCUIT_TEST_MAX_HOP_BREADTH)
  611. */
  612. unsigned int breadth;
  613. /**
  614. * 40-bit ZeroTier addresses (most significant 24 bits ignored)
  615. */
  616. uint64_t addresses[ZT_CIRCUIT_TEST_MAX_HOP_BREADTH];
  617. } hops[ZT_CIRCUIT_TEST_MAX_HOPS];
  618. /**
  619. * Number of hops (max: ZT_CIRCUIT_TEST_MAX_HOPS)
  620. */
  621. unsigned int hopCount;
  622. /**
  623. * If non-zero, circuit test will report back at every hop
  624. */
  625. int reportAtEveryHop;
  626. /**
  627. * An arbitrary user-settable pointer
  628. */
  629. void *ptr;
  630. /**
  631. * Pointer for internal use -- initialize to zero and do not modify
  632. */
  633. void *_internalPtr;
  634. } ZT_CircuitTest;
  635. /**
  636. * Circuit test result report
  637. */
  638. typedef struct {
  639. /**
  640. * Sender of report (current hop)
  641. */
  642. uint64_t current;
  643. /**
  644. * Previous hop
  645. */
  646. uint64_t upstream;
  647. /**
  648. * 64-bit test ID
  649. */
  650. uint64_t testId;
  651. /**
  652. * Timestamp from original test (echoed back at each hop)
  653. */
  654. uint64_t timestamp;
  655. /**
  656. * Timestamp on remote device
  657. */
  658. uint64_t remoteTimestamp;
  659. /**
  660. * 64-bit packet ID of packet received by the reporting device
  661. */
  662. uint64_t sourcePacketId;
  663. /**
  664. * Flags (currently unused, will be zero)
  665. */
  666. uint64_t flags;
  667. /**
  668. * ZeroTier protocol-level hop count of packet received by reporting device (>0 indicates relayed)
  669. */
  670. unsigned int sourcePacketHopCount;
  671. /**
  672. * Error code (currently unused, will be zero)
  673. */
  674. unsigned int errorCode;
  675. /**
  676. * Remote device vendor ID
  677. */
  678. enum ZT_Vendor vendor;
  679. /**
  680. * Remote device protocol compliance version
  681. */
  682. unsigned int protocolVersion;
  683. /**
  684. * Software major version
  685. */
  686. unsigned int majorVersion;
  687. /**
  688. * Software minor version
  689. */
  690. unsigned int minorVersion;
  691. /**
  692. * Software revision
  693. */
  694. unsigned int revision;
  695. /**
  696. * Platform / OS
  697. */
  698. enum ZT_Platform platform;
  699. /**
  700. * System architecture
  701. */
  702. enum ZT_Architecture architecture;
  703. /**
  704. * Local device address on which packet was received by reporting device
  705. *
  706. * This may have ss_family equal to zero (null address) if unspecified.
  707. */
  708. struct sockaddr_storage receivedOnLocalAddress;
  709. /**
  710. * Remote address from which reporter received the test packet
  711. *
  712. * This may have ss_family set to zero (null address) if unspecified.
  713. */
  714. struct sockaddr_storage receivedFromRemoteAddress;
  715. /**
  716. * Next hops to which packets are being or will be sent by the reporter
  717. *
  718. * In addition to reporting back, the reporter may send the test on if
  719. * there are more recipients in the FIFO. If it does this, it can report
  720. * back the address(es) that make up the next hop and the physical address
  721. * for each if it has one. The physical address being null/unspecified
  722. * typically indicates that no direct path exists and the next packet
  723. * will be relayed.
  724. */
  725. struct {
  726. /**
  727. * 40-bit ZeroTier address
  728. */
  729. uint64_t address;
  730. /**
  731. * Physical address or null address (ss_family == 0) if unspecified or unknown
  732. */
  733. struct sockaddr_storage physicalAddress;
  734. } nextHops[ZT_CIRCUIT_TEST_MAX_HOP_BREADTH];
  735. /**
  736. * Number of next hops reported in nextHops[]
  737. */
  738. unsigned int nextHopCount;
  739. } ZT_CircuitTestReport;
  740. /**
  741. * An instance of a ZeroTier One node (opaque)
  742. */
  743. typedef void ZT_Node;
  744. /****************************************************************************/
  745. /* Callbacks used by Node API */
  746. /****************************************************************************/
  747. /**
  748. * Callback called to update virtual network port configuration
  749. *
  750. * This can be called at any time to update the configuration of a virtual
  751. * network port. The parameter after the network ID specifies whether this
  752. * port is being brought up, updated, brought down, or permanently deleted.
  753. *
  754. * This in turn should be used by the underlying implementation to create
  755. * and configure tap devices at the OS (or virtual network stack) layer.
  756. *
  757. * The supplied config pointer is not guaranteed to remain valid, so make
  758. * a copy if you want one.
  759. *
  760. * This should not call multicastSubscribe() or other network-modifying
  761. * methods, as this could cause a deadlock in multithreaded or interrupt
  762. * driven environments.
  763. *
  764. * This must return 0 on success. It can return any OS-dependent error code
  765. * on failure, and this results in the network being placed into the
  766. * PORT_ERROR state.
  767. */
  768. typedef int (*ZT_VirtualNetworkConfigFunction)(
  769. ZT_Node *,
  770. void *,
  771. uint64_t,
  772. enum ZT_VirtualNetworkConfigOperation,
  773. const ZT_VirtualNetworkConfig *);
  774. /**
  775. * Function to send a frame out to a virtual network port
  776. *
  777. * Parameters: (1) node, (2) user ptr, (3) network ID, (4) source MAC,
  778. * (5) destination MAC, (6) ethertype, (7) VLAN ID, (8) frame data,
  779. * (9) frame length.
  780. */
  781. typedef void (*ZT_VirtualNetworkFrameFunction)(
  782. ZT_Node *,
  783. void *,
  784. uint64_t,
  785. uint64_t,
  786. uint64_t,
  787. unsigned int,
  788. unsigned int,
  789. const void *,
  790. unsigned int);
  791. /**
  792. * Callback for events
  793. *
  794. * Events are generated when the node's status changes in a significant way
  795. * and on certain non-fatal errors and events of interest. The final void
  796. * parameter points to event meta-data. The type of event meta-data (and
  797. * whether it is present at all) is event type dependent. See the comments
  798. * in the definition of ZT_Event.
  799. */
  800. typedef void (*ZT_EventCallback)(
  801. ZT_Node *,
  802. void *,
  803. enum ZT_Event,
  804. const void *);
  805. /**
  806. * Function to get an object from the data store
  807. *
  808. * Parameters: (1) object name, (2) buffer to fill, (3) size of buffer, (4)
  809. * index in object to start reading, (5) result parameter that must be set
  810. * to the actual size of the object if it exists.
  811. *
  812. * Object names can contain forward slash (/) path separators. They will
  813. * never contain .. or backslash (\), so this is safe to map as a Unix-style
  814. * path if the underlying storage permits. For security reasons we recommend
  815. * returning errors if .. or \ are used.
  816. *
  817. * The function must return the actual number of bytes read. If the object
  818. * doesn't exist, it should return -1. -2 should be returned on other errors
  819. * such as errors accessing underlying storage.
  820. *
  821. * If the read doesn't fit in the buffer, the max number of bytes should be
  822. * read. The caller may call the function multiple times to read the whole
  823. * object.
  824. */
  825. typedef long (*ZT_DataStoreGetFunction)(
  826. ZT_Node *,
  827. void *,
  828. const char *,
  829. void *,
  830. unsigned long,
  831. unsigned long,
  832. unsigned long *);
  833. /**
  834. * Function to store an object in the data store
  835. *
  836. * Parameters: (1) node, (2) user ptr, (3) object name, (4) object data,
  837. * (5) object size, (6) secure? (bool).
  838. *
  839. * If secure is true, the file should be set readable and writable only
  840. * to the user running ZeroTier One. What this means is platform-specific.
  841. *
  842. * Name semantics are the same as the get function. This must return zero on
  843. * success. You can return any OS-specific error code on failure, as these
  844. * may be visible in logs or error messages and might aid in debugging.
  845. *
  846. * If the data pointer is null, this must be interpreted as a delete
  847. * operation.
  848. */
  849. typedef int (*ZT_DataStorePutFunction)(
  850. ZT_Node *,
  851. void *,
  852. const char *,
  853. const void *,
  854. unsigned long,
  855. int);
  856. /**
  857. * Function to send a ZeroTier packet out over the wire
  858. *
  859. * Parameters:
  860. * (1) Node
  861. * (2) User pointer
  862. * (3) Local interface address
  863. * (4) Remote address
  864. * (5) Packet data
  865. * (6) Packet length
  866. *
  867. * If there is only one local interface it is safe to ignore the local
  868. * interface address. Otherwise if running with multiple interfaces, the
  869. * correct local interface should be chosen by address unless NULL. If
  870. * the ss_family field is zero (NULL address), a random or preferred
  871. * default interface should be used.
  872. *
  873. * The function must return zero on success and may return any error code
  874. * on failure. Note that success does not (of course) guarantee packet
  875. * delivery. It only means that the packet appears to have been sent.
  876. */
  877. typedef int (*ZT_WirePacketSendFunction)(
  878. ZT_Node *, /* Node */
  879. void *, /* User ptr */
  880. const struct sockaddr_storage *, /* Local address */
  881. const struct sockaddr_storage *, /* Remote address */
  882. const void *, /* Packet data */
  883. unsigned int); /* Packet length */
  884. /****************************************************************************/
  885. /* C Node API */
  886. /****************************************************************************/
  887. /**
  888. * Create a new ZeroTier One node
  889. *
  890. * Note that this can take a few seconds the first time it's called, as it
  891. * will generate an identity.
  892. *
  893. * @param node Result: pointer is set to new node instance on success
  894. * @param uptr User pointer to pass to functions/callbacks
  895. * @param now Current clock in milliseconds
  896. * @param dataStoreGetFunction Function called to get objects from persistent storage
  897. * @param dataStorePutFunction Function called to put objects in persistent storage
  898. * @param virtualNetworkConfigFunction Function to be called when virtual LANs are created, deleted, or their config parameters change
  899. * @param eventCallback Function to receive status updates and non-fatal error notices
  900. * @return OK (0) or error code if a fatal error condition has occurred
  901. */
  902. enum ZT_ResultCode ZT_Node_new(
  903. ZT_Node **node,
  904. void *uptr,
  905. uint64_t now,
  906. ZT_DataStoreGetFunction dataStoreGetFunction,
  907. ZT_DataStorePutFunction dataStorePutFunction,
  908. ZT_WirePacketSendFunction wirePacketSendFunction,
  909. ZT_VirtualNetworkFrameFunction virtualNetworkFrameFunction,
  910. ZT_VirtualNetworkConfigFunction virtualNetworkConfigFunction,
  911. ZT_EventCallback eventCallback);
  912. /**
  913. * Delete a node and free all resources it consumes
  914. *
  915. * If you are using multiple threads, all other threads must be shut down
  916. * first. This can crash if processXXX() methods are in progress.
  917. *
  918. * @param node Node to delete
  919. */
  920. void ZT_Node_delete(ZT_Node *node);
  921. /**
  922. * Process a packet received from the physical wire
  923. *
  924. * @param node Node instance
  925. * @param now Current clock in milliseconds
  926. * @param localAddress Local address, or point to ZT_SOCKADDR_NULL if unspecified
  927. * @param remoteAddress Origin of packet
  928. * @param packetData Packet data
  929. * @param packetLength Packet length
  930. * @param nextBackgroundTaskDeadline Value/result: set to deadline for next call to processBackgroundTasks()
  931. * @return OK (0) or error code if a fatal error condition has occurred
  932. */
  933. enum ZT_ResultCode ZT_Node_processWirePacket(
  934. ZT_Node *node,
  935. uint64_t now,
  936. const struct sockaddr_storage *localAddress,
  937. const struct sockaddr_storage *remoteAddress,
  938. const void *packetData,
  939. unsigned int packetLength,
  940. volatile uint64_t *nextBackgroundTaskDeadline);
  941. /**
  942. * Process a frame from a virtual network port (tap)
  943. *
  944. * @param node Node instance
  945. * @param now Current clock in milliseconds
  946. * @param nwid ZeroTier 64-bit virtual network ID
  947. * @param sourceMac Source MAC address (least significant 48 bits)
  948. * @param destMac Destination MAC address (least significant 48 bits)
  949. * @param etherType 16-bit Ethernet frame type
  950. * @param vlanId 10-bit VLAN ID or 0 if none
  951. * @param frameData Frame payload data
  952. * @param frameLength Frame payload length
  953. * @param nextBackgroundTaskDeadline Value/result: set to deadline for next call to processBackgroundTasks()
  954. * @return OK (0) or error code if a fatal error condition has occurred
  955. */
  956. enum ZT_ResultCode ZT_Node_processVirtualNetworkFrame(
  957. ZT_Node *node,
  958. uint64_t now,
  959. uint64_t nwid,
  960. uint64_t sourceMac,
  961. uint64_t destMac,
  962. unsigned int etherType,
  963. unsigned int vlanId,
  964. const void *frameData,
  965. unsigned int frameLength,
  966. volatile uint64_t *nextBackgroundTaskDeadline);
  967. /**
  968. * Perform periodic background operations
  969. *
  970. * @param node Node instance
  971. * @param now Current clock in milliseconds
  972. * @param nextBackgroundTaskDeadline Value/result: set to deadline for next call to processBackgroundTasks()
  973. * @return OK (0) or error code if a fatal error condition has occurred
  974. */
  975. enum ZT_ResultCode ZT_Node_processBackgroundTasks(ZT_Node *node,uint64_t now,volatile uint64_t *nextBackgroundTaskDeadline);
  976. /**
  977. * Join a network
  978. *
  979. * This may generate calls to the port config callback before it returns,
  980. * or these may be deffered if a netconf is not available yet.
  981. *
  982. * If we are already a member of the network, nothing is done and OK is
  983. * returned.
  984. *
  985. * @param node Node instance
  986. * @param nwid 64-bit ZeroTier network ID
  987. * @return OK (0) or error code if a fatal error condition has occurred
  988. */
  989. enum ZT_ResultCode ZT_Node_join(ZT_Node *node,uint64_t nwid);
  990. /**
  991. * Leave a network
  992. *
  993. * If a port has been configured for this network this will generate a call
  994. * to the port config callback with a NULL second parameter to indicate that
  995. * the port is now deleted.
  996. *
  997. * @param node Node instance
  998. * @param nwid 64-bit network ID
  999. * @return OK (0) or error code if a fatal error condition has occurred
  1000. */
  1001. enum ZT_ResultCode ZT_Node_leave(ZT_Node *node,uint64_t nwid);
  1002. /**
  1003. * Subscribe to an Ethernet multicast group
  1004. *
  1005. * ADI stands for additional distinguishing information. This defaults to zero
  1006. * and is rarely used. Right now its only use is to enable IPv4 ARP to scale,
  1007. * and this must be done.
  1008. *
  1009. * For IPv4 ARP, the implementation must subscribe to 0xffffffffffff (the
  1010. * broadcast address) but with an ADI equal to each IPv4 address in host
  1011. * byte order. This converts ARP from a non-scalable broadcast protocol to
  1012. * a scalable multicast protocol with perfect address specificity.
  1013. *
  1014. * If this is not done, ARP will not work reliably.
  1015. *
  1016. * Multiple calls to subscribe to the same multicast address will have no
  1017. * effect. It is perfectly safe to do this.
  1018. *
  1019. * This does not generate an update call to networkConfigCallback().
  1020. *
  1021. * @param node Node instance
  1022. * @param nwid 64-bit network ID
  1023. * @param multicastGroup Ethernet multicast or broadcast MAC (least significant 48 bits)
  1024. * @param multicastAdi Multicast ADI (least significant 32 bits only, use 0 if not needed)
  1025. * @return OK (0) or error code if a fatal error condition has occurred
  1026. */
  1027. enum ZT_ResultCode ZT_Node_multicastSubscribe(ZT_Node *node,uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi);
  1028. /**
  1029. * Unsubscribe from an Ethernet multicast group (or all groups)
  1030. *
  1031. * If multicastGroup is zero (0), this will unsubscribe from all groups. If
  1032. * you are not subscribed to a group this has no effect.
  1033. *
  1034. * This does not generate an update call to networkConfigCallback().
  1035. *
  1036. * @param node Node instance
  1037. * @param nwid 64-bit network ID
  1038. * @param multicastGroup Ethernet multicast or broadcast MAC (least significant 48 bits)
  1039. * @param multicastAdi Multicast ADI (least significant 32 bits only, use 0 if not needed)
  1040. * @return OK (0) or error code if a fatal error condition has occurred
  1041. */
  1042. enum ZT_ResultCode ZT_Node_multicastUnsubscribe(ZT_Node *node,uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi);
  1043. /**
  1044. * Get this node's 40-bit ZeroTier address
  1045. *
  1046. * @param node Node instance
  1047. * @return ZeroTier address (least significant 40 bits of 64-bit int)
  1048. */
  1049. uint64_t ZT_Node_address(ZT_Node *node);
  1050. /**
  1051. * Get the status of this node
  1052. *
  1053. * @param node Node instance
  1054. * @param status Buffer to fill with current node status
  1055. */
  1056. void ZT_Node_status(ZT_Node *node,ZT_NodeStatus *status);
  1057. /**
  1058. * Get a list of known peer nodes
  1059. *
  1060. * The pointer returned here must be freed with freeQueryResult()
  1061. * when you are done with it.
  1062. *
  1063. * @param node Node instance
  1064. * @return List of known peers or NULL on failure
  1065. */
  1066. ZT_PeerList *ZT_Node_peers(ZT_Node *node);
  1067. /**
  1068. * Get the status of a virtual network
  1069. *
  1070. * The pointer returned here must be freed with freeQueryResult()
  1071. * when you are done with it.
  1072. *
  1073. * @param node Node instance
  1074. * @param nwid 64-bit network ID
  1075. * @return Network configuration or NULL if we are not a member of this network
  1076. */
  1077. ZT_VirtualNetworkConfig *ZT_Node_networkConfig(ZT_Node *node,uint64_t nwid);
  1078. /**
  1079. * Enumerate and get status of all networks
  1080. *
  1081. * @param node Node instance
  1082. * @return List of networks or NULL on failure
  1083. */
  1084. ZT_VirtualNetworkList *ZT_Node_networks(ZT_Node *node);
  1085. /**
  1086. * Free a query result buffer
  1087. *
  1088. * Use this to free the return values of listNetworks(), listPeers(), etc.
  1089. *
  1090. * @param node Node instance
  1091. * @param qr Query result buffer
  1092. */
  1093. void ZT_Node_freeQueryResult(ZT_Node *node,void *qr);
  1094. /**
  1095. * Add a local interface address
  1096. *
  1097. * Local interface addresses may be added if you want remote peers
  1098. * with whom you have a trust relatinship (e.g. common network membership)
  1099. * to receive information about these endpoints as potential endpoints for
  1100. * direct communication.
  1101. *
  1102. * Take care that these are never ZeroTier interface addresses, otherwise
  1103. * strange things might happen or they simply won't work.
  1104. *
  1105. * Addresses can also be added here if they are the result of a UPnP or
  1106. * NAT-PMP port mapping or other discovery or mapping means.
  1107. *
  1108. * This returns a boolean indicating whether or not the address was
  1109. * accepted. ZeroTier will only communicate over certain address types
  1110. * and (for IP) address classes. Thus it's safe to just dump your OS's
  1111. * entire remote IP list (excluding ZeroTier interface IPs) into here
  1112. * and let ZeroTier determine which addresses it will use. It will
  1113. * reject bad, empty, and unusable addresses.
  1114. *
  1115. * @param addr Local interface address
  1116. * @param metric Local interface metric
  1117. * @param trust How much do you trust the local network under this interface?
  1118. * @return Boolean: non-zero if address was accepted and added
  1119. */
  1120. int ZT_Node_addLocalInterfaceAddress(ZT_Node *node,const struct sockaddr_storage *addr,int metric, enum ZT_LocalInterfaceAddressTrust trust);
  1121. /**
  1122. * Clear local interface addresses
  1123. */
  1124. void ZT_Node_clearLocalInterfaceAddresses(ZT_Node *node);
  1125. /**
  1126. * Set a network configuration master instance for this node
  1127. *
  1128. * Normal nodes should not need to use this. This is for nodes with
  1129. * special compiled-in support for acting as network configuration
  1130. * masters / controllers.
  1131. *
  1132. * The supplied instance must be a C++ object that inherits from the
  1133. * NetworkConfigMaster base class in node/. No type checking is performed,
  1134. * so a pointer to anything else will result in a crash.
  1135. *
  1136. * @param node ZertTier One node
  1137. * @param networkConfigMasterInstance Instance of NetworkConfigMaster C++ class or NULL to disable
  1138. * @return OK (0) or error code if a fatal error condition has occurred
  1139. */
  1140. void ZT_Node_setNetconfMaster(ZT_Node *node,void *networkConfigMasterInstance);
  1141. /**
  1142. * Initiate a VL1 circuit test
  1143. *
  1144. * This sends an initial VERB_CIRCUIT_TEST and reports results back to the
  1145. * supplied callback until circuitTestEnd() is called. The supplied
  1146. * ZT_CircuitTest structure should be initially zeroed and then filled
  1147. * in with settings and hops.
  1148. *
  1149. * It is the caller's responsibility to call circuitTestEnd() and then
  1150. * to dispose of the test structure. Otherwise this node will listen
  1151. * for results forever.
  1152. *
  1153. * @param node Node instance
  1154. * @param test Test configuration
  1155. * @param reportCallback Function to call each time a report is received
  1156. * @return OK or error if, for example, test is too big for a packet or support isn't compiled in
  1157. */
  1158. enum ZT_ResultCode ZT_Node_circuitTestBegin(ZT_Node *node,ZT_CircuitTest *test,void (*reportCallback)(ZT_Node *, ZT_CircuitTest *,const ZT_CircuitTestReport *));
  1159. /**
  1160. * Stop listening for results to a given circuit test
  1161. *
  1162. * This does not free the 'test' structure. The caller may do that
  1163. * after calling this method to unregister it.
  1164. *
  1165. * Any reports that are received for a given test ID after it is
  1166. * terminated are ignored.
  1167. *
  1168. * @param node Node instance
  1169. * @param test Test configuration to unregister
  1170. */
  1171. void ZT_Node_circuitTestEnd(ZT_Node *node,ZT_CircuitTest *test);
  1172. /**
  1173. * Get ZeroTier One version
  1174. *
  1175. * @param major Result: major version
  1176. * @param minor Result: minor version
  1177. * @param revision Result: revision
  1178. * @param featureFlags: Result: feature flag bitmap
  1179. */
  1180. void ZT_version(int *major,int *minor,int *revision,unsigned long *featureFlags);
  1181. #ifdef __cplusplus
  1182. }
  1183. #endif
  1184. #endif