forked from cerc-io/plugeth
Merge tag 'v1.10.9' into develop
Notes: the AppendAncient plugin hook is broken by this commit. This adds CaptureEnter() and CaptureExit() as no-ops for interface compliance, but these capabilities should be added for plugin tracers soon.
This commit is contained in:
+33
-11
@@ -59,6 +59,12 @@ const (
|
||||
maxClientSubscriptionBuffer = 20000
|
||||
)
|
||||
|
||||
const (
|
||||
httpScheme = "http"
|
||||
wsScheme = "ws"
|
||||
ipcScheme = "ipc"
|
||||
)
|
||||
|
||||
// BatchElem is an element in a batch request.
|
||||
type BatchElem struct {
|
||||
Method string
|
||||
@@ -75,7 +81,7 @@ type BatchElem struct {
|
||||
// Client represents a connection to an RPC server.
|
||||
type Client struct {
|
||||
idgen func() ID // for subscriptions
|
||||
isHTTP bool
|
||||
scheme string // connection type: http, ws or ipc
|
||||
services *serviceRegistry
|
||||
|
||||
idCounter uint32
|
||||
@@ -111,6 +117,10 @@ type clientConn struct {
|
||||
|
||||
func (c *Client) newClientConn(conn ServerCodec) *clientConn {
|
||||
ctx := context.WithValue(context.Background(), clientContextKey{}, c)
|
||||
// Http connections have already set the scheme
|
||||
if !c.isHTTP() && c.scheme != "" {
|
||||
ctx = context.WithValue(ctx, "scheme", c.scheme)
|
||||
}
|
||||
handler := newHandler(ctx, conn, c.idgen, c.services)
|
||||
return &clientConn{conn, handler}
|
||||
}
|
||||
@@ -136,7 +146,7 @@ func (op *requestOp) wait(ctx context.Context, c *Client) (*jsonrpcMessage, erro
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
// Send the timeout to dispatch so it can remove the request IDs.
|
||||
if !c.isHTTP {
|
||||
if !c.isHTTP() {
|
||||
select {
|
||||
case c.reqTimeout <- op:
|
||||
case <-c.closing:
|
||||
@@ -203,10 +213,18 @@ func newClient(initctx context.Context, connect reconnectFunc) (*Client, error)
|
||||
}
|
||||
|
||||
func initClient(conn ServerCodec, idgen func() ID, services *serviceRegistry) *Client {
|
||||
_, isHTTP := conn.(*httpConn)
|
||||
scheme := ""
|
||||
switch conn.(type) {
|
||||
case *httpConn:
|
||||
scheme = httpScheme
|
||||
case *websocketCodec:
|
||||
scheme = wsScheme
|
||||
case *jsonCodec:
|
||||
scheme = ipcScheme
|
||||
}
|
||||
c := &Client{
|
||||
idgen: idgen,
|
||||
isHTTP: isHTTP,
|
||||
scheme: scheme,
|
||||
services: services,
|
||||
writeConn: conn,
|
||||
close: make(chan struct{}),
|
||||
@@ -219,7 +237,7 @@ func initClient(conn ServerCodec, idgen func() ID, services *serviceRegistry) *C
|
||||
reqSent: make(chan error, 1),
|
||||
reqTimeout: make(chan *requestOp),
|
||||
}
|
||||
if !isHTTP {
|
||||
if !c.isHTTP() {
|
||||
go c.dispatch(conn)
|
||||
}
|
||||
return c
|
||||
@@ -250,7 +268,7 @@ func (c *Client) SupportedModules() (map[string]string, error) {
|
||||
|
||||
// Close closes the client, aborting any in-flight requests.
|
||||
func (c *Client) Close() {
|
||||
if c.isHTTP {
|
||||
if c.isHTTP() {
|
||||
return
|
||||
}
|
||||
select {
|
||||
@@ -264,7 +282,7 @@ func (c *Client) Close() {
|
||||
// This method only works for clients using HTTP, it doesn't have
|
||||
// any effect for clients using another transport.
|
||||
func (c *Client) SetHeader(key, value string) {
|
||||
if !c.isHTTP {
|
||||
if !c.isHTTP() {
|
||||
return
|
||||
}
|
||||
conn := c.writeConn.(*httpConn)
|
||||
@@ -298,7 +316,7 @@ func (c *Client) CallContext(ctx context.Context, result interface{}, method str
|
||||
}
|
||||
op := &requestOp{ids: []json.RawMessage{msg.ID}, resp: make(chan *jsonrpcMessage, 1)}
|
||||
|
||||
if c.isHTTP {
|
||||
if c.isHTTP() {
|
||||
err = c.sendHTTP(ctx, op, msg)
|
||||
} else {
|
||||
err = c.send(ctx, op, msg)
|
||||
@@ -357,7 +375,7 @@ func (c *Client) BatchCallContext(ctx context.Context, b []BatchElem) error {
|
||||
}
|
||||
|
||||
var err error
|
||||
if c.isHTTP {
|
||||
if c.isHTTP() {
|
||||
err = c.sendBatchHTTP(ctx, op, msgs)
|
||||
} else {
|
||||
err = c.send(ctx, op, msgs)
|
||||
@@ -402,7 +420,7 @@ func (c *Client) Notify(ctx context.Context, method string, args ...interface{})
|
||||
}
|
||||
msg.ID = nil
|
||||
|
||||
if c.isHTTP {
|
||||
if c.isHTTP() {
|
||||
return c.sendHTTP(ctx, op, msg)
|
||||
}
|
||||
return c.send(ctx, op, msg)
|
||||
@@ -440,7 +458,7 @@ func (c *Client) Subscribe(ctx context.Context, namespace string, channel interf
|
||||
if chanVal.IsNil() {
|
||||
panic("channel given to Subscribe must not be nil")
|
||||
}
|
||||
if c.isHTTP {
|
||||
if c.isHTTP() {
|
||||
return nil, ErrNotificationsUnsupported
|
||||
}
|
||||
|
||||
@@ -642,3 +660,7 @@ func (c *Client) read(codec ServerCodec) {
|
||||
c.readOp <- readOp{msgs, batch}
|
||||
}
|
||||
}
|
||||
|
||||
func (c *Client) isHTTP() bool {
|
||||
return c.scheme == httpScheme
|
||||
}
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
//go:build darwin || dragonfly || freebsd || linux || nacl || netbsd || openbsd || solaris
|
||||
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris
|
||||
|
||||
package rpc
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
//go:build !cgo && !windows
|
||||
// +build !cgo,!windows
|
||||
|
||||
package rpc
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
//go:build js
|
||||
// +build js
|
||||
|
||||
package rpc
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
//go:build darwin || dragonfly || freebsd || linux || nacl || netbsd || openbsd || solaris
|
||||
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris
|
||||
|
||||
package rpc
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
//go:build windows
|
||||
// +build windows
|
||||
|
||||
package rpc
|
||||
|
||||
@@ -98,6 +98,22 @@ func (bn *BlockNumber) UnmarshalJSON(data []byte) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// MarshalText implements encoding.TextMarshaler. It marshals:
|
||||
// - "latest", "earliest" or "pending" as strings
|
||||
// - other numbers as hex
|
||||
func (bn BlockNumber) MarshalText() ([]byte, error) {
|
||||
switch bn {
|
||||
case EarliestBlockNumber:
|
||||
return []byte("earliest"), nil
|
||||
case LatestBlockNumber:
|
||||
return []byte("latest"), nil
|
||||
case PendingBlockNumber:
|
||||
return []byte("pending"), nil
|
||||
default:
|
||||
return hexutil.Uint64(bn).MarshalText()
|
||||
}
|
||||
}
|
||||
|
||||
func (bn BlockNumber) Int64() int64 {
|
||||
return (int64)(bn)
|
||||
}
|
||||
|
||||
@@ -18,6 +18,7 @@ package rpc
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
@@ -122,3 +123,33 @@ func TestBlockNumberOrHash_UnmarshalJSON(t *testing.T) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestBlockNumberOrHash_WithNumber_MarshalAndUnmarshal(t *testing.T) {
|
||||
tests := []struct {
|
||||
name string
|
||||
number int64
|
||||
}{
|
||||
{"max", math.MaxInt64},
|
||||
{"pending", int64(PendingBlockNumber)},
|
||||
{"latest", int64(LatestBlockNumber)},
|
||||
{"earliest", int64(EarliestBlockNumber)},
|
||||
}
|
||||
for _, test := range tests {
|
||||
test := test
|
||||
t.Run(test.name, func(t *testing.T) {
|
||||
bnh := BlockNumberOrHashWithNumber(BlockNumber(test.number))
|
||||
marshalled, err := json.Marshal(bnh)
|
||||
if err != nil {
|
||||
t.Fatal("cannot marshal:", err)
|
||||
}
|
||||
var unmarshalled BlockNumberOrHash
|
||||
err = json.Unmarshal(marshalled, &unmarshalled)
|
||||
if err != nil {
|
||||
t.Fatal("cannot unmarshal:", err)
|
||||
}
|
||||
if !reflect.DeepEqual(bnh, unmarshalled) {
|
||||
t.Fatalf("wrong result: expected %v, got %v", bnh, unmarshalled)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,6 +37,7 @@ const (
|
||||
wsWriteBuffer = 1024
|
||||
wsPingInterval = 60 * time.Second
|
||||
wsPingWriteTimeout = 5 * time.Second
|
||||
wsPongTimeout = 30 * time.Second
|
||||
wsMessageSizeLimit = 15 * 1024 * 1024
|
||||
)
|
||||
|
||||
@@ -241,6 +242,10 @@ type websocketCodec struct {
|
||||
|
||||
func newWebsocketCodec(conn *websocket.Conn) ServerCodec {
|
||||
conn.SetReadLimit(wsMessageSizeLimit)
|
||||
conn.SetPongHandler(func(appData string) error {
|
||||
conn.SetReadDeadline(time.Time{})
|
||||
return nil
|
||||
})
|
||||
wc := &websocketCodec{
|
||||
jsonCodec: NewFuncCodec(conn, conn.WriteJSON, conn.ReadJSON).(*jsonCodec),
|
||||
conn: conn,
|
||||
@@ -287,6 +292,7 @@ func (wc *websocketCodec) pingLoop() {
|
||||
wc.jsonCodec.encMu.Lock()
|
||||
wc.conn.SetWriteDeadline(time.Now().Add(wsPingWriteTimeout))
|
||||
wc.conn.WriteMessage(websocket.PingMessage, nil)
|
||||
wc.conn.SetReadDeadline(time.Now().Add(wsPongTimeout))
|
||||
wc.jsonCodec.encMu.Unlock()
|
||||
timer.Reset(wsPingInterval)
|
||||
}
|
||||
|
||||
@@ -18,11 +18,15 @@ package rpc
|
||||
|
||||
import (
|
||||
"context"
|
||||
"io"
|
||||
"net"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"net/http/httputil"
|
||||
"net/url"
|
||||
"reflect"
|
||||
"strings"
|
||||
"sync/atomic"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
@@ -188,6 +192,63 @@ func TestClientWebsocketLargeMessage(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestClientWebsocketSevered(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
var (
|
||||
server = wsPingTestServer(t, nil)
|
||||
ctx = context.Background()
|
||||
)
|
||||
defer server.Shutdown(ctx)
|
||||
|
||||
u, err := url.Parse("http://" + server.Addr)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
rproxy := httputil.NewSingleHostReverseProxy(u)
|
||||
var severable *severableReadWriteCloser
|
||||
rproxy.ModifyResponse = func(response *http.Response) error {
|
||||
severable = &severableReadWriteCloser{ReadWriteCloser: response.Body.(io.ReadWriteCloser)}
|
||||
response.Body = severable
|
||||
return nil
|
||||
}
|
||||
frontendProxy := httptest.NewServer(rproxy)
|
||||
defer frontendProxy.Close()
|
||||
|
||||
wsURL := "ws:" + strings.TrimPrefix(frontendProxy.URL, "http:")
|
||||
client, err := DialWebsocket(ctx, wsURL, "")
|
||||
if err != nil {
|
||||
t.Fatalf("client dial error: %v", err)
|
||||
}
|
||||
defer client.Close()
|
||||
|
||||
resultChan := make(chan int)
|
||||
sub, err := client.EthSubscribe(ctx, resultChan, "foo")
|
||||
if err != nil {
|
||||
t.Fatalf("client subscribe error: %v", err)
|
||||
}
|
||||
|
||||
// sever the connection
|
||||
severable.Sever()
|
||||
|
||||
// Wait for subscription error.
|
||||
timeout := time.NewTimer(3 * wsPingInterval)
|
||||
defer timeout.Stop()
|
||||
for {
|
||||
select {
|
||||
case err := <-sub.Err():
|
||||
t.Log("client subscription error:", err)
|
||||
return
|
||||
case result := <-resultChan:
|
||||
t.Error("unexpected result:", result)
|
||||
return
|
||||
case <-timeout.C:
|
||||
t.Error("didn't get any error within the test timeout")
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// wsPingTestServer runs a WebSocket server which accepts a single subscription request.
|
||||
// When a value arrives on sendPing, the server sends a ping frame, waits for a matching
|
||||
// pong and finally delivers a single subscription result.
|
||||
@@ -290,3 +351,31 @@ func wsPingTestHandler(t *testing.T, conn *websocket.Conn, shutdown, sendPing <-
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// severableReadWriteCloser wraps an io.ReadWriteCloser and provides a Sever() method to drop writes and read empty.
|
||||
type severableReadWriteCloser struct {
|
||||
io.ReadWriteCloser
|
||||
severed int32 // atomic
|
||||
}
|
||||
|
||||
func (s *severableReadWriteCloser) Sever() {
|
||||
atomic.StoreInt32(&s.severed, 1)
|
||||
}
|
||||
|
||||
func (s *severableReadWriteCloser) Read(p []byte) (n int, err error) {
|
||||
if atomic.LoadInt32(&s.severed) > 0 {
|
||||
return 0, nil
|
||||
}
|
||||
return s.ReadWriteCloser.Read(p)
|
||||
}
|
||||
|
||||
func (s *severableReadWriteCloser) Write(p []byte) (n int, err error) {
|
||||
if atomic.LoadInt32(&s.severed) > 0 {
|
||||
return len(p), nil
|
||||
}
|
||||
return s.ReadWriteCloser.Write(p)
|
||||
}
|
||||
|
||||
func (s *severableReadWriteCloser) Close() error {
|
||||
return s.ReadWriteCloser.Close()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user