ZeroTierOne.h 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354
  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. * A more recent version was observed on the network
  228. *
  229. * Right now this is only triggered if a hub or rootserver reports a
  230. * more recent version, and only once. It can be used to trigger a
  231. * software update check.
  232. *
  233. * Meta-data: unsigned int[3], more recent version number
  234. */
  235. ZT_EVENT_SAW_MORE_RECENT_VERSION = 5,
  236. /**
  237. * A packet failed authentication
  238. *
  239. * Meta-data: struct sockaddr_storage containing origin address of packet
  240. */
  241. ZT_EVENT_AUTHENTICATION_FAILURE = 6,
  242. /**
  243. * A received packet was not valid
  244. *
  245. * Meta-data: struct sockaddr_storage containing origin address of packet
  246. */
  247. ZT_EVENT_INVALID_PACKET = 7,
  248. /**
  249. * Trace (debugging) message
  250. *
  251. * These events are only generated if this is a TRACE-enabled build.
  252. *
  253. * Meta-data: C string, TRACE message
  254. */
  255. ZT_EVENT_TRACE = 8
  256. };
  257. /**
  258. * Current node status
  259. */
  260. typedef struct
  261. {
  262. /**
  263. * 40-bit ZeroTier address of this node
  264. */
  265. uint64_t address;
  266. /**
  267. * Public identity in string-serialized form (safe to send to others)
  268. *
  269. * This pointer will remain valid as long as the node exists.
  270. */
  271. const char *publicIdentity;
  272. /**
  273. * Full identity including secret key in string-serialized form
  274. *
  275. * This pointer will remain valid as long as the node exists.
  276. */
  277. const char *secretIdentity;
  278. /**
  279. * True if some kind of connectivity appears available
  280. */
  281. int online;
  282. } ZT_NodeStatus;
  283. /**
  284. * Virtual network status codes
  285. */
  286. enum ZT_VirtualNetworkStatus
  287. {
  288. /**
  289. * Waiting for network configuration (also means revision == 0)
  290. */
  291. ZT_NETWORK_STATUS_REQUESTING_CONFIGURATION = 0,
  292. /**
  293. * Configuration received and we are authorized
  294. */
  295. ZT_NETWORK_STATUS_OK = 1,
  296. /**
  297. * Netconf master told us 'nope'
  298. */
  299. ZT_NETWORK_STATUS_ACCESS_DENIED = 2,
  300. /**
  301. * Netconf master exists, but this virtual network does not
  302. */
  303. ZT_NETWORK_STATUS_NOT_FOUND = 3,
  304. /**
  305. * Initialization of network failed or other internal error
  306. */
  307. ZT_NETWORK_STATUS_PORT_ERROR = 4,
  308. /**
  309. * ZeroTier One version too old
  310. */
  311. ZT_NETWORK_STATUS_CLIENT_TOO_OLD = 5
  312. };
  313. /**
  314. * Virtual network type codes
  315. */
  316. enum ZT_VirtualNetworkType
  317. {
  318. /**
  319. * Private networks are authorized via certificates of membership
  320. */
  321. ZT_NETWORK_TYPE_PRIVATE = 0,
  322. /**
  323. * Public networks have no access control -- they'll always be AUTHORIZED
  324. */
  325. ZT_NETWORK_TYPE_PUBLIC = 1
  326. };
  327. /**
  328. * An Ethernet multicast group
  329. */
  330. typedef struct
  331. {
  332. /**
  333. * MAC address (least significant 48 bits)
  334. */
  335. uint64_t mac;
  336. /**
  337. * Additional distinguishing information (usually zero)
  338. */
  339. unsigned long adi;
  340. } ZT_MulticastGroup;
  341. /**
  342. * Virtual network configuration update type
  343. */
  344. enum ZT_VirtualNetworkConfigOperation
  345. {
  346. /**
  347. * Network is coming up (either for the first time or after service restart)
  348. */
  349. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_UP = 1,
  350. /**
  351. * Network configuration has been updated
  352. */
  353. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_CONFIG_UPDATE = 2,
  354. /**
  355. * Network is going down (not permanently)
  356. */
  357. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DOWN = 3,
  358. /**
  359. * Network is going down permanently (leave/delete)
  360. */
  361. ZT_VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY = 4
  362. };
  363. /**
  364. * Virtual network configuration
  365. */
  366. typedef struct
  367. {
  368. /**
  369. * 64-bit ZeroTier network ID
  370. */
  371. uint64_t nwid;
  372. /**
  373. * Ethernet MAC (48 bits) that should be assigned to port
  374. */
  375. uint64_t mac;
  376. /**
  377. * Network name (from network configuration master)
  378. */
  379. char name[ZT_MAX_NETWORK_SHORT_NAME_LENGTH + 1];
  380. /**
  381. * Network configuration request status
  382. */
  383. enum ZT_VirtualNetworkStatus status;
  384. /**
  385. * Network type
  386. */
  387. enum ZT_VirtualNetworkType type;
  388. /**
  389. * Maximum interface MTU
  390. */
  391. unsigned int mtu;
  392. /**
  393. * If nonzero, the network this port belongs to indicates DHCP availability
  394. *
  395. * This is a suggestion. The underlying implementation is free to ignore it
  396. * for security or other reasons. This is simply a netconf parameter that
  397. * means 'DHCP is available on this network.'
  398. */
  399. int dhcp;
  400. /**
  401. * If nonzero, this port is allowed to bridge to other networks
  402. *
  403. * This is informational. If this is false (0), bridged packets will simply
  404. * be dropped and bridging won't work.
  405. */
  406. int bridge;
  407. /**
  408. * If nonzero, this network supports and allows broadcast (ff:ff:ff:ff:ff:ff) traffic
  409. */
  410. int broadcastEnabled;
  411. /**
  412. * If the network is in PORT_ERROR state, this is the error most recently returned by the port config callback
  413. */
  414. int portError;
  415. /**
  416. * Is this network enabled? If not, all frames to/from are dropped.
  417. */
  418. int enabled;
  419. /**
  420. * Network config revision as reported by netconf master
  421. *
  422. * If this is zero, it means we're still waiting for our netconf.
  423. */
  424. unsigned long netconfRevision;
  425. /**
  426. * Number of multicast group subscriptions
  427. */
  428. unsigned int multicastSubscriptionCount;
  429. /**
  430. * Multicast group subscriptions
  431. */
  432. ZT_MulticastGroup multicastSubscriptions[ZT_MAX_NETWORK_MULTICAST_SUBSCRIPTIONS];
  433. /**
  434. * Number of assigned addresses
  435. */
  436. unsigned int assignedAddressCount;
  437. /**
  438. * ZeroTier-assigned addresses (in sockaddr_storage structures)
  439. *
  440. * For IP, the port number of the sockaddr_XX structure contains the number
  441. * of bits in the address netmask. Only the IP address and port are used.
  442. * Other fields like interface number can be ignored.
  443. *
  444. * This is only used for ZeroTier-managed address assignments sent by the
  445. * virtual network's configuration master.
  446. */
  447. struct sockaddr_storage assignedAddresses[ZT_MAX_ZT_ASSIGNED_ADDRESSES];
  448. } ZT_VirtualNetworkConfig;
  449. /**
  450. * A list of networks
  451. */
  452. typedef struct
  453. {
  454. ZT_VirtualNetworkConfig *networks;
  455. unsigned long networkCount;
  456. } ZT_VirtualNetworkList;
  457. /**
  458. * Physical network path to a peer
  459. */
  460. typedef struct
  461. {
  462. /**
  463. * Address of endpoint
  464. */
  465. struct sockaddr_storage address;
  466. /**
  467. * Time of last send in milliseconds or 0 for never
  468. */
  469. uint64_t lastSend;
  470. /**
  471. * Time of last receive in milliseconds or 0 for never
  472. */
  473. uint64_t lastReceive;
  474. /**
  475. * Is path fixed? (i.e. not learned, static)
  476. */
  477. int fixed;
  478. /**
  479. * Is path active?
  480. */
  481. int active;
  482. /**
  483. * Is path preferred?
  484. */
  485. int preferred;
  486. } ZT_PeerPhysicalPath;
  487. /**
  488. * What trust hierarchy role does this peer have?
  489. */
  490. enum ZT_PeerRole {
  491. ZT_PEER_ROLE_LEAF = 0, // ordinary node
  492. ZT_PEER_ROLE_RELAY = 1, // relay node
  493. ZT_PEER_ROLE_ROOT = 2 // root server
  494. };
  495. /**
  496. * Peer status result buffer
  497. */
  498. typedef struct
  499. {
  500. /**
  501. * ZeroTier address (40 bits)
  502. */
  503. uint64_t address;
  504. /**
  505. * Time we last received a unicast frame from this peer
  506. */
  507. uint64_t lastUnicastFrame;
  508. /**
  509. * Time we last received a multicast rame from this peer
  510. */
  511. uint64_t lastMulticastFrame;
  512. /**
  513. * Remote major version or -1 if not known
  514. */
  515. int versionMajor;
  516. /**
  517. * Remote minor version or -1 if not known
  518. */
  519. int versionMinor;
  520. /**
  521. * Remote revision or -1 if not known
  522. */
  523. int versionRev;
  524. /**
  525. * Last measured latency in milliseconds or zero if unknown
  526. */
  527. unsigned int latency;
  528. /**
  529. * What trust hierarchy role does this device have?
  530. */
  531. enum ZT_PeerRole role;
  532. /**
  533. * Number of paths (size of paths[])
  534. */
  535. unsigned int pathCount;
  536. /**
  537. * Known network paths to peer
  538. */
  539. ZT_PeerPhysicalPath paths[ZT_MAX_PEER_NETWORK_PATHS];
  540. } ZT_Peer;
  541. /**
  542. * List of peers
  543. */
  544. typedef struct
  545. {
  546. ZT_Peer *peers;
  547. unsigned long peerCount;
  548. } ZT_PeerList;
  549. /**
  550. * Local interface trust levels
  551. */
  552. typedef enum {
  553. ZT_LOCAL_INTERFACE_ADDRESS_TRUST_NORMAL = 0,
  554. ZT_LOCAL_INTERFACE_ADDRESS_TRUST_PRIVACY = 10,
  555. ZT_LOCAL_INTERFACE_ADDRESS_TRUST_ULTIMATE = 20
  556. } ZT_LocalInterfaceAddressTrust;
  557. /**
  558. * Vendor ID
  559. */
  560. typedef enum {
  561. ZT_VENDOR_UNSPECIFIED = 0,
  562. ZT_VENDOR_ZEROTIER = 1
  563. } ZT_Vendor;
  564. /**
  565. * Platform type
  566. */
  567. typedef enum {
  568. ZT_PLATFORM_UNSPECIFIED = 0,
  569. ZT_PLATFORM_LINUX = 1,
  570. ZT_PLATFORM_WINDOWS = 2,
  571. ZT_PLATFORM_MACOS = 3,
  572. ZT_PLATFORM_ANDROID = 4,
  573. ZT_PLATFORM_IOS = 5,
  574. ZT_PLATFORM_SOLARIS_SMARTOS = 6,
  575. ZT_PLATFORM_FREEBSD = 7,
  576. ZT_PLATFORM_NETBSD = 8,
  577. ZT_PLATFORM_OPENBSD = 9,
  578. ZT_PLATFORM_RISCOS = 10,
  579. ZT_PLATFORM_VXWORKS = 11,
  580. ZT_PLATFORM_FREERTOS = 12,
  581. ZT_PLATFORM_SYSBIOS = 13,
  582. ZT_PLATFORM_HURD = 14
  583. } ZT_Platform;
  584. /**
  585. * Architecture type
  586. */
  587. typedef enum {
  588. ZT_ARCHITECTURE_UNSPECIFIED = 0,
  589. ZT_ARCHITECTURE_X86 = 1,
  590. ZT_ARCHITECTURE_X64 = 2,
  591. ZT_ARCHITECTURE_ARM32 = 3,
  592. ZT_ARCHITECTURE_ARM64 = 4,
  593. ZT_ARCHITECTURE_MIPS32 = 5,
  594. ZT_ARCHITECTURE_MIPS64 = 6,
  595. ZT_ARCHITECTURE_POWER32 = 7,
  596. ZT_ARCHITECTURE_POWER64 = 8
  597. } ZT_Architecture;
  598. /**
  599. * ZeroTier circuit test configuration and path
  600. */
  601. typedef struct {
  602. /**
  603. * Test ID -- an arbitrary 64-bit identifier
  604. */
  605. uint64_t testId;
  606. /**
  607. * Timestamp -- sent with test and echoed back by each reporter
  608. */
  609. uint64_t timestamp;
  610. /**
  611. * Originator credential: network ID
  612. *
  613. * If this is nonzero, a network ID will be set for this test and
  614. * the originator must be its primary network controller. This is
  615. * currently the only authorization method available, so it must
  616. * be set to run a test.
  617. */
  618. uint64_t credentialNetworkId;
  619. /**
  620. * Hops in circuit test (a.k.a. FIFO for graph traversal)
  621. */
  622. struct {
  623. /**
  624. * Hop flags (currently unused, must be zero)
  625. */
  626. unsigned int flags;
  627. /**
  628. * Number of addresses in this hop (max: ZT_CIRCUIT_TEST_MAX_HOP_BREADTH)
  629. */
  630. unsigned int breadth;
  631. /**
  632. * 40-bit ZeroTier addresses (most significant 24 bits ignored)
  633. */
  634. uint64_t addresses[ZT_CIRCUIT_TEST_MAX_HOP_BREADTH];
  635. } hops[ZT_CIRCUIT_TEST_MAX_HOPS];
  636. /**
  637. * Number of hops (max: ZT_CIRCUIT_TEST_MAX_HOPS)
  638. */
  639. unsigned int hopCount;
  640. /**
  641. * If non-zero, circuit test will report back at every hop
  642. */
  643. int reportAtEveryHop;
  644. /**
  645. * An arbitrary user-settable pointer
  646. */
  647. void *ptr;
  648. /**
  649. * Pointer for internal use -- initialize to zero and do not modify
  650. */
  651. void *_internalPtr;
  652. } ZT_CircuitTest;
  653. /**
  654. * Circuit test result report
  655. */
  656. typedef struct {
  657. /**
  658. * Sender of report
  659. */
  660. uint64_t address;
  661. /**
  662. * 64-bit test ID
  663. */
  664. uint64_t testId;
  665. /**
  666. * Timestamp from original test (echoed back at each hop)
  667. */
  668. uint64_t timestamp;
  669. /**
  670. * Timestamp on remote device
  671. */
  672. uint64_t remoteTimestamp;
  673. /**
  674. * 64-bit packet ID of packet received by the reporting device
  675. */
  676. uint64_t sourcePacketId;
  677. /**
  678. * Flags (currently unused, will be zero)
  679. */
  680. uint64_t flags;
  681. /**
  682. * ZeroTier protocol-level hop count of packet received by reporting device (>0 indicates relayed)
  683. */
  684. unsigned int sourcePacketHopCount;
  685. /**
  686. * Error code (currently unused, will be zero)
  687. */
  688. unsigned int errorCode;
  689. /**
  690. * Remote device vendor ID
  691. */
  692. ZT_Vendor vendor;
  693. /**
  694. * Remote device protocol compliance version
  695. */
  696. unsigned int protocolVersion;
  697. /**
  698. * Software major version
  699. */
  700. unsigned int majorVersion;
  701. /**
  702. * Software minor version
  703. */
  704. unsigned int minorVersion;
  705. /**
  706. * Software revision
  707. */
  708. unsigned int revision;
  709. /**
  710. * Platform / OS
  711. */
  712. ZT_Platform platform;
  713. /**
  714. * System architecture
  715. */
  716. ZT_Architecture architecture;
  717. /**
  718. * Local device address on which packet was received by reporting device
  719. *
  720. * This may have ss_family equal to zero (null address) if unspecified.
  721. */
  722. struct sockaddr_storage receivedOnLocalAddress;
  723. /**
  724. * Remote address from which reporter received the test packet
  725. *
  726. * This may have ss_family set to zero (null address) if unspecified.
  727. */
  728. struct sockaddr_storage receivedFromRemoteAddress;
  729. /**
  730. * Next hops to which packets are being or will be sent by the reporter
  731. *
  732. * In addition to reporting back, the reporter may send the test on if
  733. * there are more recipients in the FIFO. If it does this, it can report
  734. * back the address(es) that make up the next hop and the physical address
  735. * for each if it has one. The physical address being null/unspecified
  736. * typically indicates that no direct path exists and the next packet
  737. * will be relayed.
  738. */
  739. struct {
  740. /**
  741. * 40-bit ZeroTier address
  742. */
  743. uint64_t address;
  744. /**
  745. * Physical address or null address (ss_family == 0) if unspecified or unknown
  746. */
  747. struct sockaddr_storage physicalAddress;
  748. } nextHops[ZT_CIRCUIT_TEST_MAX_HOP_BREADTH];
  749. /**
  750. * Number of next hops reported in nextHops[]
  751. */
  752. unsigned int nextHopCount;
  753. } ZT_CircuitTestReport;
  754. /**
  755. * An instance of a ZeroTier One node (opaque)
  756. */
  757. typedef void ZT_Node;
  758. /****************************************************************************/
  759. /* Callbacks used by Node API */
  760. /****************************************************************************/
  761. /**
  762. * Callback called to update virtual network port configuration
  763. *
  764. * This can be called at any time to update the configuration of a virtual
  765. * network port. The parameter after the network ID specifies whether this
  766. * port is being brought up, updated, brought down, or permanently deleted.
  767. *
  768. * This in turn should be used by the underlying implementation to create
  769. * and configure tap devices at the OS (or virtual network stack) layer.
  770. *
  771. * The supplied config pointer is not guaranteed to remain valid, so make
  772. * a copy if you want one.
  773. *
  774. * This should not call multicastSubscribe() or other network-modifying
  775. * methods, as this could cause a deadlock in multithreaded or interrupt
  776. * driven environments.
  777. *
  778. * This must return 0 on success. It can return any OS-dependent error code
  779. * on failure, and this results in the network being placed into the
  780. * PORT_ERROR state.
  781. */
  782. typedef int (*ZT_VirtualNetworkConfigFunction)(
  783. ZT_Node *,
  784. void *,
  785. uint64_t,
  786. enum ZT_VirtualNetworkConfigOperation,
  787. const ZT_VirtualNetworkConfig *);
  788. /**
  789. * Function to send a frame out to a virtual network port
  790. *
  791. * Parameters: (1) node, (2) user ptr, (3) network ID, (4) source MAC,
  792. * (5) destination MAC, (6) ethertype, (7) VLAN ID, (8) frame data,
  793. * (9) frame length.
  794. */
  795. typedef void (*ZT_VirtualNetworkFrameFunction)(
  796. ZT_Node *,
  797. void *,
  798. uint64_t,
  799. uint64_t,
  800. uint64_t,
  801. unsigned int,
  802. unsigned int,
  803. const void *,
  804. unsigned int);
  805. /**
  806. * Callback for events
  807. *
  808. * Events are generated when the node's status changes in a significant way
  809. * and on certain non-fatal errors and events of interest. The final void
  810. * parameter points to event meta-data. The type of event meta-data (and
  811. * whether it is present at all) is event type dependent. See the comments
  812. * in the definition of ZT_Event.
  813. */
  814. typedef void (*ZT_EventCallback)(
  815. ZT_Node *,
  816. void *,
  817. enum ZT_Event,
  818. const void *);
  819. /**
  820. * Function to get an object from the data store
  821. *
  822. * Parameters: (1) object name, (2) buffer to fill, (3) size of buffer, (4)
  823. * index in object to start reading, (5) result parameter that must be set
  824. * to the actual size of the object if it exists.
  825. *
  826. * Object names can contain forward slash (/) path separators. They will
  827. * never contain .. or backslash (\), so this is safe to map as a Unix-style
  828. * path if the underlying storage permits. For security reasons we recommend
  829. * returning errors if .. or \ are used.
  830. *
  831. * The function must return the actual number of bytes read. If the object
  832. * doesn't exist, it should return -1. -2 should be returned on other errors
  833. * such as errors accessing underlying storage.
  834. *
  835. * If the read doesn't fit in the buffer, the max number of bytes should be
  836. * read. The caller may call the function multiple times to read the whole
  837. * object.
  838. */
  839. typedef long (*ZT_DataStoreGetFunction)(
  840. ZT_Node *,
  841. void *,
  842. const char *,
  843. void *,
  844. unsigned long,
  845. unsigned long,
  846. unsigned long *);
  847. /**
  848. * Function to store an object in the data store
  849. *
  850. * Parameters: (1) node, (2) user ptr, (3) object name, (4) object data,
  851. * (5) object size, (6) secure? (bool).
  852. *
  853. * If secure is true, the file should be set readable and writable only
  854. * to the user running ZeroTier One. What this means is platform-specific.
  855. *
  856. * Name semantics are the same as the get function. This must return zero on
  857. * success. You can return any OS-specific error code on failure, as these
  858. * may be visible in logs or error messages and might aid in debugging.
  859. *
  860. * If the data pointer is null, this must be interpreted as a delete
  861. * operation.
  862. */
  863. typedef int (*ZT_DataStorePutFunction)(
  864. ZT_Node *,
  865. void *,
  866. const char *,
  867. const void *,
  868. unsigned long,
  869. int);
  870. /**
  871. * Function to send a ZeroTier packet out over the wire
  872. *
  873. * Parameters:
  874. * (1) Node
  875. * (2) User pointer
  876. * (3) Local interface address
  877. * (4) Remote address
  878. * (5) Packet data
  879. * (6) Packet length
  880. *
  881. * If there is only one local interface it is safe to ignore the local
  882. * interface address. Otherwise if running with multiple interfaces, the
  883. * correct local interface should be chosen by address unless NULL. If
  884. * the ss_family field is zero (NULL address), a random or preferred
  885. * default interface should be used.
  886. *
  887. * The function must return zero on success and may return any error code
  888. * on failure. Note that success does not (of course) guarantee packet
  889. * delivery. It only means that the packet appears to have been sent.
  890. */
  891. typedef int (*ZT_WirePacketSendFunction)(
  892. ZT_Node *, /* Node */
  893. void *, /* User ptr */
  894. const struct sockaddr_storage *, /* Local address */
  895. const struct sockaddr_storage *, /* Remote address */
  896. const void *, /* Packet data */
  897. unsigned int); /* Packet length */
  898. /****************************************************************************/
  899. /* C Node API */
  900. /****************************************************************************/
  901. /**
  902. * Create a new ZeroTier One node
  903. *
  904. * Note that this can take a few seconds the first time it's called, as it
  905. * will generate an identity.
  906. *
  907. * @param node Result: pointer is set to new node instance on success
  908. * @param uptr User pointer to pass to functions/callbacks
  909. * @param now Current clock in milliseconds
  910. * @param dataStoreGetFunction Function called to get objects from persistent storage
  911. * @param dataStorePutFunction Function called to put objects in persistent storage
  912. * @param virtualNetworkConfigFunction Function to be called when virtual LANs are created, deleted, or their config parameters change
  913. * @param eventCallback Function to receive status updates and non-fatal error notices
  914. * @param overrideRootTopology Alternative root server topology or NULL for default (mostly for test/debug use)
  915. * @return OK (0) or error code if a fatal error condition has occurred
  916. */
  917. enum ZT_ResultCode ZT_Node_new(
  918. ZT_Node **node,
  919. void *uptr,
  920. uint64_t now,
  921. ZT_DataStoreGetFunction dataStoreGetFunction,
  922. ZT_DataStorePutFunction dataStorePutFunction,
  923. ZT_WirePacketSendFunction wirePacketSendFunction,
  924. ZT_VirtualNetworkFrameFunction virtualNetworkFrameFunction,
  925. ZT_VirtualNetworkConfigFunction virtualNetworkConfigFunction,
  926. ZT_EventCallback eventCallback,
  927. const char *overrideRootTopology);
  928. /**
  929. * Delete a node and free all resources it consumes
  930. *
  931. * If you are using multiple threads, all other threads must be shut down
  932. * first. This can crash if processXXX() methods are in progress.
  933. *
  934. * @param node Node to delete
  935. */
  936. void ZT_Node_delete(ZT_Node *node);
  937. /**
  938. * Process a packet received from the physical wire
  939. *
  940. * @param node Node instance
  941. * @param now Current clock in milliseconds
  942. * @param localAddress Local address, or point to ZT_SOCKADDR_NULL if unspecified
  943. * @param remoteAddress Origin of packet
  944. * @param packetData Packet data
  945. * @param packetLength Packet length
  946. * @param nextBackgroundTaskDeadline Value/result: set to deadline for next call to processBackgroundTasks()
  947. * @return OK (0) or error code if a fatal error condition has occurred
  948. */
  949. enum ZT_ResultCode ZT_Node_processWirePacket(
  950. ZT_Node *node,
  951. uint64_t now,
  952. const struct sockaddr_storage *localAddress,
  953. const struct sockaddr_storage *remoteAddress,
  954. const void *packetData,
  955. unsigned int packetLength,
  956. volatile uint64_t *nextBackgroundTaskDeadline);
  957. /**
  958. * Process a frame from a virtual network port (tap)
  959. *
  960. * @param node Node instance
  961. * @param now Current clock in milliseconds
  962. * @param nwid ZeroTier 64-bit virtual network ID
  963. * @param sourceMac Source MAC address (least significant 48 bits)
  964. * @param destMac Destination MAC address (least significant 48 bits)
  965. * @param etherType 16-bit Ethernet frame type
  966. * @param vlanId 10-bit VLAN ID or 0 if none
  967. * @param frameData Frame payload data
  968. * @param frameLength Frame payload length
  969. * @param nextBackgroundTaskDeadline Value/result: set to deadline for next call to processBackgroundTasks()
  970. * @return OK (0) or error code if a fatal error condition has occurred
  971. */
  972. enum ZT_ResultCode ZT_Node_processVirtualNetworkFrame(
  973. ZT_Node *node,
  974. uint64_t now,
  975. uint64_t nwid,
  976. uint64_t sourceMac,
  977. uint64_t destMac,
  978. unsigned int etherType,
  979. unsigned int vlanId,
  980. const void *frameData,
  981. unsigned int frameLength,
  982. volatile uint64_t *nextBackgroundTaskDeadline);
  983. /**
  984. * Perform periodic background operations
  985. *
  986. * @param node Node instance
  987. * @param now Current clock in milliseconds
  988. * @param nextBackgroundTaskDeadline Value/result: set to deadline for next call to processBackgroundTasks()
  989. * @return OK (0) or error code if a fatal error condition has occurred
  990. */
  991. enum ZT_ResultCode ZT_Node_processBackgroundTasks(ZT_Node *node,uint64_t now,volatile uint64_t *nextBackgroundTaskDeadline);
  992. /**
  993. * Join a network
  994. *
  995. * This may generate calls to the port config callback before it returns,
  996. * or these may be deffered if a netconf is not available yet.
  997. *
  998. * If we are already a member of the network, nothing is done and OK is
  999. * returned.
  1000. *
  1001. * @param node Node instance
  1002. * @param nwid 64-bit ZeroTier network ID
  1003. * @return OK (0) or error code if a fatal error condition has occurred
  1004. */
  1005. enum ZT_ResultCode ZT_Node_join(ZT_Node *node,uint64_t nwid);
  1006. /**
  1007. * Leave a network
  1008. *
  1009. * If a port has been configured for this network this will generate a call
  1010. * to the port config callback with a NULL second parameter to indicate that
  1011. * the port is now deleted.
  1012. *
  1013. * @param node Node instance
  1014. * @param nwid 64-bit network ID
  1015. * @return OK (0) or error code if a fatal error condition has occurred
  1016. */
  1017. enum ZT_ResultCode ZT_Node_leave(ZT_Node *node,uint64_t nwid);
  1018. /**
  1019. * Subscribe to an Ethernet multicast group
  1020. *
  1021. * ADI stands for additional distinguishing information. This defaults to zero
  1022. * and is rarely used. Right now its only use is to enable IPv4 ARP to scale,
  1023. * and this must be done.
  1024. *
  1025. * For IPv4 ARP, the implementation must subscribe to 0xffffffffffff (the
  1026. * broadcast address) but with an ADI equal to each IPv4 address in host
  1027. * byte order. This converts ARP from a non-scalable broadcast protocol to
  1028. * a scalable multicast protocol with perfect address specificity.
  1029. *
  1030. * If this is not done, ARP will not work reliably.
  1031. *
  1032. * Multiple calls to subscribe to the same multicast address will have no
  1033. * effect. It is perfectly safe to do this.
  1034. *
  1035. * This does not generate an update call to networkConfigCallback().
  1036. *
  1037. * @param node Node instance
  1038. * @param nwid 64-bit network ID
  1039. * @param multicastGroup Ethernet multicast or broadcast MAC (least significant 48 bits)
  1040. * @param multicastAdi Multicast ADI (least significant 32 bits only, use 0 if not needed)
  1041. * @return OK (0) or error code if a fatal error condition has occurred
  1042. */
  1043. enum ZT_ResultCode ZT_Node_multicastSubscribe(ZT_Node *node,uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi);
  1044. /**
  1045. * Unsubscribe from an Ethernet multicast group (or all groups)
  1046. *
  1047. * If multicastGroup is zero (0), this will unsubscribe from all groups. If
  1048. * you are not subscribed to a group this has no effect.
  1049. *
  1050. * This does not generate an update call to networkConfigCallback().
  1051. *
  1052. * @param node Node instance
  1053. * @param nwid 64-bit network ID
  1054. * @param multicastGroup Ethernet multicast or broadcast MAC (least significant 48 bits)
  1055. * @param multicastAdi Multicast ADI (least significant 32 bits only, use 0 if not needed)
  1056. * @return OK (0) or error code if a fatal error condition has occurred
  1057. */
  1058. enum ZT_ResultCode ZT_Node_multicastUnsubscribe(ZT_Node *node,uint64_t nwid,uint64_t multicastGroup,unsigned long multicastAdi);
  1059. /**
  1060. * Get this node's 40-bit ZeroTier address
  1061. *
  1062. * @param node Node instance
  1063. * @return ZeroTier address (least significant 40 bits of 64-bit int)
  1064. */
  1065. uint64_t ZT_Node_address(ZT_Node *node);
  1066. /**
  1067. * Get the status of this node
  1068. *
  1069. * @param node Node instance
  1070. * @param status Buffer to fill with current node status
  1071. */
  1072. void ZT_Node_status(ZT_Node *node,ZT_NodeStatus *status);
  1073. /**
  1074. * Get a list of known peer nodes
  1075. *
  1076. * The pointer returned here must be freed with freeQueryResult()
  1077. * when you are done with it.
  1078. *
  1079. * @param node Node instance
  1080. * @return List of known peers or NULL on failure
  1081. */
  1082. ZT_PeerList *ZT_Node_peers(ZT_Node *node);
  1083. /**
  1084. * Get the status of a virtual network
  1085. *
  1086. * The pointer returned here must be freed with freeQueryResult()
  1087. * when you are done with it.
  1088. *
  1089. * @param node Node instance
  1090. * @param nwid 64-bit network ID
  1091. * @return Network configuration or NULL if we are not a member of this network
  1092. */
  1093. ZT_VirtualNetworkConfig *ZT_Node_networkConfig(ZT_Node *node,uint64_t nwid);
  1094. /**
  1095. * Enumerate and get status of all networks
  1096. *
  1097. * @param node Node instance
  1098. * @return List of networks or NULL on failure
  1099. */
  1100. ZT_VirtualNetworkList *ZT_Node_networks(ZT_Node *node);
  1101. /**
  1102. * Free a query result buffer
  1103. *
  1104. * Use this to free the return values of listNetworks(), listPeers(), etc.
  1105. *
  1106. * @param node Node instance
  1107. * @param qr Query result buffer
  1108. */
  1109. void ZT_Node_freeQueryResult(ZT_Node *node,void *qr);
  1110. /**
  1111. * Add a local interface address
  1112. *
  1113. * Local interface addresses may be added if you want remote peers
  1114. * with whom you have a trust relatinship (e.g. common network membership)
  1115. * to receive information about these endpoints as potential endpoints for
  1116. * direct communication.
  1117. *
  1118. * Take care that these are never ZeroTier interface addresses, otherwise
  1119. * strange things might happen or they simply won't work.
  1120. *
  1121. * Addresses can also be added here if they are the result of a UPnP or
  1122. * NAT-PMP port mapping or other discovery or mapping means.
  1123. *
  1124. * This returns a boolean indicating whether or not the address was
  1125. * accepted. ZeroTier will only communicate over certain address types
  1126. * and (for IP) address classes. Thus it's safe to just dump your OS's
  1127. * entire remote IP list (excluding ZeroTier interface IPs) into here
  1128. * and let ZeroTier determine which addresses it will use. It will
  1129. * reject bad, empty, and unusable addresses.
  1130. *
  1131. * @param addr Local interface address
  1132. * @param metric Local interface metric
  1133. * @param trust How much do you trust the local network under this interface?
  1134. * @return Boolean: non-zero if address was accepted and added
  1135. */
  1136. int ZT_Node_addLocalInterfaceAddress(ZT_Node *node,const struct sockaddr_storage *addr,int metric,ZT_LocalInterfaceAddressTrust trust);
  1137. /**
  1138. * Clear local interface addresses
  1139. */
  1140. void ZT_Node_clearLocalInterfaceAddresses(ZT_Node *node);
  1141. /**
  1142. * Set a network configuration master instance for this node
  1143. *
  1144. * Normal nodes should not need to use this. This is for nodes with
  1145. * special compiled-in support for acting as network configuration
  1146. * masters / controllers.
  1147. *
  1148. * The supplied instance must be a C++ object that inherits from the
  1149. * NetworkConfigMaster base class in node/. No type checking is performed,
  1150. * so a pointer to anything else will result in a crash.
  1151. *
  1152. * @param node ZertTier One node
  1153. * @param networkConfigMasterInstance Instance of NetworkConfigMaster C++ class or NULL to disable
  1154. * @return OK (0) or error code if a fatal error condition has occurred
  1155. */
  1156. void ZT_Node_setNetconfMaster(ZT_Node *node,void *networkConfigMasterInstance);
  1157. /**
  1158. * Initiate a VL1 circuit test
  1159. *
  1160. * This sends an initial VERB_CIRCUIT_TEST and reports results back to the
  1161. * supplied callback until circuitTestEnd() is called. The supplied
  1162. * ZT_CircuitTest structure should be initially zeroed and then filled
  1163. * in with settings and hops.
  1164. *
  1165. * It is the caller's responsibility to call circuitTestEnd() and then
  1166. * to dispose of the test structure. Otherwise this node will listen
  1167. * for results forever.
  1168. *
  1169. * @param node Node instance
  1170. * @param test Test configuration
  1171. * @param reportCallback Function to call each time a report is received
  1172. * @return OK or error if, for example, test is too big for a packet or support isn't compiled in
  1173. */
  1174. ZT_ResultCode ZT_Node_circuitTestBegin(ZT_Node *node,ZT_CircuitTest *test,void (*reportCallback)(ZT_Node *,ZT_CircuitTest *,const ZT_CircuitTestReport *));
  1175. /**
  1176. * Stop listening for results to a given circuit test
  1177. *
  1178. * This does not free the 'test' structure. The caller may do that
  1179. * after calling this method to unregister it.
  1180. *
  1181. * Any reports that are received for a given test ID after it is
  1182. * terminated are ignored.
  1183. *
  1184. * @param node Node instance
  1185. * @param test Test configuration to unregister
  1186. */
  1187. void ZT_Node_circuitTestEnd(ZT_Node *node,ZT_CircuitTest *test);
  1188. /**
  1189. * Get ZeroTier One version
  1190. *
  1191. * @param major Result: major version
  1192. * @param minor Result: minor version
  1193. * @param revision Result: revision
  1194. * @param featureFlags: Result: feature flag bitmap
  1195. */
  1196. void ZT_version(int *major,int *minor,int *revision,unsigned long *featureFlags);
  1197. #ifdef __cplusplus
  1198. }
  1199. #endif
  1200. #endif