Skip to content

Commit

Permalink
p2p: move ping handling into pingLoop goroutine (#23)
Browse files Browse the repository at this point in the history
### Description

upstream PR:
[go-ethereum#27887](ethereum/go-ethereum#27887)

Moving the response sending there allows tracking all peer goroutines in
the peer WaitGroup.
  • Loading branch information
0xcb9ff9 committed Sep 3, 2023
1 parent 51ed537 commit c6888f5
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions p2p/peer.go
Expand Up @@ -25,7 +25,6 @@ import (
"sync"
"time"

"github.com/ethereum/go-ethereum/common/gopool"
"github.com/ethereum/go-ethereum/common/mclock"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/log"
Expand Down Expand Up @@ -113,6 +112,7 @@ type Peer struct {
wg sync.WaitGroup
protoErr chan error
closed chan struct{}
pingRecv chan struct{}
disc chan DiscReason

// events receives message send / receive events if set
Expand Down Expand Up @@ -249,6 +249,7 @@ func newPeer(log log.Logger, conn *conn, protocols []Protocol) *Peer {
disc: make(chan DiscReason),
protoErr: make(chan error, len(protomap)+1), // protocols + pingLoop
closed: make(chan struct{}),
pingRecv: make(chan struct{}, 16),
log: log.New("id", conn.node.ID(), "conn", conn.flags),
}
return p
Expand Down Expand Up @@ -309,9 +310,11 @@ loop:
}

func (p *Peer) pingLoop() {
ping := time.NewTimer(pingInterval)
defer p.wg.Done()

ping := time.NewTimer(pingInterval)
defer ping.Stop()

for {
select {
case <-ping.C:
Expand All @@ -320,6 +323,10 @@ func (p *Peer) pingLoop() {
return
}
ping.Reset(pingInterval)

case <-p.pingRecv:
SendItems(p.rw, pongMsg)

case <-p.closed:
return
}
Expand All @@ -346,9 +353,10 @@ func (p *Peer) handle(msg Msg) error {
switch {
case msg.Code == pingMsg:
msg.Discard()
gopool.Submit(func() {
SendItems(p.rw, pongMsg)
})
select {
case p.pingRecv <- struct{}{}:
case <-p.closed:
}
case msg.Code == discMsg:
// This is the last message. We don't need to discard or
// check errors because, the connection will be closed after it.
Expand Down

0 comments on commit c6888f5

Please sign in to comment.