Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

http: fix connections that are never closed #3647

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions src/proto/h2/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ where
// and then close.
trace!("send_request dropped, starting conn shutdown");
drop(this.cancel_tx.take().expect("ConnTask Future polled twice"));
return Poll::Ready(());
}

Poll::Pending
Expand Down
68 changes: 68 additions & 0 deletions tests/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2009,6 +2009,74 @@ mod conn {
.expect_err("client should be closed");
}

#[tokio::test]
async fn http2_connect_detect_close() {
// Regression test for failure to fully close connections when using HTTP2 CONNECT
// We send a request, read/write some data, then drop the client connection.
use futures_util::future;
let (listener, addr) = setup_tk_test_server().await;
let (tx, rx) = oneshot::channel::<()>();
const BODY: &[u8] = b"hello world";
tokio::task::spawn(async move {
use hyper::server::conn::http2;
use hyper::service::service_fn;

let res = listener.accept().await;
let (stream, _) = res.unwrap();
let stream = TokioIo::new(stream);

let service = service_fn(|req: Request<hyper::body::Incoming>| {
tokio::task::spawn(async move {
let io = &mut TokioIo::new(hyper::upgrade::on(req).await.unwrap());
let mut buf: [u8; BODY.len()] = [0; BODY.len()];
io.read_exact(&mut buf).await.unwrap();
io.write_all(BODY).await.unwrap();
});

future::ok::<_, hyper::Error>(Response::new(Empty::<Bytes>::new()))
});

tokio::task::spawn(async move {
let conn = http2::Builder::new(TokioExecutor).serve_connection(stream, service);
conn.await.unwrap();
drop(tx);
});
});

let io = tcp_connect(&addr).await.expect("tcp connect");
let (mut client, conn) = conn::http2::Builder::new(TokioExecutor)
.handshake(io)
.await
.expect("http handshake");

tokio::task::spawn(async move {
conn.await.expect("client conn");
});

// Sanity check that client is ready
future::poll_fn(|ctx| client.poll_ready(ctx))
.await
.expect("client poll ready sanity");

let req = Request::builder()
.method(Method::CONNECT)
.uri(format!("{}", addr))
.body(Empty::<Bytes>::new())
.expect("request builder");

let resp = client.send_request(req).await.expect("req1 send");
assert_eq!(resp.status(), 200);
let io = &mut TokioIo::new(hyper::upgrade::on(resp).await.unwrap());

let mut buf: [u8; BODY.len()] = [0; BODY.len()];
io.write_all(BODY).await.unwrap();
io.read_exact(&mut buf).await.unwrap();
drop(client);
let _ = tokio::time::timeout(Duration::from_secs(1), rx)
.await
.unwrap();
}

#[tokio::test]
async fn http2_keep_alive_detects_unresponsive_server() {
let (listener, addr) = setup_tk_test_server().await;
Expand Down