http3: ignore context after response when using DontCloseRequestStream (#3473)

This commit is contained in:
Marten Seemann 2022-07-24 19:58:12 +01:00 committed by GitHub
parent f29dd273b4
commit 61ca8e89fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 37 additions and 3 deletions

View file

@ -110,7 +110,9 @@ func (r *hijackableBody) requestDone() {
if r.reqDoneClosed || r.reqDone == nil { if r.reqDoneClosed || r.reqDone == nil {
return return
} }
close(r.reqDone) if r.reqDone != nil {
close(r.reqDone)
}
r.reqDoneClosed = true r.reqDoneClosed = true
} }

View file

@ -273,7 +273,9 @@ func (c *client) RoundTripOpt(req *http.Request, opt RoundTripOpt) (*http.Respon
// This go routine keeps running even after RoundTripOpt() returns. // This go routine keeps running even after RoundTripOpt() returns.
// It is shut down when the application is done processing the body. // It is shut down when the application is done processing the body.
reqDone := make(chan struct{}) reqDone := make(chan struct{})
done := make(chan struct{})
go func() { go func() {
defer close(done)
select { select {
case <-req.Context().Done(): case <-req.Context().Done():
str.CancelWrite(quic.StreamErrorCode(errorRequestCanceled)) str.CancelWrite(quic.StreamErrorCode(errorRequestCanceled))
@ -282,9 +284,14 @@ func (c *client) RoundTripOpt(req *http.Request, opt RoundTripOpt) (*http.Respon
} }
}() }()
rsp, rerr := c.doRequest(req, str, opt, reqDone) doneChan := reqDone
if opt.DontCloseRequestStream {
doneChan = nil
}
rsp, rerr := c.doRequest(req, str, opt, doneChan)
if rerr.err != nil { // if any error occurred if rerr.err != nil { // if any error occurred
close(reqDone) close(reqDone)
<-done
if rerr.streamErr != 0 { // if it was a stream error if rerr.streamErr != 0 { // if it was a stream error
str.CancelWrite(quic.StreamErrorCode(rerr.streamErr)) str.CancelWrite(quic.StreamErrorCode(rerr.streamErr))
} }
@ -296,6 +303,10 @@ func (c *client) RoundTripOpt(req *http.Request, opt RoundTripOpt) (*http.Respon
c.conn.CloseWithError(quic.ApplicationErrorCode(rerr.connErr), reason) c.conn.CloseWithError(quic.ApplicationErrorCode(rerr.connErr), reason)
} }
} }
if opt.DontCloseRequestStream {
close(reqDone)
<-done
}
return rsp, rerr.err return rsp, rerr.err
} }
@ -326,7 +337,7 @@ func (c *client) sendRequestBody(str Stream, body io.ReadCloser) error {
return nil return nil
} }
func (c *client) doRequest(req *http.Request, str quic.Stream, opt RoundTripOpt, reqDone chan struct{}) (*http.Response, requestError) { func (c *client) doRequest(req *http.Request, str quic.Stream, opt RoundTripOpt, reqDone chan<- struct{}) (*http.Response, requestError) {
var requestGzip bool var requestGzip bool
if !c.opts.DisableCompression && req.Method != "HEAD" && req.Header.Get("Accept-Encoding") == "" && req.Header.Get("Range") == "" { if !c.opts.DisableCompression && req.Method != "HEAD" && req.Header.Get("Accept-Encoding") == "" && req.Header.Get("Range") == "" {
requestGzip = true requestGzip = true

View file

@ -913,6 +913,26 @@ var _ = Describe("Client", func() {
cancel() cancel()
Eventually(done).Should(BeClosed()) Eventually(done).Should(BeClosed())
}) })
It("doesn't cancel a request if DontCloseRequestStream is set", func() {
rspBuf := bytes.NewBuffer(getResponse(404))
ctx, cancel := context.WithCancel(context.Background())
req := req.WithContext(ctx)
conn.EXPECT().HandshakeComplete().Return(handshakeCtx)
conn.EXPECT().OpenStreamSync(ctx).Return(str, nil)
conn.EXPECT().ConnectionState().Return(quic.ConnectionState{})
buf := &bytes.Buffer{}
str.EXPECT().Close().MaxTimes(1)
str.EXPECT().Write(gomock.Any()).DoAndReturn(buf.Write)
str.EXPECT().Read(gomock.Any()).DoAndReturn(rspBuf.Read).AnyTimes()
rsp, err := client.RoundTripOpt(req, RoundTripOpt{DontCloseRequestStream: true})
Expect(err).ToNot(HaveOccurred())
cancel()
_, err = io.ReadAll(rsp.Body)
Expect(err).ToNot(HaveOccurred())
})
}) })
Context("gzip compression", func() { Context("gzip compression", func() {

View file

@ -84,6 +84,7 @@ type RoundTripOpt struct {
// If set true and no cached connection is available, RoundTripOpt will return ErrNoCachedConn. // If set true and no cached connection is available, RoundTripOpt will return ErrNoCachedConn.
OnlyCachedConn bool OnlyCachedConn bool
// DontCloseRequestStream controls whether the request stream is closed after sending the request. // DontCloseRequestStream controls whether the request stream is closed after sending the request.
// If set, context cancellations have no effect after the response headers are received.
DontCloseRequestStream bool DontCloseRequestStream bool
} }