@ -2,14 +2,12 @@
package server
package server
import (
import (
"bufio"
"context"
"context"
"encoding/json"
"encoding/json"
"errors"
"errors"
"fmt"
"fmt"
"net"
"net"
"net/http"
"net/http"
"os"
"runtime/debug"
"runtime/debug"
"strings"
"strings"
"time"
"time"
@ -47,10 +45,7 @@ func DefaultConfig() *Config {
}
}
// Serve creates a http.Server and calls Serve with the given listener. It
// Serve creates a http.Server and calls Serve with the given listener. It
// wraps handler with RecoverAndLogHandler and a handler, which limits the max
// body size to config.MaxBodyBytes.
//
// NOTE: This function blocks - you may want to call it in a go-routine.
// wraps handler to recover panics and limit the request body size.
func Serve (
func Serve (
ctx context . Context ,
ctx context . Context ,
listener net . Listener ,
listener net . Listener ,
@ -59,8 +54,9 @@ func Serve(
config * Config ,
config * Config ,
) error {
) error {
logger . Info ( fmt . Sprintf ( "Starting RPC HTTP server on %s" , listener . Addr ( ) ) )
logger . Info ( fmt . Sprintf ( "Starting RPC HTTP server on %s" , listener . Addr ( ) ) )
h := recoverAndLogHandler ( MaxBytesHandler ( handler , config . MaxBodyBytes ) , logger )
s := & http . Server {
s := & http . Server {
Handler : RecoverAndLogHandler ( maxBytesHandler { h : handler , n : config . MaxBodyBytes } , logger ) ,
Handler : h ,
ReadTimeout : config . ReadTimeout ,
ReadTimeout : config . ReadTimeout ,
WriteTimeout : config . WriteTimeout ,
WriteTimeout : config . WriteTimeout ,
MaxHeaderBytes : config . MaxHeaderBytes ,
MaxHeaderBytes : config . MaxHeaderBytes ,
@ -85,10 +81,8 @@ func Serve(
}
}
// Serve creates a http.Server and calls ServeTLS with the given listener,
// Serve creates a http.Server and calls ServeTLS with the given listener,
// certFile and keyFile. It wraps handler with RecoverAndLogHandler and a
// handler, which limits the max body size to config.MaxBodyBytes.
//
// NOTE: This function blocks - you may want to call it in a go-routine.
// certFile and keyFile. It wraps handler to recover panics and limit the
// request body size.
func ServeTLS (
func ServeTLS (
ctx context . Context ,
ctx context . Context ,
listener net . Listener ,
listener net . Listener ,
@ -99,8 +93,9 @@ func ServeTLS(
) error {
) error {
logger . Info ( fmt . Sprintf ( "Starting RPC HTTPS server on %s (cert: %q, key: %q)" ,
logger . Info ( fmt . Sprintf ( "Starting RPC HTTPS server on %s (cert: %q, key: %q)" ,
listener . Addr ( ) , certFile , keyFile ) )
listener . Addr ( ) , certFile , keyFile ) )
h := recoverAndLogHandler ( MaxBytesHandler ( handler , config . MaxBodyBytes ) , logger )
s := & http . Server {
s := & http . Server {
Handler : RecoverAndLogHandler ( maxBytesHandler { h : handler , n : config . MaxBodyBytes } , logger ) ,
Handler : h ,
ReadTimeout : config . ReadTimeout ,
ReadTimeout : config . ReadTimeout ,
WriteTimeout : config . WriteTimeout ,
WriteTimeout : config . WriteTimeout ,
MaxHeaderBytes : config . MaxHeaderBytes ,
MaxHeaderBytes : config . MaxHeaderBytes ,
@ -180,100 +175,100 @@ func writeRPCResponse(w http.ResponseWriter, log log.Logger, rsps ...rpctypes.RP
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// R ecoverAndLogHandler wraps an HTTP handler, adding error logging.
// If the inner function panics, the outer function recovers, logs, sends an
// HTTP 500 error response.
func R ecoverAndLogHandler( handler http . Handler , logger log . Logger ) http . Handler {
// r ecoverAndLogHandler wraps an HTTP handler, adding error logging. If the
// inner handler panics, the wrapper recovers, logs, sends an HTTP 500 error
// response to the client .
func r ecoverAndLogHandler( handler http . Handler , logger log . Logger ) http . Handler {
return http . HandlerFunc ( func ( w http . ResponseWriter , r * http . Request ) {
return http . HandlerFunc ( func ( w http . ResponseWriter , r * http . Request ) {
// Wrap the ResponseWriter to remember the status
rww := & responseWriterWrapper { - 1 , w }
begin := time . Now ( )
rww . Header ( ) . Set ( "X-Server-Time" , fmt . Sprintf ( "%v" , begin . Unix ( ) ) )
// Capture the HTTP status written by the handler.
var httpStatus int
rww := newStatusWriter ( w , & httpStatus )
// Recover panics from inside handler and try to send the client
// 500 Internal server error. If the handler panicked after already
// sending a (partial) response, this is a no-op.
defer func ( ) {
defer func ( ) {
// Handle any panics in the panic handler below. Does not use the logger, since we want
// to avoid any further panics. However, we try to return a 500, since it otherwise
// defaults to 200 and there is no other way to terminate the connection. If that
// should panic for whatever reason then the Go HTTP server will handle it and
// terminate the connection - panicing is the de-facto and only way to get the Go HTTP
// server to terminate the request and close the connection/stream:
// https://github.com/golang/go/issues/17790#issuecomment-258481416
if e := recover ( ) ; e != nil {
fmt . Fprintf ( os . Stderr , "Panic during RPC panic recovery: %v\n%v\n" , e , string ( debug . Stack ( ) ) )
w . WriteHeader ( 500 )
if v := recover ( ) ; v != nil {
var err error
switch e := v . ( type ) {
case error :
err = e
case string :
err = errors . New ( e )
case fmt . Stringer :
err = errors . New ( e . String ( ) )
default :
err = fmt . Errorf ( "panic with value %v" , v )
}
logger . Error ( "Panic in RPC HTTP handler" ,
"err" , err , "stack" , string ( debug . Stack ( ) ) )
writeInternalError ( rww , err )
}
}
} ( )
} ( )
// Log timing and response information from the handler.
begin := time . Now ( )
defer func ( ) {
defer func ( ) {
// Send a 500 error if a panic happens during a handler.
// Without this, Chrome & Firefox were retrying aborted ajax requests,
// at least to my localhost.
if e := recover ( ) ; e != nil {
// If RPCResponse
if res , ok := e . ( rpctypes . RPCResponse ) ; ok {
writeRPCResponse ( rww , logger , res )
} else {
// Panics can contain anything, attempt to normalize it as an error.
var err error
switch e := e . ( type ) {
case error :
err = e
case string :
err = errors . New ( e )
case fmt . Stringer :
err = errors . New ( e . String ( ) )
default :
}
logger . Error ( "Panic in RPC HTTP handler" , "err" , e , "stack" , string ( debug . Stack ( ) ) )
writeInternalError ( rww , err )
}
}
// Finally, log.
durationMS := time . Since ( begin ) . Nanoseconds ( ) / 1000000
if rww . Status == - 1 {
rww . Status = 200
}
elapsed := time . Since ( begin )
logger . Debug ( "served RPC HTTP response" ,
logger . Debug ( "served RPC HTTP response" ,
"method" , r . Method ,
"method" , r . Method ,
"url" , r . URL ,
"url" , r . URL ,
"status" , rww . Status ,
"duration" , durationMS ,
"status" , httpStatus ,
"duration-sec" , elapsed . Seconds ( ) ,
"remoteAddr" , r . RemoteAddr ,
"remoteAddr" , r . RemoteAddr ,
)
)
} ( )
} ( )
rww . Header ( ) . Set ( "X-Server-Time" , fmt . Sprintf ( "%v" , begin . Unix ( ) ) )
handler . ServeHTTP ( rww , r )
handler . ServeHTTP ( rww , r )
} )
} )
}
}
// Remember the status for logging
type responseWriterWrapper struct {
Status int
http . ResponseWriter
// MaxBytesHandler wraps h in a handler that limits the size of the request
// body to at most maxBytes. If maxBytes <= 0, the request body is not limited.
func MaxBytesHandler ( h http . Handler , maxBytes int64 ) http . Handler {
if maxBytes <= 0 {
return h
}
return maxBytesHandler { handler : h , maxBytes : maxBytes }
}
}
func ( w * responseWriterWrapper ) WriteHeader ( status int ) {
w . Status = status
w . ResponseWriter . WriteHeader ( status )
type maxBytesHandler struct {
handler http . Handler
maxBytes int64
}
}
// implements http.Hijacker
func ( w * responseWriterWrapper ) Hijack ( ) ( net . Conn , * bufio . ReadWriter , error ) {
return w . ResponseWriter . ( http . Hijacker ) . Hijack ( )
func ( h maxBytesHandler ) ServeHTTP ( w http . ResponseWriter , req * http . Request ) {
req . Body = http . MaxBytesReader ( w , req . Body , h . maxBytes )
h . handler . ServeHTTP ( w , req )
}
}
type maxBytesHandler struct {
h http . Handler
n int64
// newStatusWriter wraps an http.ResponseWriter to capture the HTTP status code
// in *code.
func newStatusWriter ( w http . ResponseWriter , code * int ) statusWriter {
return statusWriter {
ResponseWriter : w ,
Hijacker : w . ( http . Hijacker ) ,
code : code ,
}
}
type statusWriter struct {
http . ResponseWriter
http . Hijacker // to support websocket upgrade
code * int
}
}
func ( h maxBytesHandler ) ServeHTTP ( w http . ResponseWriter , r * http . Request ) {
r . Body = http . MaxBytesReader ( w , r . Body , h . n )
h . h . ServeHTTP ( w , r )
// WriteHeader implements part of http.ResponseWriter. It delegates to the
// wrapped writer, and as a side effect captures the written code.
//
// Note that if a request does not explicitly call WriteHeader, the code will
// not be updated.
func ( w statusWriter ) WriteHeader ( code int ) {
* w . code = code
w . ResponseWriter . WriteHeader ( code )
}
}
// Listen starts a new net.Listener on the given address.
// Listen starts a new net.Listener on the given address.