forked from cerc-io/plugeth
Max size JSON data. Closes #418
This commit is contained in:
parent
20741a96ac
commit
676a0de58d
@ -29,6 +29,8 @@ import (
|
||||
var rpchttplogger = logger.NewLogger("RPC-HTTP")
|
||||
var JSON rpc.JsonWrapper
|
||||
|
||||
const maxSizeReqLength = 1024 * 1024 // 1MB
|
||||
|
||||
func NewRpcHttpServer(pipe *xeth.XEth, address string, port int) (*RpcHttpServer, error) {
|
||||
sport := fmt.Sprintf("%s:%d", address, port)
|
||||
l, err := net.Listen("tcp", sport)
|
||||
@ -92,6 +94,12 @@ func (s *RpcHttpServer) apiHandler(api *rpc.EthereumApi) http.Handler {
|
||||
|
||||
rpchttplogger.DebugDetailln("Handling request")
|
||||
|
||||
if req.ContentLength > maxSizeReqLength {
|
||||
jsonerr := &rpc.RpcErrorObject{-32700, "Error: Request too large"}
|
||||
JSON.Send(w, &rpc.RpcErrorResponse{JsonRpc: jsonrpcver, ID: nil, Error: jsonerr})
|
||||
return
|
||||
}
|
||||
|
||||
reqParsed, reqerr := JSON.ParseRequestBody(req)
|
||||
if reqerr != nil {
|
||||
jsonerr := &rpc.RpcErrorObject{-32700, "Error: Could not parse request"}
|
||||
|
Loading…
Reference in New Issue
Block a user