This breaks a reference cycle between PoolReturner and Agent that was causing Agents (and their contained ConnectionPool) to never be dropped so long as there was any stream in the ConnectionPool. This cause sockets to leak over time, particularly when the convenience functions ureq::get(), ureq::post(), etc were used, since those functions create a new Agent each time.
496 lines
17 KiB
Rust
496 lines
17 KiB
Rust
use std::collections::hash_map::Entry;
|
|
use std::collections::{HashMap, VecDeque};
|
|
use std::io::{self, Read};
|
|
use std::sync::Mutex;
|
|
|
|
use crate::agent::AgentState;
|
|
use crate::stream::Stream;
|
|
use crate::{Agent, Proxy};
|
|
|
|
use log::debug;
|
|
use url::Url;
|
|
|
|
/// Holder of recycled connections.
|
|
///
|
|
/// For each PoolKey (approximately hostname and port), there may be
|
|
/// multiple connections stored in the `recycle` map. If so, they are stored in
|
|
/// order from oldest at the front to freshest at the back.
|
|
///
|
|
/// The `lru` VecDeque is a companion struct to `recycle`, and is used to keep
|
|
/// track of which connections to expire if the pool is full on the next insert.
|
|
/// A given PoolKey can occur in lru multiple times. The first entry in lru for
|
|
/// a key K represents the first entry in `recycle[K]`. The second entry in lru
|
|
/// for `K` represents the second entry in `recycle[K]`, and so on. In other
|
|
/// words, `lru` is ordered the same way as the VecDeque entries in `recycle`:
|
|
/// oldest at the front, freshest at the back. This allows keeping track of which
|
|
/// host should have its connection dropped next.
|
|
///
|
|
/// These invariants hold at the start and end of each method:
|
|
/// - The length `lru` is equal to the sum of lengths of `recycle`'s VecDeques.
|
|
/// - Each PoolKey exists the same number of times in `lru` as it has entries in `recycle`.
|
|
/// - If there is an entry in `recycle`, it has at least one element.
|
|
/// - The length of `lru` is less than or equal to max_idle_connections.
|
|
/// - The length of recycle[K] is less than or equal to max_idle_connections_per_host.
|
|
///
|
|
/// *Internal API*
|
|
pub(crate) struct ConnectionPool {
|
|
inner: Mutex<Inner>,
|
|
max_idle_connections: usize,
|
|
max_idle_connections_per_host: usize,
|
|
}
|
|
|
|
struct Inner {
|
|
// the actual pooled connection. however only one per hostname:port.
|
|
recycle: HashMap<PoolKey, VecDeque<Stream>>,
|
|
// This is used to keep track of which streams to expire when the
|
|
// pool reaches MAX_IDLE_CONNECTIONS. The corresponding PoolKeys for
|
|
// recently used Streams are added to the back of the queue;
|
|
// old streams are removed from the front.
|
|
lru: VecDeque<PoolKey>,
|
|
}
|
|
|
|
impl fmt::Debug for ConnectionPool {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
f.debug_struct("ConnectionPool")
|
|
.field("max_idle", &self.max_idle_connections)
|
|
.field("max_idle_per_host", &self.max_idle_connections_per_host)
|
|
.field("connections", &self.inner.lock().unwrap().lru.len())
|
|
.finish()
|
|
}
|
|
}
|
|
fn remove_first_match(list: &mut VecDeque<PoolKey>, key: &PoolKey) -> Option<PoolKey> {
|
|
match list.iter().position(|x| x == key) {
|
|
Some(i) => list.remove(i),
|
|
None => None,
|
|
}
|
|
}
|
|
|
|
fn remove_last_match(list: &mut VecDeque<PoolKey>, key: &PoolKey) -> Option<PoolKey> {
|
|
match list.iter().rposition(|x| x == key) {
|
|
Some(i) => list.remove(i),
|
|
None => None,
|
|
}
|
|
}
|
|
|
|
impl ConnectionPool {
|
|
pub(crate) fn new_with_limits(
|
|
max_idle_connections: usize,
|
|
max_idle_connections_per_host: usize,
|
|
) -> Self {
|
|
ConnectionPool {
|
|
inner: Mutex::new(Inner {
|
|
recycle: HashMap::new(),
|
|
lru: VecDeque::new(),
|
|
}),
|
|
max_idle_connections,
|
|
max_idle_connections_per_host,
|
|
}
|
|
}
|
|
|
|
/// Return true if either of the max_* settings is 0, meaning we should do no work.
|
|
fn noop(&self) -> bool {
|
|
self.max_idle_connections == 0 || self.max_idle_connections_per_host == 0
|
|
}
|
|
|
|
/// How the unit::connect tries to get a pooled connection.
|
|
pub fn try_get_connection(&self, url: &Url, proxy: Option<Proxy>) -> Option<Stream> {
|
|
let key = PoolKey::new(url, proxy);
|
|
self.remove(&key)
|
|
}
|
|
|
|
fn remove(&self, key: &PoolKey) -> Option<Stream> {
|
|
let mut inner = self.inner.lock().unwrap();
|
|
match inner.recycle.entry(key.clone()) {
|
|
Entry::Occupied(mut occupied_entry) => {
|
|
let streams = occupied_entry.get_mut();
|
|
// Take the newest stream.
|
|
let stream = streams.pop_back();
|
|
let stream = stream.expect("invariant failed: empty VecDeque in `recycle`");
|
|
|
|
if streams.is_empty() {
|
|
occupied_entry.remove();
|
|
}
|
|
|
|
// Remove the newest matching PoolKey from self.lru. That
|
|
// corresponds to the stream we just removed from `recycle`.
|
|
remove_last_match(&mut inner.lru, key)
|
|
.expect("invariant failed: key in recycle but not in lru");
|
|
|
|
debug!("pulling stream from pool: {:?} -> {:?}", key, stream);
|
|
Some(stream)
|
|
}
|
|
Entry::Vacant(_) => None,
|
|
}
|
|
}
|
|
|
|
pub(crate) fn add(&self, key: &PoolKey, stream: Stream) {
|
|
if self.noop() {
|
|
return;
|
|
}
|
|
debug!("adding stream to pool: {:?} -> {:?}", key, stream);
|
|
|
|
let mut inner = self.inner.lock().unwrap();
|
|
match inner.recycle.entry(key.clone()) {
|
|
Entry::Occupied(mut occupied_entry) => {
|
|
let streams = occupied_entry.get_mut();
|
|
streams.push_back(stream);
|
|
if streams.len() > self.max_idle_connections_per_host {
|
|
// Remove the oldest entry
|
|
let stream = streams.pop_front().expect("empty streams list");
|
|
debug!(
|
|
"host {:?} has {} conns, dropping oldest: {:?}",
|
|
key,
|
|
streams.len(),
|
|
stream
|
|
);
|
|
remove_first_match(&mut inner.lru, key)
|
|
.expect("invariant failed: key in recycle but not in lru");
|
|
}
|
|
}
|
|
Entry::Vacant(vacant_entry) => {
|
|
vacant_entry.insert(vec![stream].into());
|
|
}
|
|
}
|
|
inner.lru.push_back(key.clone());
|
|
if inner.lru.len() > self.max_idle_connections {
|
|
drop(inner);
|
|
self.remove_oldest()
|
|
}
|
|
}
|
|
|
|
/// Find the oldest stream in the pool. Remove its representation from lru,
|
|
/// and the stream itself from `recycle`. Drops the stream, which closes it.
|
|
fn remove_oldest(&self) {
|
|
assert!(!self.noop(), "remove_oldest called on Pool with max of 0");
|
|
let mut inner = self.inner.lock().unwrap();
|
|
let key = inner.lru.pop_front();
|
|
let key = key.expect("tried to remove oldest but no entries found!");
|
|
match inner.recycle.entry(key) {
|
|
Entry::Occupied(mut occupied_entry) => {
|
|
let streams = occupied_entry.get_mut();
|
|
let stream = streams
|
|
.pop_front()
|
|
.expect("invariant failed: key existed in recycle but no streams available");
|
|
debug!("dropping oldest stream in pool: {:?}", stream);
|
|
if streams.is_empty() {
|
|
occupied_entry.remove();
|
|
}
|
|
}
|
|
Entry::Vacant(_) => panic!("invariant failed: key existed in lru but not in recycle"),
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
pub fn len(&self) -> usize {
|
|
self.inner.lock().unwrap().lru.len()
|
|
}
|
|
}
|
|
|
|
#[derive(PartialEq, Clone, Eq, Hash)]
|
|
pub(crate) struct PoolKey {
|
|
scheme: String,
|
|
hostname: String,
|
|
port: Option<u16>,
|
|
proxy: Option<Proxy>,
|
|
}
|
|
|
|
use std::fmt;
|
|
|
|
impl fmt::Debug for PoolKey {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
f.write_fmt(format_args!(
|
|
"{}|{}|{}",
|
|
self.scheme,
|
|
self.hostname,
|
|
self.port.unwrap_or(0)
|
|
))
|
|
}
|
|
}
|
|
|
|
impl PoolKey {
|
|
fn new(url: &Url, proxy: Option<Proxy>) -> Self {
|
|
let port = url.port_or_known_default();
|
|
PoolKey {
|
|
scheme: url.scheme().to_string(),
|
|
hostname: url.host_str().unwrap_or("").to_string(),
|
|
port,
|
|
proxy,
|
|
}
|
|
}
|
|
|
|
pub(crate) fn from_parts(scheme: &str, hostname: &str, port: u16) -> Self {
|
|
PoolKey {
|
|
scheme: scheme.to_string(),
|
|
hostname: hostname.to_string(),
|
|
port: Some(port),
|
|
proxy: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub(crate) struct PoolReturner {
|
|
// We store a weak reference to an agent state here to avoid creating
|
|
// a reference loop, since AgentState contains a ConnectionPool, which
|
|
// contains Streams, which contain PoolReturners.
|
|
inner: Option<(std::sync::Weak<AgentState>, PoolKey)>,
|
|
}
|
|
|
|
impl PoolReturner {
|
|
/// A PoolReturner that returns to the given Agent's Pool.
|
|
pub(crate) fn new(agent: &Agent, pool_key: PoolKey) -> Self {
|
|
Self {
|
|
inner: Some((agent.weak_state(), pool_key)),
|
|
}
|
|
}
|
|
|
|
/// A PoolReturner that does nothing
|
|
pub(crate) fn none() -> Self {
|
|
Self { inner: None }
|
|
}
|
|
|
|
pub(crate) fn return_to_pool(&self, stream: Stream) {
|
|
if let Some((weak_state, pool_key)) = &self.inner {
|
|
if let Some(state) = weak_state.upgrade() {
|
|
state.pool.add(pool_key, stream);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Read wrapper that returns a stream to the pool once the
|
|
/// read is exhausted (reached a 0).
|
|
///
|
|
/// *Internal API*
|
|
pub(crate) struct PoolReturnRead<R: Read + Sized + Into<Stream>> {
|
|
// wrapped reader around the same stream. It's an Option because we `take()` it
|
|
// upon returning the stream to the Agent.
|
|
reader: Option<R>,
|
|
}
|
|
|
|
impl<R: Read + Sized + Into<Stream>> PoolReturnRead<R> {
|
|
pub fn new(reader: R) -> Self {
|
|
PoolReturnRead {
|
|
reader: Some(reader),
|
|
}
|
|
}
|
|
|
|
fn return_connection(&mut self) -> io::Result<()> {
|
|
// guard we only do this once.
|
|
if let Some(reader) = self.reader.take() {
|
|
// bring back stream here to either go into pool or dealloc
|
|
let stream: Stream = reader.into();
|
|
stream.return_to_pool()?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn do_read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
|
|
match self.reader.as_mut() {
|
|
None => Ok(0),
|
|
Some(reader) => reader.read(buf),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<R: Read + Sized + Into<Stream>> Read for PoolReturnRead<R> {
|
|
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
|
|
let amount = self.do_read(buf)?;
|
|
// only if the underlying reader is exhausted can we send a new
|
|
// request to the same socket. hence, we only return it now.
|
|
if amount == 0 {
|
|
self.return_connection()?;
|
|
}
|
|
Ok(amount)
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use std::io;
|
|
|
|
use crate::stream::{remote_addr_for_test, Stream};
|
|
use crate::ReadWrite;
|
|
|
|
use super::*;
|
|
|
|
#[derive(Debug)]
|
|
struct NoopStream;
|
|
|
|
impl NoopStream {
|
|
fn stream(pool_returner: PoolReturner) -> Stream {
|
|
Stream::new(NoopStream, remote_addr_for_test(), pool_returner)
|
|
}
|
|
}
|
|
|
|
impl Read for NoopStream {
|
|
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
|
|
Ok(buf.len())
|
|
}
|
|
}
|
|
|
|
impl std::io::Write for NoopStream {
|
|
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
|
Ok(buf.len())
|
|
}
|
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl ReadWrite for NoopStream {
|
|
fn socket(&self) -> Option<&std::net::TcpStream> {
|
|
None
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn poolkey_new() {
|
|
// Test that PoolKey::new() does not panic on unrecognized schemes.
|
|
PoolKey::new(&Url::parse("zzz:///example.com").unwrap(), None);
|
|
}
|
|
|
|
#[test]
|
|
fn pool_connections_limit() {
|
|
// Test inserting connections with different keys into the pool,
|
|
// filling and draining it. The pool should evict earlier connections
|
|
// when the connection limit is reached.
|
|
let pool = ConnectionPool::new_with_limits(10, 1);
|
|
let hostnames = (0..pool.max_idle_connections * 2).map(|i| format!("{}.example", i));
|
|
let poolkeys = hostnames.map(|hostname| PoolKey {
|
|
scheme: "https".to_string(),
|
|
hostname,
|
|
port: Some(999),
|
|
proxy: None,
|
|
});
|
|
for key in poolkeys.clone() {
|
|
pool.add(&key, NoopStream::stream(PoolReturner::none()));
|
|
}
|
|
assert_eq!(pool.len(), pool.max_idle_connections);
|
|
|
|
for key in poolkeys.skip(pool.max_idle_connections) {
|
|
let result = pool.remove(&key);
|
|
assert!(result.is_some(), "expected key was not in pool");
|
|
}
|
|
assert_eq!(pool.len(), 0)
|
|
}
|
|
|
|
#[test]
|
|
fn pool_per_host_connections_limit() {
|
|
// Test inserting connections with the same key into the pool,
|
|
// filling and draining it. The pool should evict earlier connections
|
|
// when the per-host connection limit is reached.
|
|
let pool = ConnectionPool::new_with_limits(10, 2);
|
|
let poolkey = PoolKey {
|
|
scheme: "https".to_string(),
|
|
hostname: "example.com".to_string(),
|
|
port: Some(999),
|
|
proxy: None,
|
|
};
|
|
|
|
for _ in 0..pool.max_idle_connections_per_host * 2 {
|
|
pool.add(&poolkey, NoopStream::stream(PoolReturner::none()))
|
|
}
|
|
assert_eq!(pool.len(), pool.max_idle_connections_per_host);
|
|
|
|
for _ in 0..pool.max_idle_connections_per_host {
|
|
let result = pool.remove(&poolkey);
|
|
assert!(result.is_some(), "expected key was not in pool");
|
|
}
|
|
assert_eq!(pool.len(), 0);
|
|
}
|
|
|
|
#[test]
|
|
fn pool_checks_proxy() {
|
|
// Test inserting different poolkeys with same address but different proxies.
|
|
// Each insertion should result in an additional entry in the pool.
|
|
let pool = ConnectionPool::new_with_limits(10, 1);
|
|
let url = Url::parse("zzz:///example.com").unwrap();
|
|
let pool_key = PoolKey::new(&url, None);
|
|
|
|
pool.add(&pool_key, NoopStream::stream(PoolReturner::none()));
|
|
assert_eq!(pool.len(), 1);
|
|
|
|
let pool_key = PoolKey::new(&url, Some(Proxy::new("localhost:9999").unwrap()));
|
|
|
|
pool.add(&pool_key, NoopStream::stream(PoolReturner::none()));
|
|
assert_eq!(pool.len(), 2);
|
|
|
|
let pool_key = PoolKey::new(
|
|
&url,
|
|
Some(Proxy::new("user:password@localhost:9999").unwrap()),
|
|
);
|
|
|
|
pool.add(&pool_key, NoopStream::stream(PoolReturner::none()));
|
|
assert_eq!(pool.len(), 3);
|
|
}
|
|
|
|
// Test that a stream gets returned to the pool if it was wrapped in a LimitedRead, and
|
|
// user reads the exact right number of bytes (but never gets a read of 0 bytes).
|
|
#[test]
|
|
fn read_exact() {
|
|
use crate::response::LimitedRead;
|
|
|
|
let url = Url::parse("https:///example.com").unwrap();
|
|
|
|
let mut out_buf = [0u8; 500];
|
|
|
|
let agent = Agent::new();
|
|
let pool_key = PoolKey::new(&url, None);
|
|
let stream = NoopStream::stream(PoolReturner::new(&agent, pool_key));
|
|
let mut limited_read = LimitedRead::new(stream, std::num::NonZeroUsize::new(500).unwrap());
|
|
|
|
limited_read.read_exact(&mut out_buf).unwrap();
|
|
|
|
assert_eq!(agent.state.pool.len(), 1);
|
|
}
|
|
|
|
// Test that a stream gets returned to the pool if it is gzip encoded and the gzip
|
|
// decoder reads the exact amount from a chunked stream, not past the 0. This
|
|
// happens because gzip has built-in knowledge of the length to read.
|
|
#[test]
|
|
#[cfg(feature = "gzip")]
|
|
fn read_exact_chunked_gzip() {
|
|
use crate::response::Compression;
|
|
use std::io::Cursor;
|
|
|
|
let gz_body = vec![
|
|
b'E', b'\r', b'\n', // 14 first chunk
|
|
0x1F, 0x8B, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0xCB, 0x48, 0xCD, 0xC9,
|
|
b'\r', b'\n', //
|
|
b'E', b'\r', b'\n', // 14 second chunk
|
|
0xC9, 0x57, 0x28, 0xCF, 0x2F, 0xCA, 0x49, 0x51, 0xC8, 0x18, 0xBC, 0x6C, 0x00, 0xA5,
|
|
b'\r', b'\n', //
|
|
b'7', b'\r', b'\n', // 7 third chunk
|
|
0x5C, 0x7C, 0xEF, 0xA7, 0x00, 0x00, 0x00, //
|
|
b'\r', b'\n', //
|
|
// end
|
|
b'0', b'\r', b'\n', //
|
|
b'\r', b'\n', //
|
|
];
|
|
|
|
let agent = Agent::new();
|
|
assert_eq!(agent.state.pool.len(), 0);
|
|
|
|
let ro = crate::test::TestStream::new(Cursor::new(gz_body), std::io::sink());
|
|
let stream = Stream::new(
|
|
ro,
|
|
"1.1.1.1:4343".parse().unwrap(),
|
|
PoolReturner::new(&agent, PoolKey::from_parts("http", "1.1.1.1", 8080)),
|
|
);
|
|
|
|
let chunked = crate::chunked::Decoder::new(stream);
|
|
let pool_return_read: Box<(dyn Read + Send + Sync + 'static)> =
|
|
Box::new(PoolReturnRead::new(chunked));
|
|
|
|
let compression = Compression::Gzip;
|
|
let mut stream = compression.wrap_reader(pool_return_read);
|
|
|
|
io::copy(&mut stream, &mut io::sink()).unwrap();
|
|
|
|
assert_eq!(agent.state.pool.len(), 1);
|
|
}
|
|
}
|