-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(http): Add a TimeoutBody middleware
This commit implements a new TimeoutBody middleware that uses the new `Body::poll_progess` method to constrain the amount of time a stream waits for send capacity. This change does not yet wire up the middleware into the Linkerd server.
- Loading branch information
Showing
4 changed files
with
217 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[package] | ||
name = "linkerd-http-body-timeout" | ||
version = "0.1.0" | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
http = "0.2" | ||
http-body = "0.4" | ||
futures = "0.3" | ||
pin-project = "1" | ||
thiserror = "1" | ||
tokio = { version = "1", features = ["time"] } | ||
tower-service = "0.3" | ||
|
||
linkerd-error = { path = "../../error" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
#![deny(rust_2018_idioms, clippy::disallowed_methods, clippy::disallowed_types)] | ||
#![forbid(unsafe_code)] | ||
|
||
use futures::prelude::*; | ||
use http::{HeaderMap, HeaderValue}; | ||
use http_body::Body; | ||
use linkerd_error::Error; | ||
use pin_project::pin_project; | ||
use std::{ | ||
future::Future, | ||
pin::Pin, | ||
task::{Context, Poll}, | ||
}; | ||
use tokio::time; | ||
|
||
pub struct TimeoutRequestProgress<S> { | ||
inner: S, | ||
timeout: time::Duration, | ||
} | ||
|
||
pub struct TimeoutResponseProgress<S> { | ||
inner: S, | ||
timeout: time::Duration, | ||
} | ||
|
||
/// A [`Body`] that imposes a timeout on the amount of time the stream may be | ||
/// stuck waiting for capacity. | ||
#[derive(Debug)] | ||
#[pin_project] | ||
pub struct ProgressTimeoutBody<B> { | ||
#[pin] | ||
inner: B, | ||
sleep: Pin<Box<time::Sleep>>, | ||
timeout: time::Duration, | ||
is_pending: bool, | ||
} | ||
|
||
#[derive(Debug, thiserror::Error)] | ||
#[error("body progress timeout after {0:?}")] | ||
pub struct BodyProgressTimeoutError(time::Duration); | ||
|
||
// === impl TimeoutRequestProgress === | ||
|
||
impl<S> TimeoutRequestProgress<S> { | ||
pub fn new(timeout: time::Duration, inner: S) -> Self { | ||
Self { inner, timeout } | ||
} | ||
} | ||
|
||
impl<B, S> tower_service::Service<http::Request<B>> for TimeoutRequestProgress<S> | ||
where | ||
S: tower_service::Service<http::Request<ProgressTimeoutBody<B>>>, | ||
{ | ||
type Response = S::Response; | ||
type Error = S::Error; | ||
type Future = S::Future; | ||
|
||
#[inline] | ||
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { | ||
self.inner.poll_ready(cx) | ||
} | ||
|
||
#[inline] | ||
fn call(&mut self, req: http::Request<B>) -> Self::Future { | ||
self.inner | ||
.call(req.map(|b| ProgressTimeoutBody::new(self.timeout, b))) | ||
} | ||
} | ||
|
||
// === impl TimeoutResponseProgress === | ||
|
||
impl<S> TimeoutResponseProgress<S> { | ||
pub fn new(timeout: time::Duration, inner: S) -> Self { | ||
Self { inner, timeout } | ||
} | ||
} | ||
|
||
impl<Req, B, S> tower_service::Service<Req> for TimeoutResponseProgress<S> | ||
where | ||
S: tower_service::Service<Req, Response = http::Response<B>>, | ||
S::Future: Send + 'static, | ||
{ | ||
type Response = http::Response<ProgressTimeoutBody<B>>; | ||
type Error = S::Error; | ||
type Future = | ||
Pin<Box<dyn std::future::Future<Output = Result<Self::Response, S::Error>> + Send>>; | ||
|
||
#[inline] | ||
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { | ||
self.inner.poll_ready(cx) | ||
} | ||
|
||
#[inline] | ||
fn call(&mut self, req: Req) -> Self::Future { | ||
let timeout = self.timeout; | ||
self.inner | ||
.call(req) | ||
.map_ok(move |res| res.map(|b| ProgressTimeoutBody::new(timeout, b))) | ||
.boxed() | ||
} | ||
} | ||
|
||
// === impl ProgressTimeoutBody === | ||
|
||
impl<B> ProgressTimeoutBody<B> { | ||
pub fn new(timeout: time::Duration, inner: B) -> Self { | ||
// Avoid overflows by capping MAX to roughly 30 years. | ||
const MAX: time::Duration = time::Duration::from_secs(86400 * 365 * 30); | ||
Self { | ||
inner, | ||
timeout: timeout.min(MAX), | ||
is_pending: false, | ||
sleep: Box::pin(time::sleep(MAX)), | ||
} | ||
} | ||
} | ||
|
||
impl<B> Body for ProgressTimeoutBody<B> | ||
where | ||
B: Body + Send + 'static, | ||
B::Data: Send + 'static, | ||
B::Error: Into<Error>, | ||
{ | ||
type Data = B::Data; | ||
type Error = Error; | ||
|
||
#[inline] | ||
fn is_end_stream(&self) -> bool { | ||
self.inner.is_end_stream() | ||
} | ||
|
||
#[inline] | ||
fn poll_data( | ||
self: Pin<&mut Self>, | ||
cx: &mut Context<'_>, | ||
) -> Poll<Option<Result<Self::Data, Self::Error>>> { | ||
let this = self.project(); | ||
*this.is_pending = false; | ||
this.inner.poll_data(cx).map_err(Into::into) | ||
} | ||
|
||
#[inline] | ||
fn poll_trailers( | ||
self: Pin<&mut Self>, | ||
cx: &mut Context<'_>, | ||
) -> Poll<Result<Option<HeaderMap<HeaderValue>>, Self::Error>> { | ||
let this = self.project(); | ||
*this.is_pending = false; | ||
this.inner.poll_trailers(cx).map_err(Into::into) | ||
} | ||
|
||
fn poll_progress(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { | ||
let this = self.project(); | ||
|
||
let _ = this.inner.poll_progress(cx).map_err(Into::into)?; | ||
|
||
if !*this.is_pending { | ||
this.sleep | ||
.as_mut() | ||
.reset(time::Instant::now() + *this.timeout); | ||
*this.is_pending = true; | ||
} | ||
|
||
match this.sleep.as_mut().poll(cx) { | ||
Poll::Ready(()) => Poll::Ready(Err(BodyProgressTimeoutError(*this.timeout).into())), | ||
Poll::Pending => Poll::Pending, | ||
} | ||
} | ||
|
||
#[inline] | ||
fn size_hint(&self) -> http_body::SizeHint { | ||
self.inner.size_hint() | ||
} | ||
} |