2018-03-14 09:36:59 +00:00
|
|
|
package network
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
2018-03-23 20:36:59 +00:00
|
|
|
"regexp"
|
2020-05-22 09:17:17 +00:00
|
|
|
"sync"
|
2018-03-14 09:36:59 +00:00
|
|
|
"time"
|
|
|
|
|
2019-12-30 07:43:05 +00:00
|
|
|
"go.uber.org/zap"
|
2018-03-14 09:36:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TCPTransport allows network communication over TCP.
|
|
|
|
type TCPTransport struct {
|
2019-12-30 07:43:05 +00:00
|
|
|
log *zap.Logger
|
2018-03-14 09:36:59 +00:00
|
|
|
server *Server
|
|
|
|
listener net.Listener
|
|
|
|
bindAddr string
|
2020-05-22 09:17:17 +00:00
|
|
|
lock sync.RWMutex
|
2018-03-14 09:36:59 +00:00
|
|
|
}
|
|
|
|
|
2019-02-19 13:22:33 +00:00
|
|
|
var reClosedNetwork = regexp.MustCompile(".* use of closed network connection")
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// NewTCPTransport returns a new TCPTransport that will listen for
|
2018-03-14 09:36:59 +00:00
|
|
|
// new incoming peer connections.
|
2019-12-30 07:43:05 +00:00
|
|
|
func NewTCPTransport(s *Server, bindAddr string, log *zap.Logger) *TCPTransport {
|
2018-03-14 09:36:59 +00:00
|
|
|
return &TCPTransport{
|
2019-12-30 07:43:05 +00:00
|
|
|
log: log,
|
2018-03-14 09:36:59 +00:00
|
|
|
server: s,
|
|
|
|
bindAddr: bindAddr,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dial implements the Transporter interface.
|
|
|
|
func (t *TCPTransport) Dial(addr string, timeout time.Duration) error {
|
|
|
|
conn, err := net.DialTimeout("tcp", addr, timeout)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-01-15 14:03:42 +00:00
|
|
|
p := NewTCPPeer(conn, t.server)
|
|
|
|
go p.handleConn()
|
2018-03-14 09:36:59 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accept implements the Transporter interface.
|
|
|
|
func (t *TCPTransport) Accept() {
|
|
|
|
l, err := net.Listen("tcp", t.bindAddr)
|
|
|
|
if err != nil {
|
2019-12-30 07:43:05 +00:00
|
|
|
t.log.Panic("TCP listen error", zap.Error(err))
|
2018-03-14 09:36:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-05-22 09:17:17 +00:00
|
|
|
t.lock.Lock()
|
2018-03-14 09:36:59 +00:00
|
|
|
t.listener = l
|
2020-05-22 09:17:17 +00:00
|
|
|
t.lock.Unlock()
|
2018-03-14 09:36:59 +00:00
|
|
|
|
|
|
|
for {
|
|
|
|
conn, err := l.Accept()
|
|
|
|
if err != nil {
|
2019-12-30 07:43:05 +00:00
|
|
|
t.log.Warn("TCP accept error", zap.Error(err))
|
2018-03-23 20:36:59 +00:00
|
|
|
if t.isCloseError(err) {
|
|
|
|
break
|
|
|
|
}
|
2018-03-14 09:36:59 +00:00
|
|
|
continue
|
|
|
|
}
|
2020-01-15 14:03:42 +00:00
|
|
|
p := NewTCPPeer(conn, t.server)
|
|
|
|
go p.handleConn()
|
2018-03-14 09:36:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-23 20:36:59 +00:00
|
|
|
func (t *TCPTransport) isCloseError(err error) bool {
|
|
|
|
if opErr, ok := err.(*net.OpError); ok {
|
2019-02-19 13:22:33 +00:00
|
|
|
if reClosedNetwork.Match([]byte(opErr.Error())) {
|
2018-03-23 20:36:59 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-03-14 09:36:59 +00:00
|
|
|
// Close implements the Transporter interface.
|
|
|
|
func (t *TCPTransport) Close() {
|
network: add a nil check in (*TCPTransport).Close, prevent panic
You have to try to trigger that, but in the event of server shutdown before it
actually started listening Close will easily panic like this:
2020-03-05T11:48:08.660+0300 INFO node started {"blockHeight": 6458, "headerHeight": 15605}
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x28 pc=0x9d5f0a]
goroutine 1 [running]:
github.com/nspcc-dev/neo-go/pkg/network.(*TCPTransport).Close(0xc000fd7050)
/home/rik/dev/neo-go/pkg/network/tcp_transport.go:78 +0x2a
github.com/nspcc-dev/neo-go/pkg/network.(*Server).Shutdown(0xc000182280)
/home/rik/dev/neo-go/pkg/network/server.go:190 +0x189
github.com/nspcc-dev/neo-go/cli/server.startServer(0xc000200160, 0x0, 0x0)
/home/rik/dev/neo-go/cli/server/server.go:367 +0x79e
github.com/urfave/cli.HandleAction(0xb84860, 0xccf240, 0xc000200160, 0xc0001c4500, 0x0)
/home/rik/dev/neo-go/vendor/github.com/urfave/cli/app.go:490 +0xc8
github.com/urfave/cli.Command.Run(0xc9a160, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0xca407f, 0x10, 0x0, ...)
/home/rik/dev/neo-go/vendor/github.com/urfave/cli/command.go:210 +0x996
github.com/urfave/cli.(*App).Run(0xc0001d64e0, 0xc0000ca000, 0x3, 0x3, 0x0, 0x0)
/home/rik/dev/neo-go/vendor/github.com/urfave/cli/app.go:255 +0x6af
main.main()
/home/rik/dev/neo-go/cli/main.go:25 +0x505
2020-03-05 08:53:26 +00:00
|
|
|
if t.listener != nil {
|
|
|
|
t.listener.Close()
|
|
|
|
}
|
2018-03-14 09:36:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Proto implements the Transporter interface.
|
|
|
|
func (t *TCPTransport) Proto() string {
|
|
|
|
return "tcp"
|
|
|
|
}
|
2020-05-22 09:17:17 +00:00
|
|
|
|
|
|
|
// Address implements the Transporter interface.
|
|
|
|
func (t *TCPTransport) Address() string {
|
|
|
|
t.lock.RLock()
|
|
|
|
defer t.lock.RUnlock()
|
|
|
|
if t.listener != nil {
|
|
|
|
return t.listener.Addr().String()
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|