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.

363 lines
11 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
lint: Enable Golint (#4212) * Fix many golint errors * Fix golint errors in the 'lite' package * Don't export Pool.store * Fix typo * Revert unwanted changes * Fix errors in counter package * Fix linter errors in kvstore package * Fix linter error in example package * Fix error in tests package * Fix linter errors in v2 package * Fix linter errors in consensus package * Fix linter errors in evidence package * Fix linter error in fail package * Fix linter errors in query package * Fix linter errors in core package * Fix linter errors in node package * Fix linter errors in mempool package * Fix linter error in conn package * Fix linter errors in pex package * Rename PEXReactor export to Reactor * Fix linter errors in trust package * Fix linter errors in upnp package * Fix linter errors in p2p package * Fix linter errors in proxy package * Fix linter errors in mock_test package * Fix linter error in client_test package * Fix linter errors in coretypes package * Fix linter errors in coregrpc package * Fix linter errors in rpcserver package * Fix linter errors in rpctypes package * Fix linter errors in rpctest package * Fix linter error in json2wal script * Fix linter error in wal2json script * Fix linter errors in kv package * Fix linter error in state package * Fix linter error in grpc_client * Fix linter errors in types package * Fix linter error in version package * Fix remaining errors * Address review comments * Fix broken tests * Reconcile package coregrpc * Fix golangci bot error * Fix new golint errors * Fix broken reference * Enable golint linter * minor changes to bring golint into line * fix failing test * fix pex reactor naming * address PR comments
5 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. package evidence
  2. import (
  3. "fmt"
  4. "sync"
  5. "time"
  6. clist "github.com/tendermint/tendermint/internal/libs/clist"
  7. tmsync "github.com/tendermint/tendermint/internal/libs/sync"
  8. "github.com/tendermint/tendermint/internal/p2p"
  9. "github.com/tendermint/tendermint/libs/log"
  10. "github.com/tendermint/tendermint/libs/service"
  11. tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
  12. "github.com/tendermint/tendermint/types"
  13. )
  14. var (
  15. _ service.Service = (*Reactor)(nil)
  16. // ChannelShims contains a map of ChannelDescriptorShim objects, where each
  17. // object wraps a reference to a legacy p2p ChannelDescriptor and the corresponding
  18. // p2p proto.Message the new p2p Channel is responsible for handling.
  19. //
  20. //
  21. // TODO: Remove once p2p refactor is complete.
  22. // ref: https://github.com/tendermint/tendermint/issues/5670
  23. ChannelShims = map[p2p.ChannelID]*p2p.ChannelDescriptorShim{
  24. EvidenceChannel: {
  25. MsgType: new(tmproto.EvidenceList),
  26. Descriptor: &p2p.ChannelDescriptor{
  27. ID: byte(EvidenceChannel),
  28. Priority: 6,
  29. RecvMessageCapacity: maxMsgSize,
  30. RecvBufferCapacity: 32,
  31. MaxSendBytes: 400,
  32. },
  33. },
  34. }
  35. )
  36. const (
  37. EvidenceChannel = p2p.ChannelID(0x38)
  38. maxMsgSize = 1048576 // 1MB TODO make it configurable
  39. // broadcast all uncommitted evidence this often. This sets when the reactor
  40. // goes back to the start of the list and begins sending the evidence again.
  41. // Most evidence should be committed in the very next block that is why we wait
  42. // just over the block production rate before sending evidence again.
  43. broadcastEvidenceIntervalS = 10
  44. )
  45. // Reactor handles evpool evidence broadcasting amongst peers.
  46. type Reactor struct {
  47. service.BaseService
  48. evpool *Pool
  49. evidenceCh *p2p.Channel
  50. peerUpdates *p2p.PeerUpdates
  51. closeCh chan struct{}
  52. peerWG sync.WaitGroup
  53. mtx tmsync.Mutex
  54. peerRoutines map[types.NodeID]*tmsync.Closer
  55. }
  56. // NewReactor returns a reference to a new evidence reactor, which implements the
  57. // service.Service interface. It accepts a p2p Channel dedicated for handling
  58. // envelopes with EvidenceList messages.
  59. func NewReactor(
  60. logger log.Logger,
  61. evidenceCh *p2p.Channel,
  62. peerUpdates *p2p.PeerUpdates,
  63. evpool *Pool,
  64. ) *Reactor {
  65. r := &Reactor{
  66. evpool: evpool,
  67. evidenceCh: evidenceCh,
  68. peerUpdates: peerUpdates,
  69. closeCh: make(chan struct{}),
  70. peerRoutines: make(map[types.NodeID]*tmsync.Closer),
  71. }
  72. r.BaseService = *service.NewBaseService(logger, "Evidence", r)
  73. return r
  74. }
  75. // OnStart starts separate go routines for each p2p Channel and listens for
  76. // envelopes on each. In addition, it also listens for peer updates and handles
  77. // messages on that p2p channel accordingly. The caller must be sure to execute
  78. // OnStop to ensure the outbound p2p Channels are closed. No error is returned.
  79. func (r *Reactor) OnStart() error {
  80. go r.processEvidenceCh()
  81. go r.processPeerUpdates()
  82. return nil
  83. }
  84. // OnStop stops the reactor by signaling to all spawned goroutines to exit and
  85. // blocking until they all exit.
  86. func (r *Reactor) OnStop() {
  87. r.mtx.Lock()
  88. for _, c := range r.peerRoutines {
  89. c.Close()
  90. }
  91. r.mtx.Unlock()
  92. // Wait for all spawned peer evidence broadcasting goroutines to gracefully
  93. // exit.
  94. r.peerWG.Wait()
  95. // Close closeCh to signal to all spawned goroutines to gracefully exit. All
  96. // p2p Channels should execute Close().
  97. close(r.closeCh)
  98. // Wait for all p2p Channels to be closed before returning. This ensures we
  99. // can easily reason about synchronization of all p2p Channels and ensure no
  100. // panics will occur.
  101. <-r.evidenceCh.Done()
  102. <-r.peerUpdates.Done()
  103. }
  104. // handleEvidenceMessage handles envelopes sent from peers on the EvidenceChannel.
  105. // It returns an error only if the Envelope.Message is unknown for this channel
  106. // or if the given evidence is invalid. This should never be called outside of
  107. // handleMessage.
  108. func (r *Reactor) handleEvidenceMessage(envelope p2p.Envelope) error {
  109. logger := r.Logger.With("peer", envelope.From)
  110. switch msg := envelope.Message.(type) {
  111. case *tmproto.EvidenceList:
  112. // TODO: Refactor the Evidence type to not contain a list since we only ever
  113. // send and receive one piece of evidence at a time. Or potentially consider
  114. // batching evidence.
  115. //
  116. // see: https://github.com/tendermint/tendermint/issues/4729
  117. for i := 0; i < len(msg.Evidence); i++ {
  118. ev, err := types.EvidenceFromProto(&msg.Evidence[i])
  119. if err != nil {
  120. logger.Error("failed to convert evidence", "err", err)
  121. continue
  122. }
  123. if err := r.evpool.AddEvidence(ev); err != nil {
  124. // If we're given invalid evidence by the peer, notify the router that
  125. // we should remove this peer by returning an error.
  126. if _, ok := err.(*types.ErrInvalidEvidence); ok {
  127. return err
  128. }
  129. }
  130. }
  131. default:
  132. return fmt.Errorf("received unknown message: %T", msg)
  133. }
  134. return nil
  135. }
  136. // handleMessage handles an Envelope sent from a peer on a specific p2p Channel.
  137. // It will handle errors and any possible panics gracefully. A caller can handle
  138. // any error returned by sending a PeerError on the respective channel.
  139. func (r *Reactor) handleMessage(chID p2p.ChannelID, envelope p2p.Envelope) (err error) {
  140. defer func() {
  141. if e := recover(); e != nil {
  142. err = fmt.Errorf("panic in processing message: %v", e)
  143. }
  144. }()
  145. r.Logger.Debug("received message", "message", envelope.Message, "peer", envelope.From)
  146. switch chID {
  147. case EvidenceChannel:
  148. err = r.handleEvidenceMessage(envelope)
  149. default:
  150. err = fmt.Errorf("unknown channel ID (%d) for envelope (%v)", chID, envelope)
  151. }
  152. return err
  153. }
  154. // processEvidenceCh implements a blocking event loop where we listen for p2p
  155. // Envelope messages from the evidenceCh.
  156. func (r *Reactor) processEvidenceCh() {
  157. defer r.evidenceCh.Close()
  158. for {
  159. select {
  160. case envelope := <-r.evidenceCh.In:
  161. if err := r.handleMessage(r.evidenceCh.ID, envelope); err != nil {
  162. r.Logger.Error("failed to process message", "ch_id", r.evidenceCh.ID, "envelope", envelope, "err", err)
  163. r.evidenceCh.Error <- p2p.PeerError{
  164. NodeID: envelope.From,
  165. Err: err,
  166. }
  167. }
  168. case <-r.closeCh:
  169. r.Logger.Debug("stopped listening on evidence channel; closing...")
  170. return
  171. }
  172. }
  173. }
  174. // processPeerUpdate processes a PeerUpdate. For new or live peers it will check
  175. // if an evidence broadcasting goroutine needs to be started. For down or
  176. // removed peers, it will check if an evidence broadcasting goroutine
  177. // exists and signal that it should exit.
  178. //
  179. // FIXME: The peer may be behind in which case it would simply ignore the
  180. // evidence and treat it as invalid. This would cause the peer to disconnect.
  181. // The peer may also receive the same piece of evidence multiple times if it
  182. // connects/disconnects frequently from the broadcasting peer(s).
  183. //
  184. // REF: https://github.com/tendermint/tendermint/issues/4727
  185. func (r *Reactor) processPeerUpdate(peerUpdate p2p.PeerUpdate) {
  186. r.Logger.Debug("received peer update", "peer", peerUpdate.NodeID, "status", peerUpdate.Status)
  187. r.mtx.Lock()
  188. defer r.mtx.Unlock()
  189. switch peerUpdate.Status {
  190. case p2p.PeerStatusUp:
  191. // Do not allow starting new evidence broadcast loops after reactor shutdown
  192. // has been initiated. This can happen after we've manually closed all
  193. // peer broadcast loops and closed r.closeCh, but the router still sends
  194. // in-flight peer updates.
  195. if !r.IsRunning() {
  196. return
  197. }
  198. // Check if we've already started a goroutine for this peer, if not we create
  199. // a new done channel so we can explicitly close the goroutine if the peer
  200. // is later removed, we increment the waitgroup so the reactor can stop
  201. // safely, and finally start the goroutine to broadcast evidence to that peer.
  202. _, ok := r.peerRoutines[peerUpdate.NodeID]
  203. if !ok {
  204. closer := tmsync.NewCloser()
  205. r.peerRoutines[peerUpdate.NodeID] = closer
  206. r.peerWG.Add(1)
  207. go r.broadcastEvidenceLoop(peerUpdate.NodeID, closer)
  208. }
  209. case p2p.PeerStatusDown:
  210. // Check if we've started an evidence broadcasting goroutine for this peer.
  211. // If we have, we signal to terminate the goroutine via the channel's closure.
  212. // This will internally decrement the peer waitgroup and remove the peer
  213. // from the map of peer evidence broadcasting goroutines.
  214. closer, ok := r.peerRoutines[peerUpdate.NodeID]
  215. if ok {
  216. closer.Close()
  217. }
  218. }
  219. }
  220. // processPeerUpdates initiates a blocking process where we listen for and handle
  221. // PeerUpdate messages. When the reactor is stopped, we will catch the signal and
  222. // close the p2p PeerUpdatesCh gracefully.
  223. func (r *Reactor) processPeerUpdates() {
  224. defer r.peerUpdates.Close()
  225. for {
  226. select {
  227. case peerUpdate := <-r.peerUpdates.Updates():
  228. r.processPeerUpdate(peerUpdate)
  229. case <-r.closeCh:
  230. r.Logger.Debug("stopped listening on peer updates channel; closing...")
  231. return
  232. }
  233. }
  234. }
  235. // broadcastEvidenceLoop starts a blocking process that continuously reads pieces
  236. // of evidence off of a linked-list and sends the evidence in a p2p Envelope to
  237. // the given peer by ID. This should be invoked in a goroutine per unique peer
  238. // ID via an appropriate PeerUpdate. The goroutine can be signaled to gracefully
  239. // exit by either explicitly closing the provided doneCh or by the reactor
  240. // signaling to stop.
  241. //
  242. // TODO: This should be refactored so that we do not blindly gossip evidence
  243. // that the peer has already received or may not be ready for.
  244. //
  245. // REF: https://github.com/tendermint/tendermint/issues/4727
  246. func (r *Reactor) broadcastEvidenceLoop(peerID types.NodeID, closer *tmsync.Closer) {
  247. var next *clist.CElement
  248. defer func() {
  249. r.mtx.Lock()
  250. delete(r.peerRoutines, peerID)
  251. r.mtx.Unlock()
  252. r.peerWG.Done()
  253. if e := recover(); e != nil {
  254. r.Logger.Error("recovering from broadcasting evidence loop", "err", e)
  255. }
  256. }()
  257. for {
  258. // This happens because the CElement we were looking at got garbage
  259. // collected (removed). That is, .NextWaitChan() returned nil. So we can go
  260. // ahead and start from the beginning.
  261. if next == nil {
  262. select {
  263. case <-r.evpool.EvidenceWaitChan(): // wait until next evidence is available
  264. if next = r.evpool.EvidenceFront(); next == nil {
  265. continue
  266. }
  267. case <-closer.Done():
  268. // The peer is marked for removal via a PeerUpdate as the doneCh was
  269. // explicitly closed to signal we should exit.
  270. return
  271. case <-r.closeCh:
  272. // The reactor has signaled that we are stopped and thus we should
  273. // implicitly exit this peer's goroutine.
  274. return
  275. }
  276. }
  277. ev := next.Value.(types.Evidence)
  278. evProto, err := types.EvidenceToProto(ev)
  279. if err != nil {
  280. panic(fmt.Errorf("failed to convert evidence: %w", err))
  281. }
  282. // Send the evidence to the corresponding peer. Note, the peer may be behind
  283. // and thus would not be able to process the evidence correctly. Also, the
  284. // peer may receive this piece of evidence multiple times if it added and
  285. // removed frequently from the broadcasting peer.
  286. r.evidenceCh.Out <- p2p.Envelope{
  287. To: peerID,
  288. Message: &tmproto.EvidenceList{
  289. Evidence: []tmproto.Evidence{*evProto},
  290. },
  291. }
  292. r.Logger.Debug("gossiped evidence to peer", "evidence", ev, "peer", peerID)
  293. select {
  294. case <-time.After(time.Second * broadcastEvidenceIntervalS):
  295. // start from the beginning after broadcastEvidenceIntervalS seconds
  296. next = nil
  297. case <-next.NextWaitChan():
  298. next = next.Next()
  299. case <-closer.Done():
  300. // The peer is marked for removal via a PeerUpdate as the doneCh was
  301. // explicitly closed to signal we should exit.
  302. return
  303. case <-r.closeCh:
  304. // The reactor has signaled that we are stopped and thus we should
  305. // implicitly exit this peer's goroutine.
  306. return
  307. }
  308. }
  309. }