fix(client): be resilient to invalid response bodies
When an Http11Message knows that the previous response should not have included a body per RFC7230, and fails to parse the following response, the bytes are shuffled along, checking for the start of the next response. Closes #640
This commit is contained in:
@@ -446,8 +446,10 @@ fn get_host_and_port(url: &Url) -> ::Result<(String, u16)> {
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use std::io::Read;
|
||||
use header::Server;
|
||||
use super::{Client, RedirectPolicy};
|
||||
use super::pool::Pool;
|
||||
use url::Url;
|
||||
|
||||
mock_connector!(MockRedirectPolicy {
|
||||
@@ -494,4 +496,31 @@ mod tests {
|
||||
let res = client.get("http://127.0.0.1").send().unwrap();
|
||||
assert_eq!(res.headers.get(), Some(&Server("mock2".to_owned())));
|
||||
}
|
||||
|
||||
mock_connector!(Issue640Connector {
|
||||
b"HTTP/1.1 200 OK\r\nContent-Length: 3\r\n\r\n",
|
||||
b"GET",
|
||||
b"HTTP/1.1 200 OK\r\nContent-Length: 4\r\n\r\n",
|
||||
b"HEAD",
|
||||
b"HTTP/1.1 200 OK\r\nContent-Length: 4\r\n\r\n",
|
||||
b"POST"
|
||||
});
|
||||
|
||||
// see issue #640
|
||||
#[test]
|
||||
fn test_head_response_body_keep_alive() {
|
||||
let client = Client::with_connector(Pool::with_connector(Default::default(), Issue640Connector));
|
||||
|
||||
let mut s = String::new();
|
||||
client.get("http://127.0.0.1").send().unwrap().read_to_string(&mut s).unwrap();
|
||||
assert_eq!(s, "GET");
|
||||
|
||||
let mut s = String::new();
|
||||
client.head("http://127.0.0.1").send().unwrap().read_to_string(&mut s).unwrap();
|
||||
assert_eq!(s, "");
|
||||
|
||||
let mut s = String::new();
|
||||
client.post("http://127.0.0.1").send().unwrap().read_to_string(&mut s).unwrap();
|
||||
assert_eq!(s, "POST");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ impl Default for Config {
|
||||
|
||||
#[derive(Debug)]
|
||||
struct PoolImpl<S> {
|
||||
conns: HashMap<Key, Vec<S>>,
|
||||
conns: HashMap<Key, Vec<PooledStreamInner<S>>>,
|
||||
config: Config,
|
||||
}
|
||||
|
||||
@@ -90,7 +90,7 @@ impl<C: NetworkConnector> Pool<C> {
|
||||
}
|
||||
|
||||
impl<S> PoolImpl<S> {
|
||||
fn reuse(&mut self, key: Key, conn: S) {
|
||||
fn reuse(&mut self, key: Key, conn: PooledStreamInner<S>) {
|
||||
trace!("reuse {:?}", key);
|
||||
let conns = self.conns.entry(key).or_insert(vec![]);
|
||||
if conns.len() < self.config.max_idle {
|
||||
@@ -105,73 +105,97 @@ impl<C: NetworkConnector<Stream=S>, S: NetworkStream + Send> NetworkConnector fo
|
||||
let key = key(host, port, scheme);
|
||||
let mut locked = self.inner.lock().unwrap();
|
||||
let mut should_remove = false;
|
||||
let conn = match locked.conns.get_mut(&key) {
|
||||
let inner = match locked.conns.get_mut(&key) {
|
||||
Some(ref mut vec) => {
|
||||
trace!("Pool had connection, using");
|
||||
should_remove = vec.len() == 1;
|
||||
vec.pop().unwrap()
|
||||
}
|
||||
_ => try!(self.connector.connect(host, port, scheme))
|
||||
_ => PooledStreamInner {
|
||||
key: key.clone(),
|
||||
stream: try!(self.connector.connect(host, port, scheme)),
|
||||
previous_response_expected_no_content: false,
|
||||
}
|
||||
};
|
||||
if should_remove {
|
||||
locked.conns.remove(&key);
|
||||
}
|
||||
Ok(PooledStream {
|
||||
inner: Some((key, conn)),
|
||||
inner: Some(inner),
|
||||
is_closed: false,
|
||||
pool: self.inner.clone()
|
||||
pool: self.inner.clone(),
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
/// A Stream that will try to be returned to the Pool when dropped.
|
||||
pub struct PooledStream<S> {
|
||||
inner: Option<(Key, S)>,
|
||||
inner: Option<PooledStreamInner<S>>,
|
||||
is_closed: bool,
|
||||
pool: Arc<Mutex<PoolImpl<S>>>
|
||||
pool: Arc<Mutex<PoolImpl<S>>>,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
struct PooledStreamInner<S> {
|
||||
key: Key,
|
||||
stream: S,
|
||||
previous_response_expected_no_content: bool,
|
||||
}
|
||||
|
||||
impl<S: NetworkStream> Read for PooledStream<S> {
|
||||
#[inline]
|
||||
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
|
||||
self.inner.as_mut().unwrap().1.read(buf)
|
||||
self.inner.as_mut().unwrap().stream.read(buf)
|
||||
}
|
||||
}
|
||||
|
||||
impl<S: NetworkStream> Write for PooledStream<S> {
|
||||
#[inline]
|
||||
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
||||
self.inner.as_mut().unwrap().1.write(buf)
|
||||
self.inner.as_mut().unwrap().stream.write(buf)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn flush(&mut self) -> io::Result<()> {
|
||||
self.inner.as_mut().unwrap().1.flush()
|
||||
self.inner.as_mut().unwrap().stream.flush()
|
||||
}
|
||||
}
|
||||
|
||||
impl<S: NetworkStream> NetworkStream for PooledStream<S> {
|
||||
#[inline]
|
||||
fn peer_addr(&mut self) -> io::Result<SocketAddr> {
|
||||
self.inner.as_mut().unwrap().1.peer_addr()
|
||||
self.inner.as_mut().unwrap().stream.peer_addr()
|
||||
}
|
||||
|
||||
#[cfg(feature = "timeouts")]
|
||||
#[inline]
|
||||
fn set_read_timeout(&self, dur: Option<Duration>) -> io::Result<()> {
|
||||
self.inner.as_ref().unwrap().1.set_read_timeout(dur)
|
||||
self.inner.as_ref().unwrap().stream.set_read_timeout(dur)
|
||||
}
|
||||
|
||||
#[cfg(feature = "timeouts")]
|
||||
#[inline]
|
||||
fn set_write_timeout(&self, dur: Option<Duration>) -> io::Result<()> {
|
||||
self.inner.as_ref().unwrap().1.set_write_timeout(dur)
|
||||
self.inner.as_ref().unwrap().stream.set_write_timeout(dur)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn close(&mut self, how: Shutdown) -> io::Result<()> {
|
||||
self.is_closed = true;
|
||||
self.inner.as_mut().unwrap().1.close(how)
|
||||
self.inner.as_mut().unwrap().stream.close(how)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn set_previous_response_expected_no_content(&mut self, expected: bool) {
|
||||
trace!("set_previous_response_expected_no_content {}", expected);
|
||||
self.inner.as_mut().unwrap().previous_response_expected_no_content = expected;
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn previous_response_expected_no_content(&self) -> bool {
|
||||
let answer = self.inner.as_ref().unwrap().previous_response_expected_no_content;
|
||||
trace!("previous_response_expected_no_content {}", answer);
|
||||
answer
|
||||
}
|
||||
}
|
||||
|
||||
@@ -179,9 +203,9 @@ impl<S> Drop for PooledStream<S> {
|
||||
fn drop(&mut self) {
|
||||
trace!("PooledStream.drop, is_closed={}", self.is_closed);
|
||||
if !self.is_closed {
|
||||
self.inner.take().map(|(key, conn)| {
|
||||
self.inner.take().map(|inner| {
|
||||
if let Ok(mut pool) = self.pool.lock() {
|
||||
pool.reuse(key, conn);
|
||||
pool.reuse(inner.key.clone(), inner);
|
||||
}
|
||||
// else poisoned, give up
|
||||
});
|
||||
|
||||
@@ -64,7 +64,6 @@ impl Response {
|
||||
pub fn status_raw(&self) -> &RawStatus {
|
||||
&self.status_raw
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
impl Read for Response {
|
||||
@@ -91,11 +90,11 @@ impl Drop for Response {
|
||||
//
|
||||
// otherwise, the response has been drained. we should check that the
|
||||
// server has agreed to keep the connection open
|
||||
trace!("Response.is_drained = {:?}", self.is_drained);
|
||||
trace!("Response.drop is_drained={}", self.is_drained);
|
||||
if !(self.is_drained && http::should_keep_alive(self.version, &self.headers)) {
|
||||
trace!("closing connection");
|
||||
trace!("Response.drop closing connection");
|
||||
if let Err(e) = self.message.close_connection() {
|
||||
error!("error closing connection: {}", e);
|
||||
error!("Response.drop error closing connection: {}", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user