• Tom Bergan's avatar
    http2: always delay closing the connection after sending GOAWAY · cd69bc3f
    Tom Bergan authored
    Currently, we close the connection immediately after sending a GOAWAY
    frame if all outstanding responses have been completely sent. However,
    the client may have had requests in-flight at that time which have been
    queued in the kernel receive buffer. On both Windows and Linux, if the
    connection is close()'d when the receive buffer is not empty, the kernel
    sends RST. This has the effect of aborting both sides of the connection,
    meaning the client may not actually receive all responses that were sent
    before the GOAWAY.
    
    Instead, we should delay calling close() until after the receive buffer
    has been drained. We don't want to delay indefinitely, which means we
    need some kind of timeout. Ideally that timeout should be about 1 RTT +
    epsilon, under the assumption that the client will not send any more
    frames after receiving the GOAWAY. However, 1 RTT is difficult to
    measure. It turns out we were already using a 1 second delay in other
    cases, so we reuse that same delay here.
    
    Note that we do not call CloseWrite() to half-close the underlying TLS
    connection. This seems unnecessary -- GOAWAY is effectively a half-close
    at the HTTP/2 level.
    
    Updates golang/go#18701 (fixes after it's bundled into net/http)
    
    Change-Id: I4d68bada6369ba95e5db02afe6dfad0a393c0334
    Reviewed-on: https://go-review.googlesource.com/71372
    Run-TryBot: Tom Bergan <tombergan@google.com>
    TryBot-Result: Gobot Gobot <gobot@golang.org>
    Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
    Reviewed-by: 's avatarJoe Tsai <thebrokentoaster@gmail.com>
    cd69bc3f
Name
Last commit
Last update
..
h2demo Loading commit data...
h2i Loading commit data...
hpack Loading commit data...
testdata Loading commit data...
.gitignore Loading commit data...
Dockerfile Loading commit data...
Makefile Loading commit data...
README Loading commit data...
ciphers.go Loading commit data...
ciphers_test.go Loading commit data...
client_conn_pool.go Loading commit data...
configure_transport.go Loading commit data...
databuffer.go Loading commit data...
databuffer_test.go Loading commit data...
errors.go Loading commit data...
errors_test.go Loading commit data...
flow.go Loading commit data...
flow_test.go Loading commit data...
frame.go Loading commit data...
frame_test.go Loading commit data...
go16.go Loading commit data...
go17.go Loading commit data...
go17_not18.go Loading commit data...
go18.go Loading commit data...
go18_test.go Loading commit data...
go19.go Loading commit data...
go19_test.go Loading commit data...
gotrack.go Loading commit data...
gotrack_test.go Loading commit data...
headermap.go Loading commit data...
http2.go Loading commit data...
http2_test.go Loading commit data...
not_go16.go Loading commit data...
not_go17.go Loading commit data...
not_go18.go Loading commit data...
not_go19.go Loading commit data...
pipe.go Loading commit data...
pipe_test.go Loading commit data...
server.go Loading commit data...
server_push_test.go Loading commit data...
server_test.go Loading commit data...
transport.go Loading commit data...
transport_test.go Loading commit data...
write.go Loading commit data...
writesched.go Loading commit data...
writesched_priority.go Loading commit data...
writesched_priority_test.go Loading commit data...
writesched_random.go Loading commit data...
writesched_random_test.go Loading commit data...
writesched_test.go Loading commit data...
z_spec_test.go Loading commit data...