Skip to content

Commit

Permalink
Allow respWriterWrapper to call ResponseWriter.WriteHeader multiple t…
Browse files Browse the repository at this point in the history
…imes (#3580)

* Allow respWriterWrapper to call ResponseWriter.WriteHeader multiple times

otelhttp respWriterWrapper no longer interrupts WriteHeader calls to underlying ResponseWriters.
This allows stdlib net/http to handle and log incorrect usage of WriteHeader.

* Update CHANGELOG with changes to wrapped ResponseWriter

* Ensure http response wrapper retains initial status where multiple statuses are written

* Test propagation of all WriteHeader calls in otelhttp

* Documenting how otelhttp.Handler allows propagating WriteHeader calls

We explicitly capture initial statusCode written while propagating all
consecutive calls to the wrapped ResponseWriter without altering state.

* Apply suggestions from code review

Co-authored-by: Robert Pająk <pellared@hotmail.com>

* Update CHANGELOG.md

* Move changelog entry to unreleased

* Revert unrelated changes to changelog

---------

Co-authored-by: Robert Pająk <pellared@hotmail.com>
Co-authored-by: Chester Cheung <cheung.zhy.csu@gmail.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Co-authored-by: Tyler Yahn <codingalias@gmail.com>
  • Loading branch information
5 people committed Apr 26, 2023
1 parent f398558 commit 830138c
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

- The error received by `otelecho` middleware is then passed back to upstream middleware instead of being swallowed. (#3656)
- Prevent taking from reservoir in AWS XRay Remote Sampler when there is zero capacity in `go.opentelemetry.io/contrib/samplers/aws/xray`. (#3684)
- Fix `otelhttp.Handler` in `go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp` to propagate multiple `WriteHeader` calls while persisting the initial `statusCode`. (#3580)

## [1.16.0-rc.2/0.41.0-rc.2/0.10.0-rc.2] - 2023-03-23

Expand Down
76 changes: 76 additions & 0 deletions instrumentation/net/http/otelhttp/test/handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,16 @@ func TestHandlerEmittedAttributes(t *testing.T) {
attribute.Int("http.status_code", http.StatusOK),
},
},
{
name: "With persisting initial failing status in handler with multiple WriteHeader calls",
handler: func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusInternalServerError)
w.WriteHeader(http.StatusOK)
},
attributes: []attribute.KeyValue{
attribute.Int("http.status_code", http.StatusInternalServerError),
},
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
Expand All @@ -201,6 +211,72 @@ func TestHandlerEmittedAttributes(t *testing.T) {
}
}

type respWriteHeaderCounter struct {
http.ResponseWriter

headersWritten []int
}

func (rw *respWriteHeaderCounter) WriteHeader(statusCode int) {
rw.headersWritten = append(rw.headersWritten, statusCode)
rw.ResponseWriter.WriteHeader(statusCode)
}

func TestHandlerPropagateWriteHeaderCalls(t *testing.T) {
testCases := []struct {
name string
handler func(http.ResponseWriter, *http.Request)
expectHeadersWritten []int
}{
{
name: "With a success handler",
handler: func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
},
expectHeadersWritten: []int{http.StatusOK},
},
{
name: "With a failing handler",
handler: func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusBadRequest)
},
expectHeadersWritten: []int{http.StatusBadRequest},
},
{
name: "With an empty handler",
handler: func(w http.ResponseWriter, r *http.Request) {
},

expectHeadersWritten: nil,
},
{
name: "With calling WriteHeader twice",
handler: func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusInternalServerError)
w.WriteHeader(http.StatusOK)
},
expectHeadersWritten: []int{http.StatusInternalServerError, http.StatusOK},
},
}

for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
sr := tracetest.NewSpanRecorder()
provider := sdktrace.NewTracerProvider()
provider.RegisterSpanProcessor(sr)
h := otelhttp.NewHandler(
http.HandlerFunc(tc.handler), "test_handler",
otelhttp.WithTracerProvider(provider),
)

recorder := httptest.NewRecorder()
rw := &respWriteHeaderCounter{ResponseWriter: recorder}
h.ServeHTTP(rw, httptest.NewRequest("GET", "/", nil))
require.EqualValues(t, tc.expectHeadersWritten, rw.headersWritten, "should propagate all WriteHeader calls to underlying ResponseWriter")
})
}
}

func TestHandlerRequestWithTraceContext(t *testing.T) {
rr := httptest.NewRecorder()

Expand Down
14 changes: 9 additions & 5 deletions instrumentation/net/http/otelhttp/wrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (w *bodyWrapper) Close() error {
var _ http.ResponseWriter = &respWriterWrapper{}

// respWriterWrapper wraps a http.ResponseWriter in order to track the number of
// bytes written, the last error, and to catch the returned statusCode
// bytes written, the last error, and to catch the first written statusCode.
// TODO: The wrapped http.ResponseWriter doesn't implement any of the optional
// types (http.Hijacker, http.Pusher, http.CloseNotifier, http.Flusher, etc)
// that may be useful when using it in real life situations.
Expand Down Expand Up @@ -85,11 +85,15 @@ func (w *respWriterWrapper) Write(p []byte) (int, error) {
return n, err
}

// WriteHeader persists initial statusCode for span attribution.
// All calls to WriteHeader will be propagated to the underlying ResponseWriter
// and will persist the statusCode from the first call.
// Blocking consecutive calls to WriteHeader alters expected behavior and will
// remove warning logs from net/http where developers will notice incorrect handler implementations.
func (w *respWriterWrapper) WriteHeader(statusCode int) {
if w.wroteHeader {
return
if !w.wroteHeader {
w.wroteHeader = true
w.statusCode = statusCode
}
w.wroteHeader = true
w.statusCode = statusCode
w.ResponseWriter.WriteHeader(statusCode)
}

0 comments on commit 830138c

Please sign in to comment.