diff options
author | Felix Lange <fjl@twurst.com> | 2016-07-12 23:42:44 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-07-23 05:21:27 +0800 |
commit | bb01bea4e276dad359815c682a2dee730737f4dc (patch) | |
tree | 9d290506199e836275f39668fff7edfde842e794 /rpc | |
parent | c145589f25445b9fb78e4556b17cde29df5b37bb (diff) | |
download | go-tangerine-bb01bea4e276dad359815c682a2dee730737f4dc.tar go-tangerine-bb01bea4e276dad359815c682a2dee730737f4dc.tar.gz go-tangerine-bb01bea4e276dad359815c682a2dee730737f4dc.tar.bz2 go-tangerine-bb01bea4e276dad359815c682a2dee730737f4dc.tar.lz go-tangerine-bb01bea4e276dad359815c682a2dee730737f4dc.tar.xz go-tangerine-bb01bea4e276dad359815c682a2dee730737f4dc.tar.zst go-tangerine-bb01bea4e276dad359815c682a2dee730737f4dc.zip |
rpc: fix bad method error for batch requests
If a batch request contained an invalid method, the server would reply
with a non-batch error response. Fix this by tracking an error for each
batch element.
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/json.go | 16 | ||||
-rw-r--r-- | rpc/server.go | 7 | ||||
-rw-r--r-- | rpc/types.go | 1 |
3 files changed, 15 insertions, 9 deletions
diff --git a/rpc/json.go b/rpc/json.go index 151ed546e..ee931bc87 100644 --- a/rpc/json.go +++ b/rpc/json.go @@ -182,12 +182,12 @@ func parseRequest(incomingMsg json.RawMessage) ([]rpcRequest, bool, RPCError) { method: unsubscribeMethod, params: in.Payload}}, false, nil } - // regular RPC call elems := strings.Split(in.Method, serviceMethodSeparator) if len(elems) != 2 { return nil, false, &methodNotFoundError{in.Method, ""} } + // regular RPC call if len(in.Payload) == 0 { return []rpcRequest{rpcRequest{service: elems[0], method: elems[1], id: &in.Id}}, false, nil } @@ -236,15 +236,15 @@ func parseBatchRequest(incomingMsg json.RawMessage) ([]rpcRequest, bool, RPCErro continue } - elems := strings.Split(r.Method, serviceMethodSeparator) - if len(elems) != 2 { - return nil, true, &methodNotFoundError{r.Method, ""} - } - if len(r.Payload) == 0 { - requests[i] = rpcRequest{service: elems[0], method: elems[1], id: id, params: nil} + requests[i] = rpcRequest{id: id, params: nil} + } else { + requests[i] = rpcRequest{id: id, params: r.Payload} + } + if elem := strings.Split(r.Method, serviceMethodSeparator); len(elem) == 2 { + requests[i].service, requests[i].method = elem[0], elem[1] } else { - requests[i] = rpcRequest{service: elems[0], method: elems[1], id: id, params: r.Payload} + requests[i].err = &methodNotFoundError{r.Method, ""} } } diff --git a/rpc/server.go b/rpc/server.go index 80976ed62..a9bdef285 100644 --- a/rpc/server.go +++ b/rpc/server.go @@ -180,7 +180,7 @@ func (s *Server) serveRequest(codec ServerCodec, singleShot bool, options CodecO for atomic.LoadInt32(&s.run) == 1 { reqs, batch, err := s.readRequest(codec) if err != nil { - glog.V(logger.Debug).Infof("%v\n", err) + glog.V(logger.Debug).Infof("read error %v\n", err) codec.Write(codec.CreateErrorResponse(nil, err)) return nil } @@ -394,6 +394,11 @@ func (s *Server) readRequest(codec ServerCodec) ([]*serverRequest, bool, RPCErro var ok bool var svc *service + if r.err != nil { + requests[i] = &serverRequest{id: r.id, err: r.err} + continue + } + if r.isPubSub && r.method == unsubscribeMethod { requests[i] = &serverRequest{id: r.id, isUnsubscribe: true} argTypes := []reflect.Type{reflect.TypeOf("")} // expect subscription id as first arg diff --git a/rpc/types.go b/rpc/types.go index a1f36fbd2..460581715 100644 --- a/rpc/types.go +++ b/rpc/types.go @@ -88,6 +88,7 @@ type rpcRequest struct { id interface{} isPubSub bool params interface{} + err RPCError // invalid batch element } // RPCError implements RPC error, is add support for error codec over regular go errors |