Constants.hpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  1. /*
  2. * Copyright (c)2019 ZeroTier, Inc.
  3. *
  4. * Use of this software is governed by the Business Source License included
  5. * in the LICENSE.TXT file in the project's root directory.
  6. *
  7. * Change Date: 2023-01-01
  8. *
  9. * On the date above, in accordance with the Business Source License, use
  10. * of this software will be governed by version 2.0 of the Apache License.
  11. */
  12. /****/
  13. #ifndef ZT_CONSTANTS_HPP
  14. #define ZT_CONSTANTS_HPP
  15. #include "../include/ZeroTierOne.h"
  16. #if __has_include("version.h")
  17. #include "version.h"
  18. #else /* dummy values for use inside IDEs, etc. */
  19. #define ZEROTIER_ONE_VERSION_MAJOR 255
  20. #define ZEROTIER_ONE_VERSION_MINOR 255
  21. #define ZEROTIER_ONE_VERSION_REVISION 255
  22. #define ZEROTIER_ONE_VERSION_BUILD 255
  23. #endif
  24. #ifndef ZT_BUILD_ARCHITECTURE
  25. #define ZT_BUILD_ARCHITECTURE 0
  26. #endif
  27. #ifndef ZT_BUILD_PLATFORM
  28. #define ZT_BUILD_PLATFORM 0
  29. #endif
  30. //
  31. // This include file also auto-detects and canonicalizes some environment
  32. // information defines:
  33. //
  34. // __LINUX__
  35. // __APPLE__
  36. // __BSD__ (OSX also defines this)
  37. // __UNIX_LIKE__ (Linux, BSD, etc.)
  38. // __WINDOWS__
  39. //
  40. // Also makes sure __BYTE_ORDER is defined reasonably.
  41. //
  42. // Hack: make sure __GCC__ is defined on old GCC compilers
  43. #ifndef __GCC__
  44. #if defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1) || defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2) || defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4)
  45. #define __GCC__
  46. #endif
  47. #endif
  48. #if defined(__linux__) || defined(linux) || defined(__LINUX__) || defined(__linux)
  49. #ifndef __LINUX__
  50. #define __LINUX__
  51. #endif
  52. #ifndef __UNIX_LIKE__
  53. #define __UNIX_LIKE__
  54. #endif
  55. #include <endian.h>
  56. #endif
  57. #ifdef __APPLE__
  58. #include <TargetConditionals.h>
  59. #ifndef __UNIX_LIKE__
  60. #define __UNIX_LIKE__
  61. #endif
  62. #ifndef __BSD__
  63. #define __BSD__
  64. #endif
  65. #include <machine/endian.h>
  66. #endif
  67. #if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
  68. #ifndef __UNIX_LIKE__
  69. #define __UNIX_LIKE__
  70. #endif
  71. #ifndef __BSD__
  72. #define __BSD__
  73. #endif
  74. #include <sys/endian.h>
  75. #ifndef __BYTE_ORDER
  76. #define __BYTE_ORDER _BYTE_ORDER
  77. #define __LITTLE_ENDIAN _LITTLE_ENDIAN
  78. #define __BIG_ENDIAN _BIG_ENDIAN
  79. #endif
  80. #endif
  81. #if defined(_WIN32) || defined(_WIN64)
  82. #ifndef __WINDOWS__
  83. #define __WINDOWS__
  84. #endif
  85. #ifndef NOMINMAX
  86. #define NOMINMAX
  87. #endif
  88. #pragma warning(disable : 4290)
  89. #pragma warning(disable : 4996)
  90. #pragma warning(disable : 4101)
  91. #undef __UNIX_LIKE__
  92. #undef __BSD__
  93. #include <WinSock2.h>
  94. #include <Windows.h>
  95. #endif
  96. #ifdef __NetBSD__
  97. #ifndef RTF_MULTICAST
  98. #define RTF_MULTICAST 0x20000000
  99. #endif
  100. #endif
  101. // Define ZT_NO_TYPE_PUNNING to disable reckless casts on anything other than x86 and x86_64.
  102. #if (!(defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64) || defined(_M_AMD64) || defined(_M_X64) || defined(i386) || defined(__i386) || defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || defined(_M_IX86) || defined(__X86__) || defined(_X86_) || defined(__I86__) || defined(__INTEL__) || defined(__386)))
  103. #ifndef ZT_NO_TYPE_PUNNING
  104. #define ZT_NO_TYPE_PUNNING
  105. #endif
  106. #endif
  107. // Assume little endian if not defined on Mac and Windows as these don't run on any BE architectures.
  108. #if (defined(__APPLE__) || defined(__WINDOWS__)) && (!defined(__BYTE_ORDER))
  109. #undef __BYTE_ORDER
  110. #undef __LITTLE_ENDIAN
  111. #undef __BIG_ENDIAN
  112. #define __BIG_ENDIAN 4321
  113. #define __LITTLE_ENDIAN 1234
  114. #define __BYTE_ORDER 1234
  115. #endif
  116. #ifdef __WINDOWS__
  117. #define ZT_PATH_SEPARATOR '\\'
  118. #define ZT_PATH_SEPARATOR_S "\\"
  119. #define ZT_EOL_S "\r\n"
  120. #else
  121. #define ZT_PATH_SEPARATOR '/'
  122. #define ZT_PATH_SEPARATOR_S "/"
  123. #define ZT_EOL_S "\n"
  124. #endif
  125. #ifndef __BYTE_ORDER
  126. #include <endian.h>
  127. #endif
  128. #if (defined(__GNUC__) && (__GNUC__ >= 3)) || (defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 800)) || defined(__clang__)
  129. #define ZT_ALWAYS_INLINE inline __attribute__((always_inline))
  130. #ifndef likely
  131. #define likely(x) __builtin_expect((x),1)
  132. #endif
  133. #ifndef unlikely
  134. #define unlikely(x) __builtin_expect((x),0)
  135. #endif
  136. #else
  137. #ifndef likely
  138. #define ZT_ALWAYS_INLINE inline
  139. #define likely(x) (x)
  140. #endif
  141. #ifndef unlikely
  142. #define unlikely(x) (x)
  143. #endif
  144. #endif
  145. #if defined(__WINDOWS__) && !defined(__GNUC__) && !defined (__clang__) && !defined(__INTEL_COMPILER)
  146. #define ZT_PACKED_STRUCT(D) __pragma(pack(push,1)) D __pragma(pack(pop))
  147. #else
  148. #define ZT_PACKED_STRUCT(D) D __attribute__((packed))
  149. #endif
  150. /**
  151. * Length of a ZeroTier address in bytes
  152. */
  153. #define ZT_ADDRESS_LENGTH 5
  154. /**
  155. * Length of a hexadecimal ZeroTier address
  156. */
  157. #define ZT_ADDRESS_LENGTH_HEX 10
  158. /**
  159. * Addresses beginning with this byte are reserved for the joy of in-band signaling
  160. */
  161. #define ZT_ADDRESS_RESERVED_PREFIX 0xff
  162. /**
  163. * Default virtual network MTU (not physical)
  164. */
  165. #define ZT_DEFAULT_MTU 2800
  166. /**
  167. * Maximum number of packet fragments we'll support (protocol max: 16)
  168. */
  169. #define ZT_MAX_PACKET_FRAGMENTS 7
  170. /**
  171. * Size of RX queue in packets
  172. */
  173. #define ZT_RX_QUEUE_SIZE 32
  174. /**
  175. * Size of TX queue in packets
  176. */
  177. #define ZT_TX_QUEUE_SIZE 32
  178. /**
  179. * Length of peer shared secrets (256-bit, do not change)
  180. */
  181. #define ZT_PEER_SECRET_KEY_LENGTH 32
  182. /**
  183. * Minimum delay between timer task checks to prevent thrashing
  184. */
  185. #define ZT_MIN_TIMER_TASK_INTERVAL 500
  186. /**
  187. * Maximum delay between timer task checks (should be a fraction of smallest housekeeping interval)
  188. */
  189. #define ZT_MAX_TIMER_TASK_INTERVAL 3000
  190. /**
  191. * How often most internal cleanup and housekeeping tasks are performed
  192. */
  193. #define ZT_HOUSEKEEPING_PERIOD 120000
  194. /**
  195. * How often network housekeeping is performed
  196. *
  197. * Note that this affects how frequently we re-request network configurations
  198. * from network controllers if we haven't received one yet.
  199. */
  200. #define ZT_NETWORK_HOUSEKEEPING_PERIOD 12000
  201. /**
  202. * Delay between WHOIS retries in ms
  203. */
  204. #define ZT_WHOIS_RETRY_DELAY 500
  205. /**
  206. * Transmit queue entry timeout
  207. */
  208. #define ZT_TRANSMIT_QUEUE_TIMEOUT 5000
  209. /**
  210. * Receive queue entry timeout
  211. */
  212. #define ZT_RECEIVE_QUEUE_TIMEOUT 5000
  213. /**
  214. * Maximum number of ZT hops allowed (this is not IP hops/TTL)
  215. *
  216. * The protocol allows up to 7, but we limit it to something smaller.
  217. */
  218. #define ZT_RELAY_MAX_HOPS 4
  219. /**
  220. * Expire time for multicast 'likes' and indirect multicast memberships in ms
  221. */
  222. #define ZT_MULTICAST_LIKE_EXPIRE 600000
  223. /**
  224. * Period for multicast LIKE re-announcements to connected nodes
  225. */
  226. #define ZT_MULTICAST_ANNOUNCE_PERIOD 120000
  227. /**
  228. * Delay between explicit MULTICAST_GATHER requests for a given multicast channel
  229. */
  230. #define ZT_MULTICAST_EXPLICIT_GATHER_DELAY (ZT_MULTICAST_LIKE_EXPIRE / 10)
  231. /**
  232. * Timeout for outgoing multicasts
  233. *
  234. * This is how long we wait for explicit or implicit gather results.
  235. */
  236. #define ZT_MULTICAST_TRANSMIT_TIMEOUT 5000
  237. /**
  238. * How frequently to check for changes to the system's network interfaces. When
  239. * the service decides to use this constant it's because we want to react more
  240. * quickly to new interfaces that pop up or go down.
  241. */
  242. #define ZT_MULTIPATH_BINDER_REFRESH_PERIOD 5000
  243. /**
  244. * Packets are only used for QoS/ACK statistical sampling if their packet ID is divisible by
  245. * this integer. This is to provide a mechanism for both peers to agree on which packets need
  246. * special treatment without having to exchange information. Changing this value would be
  247. * a breaking change and would necessitate a protocol version upgrade. Since each incoming and
  248. * outgoing packet ID is checked against this value its evaluation is of the form:
  249. * (id & (divisor - 1)) == 0, thus the divisor must be a power of 2.
  250. *
  251. * This value is set at (16) so that given a normally-distributed RNG output we will sample
  252. * 1/16th (or ~6.25%) of packets.
  253. */
  254. #define ZT_PATH_QOS_ACK_PROTOCOL_DIVISOR 0x10
  255. /**
  256. * Time horizon for VERB_QOS_MEASUREMENT and VERB_ACK packet processing cutoff
  257. */
  258. #define ZT_PATH_QOS_ACK_CUTOFF_TIME 30000
  259. /**
  260. * Maximum number of VERB_QOS_MEASUREMENT and VERB_ACK packets allowed to be
  261. * processed within cutoff time. Separate totals are kept for each type but
  262. * the limit is the same for both.
  263. *
  264. * This limits how often this peer will compute statistical estimates
  265. * of various QoS measures from a VERB_QOS_MEASUREMENT or VERB_ACK packets to
  266. * CUTOFF_LIMIT times per CUTOFF_TIME milliseconds per peer to prevent
  267. * this from being useful for DOS amplification attacks.
  268. */
  269. #define ZT_PATH_QOS_ACK_CUTOFF_LIMIT 128
  270. /**
  271. * Path choice history window size. This is used to keep track of which paths were
  272. * previously selected so that we can maintain a target allocation over time.
  273. */
  274. #define ZT_MULTIPATH_PROPORTION_WIN_SZ 128
  275. /**
  276. * Interval used for rate-limiting the computation of path quality estimates.
  277. */
  278. #define ZT_PATH_QUALITY_COMPUTE_INTERVAL 1000
  279. /**
  280. * Number of samples to consider when computing real-time path statistics
  281. */
  282. #define ZT_PATH_QUALITY_METRIC_REALTIME_CONSIDERATION_WIN_SZ 128
  283. /**
  284. * Number of samples to consider when computing performing long-term path quality analysis.
  285. * By default this value is set to ZT_PATH_QUALITY_METRIC_REALTIME_CONSIDERATION_WIN_SZ but can
  286. * be set to any value greater than that to observe longer-term path quality behavior.
  287. */
  288. #define ZT_PATH_QUALITY_METRIC_WIN_SZ ZT_PATH_QUALITY_METRIC_REALTIME_CONSIDERATION_WIN_SZ
  289. /**
  290. * Maximum acceptable Packet Delay Variance (PDV) over a path
  291. */
  292. #define ZT_PATH_MAX_PDV 1000
  293. /**
  294. * Maximum acceptable time interval between expectation and receipt of at least one ACK over a path
  295. */
  296. #define ZT_PATH_MAX_AGE 30000
  297. /**
  298. * Maximum acceptable mean latency over a path
  299. */
  300. #define ZT_PATH_MAX_MEAN_LATENCY 1000
  301. /**
  302. * How much each factor contributes to the "stability" score of a path
  303. */
  304. #define ZT_PATH_CONTRIB_PDV (1.0 / 3.0)
  305. #define ZT_PATH_CONTRIB_LATENCY (1.0 / 3.0)
  306. #define ZT_PATH_CONTRIB_THROUGHPUT_DISTURBANCE (1.0 / 3.0)
  307. /**
  308. * How much each factor contributes to the "quality" score of a path
  309. */
  310. #define ZT_PATH_CONTRIB_STABILITY (0.75 / 3.0)
  311. #define ZT_PATH_CONTRIB_THROUGHPUT (1.50 / 3.0)
  312. #define ZT_PATH_CONTRIB_SCOPE (0.75 / 3.0)
  313. /**
  314. * How often a QoS packet is sent
  315. */
  316. #define ZT_PATH_QOS_INTERVAL 3000
  317. /**
  318. * Min and max acceptable sizes for a VERB_QOS_MEASUREMENT packet
  319. */
  320. #define ZT_PATH_MIN_QOS_PACKET_SZ 8 + 1
  321. #define ZT_PATH_MAX_QOS_PACKET_SZ 1400
  322. /**
  323. * How many ID:sojourn time pairs in a single QoS packet
  324. */
  325. #define ZT_PATH_QOS_TABLE_SIZE ((ZT_PATH_MAX_QOS_PACKET_SZ * 8) / (64 + 16))
  326. /**
  327. * Maximum number of outgoing packets we monitor for QoS information
  328. */
  329. #define ZT_PATH_MAX_OUTSTANDING_QOS_RECORDS 128
  330. /**
  331. * Timeout for QoS records
  332. */
  333. #define ZT_PATH_QOS_TIMEOUT (ZT_PATH_QOS_INTERVAL * 2)
  334. /**
  335. * How often the service tests the path throughput
  336. */
  337. #define ZT_PATH_THROUGHPUT_MEASUREMENT_INTERVAL (ZT_PATH_ACK_INTERVAL * 8)
  338. /**
  339. * Minimum amount of time between each ACK packet
  340. */
  341. #define ZT_PATH_ACK_INTERVAL 1000
  342. /**
  343. * How often an aggregate link statistics report is emitted into this tracing system
  344. */
  345. #define ZT_PATH_AGGREGATE_STATS_REPORT_INTERVAL 60000
  346. /**
  347. * How much an aggregate link's component paths can vary from their target allocation
  348. * before the link is considered to be in a state of imbalance.
  349. */
  350. #define ZT_PATH_IMBALANCE_THRESHOLD 0.20
  351. /**
  352. * Max allowable time spent in any queue
  353. */
  354. #define ZT_QOS_TARGET 5 // ms
  355. /**
  356. * Time period where the time spent in the queue by a packet should fall below
  357. * target at least once
  358. */
  359. #define ZT_QOS_INTERVAL 100 // ms
  360. /**
  361. * The number of bytes that each queue is allowed to send during each DRR cycle.
  362. * This approximates a single-byte-based fairness queuing scheme
  363. */
  364. #define ZT_QOS_QUANTUM ZT_DEFAULT_MTU
  365. /**
  366. * The maximum total number of packets that can be queued among all
  367. * active/inactive, old/new queues
  368. */
  369. #define ZT_QOS_MAX_ENQUEUED_PACKETS 1024
  370. /**
  371. * Number of QoS queues (buckets)
  372. */
  373. #define ZT_QOS_NUM_BUCKETS 9
  374. /**
  375. * All unspecified traffic is put in this bucket. Anything in a bucket with a smaller
  376. * value is de-prioritized. Anything in a bucket with a higher value is prioritized over
  377. * other traffic.
  378. */
  379. #define ZT_QOS_DEFAULT_BUCKET 0
  380. /**
  381. * Do not accept HELLOs over a given path more often than this
  382. */
  383. #define ZT_PATH_HELLO_RATE_LIMIT 1000
  384. /**
  385. * Delay between full-fledge pings of directly connected peers
  386. *
  387. * See https://conferences.sigcomm.org/imc/2010/papers/p260.pdf for
  388. * some real world data on NAT UDP timeouts. From the paper: "the
  389. * lowest measured timeout when a binding has seen bidirectional
  390. * traffic is 54 sec." We use 45 to be a bit under this.
  391. */
  392. #define ZT_PEER_PING_PERIOD 45000
  393. /**
  394. * Timeout for overall peer activity (measured from last receive)
  395. */
  396. #ifndef ZT_SDK
  397. #define ZT_PEER_ACTIVITY_TIMEOUT 500000
  398. #else
  399. #define ZT_PEER_ACTIVITY_TIMEOUT 30000
  400. #endif
  401. /**
  402. * Rescan for best/fastest root every N milliseconds
  403. */
  404. #define ZT_FIND_BEST_ROOT_PERIOD 2000
  405. /**
  406. * General rate limit timeout for multiple packet types (HELLO, etc.)
  407. */
  408. #define ZT_PEER_GENERAL_INBOUND_RATE_LIMIT 500
  409. /**
  410. * General limit for max RTT for requests over the network
  411. */
  412. #define ZT_GENERAL_RTT_LIMIT 5000
  413. /**
  414. * Delay between requests for updated network autoconf information
  415. *
  416. * Don't lengthen this as it affects things like QoS / uptime monitoring
  417. * via ZeroTier Central. This is the heartbeat, basically.
  418. */
  419. #define ZT_NETWORK_AUTOCONF_DELAY 60000
  420. /**
  421. * Minimum interval between attempts by relays to unite peers
  422. *
  423. * When a relay gets a packet destined for another peer, it sends both peers
  424. * a RENDEZVOUS message no more than this often. This instructs the peers
  425. * to attempt NAT-t and gives each the other's corresponding IP:port pair.
  426. */
  427. #define ZT_MIN_UNITE_INTERVAL 30000
  428. /**
  429. * Sanity limit on maximum bridge routes
  430. *
  431. * If the number of bridge routes exceeds this, we cull routes from the
  432. * bridges with the most MACs behind them until it doesn't. This is a
  433. * sanity limit to prevent memory-filling DOS attacks, nothing more. No
  434. * physical LAN has anywhere even close to this many nodes. Note that this
  435. * does not limit the size of ZT virtual LANs, only bridge routing.
  436. */
  437. #define ZT_MAX_BRIDGE_ROUTES 16777216
  438. /**
  439. * If there is no known L2 bridging route, spam to up to this many active bridges
  440. */
  441. #define ZT_MAX_BRIDGE_SPAM 32
  442. /**
  443. * Interval between direct path pushes in milliseconds
  444. */
  445. #define ZT_DIRECT_PATH_PUSH_INTERVAL 15000
  446. /**
  447. * Interval between direct path pushes in milliseconds if we already have a path
  448. */
  449. #define ZT_DIRECT_PATH_PUSH_INTERVAL_HAVEPATH 120000
  450. /**
  451. * Time horizon for push direct paths cutoff
  452. */
  453. #define ZT_PUSH_DIRECT_PATHS_CUTOFF_TIME 30000
  454. /**
  455. * Maximum number of direct path pushes within cutoff time
  456. *
  457. * This limits response to PUSH_DIRECT_PATHS to CUTOFF_LIMIT responses
  458. * per CUTOFF_TIME milliseconds per peer to prevent this from being
  459. * useful for DOS amplification attacks.
  460. */
  461. #define ZT_PUSH_DIRECT_PATHS_CUTOFF_LIMIT 8
  462. /**
  463. * Maximum number of paths per IP scope (e.g. global, link-local) and family (e.g. v4/v6)
  464. */
  465. #define ZT_PUSH_DIRECT_PATHS_MAX_PER_SCOPE_AND_FAMILY 8
  466. /**
  467. * Time horizon for VERB_NETWORK_CREDENTIALS cutoff
  468. */
  469. #define ZT_PEER_CREDENTIALS_CUTOFF_TIME 60000
  470. /**
  471. * Maximum number of VERB_NETWORK_CREDENTIALS within cutoff time
  472. */
  473. #define ZT_PEER_CREDEITIALS_CUTOFF_LIMIT 15
  474. /**
  475. * WHOIS rate limit (we allow these to be pretty fast)
  476. */
  477. #define ZT_PEER_WHOIS_RATE_LIMIT 100
  478. /**
  479. * General rate limit for other kinds of rate-limited packets (HELLO, credential request, etc.) both inbound and outbound
  480. */
  481. #define ZT_PEER_GENERAL_RATE_LIMIT 1000
  482. /**
  483. * Don't do expensive identity validation more often than this
  484. *
  485. * IPv4 and IPv6 address prefixes are hashed down to 14-bit (0-16383) integers
  486. * using the first 24 bits for IPv4 or the first 48 bits for IPv6. These are
  487. * then rate limited to one identity validation per this often milliseconds.
  488. */
  489. #if (defined(__amd64) || defined(__amd64__) || defined(__x86_64) || defined(__x86_64__) || defined(__AMD64) || defined(__AMD64__) || defined(_M_X64) || defined(_M_AMD64))
  490. // AMD64 machines can do anywhere from one every 50ms to one every 10ms. This provides plenty of margin.
  491. #define ZT_IDENTITY_VALIDATION_SOURCE_RATE_LIMIT 2000
  492. #else
  493. #if (defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || defined(_M_IX86) || defined(_X86_) || defined(__I86__))
  494. // 32-bit Intel machines usually average about one every 100ms
  495. #define ZT_IDENTITY_VALIDATION_SOURCE_RATE_LIMIT 5000
  496. #else
  497. // This provides a safe margin for ARM, MIPS, etc. that usually average one every 250-400ms
  498. #define ZT_IDENTITY_VALIDATION_SOURCE_RATE_LIMIT 10000
  499. #endif
  500. #endif
  501. /**
  502. * How long is a path or peer considered to have a trust relationship with us (for e.g. relay policy) since last trusted established packet?
  503. */
  504. #define ZT_TRUST_EXPIRATION 600000
  505. /**
  506. * Size of a buffer to store either a C25519 or an ECC P-384 signature
  507. *
  508. * This must be large enough to hold all signature types.
  509. */
  510. #define ZT_SIGNATURE_BUFFER_SIZE 96
  511. /**
  512. * Desired / recommended min stack size for threads (used on some platforms to reset thread stack size)
  513. */
  514. #define ZT_THREAD_MIN_STACK_SIZE 1048576
  515. // Internal cryptographic algorithm IDs
  516. #define ZT_CRYPTO_ALG_C25519 0
  517. #define ZT_CRYPTO_ALG_P384 1
  518. // Exceptions thrown in core ZT code
  519. #define ZT_EXCEPTION_OUT_OF_BOUNDS 100
  520. #define ZT_EXCEPTION_OUT_OF_MEMORY 101
  521. #define ZT_EXCEPTION_PRIVATE_KEY_REQUIRED 102
  522. #define ZT_EXCEPTION_INVALID_ARGUMENT 103
  523. #define ZT_EXCEPTION_INVALID_SERIALIZED_DATA_INVALID_TYPE 200
  524. #define ZT_EXCEPTION_INVALID_SERIALIZED_DATA_OVERFLOW 201
  525. #define ZT_EXCEPTION_INVALID_SERIALIZED_DATA_INVALID_CRYPTOGRAPHIC_TOKEN 202
  526. #define ZT_EXCEPTION_INVALID_SERIALIZED_DATA_BAD_ENCODING 203
  527. #endif