LCOV - code coverage report
Current view: top level - libs/postgres_backend/src - lib.rs (source / functions) Coverage Total Hit
Test: 90b23405d17e36048d3bb64e314067f397803f1b.info Lines: 36.3 % 557 202
Test Date: 2024-09-20 13:14:58 Functions: 16.0 % 219 35

            Line data    Source code
       1              : //! Server-side asynchronous Postgres connection, as limited as we need.
       2              : //! To use, create PostgresBackend and run() it, passing the Handler
       3              : //! implementation determining how to process the queries. Currently its API
       4              : //! is rather narrow, but we can extend it once required.
       5              : #![deny(unsafe_code)]
       6              : #![deny(clippy::undocumented_unsafe_blocks)]
       7              : use anyhow::Context;
       8              : use bytes::Bytes;
       9              : use serde::{Deserialize, Serialize};
      10              : use std::io::ErrorKind;
      11              : use std::net::SocketAddr;
      12              : use std::pin::Pin;
      13              : use std::sync::Arc;
      14              : use std::task::{ready, Poll};
      15              : use std::{fmt, io};
      16              : use std::{future::Future, str::FromStr};
      17              : use tokio::io::{AsyncRead, AsyncWrite};
      18              : use tokio_rustls::TlsAcceptor;
      19              : use tokio_util::sync::CancellationToken;
      20              : use tracing::{debug, error, info, trace, warn};
      21              : 
      22              : use pq_proto::framed::{ConnectionError, Framed, FramedReader, FramedWriter};
      23              : use pq_proto::{
      24              :     BeMessage, FeMessage, FeStartupPacket, ProtocolError, SQLSTATE_ADMIN_SHUTDOWN,
      25              :     SQLSTATE_INTERNAL_ERROR, SQLSTATE_SUCCESSFUL_COMPLETION,
      26              : };
      27              : 
      28              : /// An error, occurred during query processing:
      29              : /// either during the connection ([`ConnectionError`]) or before/after it.
      30            0 : #[derive(thiserror::Error, Debug)]
      31              : pub enum QueryError {
      32              :     /// The connection was lost while processing the query.
      33              :     #[error(transparent)]
      34              :     Disconnected(#[from] ConnectionError),
      35              :     /// We were instructed to shutdown while processing the query
      36              :     #[error("Shutting down")]
      37              :     Shutdown,
      38              :     /// Query handler indicated that client should reconnect
      39              :     #[error("Server requested reconnect")]
      40              :     Reconnect,
      41              :     /// Query named an entity that was not found
      42              :     #[error("Not found: {0}")]
      43              :     NotFound(std::borrow::Cow<'static, str>),
      44              :     /// Authentication failure
      45              :     #[error("Unauthorized: {0}")]
      46              :     Unauthorized(std::borrow::Cow<'static, str>),
      47              :     #[error("Simulated Connection Error")]
      48              :     SimulatedConnectionError,
      49              :     /// Some other error
      50              :     #[error(transparent)]
      51              :     Other(#[from] anyhow::Error),
      52              : }
      53              : 
      54              : impl From<io::Error> for QueryError {
      55            0 :     fn from(e: io::Error) -> Self {
      56            0 :         Self::Disconnected(ConnectionError::Io(e))
      57            0 :     }
      58              : }
      59              : 
      60              : impl QueryError {
      61            0 :     pub fn pg_error_code(&self) -> &'static [u8; 5] {
      62            0 :         match self {
      63            0 :             Self::Disconnected(_) | Self::SimulatedConnectionError | Self::Reconnect => b"08006", // connection failure
      64            0 :             Self::Shutdown => SQLSTATE_ADMIN_SHUTDOWN,
      65            0 :             Self::Unauthorized(_) | Self::NotFound(_) => SQLSTATE_INTERNAL_ERROR,
      66            0 :             Self::Other(_) => SQLSTATE_INTERNAL_ERROR, // internal error
      67              :         }
      68            0 :     }
      69              : }
      70              : 
      71              : /// Returns true if the given error is a normal consequence of a network issue,
      72              : /// or the client closing the connection.
      73              : ///
      74              : /// These errors can happen during normal operations,
      75              : /// and don't indicate a bug in our code.
      76            0 : pub fn is_expected_io_error(e: &io::Error) -> bool {
      77              :     use io::ErrorKind::*;
      78            0 :     matches!(
      79            0 :         e.kind(),
      80              :         BrokenPipe | ConnectionRefused | ConnectionAborted | ConnectionReset | TimedOut
      81              :     )
      82            0 : }
      83              : 
      84              : pub trait Handler<IO> {
      85              :     /// Handle single query.
      86              :     /// postgres_backend will issue ReadyForQuery after calling this (this
      87              :     /// might be not what we want after CopyData streaming, but currently we don't
      88              :     /// care). It will also flush out the output buffer.
      89              :     fn process_query(
      90              :         &mut self,
      91              :         pgb: &mut PostgresBackend<IO>,
      92              :         query_string: &str,
      93              :     ) -> impl Future<Output = Result<(), QueryError>>;
      94              : 
      95              :     /// Called on startup packet receival, allows to process params.
      96              :     ///
      97              :     /// If Ok(false) is returned postgres_backend will skip auth -- that is needed for new users
      98              :     /// creation is the proxy code. That is quite hacky and ad-hoc solution, may be we could allow
      99              :     /// to override whole init logic in implementations.
     100            2 :     fn startup(
     101            2 :         &mut self,
     102            2 :         _pgb: &mut PostgresBackend<IO>,
     103            2 :         _sm: &FeStartupPacket,
     104            2 :     ) -> Result<(), QueryError> {
     105            2 :         Ok(())
     106            2 :     }
     107              : 
     108              :     /// Check auth jwt
     109            0 :     fn check_auth_jwt(
     110            0 :         &mut self,
     111            0 :         _pgb: &mut PostgresBackend<IO>,
     112            0 :         _jwt_response: &[u8],
     113            0 :     ) -> Result<(), QueryError> {
     114            0 :         Err(QueryError::Other(anyhow::anyhow!("JWT auth failed")))
     115            0 :     }
     116              : }
     117              : 
     118              : /// PostgresBackend protocol state.
     119              : /// XXX: The order of the constructors matters.
     120              : #[derive(Clone, Copy, PartialEq, Eq, PartialOrd)]
     121              : pub enum ProtoState {
     122              :     /// Nothing happened yet.
     123              :     Initialization,
     124              :     /// Encryption handshake is done; waiting for encrypted Startup message.
     125              :     Encrypted,
     126              :     /// Waiting for password (auth token).
     127              :     Authentication,
     128              :     /// Performed handshake and auth, ReadyForQuery is issued.
     129              :     Established,
     130              :     Closed,
     131              : }
     132              : 
     133              : #[derive(Clone, Copy)]
     134              : pub enum ProcessMsgResult {
     135              :     Continue,
     136              :     Break,
     137              : }
     138              : 
     139              : /// Either plain TCP stream or encrypted one, implementing AsyncRead + AsyncWrite.
     140              : pub enum MaybeTlsStream<IO> {
     141              :     Unencrypted(IO),
     142              :     Tls(Box<tokio_rustls::server::TlsStream<IO>>),
     143              : }
     144              : 
     145              : impl<IO: AsyncRead + AsyncWrite + Unpin> AsyncWrite for MaybeTlsStream<IO> {
     146            5 :     fn poll_write(
     147            5 :         self: Pin<&mut Self>,
     148            5 :         cx: &mut std::task::Context<'_>,
     149            5 :         buf: &[u8],
     150            5 :     ) -> Poll<io::Result<usize>> {
     151            5 :         match self.get_mut() {
     152            3 :             Self::Unencrypted(stream) => Pin::new(stream).poll_write(cx, buf),
     153            2 :             Self::Tls(stream) => Pin::new(stream).poll_write(cx, buf),
     154              :         }
     155            5 :     }
     156            5 :     fn poll_flush(self: Pin<&mut Self>, cx: &mut std::task::Context<'_>) -> Poll<io::Result<()>> {
     157            5 :         match self.get_mut() {
     158            3 :             Self::Unencrypted(stream) => Pin::new(stream).poll_flush(cx),
     159            2 :             Self::Tls(stream) => Pin::new(stream).poll_flush(cx),
     160              :         }
     161            5 :     }
     162            0 :     fn poll_shutdown(
     163            0 :         self: Pin<&mut Self>,
     164            0 :         cx: &mut std::task::Context<'_>,
     165            0 :     ) -> Poll<io::Result<()>> {
     166            0 :         match self.get_mut() {
     167            0 :             Self::Unencrypted(stream) => Pin::new(stream).poll_shutdown(cx),
     168            0 :             Self::Tls(stream) => Pin::new(stream).poll_shutdown(cx),
     169              :         }
     170            0 :     }
     171              : }
     172              : impl<IO: AsyncRead + AsyncWrite + Unpin> AsyncRead for MaybeTlsStream<IO> {
     173           12 :     fn poll_read(
     174           12 :         self: Pin<&mut Self>,
     175           12 :         cx: &mut std::task::Context<'_>,
     176           12 :         buf: &mut tokio::io::ReadBuf<'_>,
     177           12 :     ) -> Poll<io::Result<()>> {
     178           12 :         match self.get_mut() {
     179            7 :             Self::Unencrypted(stream) => Pin::new(stream).poll_read(cx, buf),
     180            5 :             Self::Tls(stream) => Pin::new(stream).poll_read(cx, buf),
     181              :         }
     182           12 :     }
     183              : }
     184              : 
     185            0 : #[derive(Debug, PartialEq, Eq, Clone, Copy, Serialize, Deserialize)]
     186              : pub enum AuthType {
     187              :     Trust,
     188              :     // This mimics postgres's AuthenticationCleartextPassword but instead of password expects JWT
     189              :     NeonJWT,
     190              : }
     191              : 
     192              : impl FromStr for AuthType {
     193              :     type Err = anyhow::Error;
     194              : 
     195            0 :     fn from_str(s: &str) -> Result<Self, Self::Err> {
     196            0 :         match s {
     197            0 :             "Trust" => Ok(Self::Trust),
     198            0 :             "NeonJWT" => Ok(Self::NeonJWT),
     199            0 :             _ => anyhow::bail!("invalid value \"{s}\" for auth type"),
     200              :         }
     201            0 :     }
     202              : }
     203              : 
     204              : impl fmt::Display for AuthType {
     205            0 :     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
     206            0 :         f.write_str(match self {
     207            0 :             AuthType::Trust => "Trust",
     208            0 :             AuthType::NeonJWT => "NeonJWT",
     209              :         })
     210            0 :     }
     211              : }
     212              : 
     213              : /// Either full duplex Framed or write only half; the latter is left in
     214              : /// PostgresBackend after call to `split`. In principle we could always store a
     215              : /// pair of splitted handles, but that would force to to pay splitting price
     216              : /// (Arc and kinda mutex inside polling) for all uses (e.g. pageserver).
     217              : enum MaybeWriteOnly<IO> {
     218              :     Full(Framed<MaybeTlsStream<IO>>),
     219              :     WriteOnly(FramedWriter<MaybeTlsStream<IO>>),
     220              :     Broken, // temporary value palmed off during the split
     221              : }
     222              : 
     223              : impl<IO: AsyncRead + AsyncWrite + Unpin> MaybeWriteOnly<IO> {
     224            3 :     async fn read_startup_message(&mut self) -> Result<Option<FeStartupPacket>, ConnectionError> {
     225            3 :         match self {
     226            3 :             MaybeWriteOnly::Full(framed) => framed.read_startup_message().await,
     227              :             MaybeWriteOnly::WriteOnly(_) => {
     228            0 :                 Err(io::Error::new(ErrorKind::Other, "reading from write only half").into())
     229              :             }
     230            0 :             MaybeWriteOnly::Broken => panic!("IO on invalid MaybeWriteOnly"),
     231              :         }
     232            3 :     }
     233              : 
     234            4 :     async fn read_message(&mut self) -> Result<Option<FeMessage>, ConnectionError> {
     235            4 :         match self {
     236            4 :             MaybeWriteOnly::Full(framed) => framed.read_message().await,
     237              :             MaybeWriteOnly::WriteOnly(_) => {
     238            0 :                 Err(io::Error::new(ErrorKind::Other, "reading from write only half").into())
     239              :             }
     240            0 :             MaybeWriteOnly::Broken => panic!("IO on invalid MaybeWriteOnly"),
     241              :         }
     242            2 :     }
     243              : 
     244           19 :     fn write_message_noflush(&mut self, msg: &BeMessage<'_>) -> Result<(), ProtocolError> {
     245           19 :         match self {
     246           19 :             MaybeWriteOnly::Full(framed) => framed.write_message(msg),
     247            0 :             MaybeWriteOnly::WriteOnly(framed_writer) => framed_writer.write_message_noflush(msg),
     248            0 :             MaybeWriteOnly::Broken => panic!("IO on invalid MaybeWriteOnly"),
     249              :         }
     250           19 :     }
     251              : 
     252            5 :     async fn flush(&mut self) -> io::Result<()> {
     253            5 :         match self {
     254            5 :             MaybeWriteOnly::Full(framed) => framed.flush().await,
     255            0 :             MaybeWriteOnly::WriteOnly(framed_writer) => framed_writer.flush().await,
     256            0 :             MaybeWriteOnly::Broken => panic!("IO on invalid MaybeWriteOnly"),
     257              :         }
     258            5 :     }
     259              : 
     260              :     /// Cancellation safe as long as the underlying IO is cancellation safe.
     261            0 :     async fn shutdown(&mut self) -> io::Result<()> {
     262            0 :         match self {
     263            0 :             MaybeWriteOnly::Full(framed) => framed.shutdown().await,
     264            0 :             MaybeWriteOnly::WriteOnly(framed_writer) => framed_writer.shutdown().await,
     265            0 :             MaybeWriteOnly::Broken => panic!("IO on invalid MaybeWriteOnly"),
     266              :         }
     267            0 :     }
     268              : }
     269              : 
     270              : pub struct PostgresBackend<IO> {
     271              :     framed: MaybeWriteOnly<IO>,
     272              : 
     273              :     pub state: ProtoState,
     274              : 
     275              :     auth_type: AuthType,
     276              : 
     277              :     peer_addr: SocketAddr,
     278              :     pub tls_config: Option<Arc<rustls::ServerConfig>>,
     279              : }
     280              : 
     281              : pub type PostgresBackendTCP = PostgresBackend<tokio::net::TcpStream>;
     282              : 
     283              : /// Cast a byte slice to a string slice, dropping null terminator if there's one.
     284            2 : fn cstr_to_str(bytes: &[u8]) -> anyhow::Result<&str> {
     285            2 :     let without_null = bytes.strip_suffix(&[0]).unwrap_or(bytes);
     286            2 :     std::str::from_utf8(without_null).map_err(|e| e.into())
     287            2 : }
     288              : 
     289              : impl PostgresBackend<tokio::net::TcpStream> {
     290            2 :     pub fn new(
     291            2 :         socket: tokio::net::TcpStream,
     292            2 :         auth_type: AuthType,
     293            2 :         tls_config: Option<Arc<rustls::ServerConfig>>,
     294            2 :     ) -> io::Result<Self> {
     295            2 :         let peer_addr = socket.peer_addr()?;
     296            2 :         let stream = MaybeTlsStream::Unencrypted(socket);
     297            2 : 
     298            2 :         Ok(Self {
     299            2 :             framed: MaybeWriteOnly::Full(Framed::new(stream)),
     300            2 :             state: ProtoState::Initialization,
     301            2 :             auth_type,
     302            2 :             tls_config,
     303            2 :             peer_addr,
     304            2 :         })
     305            2 :     }
     306              : }
     307              : 
     308              : impl<IO: AsyncRead + AsyncWrite + Unpin> PostgresBackend<IO> {
     309            0 :     pub fn new_from_io(
     310            0 :         socket: IO,
     311            0 :         peer_addr: SocketAddr,
     312            0 :         auth_type: AuthType,
     313            0 :         tls_config: Option<Arc<rustls::ServerConfig>>,
     314            0 :     ) -> io::Result<Self> {
     315            0 :         let stream = MaybeTlsStream::Unencrypted(socket);
     316            0 : 
     317            0 :         Ok(Self {
     318            0 :             framed: MaybeWriteOnly::Full(Framed::new(stream)),
     319            0 :             state: ProtoState::Initialization,
     320            0 :             auth_type,
     321            0 :             tls_config,
     322            0 :             peer_addr,
     323            0 :         })
     324            0 :     }
     325              : 
     326            0 :     pub fn get_peer_addr(&self) -> &SocketAddr {
     327            0 :         &self.peer_addr
     328            0 :     }
     329              : 
     330              :     /// Read full message or return None if connection is cleanly closed with no
     331              :     /// unprocessed data.
     332            4 :     pub async fn read_message(&mut self) -> Result<Option<FeMessage>, ConnectionError> {
     333            4 :         if let ProtoState::Closed = self.state {
     334            0 :             Ok(None)
     335              :         } else {
     336            4 :             match self.framed.read_message().await {
     337            2 :                 Ok(m) => {
     338            2 :                     trace!("read msg {:?}", m);
     339            2 :                     Ok(m)
     340              :                 }
     341            0 :                 Err(e) => {
     342            0 :                     // remember not to try to read anymore
     343            0 :                     self.state = ProtoState::Closed;
     344            0 :                     Err(e)
     345              :                 }
     346              :             }
     347              :         }
     348            2 :     }
     349              : 
     350              :     /// Write message into internal output buffer, doesn't flush it. Technically
     351              :     /// error type can be only ProtocolError here (if, unlikely, serialization
     352              :     /// fails), but callers typically wrap it anyway.
     353           19 :     pub fn write_message_noflush(
     354           19 :         &mut self,
     355           19 :         message: &BeMessage<'_>,
     356           19 :     ) -> Result<&mut Self, ConnectionError> {
     357           19 :         self.framed.write_message_noflush(message)?;
     358           19 :         trace!("wrote msg {:?}", message);
     359           19 :         Ok(self)
     360           19 :     }
     361              : 
     362              :     /// Flush output buffer into the socket.
     363            5 :     pub async fn flush(&mut self) -> io::Result<()> {
     364            5 :         self.framed.flush().await
     365            5 :     }
     366              : 
     367              :     /// Polling version of `flush()`, saves the caller need to pin.
     368            0 :     pub fn poll_flush(
     369            0 :         &mut self,
     370            0 :         cx: &mut std::task::Context<'_>,
     371            0 :     ) -> Poll<Result<(), std::io::Error>> {
     372            0 :         let flush_fut = std::pin::pin!(self.flush());
     373            0 :         flush_fut.poll(cx)
     374            0 :     }
     375              : 
     376              :     /// Write message into internal output buffer and flush it to the stream.
     377            3 :     pub async fn write_message(
     378            3 :         &mut self,
     379            3 :         message: &BeMessage<'_>,
     380            3 :     ) -> Result<&mut Self, ConnectionError> {
     381            3 :         self.write_message_noflush(message)?;
     382            3 :         self.flush().await?;
     383            3 :         Ok(self)
     384            3 :     }
     385              : 
     386              :     /// Returns an AsyncWrite implementation that wraps all the data written
     387              :     /// to it in CopyData messages, and writes them to the connection
     388              :     ///
     389              :     /// The caller is responsible for sending CopyOutResponse and CopyDone messages.
     390            0 :     pub fn copyout_writer(&mut self) -> CopyDataWriter<IO> {
     391            0 :         CopyDataWriter { pgb: self }
     392            0 :     }
     393              : 
     394              :     /// Wrapper for run_message_loop() that shuts down socket when we are done
     395            2 :     pub async fn run(
     396            2 :         mut self,
     397            2 :         handler: &mut impl Handler<IO>,
     398            2 :         cancel: &CancellationToken,
     399            2 :     ) -> Result<(), QueryError> {
     400            7 :         let ret = self.run_message_loop(handler, cancel).await;
     401              : 
     402            0 :         tokio::select! {
     403            0 :             _ = cancel.cancelled() => {
     404            0 :                 // do nothing; we most likely got already stopped by shutdown and will log it next.
     405            0 :             }
     406            0 :             _ = self.framed.shutdown() => {
     407            0 :                 // socket might be already closed, e.g. if previously received error,
     408            0 :                 // so ignore result.
     409            0 :             },
     410              :         }
     411              : 
     412            0 :         match ret {
     413            0 :             Ok(()) => Ok(()),
     414              :             Err(QueryError::Shutdown) => {
     415            0 :                 info!("Stopped due to shutdown");
     416            0 :                 Ok(())
     417              :             }
     418              :             Err(QueryError::Reconnect) => {
     419              :                 // Dropping out of this loop implicitly disconnects
     420            0 :                 info!("Stopped due to handler reconnect request");
     421            0 :                 Ok(())
     422              :             }
     423            0 :             Err(QueryError::Disconnected(e)) => {
     424            0 :                 info!("Disconnected ({e:#})");
     425              :                 // Disconnection is not an error: we just use it that way internally to drop
     426              :                 // out of loops.
     427            0 :                 Ok(())
     428              :             }
     429            0 :             e => e,
     430              :         }
     431            0 :     }
     432              : 
     433            2 :     async fn run_message_loop(
     434            2 :         &mut self,
     435            2 :         handler: &mut impl Handler<IO>,
     436            2 :         cancel: &CancellationToken,
     437            2 :     ) -> Result<(), QueryError> {
     438            2 :         trace!("postgres backend to {:?} started", self.peer_addr);
     439              : 
     440            2 :         tokio::select!(
     441              :             biased;
     442              : 
     443            2 :             _ = cancel.cancelled() => {
     444              :                 // We were requested to shut down.
     445            0 :                 tracing::info!("shutdown request received during handshake");
     446            0 :                 return Err(QueryError::Shutdown)
     447              :             },
     448              : 
     449            2 :             handshake_r = self.handshake(handler) => {
     450            2 :                 handshake_r?;
     451              :             }
     452              :         );
     453              : 
     454              :         // Authentication completed
     455            2 :         let mut query_string = Bytes::new();
     456            4 :         while let Some(msg) = tokio::select!(
     457              :             biased;
     458            4 :             _ = cancel.cancelled() => {
     459              :                 // We were requested to shut down.
     460            0 :                 tracing::info!("shutdown request received in run_message_loop");
     461            0 :                 return Err(QueryError::Shutdown)
     462              :             },
     463            4 :             msg = self.read_message() => { msg },
     464            0 :         )? {
     465            2 :             trace!("got message {:?}", msg);
     466              : 
     467            2 :             let result = self.process_message(handler, msg, &mut query_string).await;
     468            2 :             tokio::select!(
     469              :                 biased;
     470            2 :                 _ = cancel.cancelled() => {
     471              :                     // We were requested to shut down.
     472            0 :                     tracing::info!("shutdown request received during response flush");
     473              : 
     474              :                     // If we exited process_message with a shutdown error, there may be
     475              :                     // some valid response content on in our transmit buffer: permit sending
     476              :                     // this within a short timeout.  This is a best effort thing so we don't
     477              :                     // care about the result.
     478            0 :                     tokio::time::timeout(std::time::Duration::from_millis(500), self.flush()).await.ok();
     479            0 : 
     480            0 :                     return Err(QueryError::Shutdown)
     481              :                 },
     482            2 :                 flush_r = self.flush() => {
     483            2 :                     flush_r?;
     484              :                 }
     485              :             );
     486              : 
     487            2 :             match result? {
     488              :                 ProcessMsgResult::Continue => {
     489            2 :                     continue;
     490              :                 }
     491            0 :                 ProcessMsgResult::Break => break,
     492              :             }
     493              :         }
     494              : 
     495            0 :         trace!("postgres backend to {:?} exited", self.peer_addr);
     496            0 :         Ok(())
     497            0 :     }
     498              : 
     499              :     /// Try to upgrade MaybeTlsStream into actual TLS one, performing handshake.
     500            1 :     async fn tls_upgrade(
     501            1 :         src: MaybeTlsStream<IO>,
     502            1 :         tls_config: Arc<rustls::ServerConfig>,
     503            1 :     ) -> anyhow::Result<MaybeTlsStream<IO>> {
     504            1 :         match src {
     505            1 :             MaybeTlsStream::Unencrypted(s) => {
     506            1 :                 let acceptor = TlsAcceptor::from(tls_config);
     507            2 :                 let tls_stream = acceptor.accept(s).await?;
     508            1 :                 Ok(MaybeTlsStream::Tls(Box::new(tls_stream)))
     509              :             }
     510              :             MaybeTlsStream::Tls(_) => {
     511            0 :                 anyhow::bail!("TLS already started");
     512              :             }
     513              :         }
     514            1 :     }
     515              : 
     516            1 :     async fn start_tls(&mut self) -> anyhow::Result<()> {
     517            1 :         // temporary replace stream with fake to cook TLS one, Indiana Jones style
     518            1 :         match std::mem::replace(&mut self.framed, MaybeWriteOnly::Broken) {
     519            1 :             MaybeWriteOnly::Full(framed) => {
     520            1 :                 let tls_config = self
     521            1 :                     .tls_config
     522            1 :                     .as_ref()
     523            1 :                     .context("start_tls called without conf")?
     524            1 :                     .clone();
     525            1 :                 let tls_framed = framed
     526            1 :                     .map_stream(|s| PostgresBackend::tls_upgrade(s, tls_config))
     527            2 :                     .await?;
     528              :                 // push back ready TLS stream
     529            1 :                 self.framed = MaybeWriteOnly::Full(tls_framed);
     530            1 :                 Ok(())
     531              :             }
     532              :             MaybeWriteOnly::WriteOnly(_) => {
     533            0 :                 anyhow::bail!("TLS upgrade attempt in split state")
     534              :             }
     535            0 :             MaybeWriteOnly::Broken => panic!("TLS upgrade on framed in invalid state"),
     536              :         }
     537            1 :     }
     538              : 
     539              :     /// Split off owned read part from which messages can be read in different
     540              :     /// task/thread.
     541            0 :     pub fn split(&mut self) -> anyhow::Result<PostgresBackendReader<IO>> {
     542            0 :         // temporary replace stream with fake to cook split one, Indiana Jones style
     543            0 :         match std::mem::replace(&mut self.framed, MaybeWriteOnly::Broken) {
     544            0 :             MaybeWriteOnly::Full(framed) => {
     545            0 :                 let (reader, writer) = framed.split();
     546            0 :                 self.framed = MaybeWriteOnly::WriteOnly(writer);
     547            0 :                 Ok(PostgresBackendReader {
     548            0 :                     reader,
     549            0 :                     closed: false,
     550            0 :                 })
     551              :             }
     552              :             MaybeWriteOnly::WriteOnly(_) => {
     553            0 :                 anyhow::bail!("PostgresBackend is already split")
     554              :             }
     555            0 :             MaybeWriteOnly::Broken => panic!("split on framed in invalid state"),
     556              :         }
     557            0 :     }
     558              : 
     559              :     /// Join read part back.
     560            0 :     pub fn unsplit(&mut self, reader: PostgresBackendReader<IO>) -> anyhow::Result<()> {
     561            0 :         // temporary replace stream with fake to cook joined one, Indiana Jones style
     562            0 :         match std::mem::replace(&mut self.framed, MaybeWriteOnly::Broken) {
     563              :             MaybeWriteOnly::Full(_) => {
     564            0 :                 anyhow::bail!("PostgresBackend is not split")
     565              :             }
     566            0 :             MaybeWriteOnly::WriteOnly(writer) => {
     567            0 :                 let joined = Framed::unsplit(reader.reader, writer);
     568            0 :                 self.framed = MaybeWriteOnly::Full(joined);
     569            0 :                 // if reader encountered connection error, do not attempt reading anymore
     570            0 :                 if reader.closed {
     571            0 :                     self.state = ProtoState::Closed;
     572            0 :                 }
     573            0 :                 Ok(())
     574              :             }
     575            0 :             MaybeWriteOnly::Broken => panic!("unsplit on framed in invalid state"),
     576              :         }
     577            0 :     }
     578              : 
     579              :     /// Perform handshake with the client, transitioning to Established.
     580              :     /// In case of EOF during handshake logs this, sets state to Closed and returns Ok(()).
     581            2 :     async fn handshake(&mut self, handler: &mut impl Handler<IO>) -> Result<(), QueryError> {
     582            5 :         while self.state < ProtoState::Authentication {
     583            3 :             match self.framed.read_startup_message().await? {
     584            3 :                 Some(msg) => {
     585            3 :                     self.process_startup_message(handler, msg).await?;
     586              :                 }
     587              :                 None => {
     588            0 :                     trace!(
     589            0 :                         "postgres backend to {:?} received EOF during handshake",
     590              :                         self.peer_addr
     591              :                     );
     592            0 :                     self.state = ProtoState::Closed;
     593            0 :                     return Err(QueryError::Disconnected(ConnectionError::Protocol(
     594            0 :                         ProtocolError::Protocol("EOF during handshake".to_string()),
     595            0 :                     )));
     596              :                 }
     597              :             }
     598              :         }
     599              : 
     600              :         // Perform auth, if needed.
     601            2 :         if self.state == ProtoState::Authentication {
     602            0 :             match self.framed.read_message().await? {
     603            0 :                 Some(FeMessage::PasswordMessage(m)) => {
     604            0 :                     assert!(self.auth_type == AuthType::NeonJWT);
     605              : 
     606            0 :                     let (_, jwt_response) = m.split_last().context("protocol violation")?;
     607              : 
     608            0 :                     if let Err(e) = handler.check_auth_jwt(self, jwt_response) {
     609            0 :                         self.write_message_noflush(&BeMessage::ErrorResponse(
     610            0 :                             &short_error(&e),
     611            0 :                             Some(e.pg_error_code()),
     612            0 :                         ))?;
     613            0 :                         return Err(e);
     614            0 :                     }
     615            0 : 
     616            0 :                     self.write_message_noflush(&BeMessage::AuthenticationOk)?
     617            0 :                         .write_message_noflush(&BeMessage::CLIENT_ENCODING)?
     618            0 :                         .write_message(&BeMessage::ReadyForQuery)
     619            0 :                         .await?;
     620            0 :                     self.state = ProtoState::Established;
     621              :                 }
     622            0 :                 Some(m) => {
     623            0 :                     return Err(QueryError::Other(anyhow::anyhow!(
     624            0 :                         "Unexpected message {:?} while waiting for handshake",
     625            0 :                         m
     626            0 :                     )));
     627              :                 }
     628              :                 None => {
     629            0 :                     trace!(
     630            0 :                         "postgres backend to {:?} received EOF during auth",
     631              :                         self.peer_addr
     632              :                     );
     633            0 :                     self.state = ProtoState::Closed;
     634            0 :                     return Err(QueryError::Disconnected(ConnectionError::Protocol(
     635            0 :                         ProtocolError::Protocol("EOF during auth".to_string()),
     636            0 :                     )));
     637              :                 }
     638              :             }
     639            2 :         }
     640              : 
     641            2 :         Ok(())
     642            2 :     }
     643              : 
     644              :     /// Process startup packet:
     645              :     /// - transition to Established if auth type is trust
     646              :     /// - transition to Authentication if auth type is NeonJWT.
     647              :     /// - or perform TLS handshake -- then need to call this again to receive
     648              :     ///   actual startup packet.
     649            3 :     async fn process_startup_message(
     650            3 :         &mut self,
     651            3 :         handler: &mut impl Handler<IO>,
     652            3 :         msg: FeStartupPacket,
     653            3 :     ) -> Result<(), QueryError> {
     654            3 :         assert!(self.state < ProtoState::Authentication);
     655            3 :         let have_tls = self.tls_config.is_some();
     656            3 :         match msg {
     657            1 :             FeStartupPacket::SslRequest { direct } => {
     658            1 :                 debug!("SSL requested");
     659              : 
     660            1 :                 if !direct {
     661            1 :                     self.write_message(&BeMessage::EncryptionResponse(have_tls))
     662            0 :                         .await?;
     663            0 :                 } else if !have_tls {
     664            0 :                     return Err(QueryError::Other(anyhow::anyhow!(
     665            0 :                         "direct SSL negotiation but no TLS support"
     666            0 :                     )));
     667            0 :                 }
     668              : 
     669            1 :                 if have_tls {
     670            2 :                     self.start_tls().await?;
     671            1 :                     self.state = ProtoState::Encrypted;
     672            0 :                 }
     673              :             }
     674              :             FeStartupPacket::GssEncRequest => {
     675            0 :                 debug!("GSS requested");
     676            0 :                 self.write_message(&BeMessage::EncryptionResponse(false))
     677            0 :                     .await?;
     678              :             }
     679              :             FeStartupPacket::StartupMessage { .. } => {
     680            2 :                 if have_tls && !matches!(self.state, ProtoState::Encrypted) {
     681            0 :                     self.write_message(&BeMessage::ErrorResponse("must connect with TLS", None))
     682            0 :                         .await?;
     683            0 :                     return Err(QueryError::Other(anyhow::anyhow!(
     684            0 :                         "client did not connect with TLS"
     685            0 :                     )));
     686            2 :                 }
     687            2 : 
     688            2 :                 // NB: startup() may change self.auth_type -- we are using that in proxy code
     689            2 :                 // to bypass auth for new users.
     690            2 :                 handler.startup(self, &msg)?;
     691              : 
     692            2 :                 match self.auth_type {
     693              :                     AuthType::Trust => {
     694            2 :                         self.write_message_noflush(&BeMessage::AuthenticationOk)?
     695            2 :                             .write_message_noflush(&BeMessage::CLIENT_ENCODING)?
     696            2 :                             .write_message_noflush(&BeMessage::INTEGER_DATETIMES)?
     697              :                             // The async python driver requires a valid server_version
     698            2 :                             .write_message_noflush(&BeMessage::server_version("14.1"))?
     699            2 :                             .write_message(&BeMessage::ReadyForQuery)
     700            0 :                             .await?;
     701            2 :                         self.state = ProtoState::Established;
     702              :                     }
     703              :                     AuthType::NeonJWT => {
     704            0 :                         self.write_message(&BeMessage::AuthenticationCleartextPassword)
     705            0 :                             .await?;
     706            0 :                         self.state = ProtoState::Authentication;
     707              :                     }
     708              :                 }
     709              :             }
     710              :             FeStartupPacket::CancelRequest { .. } => {
     711            0 :                 return Err(QueryError::Other(anyhow::anyhow!(
     712            0 :                     "Unexpected CancelRequest message during handshake"
     713            0 :                 )));
     714              :             }
     715              :         }
     716            3 :         Ok(())
     717            3 :     }
     718              : 
     719            2 :     async fn process_message(
     720            2 :         &mut self,
     721            2 :         handler: &mut impl Handler<IO>,
     722            2 :         msg: FeMessage,
     723            2 :         unnamed_query_string: &mut Bytes,
     724            2 :     ) -> Result<ProcessMsgResult, QueryError> {
     725            2 :         // Allow only startup and password messages during auth. Otherwise client would be able to bypass auth
     726            2 :         // TODO: change that to proper top-level match of protocol state with separate message handling for each state
     727            2 :         assert!(self.state == ProtoState::Established);
     728              : 
     729            2 :         match msg {
     730            2 :             FeMessage::Query(body) => {
     731              :                 // remove null terminator
     732            2 :                 let query_string = cstr_to_str(&body)?;
     733              : 
     734            2 :                 trace!("got query {query_string:?}");
     735            2 :                 if let Err(e) = handler.process_query(self, query_string).await {
     736            0 :                     match e {
     737            0 :                         QueryError::Shutdown => return Ok(ProcessMsgResult::Break),
     738              :                         QueryError::SimulatedConnectionError => {
     739            0 :                             return Err(QueryError::SimulatedConnectionError)
     740              :                         }
     741            0 :                         e => {
     742            0 :                             log_query_error(query_string, &e);
     743            0 :                             let short_error = short_error(&e);
     744            0 :                             self.write_message_noflush(&BeMessage::ErrorResponse(
     745            0 :                                 &short_error,
     746            0 :                                 Some(e.pg_error_code()),
     747            0 :                             ))?;
     748              :                         }
     749              :                     }
     750            2 :                 }
     751            2 :                 self.write_message_noflush(&BeMessage::ReadyForQuery)?;
     752              :             }
     753              : 
     754            0 :             FeMessage::Parse(m) => {
     755            0 :                 *unnamed_query_string = m.query_string;
     756            0 :                 self.write_message_noflush(&BeMessage::ParseComplete)?;
     757              :             }
     758              : 
     759              :             FeMessage::Describe(_) => {
     760            0 :                 self.write_message_noflush(&BeMessage::ParameterDescription)?
     761            0 :                     .write_message_noflush(&BeMessage::NoData)?;
     762              :             }
     763              : 
     764              :             FeMessage::Bind(_) => {
     765            0 :                 self.write_message_noflush(&BeMessage::BindComplete)?;
     766              :             }
     767              : 
     768              :             FeMessage::Close(_) => {
     769            0 :                 self.write_message_noflush(&BeMessage::CloseComplete)?;
     770              :             }
     771              : 
     772              :             FeMessage::Execute(_) => {
     773            0 :                 let query_string = cstr_to_str(unnamed_query_string)?;
     774            0 :                 trace!("got execute {query_string:?}");
     775            0 :                 if let Err(e) = handler.process_query(self, query_string).await {
     776            0 :                     log_query_error(query_string, &e);
     777            0 :                     self.write_message_noflush(&BeMessage::ErrorResponse(
     778            0 :                         &e.to_string(),
     779            0 :                         Some(e.pg_error_code()),
     780            0 :                     ))?;
     781            0 :                 }
     782              :                 // NOTE there is no ReadyForQuery message. This handler is used
     783              :                 // for basebackup and it uses CopyOut which doesn't require
     784              :                 // ReadyForQuery message and backend just switches back to
     785              :                 // processing mode after sending CopyDone or ErrorResponse.
     786              :             }
     787              : 
     788              :             FeMessage::Sync => {
     789            0 :                 self.write_message_noflush(&BeMessage::ReadyForQuery)?;
     790              :             }
     791              : 
     792              :             FeMessage::Terminate => {
     793            0 :                 return Ok(ProcessMsgResult::Break);
     794              :             }
     795              : 
     796              :             // We prefer explicit pattern matching to wildcards, because
     797              :             // this helps us spot the places where new variants are missing
     798              :             FeMessage::CopyData(_)
     799              :             | FeMessage::CopyDone
     800              :             | FeMessage::CopyFail
     801              :             | FeMessage::PasswordMessage(_) => {
     802            0 :                 return Err(QueryError::Other(anyhow::anyhow!(
     803            0 :                     "unexpected message type: {msg:?}",
     804            0 :                 )));
     805              :             }
     806              :         }
     807              : 
     808            2 :         Ok(ProcessMsgResult::Continue)
     809            2 :     }
     810              : 
     811              :     /// - Log as info/error result of handling COPY stream and send back
     812              :     ///   ErrorResponse if that makes sense.
     813              :     /// - Shutdown the stream if we got Terminate.
     814              :     /// - Then close the connection because we don't handle exiting from COPY
     815              :     ///   stream normally.
     816            0 :     pub async fn handle_copy_stream_end(&mut self, end: CopyStreamHandlerEnd) {
     817              :         use CopyStreamHandlerEnd::*;
     818              : 
     819            0 :         let expected_end = match &end {
     820            0 :             ServerInitiated(_) | CopyDone | CopyFail | Terminate | EOF => true,
     821            0 :             CopyStreamHandlerEnd::Disconnected(ConnectionError::Io(io_error))
     822            0 :                 if is_expected_io_error(io_error) =>
     823            0 :             {
     824            0 :                 true
     825              :             }
     826            0 :             _ => false,
     827              :         };
     828            0 :         if expected_end {
     829            0 :             info!("terminated: {:#}", end);
     830              :         } else {
     831            0 :             error!("terminated: {:?}", end);
     832              :         }
     833              : 
     834              :         // Note: no current usages ever send this
     835            0 :         if let CopyDone = &end {
     836            0 :             if let Err(e) = self.write_message(&BeMessage::CopyDone).await {
     837            0 :                 error!("failed to send CopyDone: {}", e);
     838            0 :             }
     839            0 :         }
     840              : 
     841            0 :         let err_to_send_and_errcode = match &end {
     842            0 :             ServerInitiated(_) => Some((end.to_string(), SQLSTATE_SUCCESSFUL_COMPLETION)),
     843            0 :             Other(_) => Some((format!("{end:#}"), SQLSTATE_INTERNAL_ERROR)),
     844              :             // Note: CopyFail in duplex copy is somewhat unexpected (at least to
     845              :             // PG walsender; evidently and per my docs reading client should
     846              :             // finish it with CopyDone). It is not a problem to recover from it
     847              :             // finishing the stream in both directions like we do, but note that
     848              :             // sync rust-postgres client (which we don't use anymore) hangs if
     849              :             // socket is not closed here.
     850              :             // https://github.com/sfackler/rust-postgres/issues/755
     851              :             // https://github.com/neondatabase/neon/issues/935
     852              :             //
     853              :             // Currently, the version of tokio_postgres replication patch we use
     854              :             // sends this when it closes the stream (e.g. pageserver decided to
     855              :             // switch conn to another safekeeper and client gets dropped).
     856              :             // Moreover, seems like 'connection' task errors with 'unexpected
     857              :             // message from server' when it receives ErrorResponse (anything but
     858              :             // CopyData/CopyDone) back.
     859            0 :             CopyFail => Some((end.to_string(), SQLSTATE_SUCCESSFUL_COMPLETION)),
     860            0 :             _ => None,
     861              :         };
     862            0 :         if let Some((err, errcode)) = err_to_send_and_errcode {
     863            0 :             if let Err(ee) = self
     864            0 :                 .write_message(&BeMessage::ErrorResponse(&err, Some(errcode)))
     865            0 :                 .await
     866              :             {
     867            0 :                 error!("failed to send ErrorResponse: {}", ee);
     868            0 :             }
     869            0 :         }
     870              : 
     871              :         // Proper COPY stream finishing to continue using the connection is not
     872              :         // implemented at the server side (we don't need it so far). To prevent
     873              :         // further usages of the connection, close it.
     874            0 :         self.framed.shutdown().await.ok();
     875            0 :         self.state = ProtoState::Closed;
     876            0 :     }
     877              : }
     878              : 
     879              : pub struct PostgresBackendReader<IO> {
     880              :     reader: FramedReader<MaybeTlsStream<IO>>,
     881              :     closed: bool, // true if received error closing the connection
     882              : }
     883              : 
     884              : impl<IO: AsyncRead + AsyncWrite + Unpin> PostgresBackendReader<IO> {
     885              :     /// Read full message or return None if connection is cleanly closed with no
     886              :     /// unprocessed data.
     887            0 :     pub async fn read_message(&mut self) -> Result<Option<FeMessage>, ConnectionError> {
     888            0 :         match self.reader.read_message().await {
     889            0 :             Ok(m) => {
     890            0 :                 trace!("read msg {:?}", m);
     891            0 :                 Ok(m)
     892              :             }
     893            0 :             Err(e) => {
     894            0 :                 self.closed = true;
     895            0 :                 Err(e)
     896              :             }
     897              :         }
     898            0 :     }
     899              : 
     900              :     /// Get CopyData contents of the next message in COPY stream or error
     901              :     /// closing it. The error type is wider than actual errors which can happen
     902              :     /// here -- it includes 'Other' and 'ServerInitiated', but that's ok for
     903              :     /// current callers.
     904            0 :     pub async fn read_copy_message(&mut self) -> Result<Bytes, CopyStreamHandlerEnd> {
     905            0 :         match self.read_message().await? {
     906            0 :             Some(msg) => match msg {
     907            0 :                 FeMessage::CopyData(m) => Ok(m),
     908            0 :                 FeMessage::CopyDone => Err(CopyStreamHandlerEnd::CopyDone),
     909            0 :                 FeMessage::CopyFail => Err(CopyStreamHandlerEnd::CopyFail),
     910            0 :                 FeMessage::Terminate => Err(CopyStreamHandlerEnd::Terminate),
     911            0 :                 _ => Err(CopyStreamHandlerEnd::from(ConnectionError::Protocol(
     912            0 :                     ProtocolError::Protocol(format!("unexpected message in COPY stream {:?}", msg)),
     913            0 :                 ))),
     914              :             },
     915            0 :             None => Err(CopyStreamHandlerEnd::EOF),
     916              :         }
     917            0 :     }
     918              : }
     919              : 
     920              : ///
     921              : /// A futures::AsyncWrite implementation that wraps all data written to it in CopyData
     922              : /// messages.
     923              : ///
     924              : 
     925              : pub struct CopyDataWriter<'a, IO> {
     926              :     pgb: &'a mut PostgresBackend<IO>,
     927              : }
     928              : 
     929              : impl<'a, IO: AsyncRead + AsyncWrite + Unpin> AsyncWrite for CopyDataWriter<'a, IO> {
     930            0 :     fn poll_write(
     931            0 :         self: Pin<&mut Self>,
     932            0 :         cx: &mut std::task::Context<'_>,
     933            0 :         buf: &[u8],
     934            0 :     ) -> Poll<Result<usize, std::io::Error>> {
     935            0 :         let this = self.get_mut();
     936              : 
     937              :         // It's not strictly required to flush between each message, but makes it easier
     938              :         // to view in wireshark, and usually the messages that the callers write are
     939              :         // decently-sized anyway.
     940            0 :         if let Err(err) = ready!(this.pgb.poll_flush(cx)) {
     941            0 :             return Poll::Ready(Err(err));
     942            0 :         }
     943            0 : 
     944            0 :         // CopyData
     945            0 :         // XXX: if the input is large, we should split it into multiple messages.
     946            0 :         // Not sure what the threshold should be, but the ultimate hard limit is that
     947            0 :         // the length cannot exceed u32.
     948            0 :         this.pgb
     949            0 :             .write_message_noflush(&BeMessage::CopyData(buf))
     950            0 :             // write_message only writes to the buffer, so it can fail iff the
     951            0 :             // message is invaid, but CopyData can't be invalid.
     952            0 :             .map_err(|_| io::Error::new(ErrorKind::Other, "failed to serialize CopyData"))?;
     953              : 
     954            0 :         Poll::Ready(Ok(buf.len()))
     955            0 :     }
     956              : 
     957            0 :     fn poll_flush(
     958            0 :         self: Pin<&mut Self>,
     959            0 :         cx: &mut std::task::Context<'_>,
     960            0 :     ) -> Poll<Result<(), std::io::Error>> {
     961            0 :         let this = self.get_mut();
     962            0 :         this.pgb.poll_flush(cx)
     963            0 :     }
     964              : 
     965            0 :     fn poll_shutdown(
     966            0 :         self: Pin<&mut Self>,
     967            0 :         cx: &mut std::task::Context<'_>,
     968            0 :     ) -> Poll<Result<(), std::io::Error>> {
     969            0 :         let this = self.get_mut();
     970            0 :         this.pgb.poll_flush(cx)
     971            0 :     }
     972              : }
     973              : 
     974            0 : pub fn short_error(e: &QueryError) -> String {
     975            0 :     match e {
     976            0 :         QueryError::Disconnected(connection_error) => connection_error.to_string(),
     977            0 :         QueryError::Reconnect => "reconnect".to_string(),
     978            0 :         QueryError::Shutdown => "shutdown".to_string(),
     979            0 :         QueryError::NotFound(_) => "not found".to_string(),
     980            0 :         QueryError::Unauthorized(_e) => "JWT authentication error".to_string(),
     981            0 :         QueryError::SimulatedConnectionError => "simulated connection error".to_string(),
     982            0 :         QueryError::Other(e) => format!("{e:#}"),
     983              :     }
     984            0 : }
     985              : 
     986            0 : fn log_query_error(query: &str, e: &QueryError) {
     987            0 :     match e {
     988            0 :         QueryError::Disconnected(ConnectionError::Io(io_error)) => {
     989            0 :             if is_expected_io_error(io_error) {
     990            0 :                 info!("query handler for '{query}' failed with expected io error: {io_error}");
     991              :             } else {
     992            0 :                 error!("query handler for '{query}' failed with io error: {io_error}");
     993              :             }
     994              :         }
     995            0 :         QueryError::Disconnected(other_connection_error) => {
     996            0 :             error!("query handler for '{query}' failed with connection error: {other_connection_error:?}")
     997              :         }
     998              :         QueryError::SimulatedConnectionError => {
     999            0 :             error!("query handler for query '{query}' failed due to a simulated connection error")
    1000              :         }
    1001              :         QueryError::Reconnect => {
    1002            0 :             info!("query handler for '{query}' requested client to reconnect")
    1003              :         }
    1004              :         QueryError::Shutdown => {
    1005            0 :             info!("query handler for '{query}' cancelled during tenant shutdown")
    1006              :         }
    1007            0 :         QueryError::NotFound(reason) => {
    1008            0 :             info!("query handler for '{query}' entity not found: {reason}")
    1009              :         }
    1010            0 :         QueryError::Unauthorized(e) => {
    1011            0 :             warn!("query handler for '{query}' failed with authentication error: {e}");
    1012              :         }
    1013            0 :         QueryError::Other(e) => {
    1014            0 :             error!("query handler for '{query}' failed: {e:?}");
    1015              :         }
    1016              :     }
    1017            0 : }
    1018              : 
    1019              : /// Something finishing handling of COPY stream, see handle_copy_stream_end.
    1020              : /// This is not always a real error, but it allows to use ? and thiserror impls.
    1021            0 : #[derive(thiserror::Error, Debug)]
    1022              : pub enum CopyStreamHandlerEnd {
    1023              :     /// Handler initiates the end of streaming.
    1024              :     #[error("{0}")]
    1025              :     ServerInitiated(String),
    1026              :     #[error("received CopyDone")]
    1027              :     CopyDone,
    1028              :     #[error("received CopyFail")]
    1029              :     CopyFail,
    1030              :     #[error("received Terminate")]
    1031              :     Terminate,
    1032              :     #[error("EOF on COPY stream")]
    1033              :     EOF,
    1034              :     /// The connection was lost
    1035              :     #[error("connection error: {0}")]
    1036              :     Disconnected(#[from] ConnectionError),
    1037              :     /// Some other error
    1038              :     #[error(transparent)]
    1039              :     Other(#[from] anyhow::Error),
    1040              : }
        

Generated by: LCOV version 2.1-beta