Skip to content

Commit

Permalink
Revert "caddyhttp: Use sync.Pool to reduce lengthReader allocations (#…
Browse files Browse the repository at this point in the history
…5848)"

This reverts commit c8559c4.

Resolving the following panic:
```
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0x122f9b5]

goroutine 222573 [running]:
github.com/caddyserver/caddy/v2/modules/caddyhttp.(*lengthReader).Close(0x0?)
	github.com/caddyserver/caddy/[email protected]/modules/caddyhttp/server.go:931 +0x15
golang.org/x/net/http2.(*clientStream).cleanupWriteRequest(0xc000e49980, {0x0, 0x0})
	golang.org/x/[email protected]/http2/transport.go:1550 +0x1a2
golang.org/x/net/http2.(*clientStream).doRequest(0xc000e58f00?, 0x0?)
	golang.org/x/[email protected]/http2/transport.go:1327 +0x28
created by golang.org/x/net/http2.(*ClientConn).RoundTrip in goroutine 222537
	golang.org/x/[email protected]/http2/transport.go:1232 +0x308
```
  • Loading branch information
mohammed90 committed Nov 1, 2023
1 parent ee35855 commit f052669
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions modules/caddyhttp/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,7 @@ func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// so we can track the number of bytes read from it
var bodyReader *lengthReader
if r.Body != nil {
bodyReader = getLengthReader(r.Body)
defer putLengthReader(bodyReader)
bodyReader = &lengthReader{Source: r.Body}
r.Body = bodyReader
}

Expand Down Expand Up @@ -903,24 +902,6 @@ type lengthReader struct {
Length int
}

var lengthReaderPool = sync.Pool{
New: func() interface{} {
return &lengthReader{}
},
}

func getLengthReader(source io.ReadCloser) *lengthReader {
reader := lengthReaderPool.Get().(*lengthReader)
reader.Source = source
return reader
}

func putLengthReader(reader *lengthReader) {
reader.Source = nil
reader.Length = 0
lengthReaderPool.Put(reader)
}

func (r *lengthReader) Read(b []byte) (int, error) {
n, err := r.Source.Read(b)
r.Length += n
Expand Down

0 comments on commit f052669

Please sign in to comment.