Constants.hpp 18 KB

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