sui_http/listener.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
use std::time::Duration;
/// Types that can listen for connections.
pub trait Listener: Send + 'static {
/// The listener's IO type.
type Io: tokio::io::AsyncRead + tokio::io::AsyncWrite + Unpin + Send + 'static;
/// The listener's address type.
// all these bounds are necessary to add this information in a request extension
type Addr: Clone + Send + Sync + 'static;
/// Accept a new incoming connection to this listener.
///
/// If the underlying accept call can return an error, this function must
/// take care of logging and retrying.
fn accept(&mut self) -> impl std::future::Future<Output = (Self::Io, Self::Addr)> + Send;
/// Returns the local address that this listener is bound to.
fn local_addr(&self) -> std::io::Result<Self::Addr>;
}
/// Extensions to [`Listener`].
pub trait ListenerExt: Listener + Sized {
/// Run a mutable closure on every accepted `Io`.
///
/// # Example
///
/// ```
/// use tracing::trace;
/// use sui_http::ListenerExt;
///
/// # async {
/// let listener = tokio::net::TcpListener::bind("0.0.0.0:3000")
/// .await
/// .unwrap()
/// .tap_io(|tcp_stream| {
/// if let Err(err) = tcp_stream.set_nodelay(true) {
/// trace!("failed to set TCP_NODELAY on incoming connection: {err:#}");
/// }
/// });
/// # };
/// ```
fn tap_io<F>(self, tap_fn: F) -> TapIo<Self, F>
where
F: FnMut(&mut Self::Io) + Send + 'static,
{
TapIo {
listener: self,
tap_fn,
}
}
}
impl<L: Listener> ListenerExt for L {}
impl Listener for tokio::net::TcpListener {
type Io = tokio::net::TcpStream;
type Addr = std::net::SocketAddr;
async fn accept(&mut self) -> (Self::Io, Self::Addr) {
loop {
match Self::accept(self).await {
Ok(tup) => return tup,
Err(e) => handle_accept_error(e).await,
}
}
}
#[inline]
fn local_addr(&self) -> std::io::Result<Self::Addr> {
Self::local_addr(self)
}
}
#[derive(Debug)]
pub struct TcpListenerWithOptions {
inner: tokio::net::TcpListener,
nodelay: bool,
keepalive: Option<Duration>,
}
impl TcpListenerWithOptions {
pub fn new<A: std::net::ToSocketAddrs>(
addr: A,
nodelay: bool,
keepalive: Option<Duration>,
) -> Result<Self, crate::BoxError> {
let std_listener = std::net::TcpListener::bind(addr)?;
std_listener.set_nonblocking(true)?;
let listener = tokio::net::TcpListener::from_std(std_listener)?;
Ok(Self::from_listener(listener, nodelay, keepalive))
}
/// Creates a new `TcpIncoming` from an existing `tokio::net::TcpListener`.
pub fn from_listener(
listener: tokio::net::TcpListener,
nodelay: bool,
keepalive: Option<Duration>,
) -> Self {
Self {
inner: listener,
nodelay,
keepalive,
}
}
// Consistent with hyper-0.14, this function does not return an error.
fn set_accepted_socket_options(&self, stream: &tokio::net::TcpStream) {
if self.nodelay {
if let Err(e) = stream.set_nodelay(true) {
tracing::warn!("error trying to set TCP nodelay: {}", e);
}
}
if let Some(timeout) = self.keepalive {
let sock_ref = socket2::SockRef::from(&stream);
let sock_keepalive = socket2::TcpKeepalive::new().with_time(timeout);
if let Err(e) = sock_ref.set_tcp_keepalive(&sock_keepalive) {
tracing::warn!("error trying to set TCP keepalive: {}", e);
}
}
}
}
impl Listener for TcpListenerWithOptions {
type Io = tokio::net::TcpStream;
type Addr = std::net::SocketAddr;
async fn accept(&mut self) -> (Self::Io, Self::Addr) {
let (io, addr) = Listener::accept(&mut self.inner).await;
self.set_accepted_socket_options(&io);
(io, addr)
}
#[inline]
fn local_addr(&self) -> std::io::Result<Self::Addr> {
Listener::local_addr(&self.inner)
}
}
// Uncomment once we update tokio to >=1.41.0
// #[cfg(unix)]
// impl Listener for tokio::net::UnixListener {
// type Io = tokio::net::UnixStream;
// type Addr = std::os::unix::net::SocketAddr;
// async fn accept(&mut self) -> (Self::Io, Self::Addr) {
// loop {
// match Self::accept(self).await {
// Ok((io, addr)) => return (io, addr.into()),
// Err(e) => handle_accept_error(e).await,
// }
// }
// }
// #[inline]
// fn local_addr(&self) -> std::io::Result<Self::Addr> {
// Self::local_addr(self).map(Into::into)
// }
// }
/// Return type of [`ListenerExt::tap_io`].
///
/// See that method for details.
pub struct TapIo<L, F> {
listener: L,
tap_fn: F,
}
impl<L, F> std::fmt::Debug for TapIo<L, F>
where
L: Listener + std::fmt::Debug,
{
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("TapIo")
.field("listener", &self.listener)
.finish_non_exhaustive()
}
}
impl<L, F> Listener for TapIo<L, F>
where
L: Listener,
F: FnMut(&mut L::Io) + Send + 'static,
{
type Io = L::Io;
type Addr = L::Addr;
async fn accept(&mut self) -> (Self::Io, Self::Addr) {
let (mut io, addr) = self.listener.accept().await;
(self.tap_fn)(&mut io);
(io, addr)
}
fn local_addr(&self) -> std::io::Result<Self::Addr> {
self.listener.local_addr()
}
}
async fn handle_accept_error(e: std::io::Error) {
if is_connection_error(&e) {
return;
}
// [From `hyper::Server` in 0.14](https://github.com/hyperium/hyper/blob/v0.14.27/src/server/tcp.rs#L186)
//
// > A possible scenario is that the process has hit the max open files
// > allowed, and so trying to accept a new connection will fail with
// > `EMFILE`. In some cases, it's preferable to just wait for some time, if
// > the application will likely close some files (or connections), and try
// > to accept the connection again. If this option is `true`, the error
// > will be logged at the `error` level, since it is still a big deal,
// > and then the listener will sleep for 1 second.
//
// hyper allowed customizing this but axum does not.
tracing::error!("accept error: {e}");
tokio::time::sleep(Duration::from_secs(1)).await;
}
fn is_connection_error(e: &std::io::Error) -> bool {
use std::io::ErrorKind;
matches!(
e.kind(),
ErrorKind::ConnectionRefused
| ErrorKind::ConnectionAborted
| ErrorKind::ConnectionReset
| ErrorKind::BrokenPipe
| ErrorKind::Interrupted
| ErrorKind::WouldBlock
| ErrorKind::TimedOut
)
}