You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
5.6 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. # Peer Strategy and Exchange
  2. Here we outline the design of the AddressBook
  3. and how it used by the Peer Exchange Reactor (PEX) to ensure we are connected
  4. to good peers and to gossip peers to others.
  5. ## Peer Types
  6. Certain peers are special in that they are specified by the user as `persistent`,
  7. which means we auto-redial them if the connection fails, or if we fail to dial
  8. them.
  9. Some peers can be marked as `private`, which means
  10. we will not put them in the address book or gossip them to others.
  11. All peers except private peers and peers coming from them are tracked using the
  12. address book.
  13. The rest of our peers are only distinguished by being either
  14. inbound (they dialed our public address) or outbound (we dialed them).
  15. ## Discovery
  16. Peer discovery begins with a list of seeds.
  17. When we have no peers, or have been unable to find enough peers from existing ones,
  18. we dial a randomly selected seed to get a list of peers to dial.
  19. On startup, we will also immediately dial the given list of `persistent_peers`,
  20. and will attempt to maintain persistent connections with them. If the connections die, or we fail to dial,
  21. we will redial every 5s for a few minutes, then switch to an exponential backoff schedule,
  22. and after about a day of trying, stop dialing the peer.
  23. So long as we have less than `MaxNumOutboundPeers`, we periodically request additional peers
  24. from each of our own. If sufficient time goes by and we still can't find enough peers,
  25. we try the seeds again.
  26. ## Listening
  27. Peers listen on a configurable ListenAddr that they self-report in their
  28. NodeInfo during handshakes with other peers. Peers accept up to
  29. `MaxNumInboundPeers` incoming peers.
  30. ## Address Book
  31. Peers are tracked via their ID (their PubKey.Address()).
  32. Peers are added to the address book from the PEX when they first connect to us or
  33. when we hear about them from other peers.
  34. The address book is arranged in sets of buckets, and distinguishes between
  35. vetted (old) and unvetted (new) peers. It keeps different sets of buckets for vetted and
  36. unvetted peers. Buckets provide randomization over peer selection. Peers are put
  37. in buckets according to their IP groups.
  38. A vetted peer can only be in one bucket. An unvetted peer can be in multiple buckets, and
  39. each instance of the peer can have a different IP:PORT.
  40. If we're trying to add a new peer but there's no space in its bucket, we'll
  41. remove the worst peer from that bucket to make room.
  42. ## Vetting
  43. When a peer is first added, it is unvetted.
  44. Marking a peer as vetted is outside the scope of the `p2p` package.
  45. For Tendermint, a Peer becomes vetted once it has contributed sufficiently
  46. at the consensus layer; ie. once it has sent us valid and not-yet-known
  47. votes and/or block parts for `NumBlocksForVetted` blocks.
  48. Other users of the p2p package can determine their own conditions for when a peer is marked vetted.
  49. If a peer becomes vetted but there are already too many vetted peers,
  50. a randomly selected one of the vetted peers becomes unvetted.
  51. If a peer becomes unvetted (either a new peer, or one that was previously vetted),
  52. a randomly selected one of the unvetted peers is removed from the address book.
  53. More fine-grained tracking of peer behaviour can be done using
  54. a trust metric (see below), but it's best to start with something simple.
  55. ## Select Peers to Dial
  56. When we need more peers, we pick addresses randomly from the addrbook with some
  57. configurable bias for unvetted peers. The bias should be lower when we have
  58. fewer peers and can increase as we obtain more, ensuring that our first peers
  59. are more trustworthy, but always giving us the chance to discover new good
  60. peers.
  61. We track the last time we dialed a peer and the number of unsuccessful attempts
  62. we've made. If too many attempts are made, we mark the peer as bad.
  63. Connection attempts are made with exponential backoff (plus jitter). Because
  64. the selection process happens every `ensurePeersPeriod`, we might not end up
  65. dialing a peer for much longer than the backoff duration.
  66. If we fail to connect to the peer after 16 tries (with exponential backoff), we
  67. remove from address book completely.
  68. ## Select Peers to Exchange
  69. When we’re asked for peers, we select them as follows:
  70. - select at most `maxGetSelection` peers
  71. - try to select at least `minGetSelection` peers - if we have less than that, select them all.
  72. - select a random, unbiased `getSelectionPercent` of the peers
  73. Send the selected peers. Note we select peers for sending without bias for vetted/unvetted.
  74. ## Preventing Spam
  75. There are various cases where we decide a peer has misbehaved and we disconnect from them.
  76. When this happens, the peer is removed from the address book and black listed for
  77. some amount of time. We call this "Disconnect and Mark".
  78. Note that the bad behaviour may be detected outside the PEX reactor itself
  79. (for instance, in the mconnection, or another reactor), but it must be communicated to the PEX reactor
  80. so it can remove and mark the peer.
  81. In the PEX, if a peer sends us an unsolicited list of peers,
  82. or if the peer sends a request too soon after another one,
  83. we Disconnect and MarkBad.
  84. ## Trust Metric
  85. The quality of peers can be tracked in more fine-grained detail using a
  86. Proportional-Integral-Derivative (PID) controller that incorporates
  87. current, past, and rate-of-change data to inform peer quality.
  88. While a PID trust metric has been implemented, it remains for future work
  89. to use it in the PEX.
  90. See the [trustmetric](https://github.com/tendermint/tendermint/blob/master/docs/architecture/adr-006-trust-metric.md)
  91. and [trustmetric useage](https://github.com/tendermint/tendermint/blob/master/docs/architecture/adr-007-trust-metric-usage.md)
  92. architecture docs for more details.