"git@web.lueluesay.top:root/pkg-iptables.git" did not exist on "2aa3c4567824de026ace0d565584a4fcb70d851d"
Commit 333ef67d authored by Jeromy's avatar Jeromy
Browse files

quick fix for OOM panic that has been plaguing us

parent f62ab58c
...@@ -15,6 +15,10 @@ import ( ...@@ -15,6 +15,10 @@ import (
context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context" context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
) )
const MaxMsgSize = 8 * 1024 * 1024
var ErrMaxMessageSize = errors.New("attempted to read message larger than max size")
// ErrMACInvalid signals that a MAC verification failed // ErrMACInvalid signals that a MAC verification failed
var ErrMACInvalid = errors.New("MAC verification failed") var ErrMACInvalid = errors.New("MAC verification failed")
...@@ -130,6 +134,10 @@ func (r *etmReader) Read(buf []byte) (int, error) { ...@@ -130,6 +134,10 @@ func (r *etmReader) Read(buf []byte) (int, error) {
return 0, err return 0, err
} }
if fullLen > MaxMsgSize {
return 0, ErrMaxMessageSize
}
buf2 := buf buf2 := buf
changed := false changed := false
// if not enough space, allocate a new buffer. // if not enough space, allocate a new buffer.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment