LCOV - code coverage report
Current view: top level - proxy/src/sasl - stream.rs (source / functions) Coverage Total Hit
Test: 32f4a56327bc9da697706839ed4836b2a00a408f.info Lines: 100.0 % 39 39
Test Date: 2024-02-07 07:37:29 Functions: 37.5 % 40 15

            Line data    Source code
       1              : //! Abstraction for the string-oriented SASL protocols.
       2              : 
       3              : use super::{messages::ServerMessage, Mechanism};
       4              : use crate::stream::PqStream;
       5              : use std::io;
       6              : use tokio::io::{AsyncRead, AsyncWrite};
       7              : use tracing::info;
       8              : 
       9              : /// Abstracts away all peculiarities of the libpq's protocol.
      10              : pub struct SaslStream<'a, S> {
      11              :     /// The underlying stream.
      12              :     stream: &'a mut PqStream<S>,
      13              :     /// Current password message we received from client.
      14              :     current: bytes::Bytes,
      15              :     /// First SASL message produced by client.
      16              :     first: Option<&'a str>,
      17              : }
      18              : 
      19              : impl<'a, S> SaslStream<'a, S> {
      20           59 :     pub fn new(stream: &'a mut PqStream<S>, first: &'a str) -> Self {
      21           59 :         Self {
      22           59 :             stream,
      23           59 :             current: bytes::Bytes::new(),
      24           59 :             first: Some(first),
      25           59 :         }
      26           59 :     }
      27              : }
      28              : 
      29              : impl<S: AsyncRead + Unpin> SaslStream<'_, S> {
      30              :     // Receive a new SASL message from the client.
      31          116 :     async fn recv(&mut self) -> io::Result<&str> {
      32          116 :         if let Some(first) = self.first.take() {
      33           59 :             return Ok(first);
      34           57 :         }
      35              : 
      36           57 :         self.current = self.stream.read_password_message().await?;
      37           57 :         let s = std::str::from_utf8(&self.current)
      38           57 :             .map_err(|_| io::Error::new(io::ErrorKind::InvalidData, "bad encoding"))?;
      39              : 
      40           57 :         Ok(s)
      41          116 :     }
      42              : }
      43              : 
      44              : impl<S: AsyncWrite + Unpin> SaslStream<'_, S> {
      45              :     // Send a SASL message to the client.
      46          101 :     async fn send(&mut self, msg: &ServerMessage<&str>) -> io::Result<()> {
      47          101 :         self.stream.write_message(&msg.to_reply()).await?;
      48          101 :         Ok(())
      49          101 :     }
      50              : }
      51              : 
      52              : /// SASL authentication outcome.
      53              : /// It's much easier to match on those two variants
      54              : /// than to peek into a noisy protocol error type.
      55              : #[must_use = "caller must explicitly check for success"]
      56              : pub enum Outcome<R> {
      57              :     /// Authentication succeeded and produced some value.
      58              :     Success(R),
      59              :     /// Authentication failed (reason attached).
      60              :     Failure(&'static str),
      61              : }
      62              : 
      63              : impl<S: AsyncRead + AsyncWrite + Unpin> SaslStream<'_, S> {
      64              :     /// Perform SASL message exchange according to the underlying algorithm
      65              :     /// until user is either authenticated or denied access.
      66           59 :     pub async fn authenticate<M: Mechanism>(
      67           59 :         mut self,
      68           59 :         mut mechanism: M,
      69           59 :     ) -> super::Result<Outcome<M::Output>> {
      70              :         loop {
      71          116 :             let input = self.recv().await?;
      72          116 :             let step = mechanism.exchange(input).map_err(|error| {
      73           10 :                 info!(?error, "error during SASL exchange");
      74           10 :                 error
      75          116 :             })?;
      76              : 
      77              :             use super::Step;
      78          106 :             return Ok(match step {
      79           57 :                 Step::Continue(moved_mechanism, reply) => {
      80           57 :                     self.send(&ServerMessage::Continue(&reply)).await?;
      81           57 :                     mechanism = moved_mechanism;
      82           57 :                     continue;
      83              :                 }
      84           44 :                 Step::Success(result, reply) => {
      85           44 :                     self.send(&ServerMessage::Final(&reply)).await?;
      86           44 :                     Outcome::Success(result)
      87              :                 }
      88            5 :                 Step::Failure(reason) => Outcome::Failure(reason),
      89              :             });
      90              :         }
      91           59 :     }
      92              : }
        

Generated by: LCOV version 2.1-beta