Skip to content

Commit 9617c63

Browse files
committed
http2: avoid Transport hang with Connection: close and AllowHTTP
CL 111835 changed Transport stream ID numbering to start at stream 3 when AllowHTTP is set. This was based on a misunderstanding: When a connection upgrades an HTTP/1.1 request to HTTP/2, the initial HTTP/1.1 request occupies stream 1. However, Transport does not perform HTTP protocol upgrades. When using a Transport to send unencrypted HTTP/2 requests, the entire connection uses HTTP/2, the first request is sent as HTTP/2, and there is no reason not to use stream 1 for this request. Starting from stream 3 is mostly harmless, but ClientConn.idleStateLocked assumes that client streams start from 1. This causes it to misidentify new single-use connections as having already sent a request (when AllowHTTP is set), and therefore not suitable for use. Revert to always starting stream IDs at 1. Fixes golang/go#67671 Change-Id: I97c89de4ae49623d916f9dbd200f8252d2fd4247 Reviewed-on: https://go-review.googlesource.com/c/net/+/591275 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Jonathan Amsterdam <[email protected]>
1 parent 66e838c commit 9617c63

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

http2/transport.go

-4
Original file line numberDiff line numberDiff line change
@@ -827,10 +827,6 @@ func (t *Transport) newClientConn(c net.Conn, singleUse bool) (*ClientConn, erro
827827
cc.henc.SetMaxDynamicTableSizeLimit(t.maxEncoderHeaderTableSize())
828828
cc.peerMaxHeaderTableSize = initialHeaderTableSize
829829

830-
if t.AllowHTTP {
831-
cc.nextStreamID = 3
832-
}
833-
834830
if cs, ok := c.(connectionStater); ok {
835831
state := cs.ConnectionState()
836832
cc.tlsState = &state

http2/transport_test.go

+20
Original file line numberDiff line numberDiff line change
@@ -5401,3 +5401,23 @@ func TestIssue66763Race(t *testing.T) {
54015401

54025402
<-donec
54035403
}
5404+
5405+
// Issue 67671: Sending a Connection: close request on a Transport with AllowHTTP
5406+
// set caused a the transport to wedge.
5407+
func TestIssue67671(t *testing.T) {
5408+
ts := newTestServer(t, func(w http.ResponseWriter, r *http.Request) {})
5409+
tr := &Transport{
5410+
TLSClientConfig: tlsConfigInsecure,
5411+
AllowHTTP: true,
5412+
}
5413+
defer tr.CloseIdleConnections()
5414+
req, _ := http.NewRequest("GET", ts.URL, nil)
5415+
req.Close = true
5416+
for i := 0; i < 2; i++ {
5417+
res, err := tr.RoundTrip(req)
5418+
if err != nil {
5419+
t.Fatal(err)
5420+
}
5421+
res.Body.Close()
5422+
}
5423+
}

0 commit comments

Comments
 (0)