LCOV - code coverage report
Current view: top level - proxy/src - scram.rs (source / functions) Coverage Total Hit
Test: 792183ae0ef4f1f8b22e9ac7e8748740ab73f873.info Lines: 94.0 % 83 78
Test Date: 2024-06-26 01:04:33 Functions: 100.0 % 13 13

            Line data    Source code
       1              : //! Salted Challenge Response Authentication Mechanism.
       2              : //!
       3              : //! RFC: <https://datatracker.ietf.org/doc/html/rfc5802>.
       4              : //!
       5              : //! Reference implementation:
       6              : //! * <https://github.com/postgres/postgres/blob/94226d4506e66d6e7cbf4b391f1e7393c1962841/src/backend/libpq/auth-scram.c>
       7              : //! * <https://github.com/postgres/postgres/blob/94226d4506e66d6e7cbf4b391f1e7393c1962841/src/interfaces/libpq/fe-auth-scram.c>
       8              : 
       9              : mod countmin;
      10              : mod exchange;
      11              : mod key;
      12              : mod messages;
      13              : mod pbkdf2;
      14              : mod secret;
      15              : mod signature;
      16              : pub mod threadpool;
      17              : 
      18              : pub use exchange::{exchange, Exchange};
      19              : pub use key::ScramKey;
      20              : pub use secret::ServerSecret;
      21              : 
      22              : use hmac::{Hmac, Mac};
      23              : use sha2::{Digest, Sha256};
      24              : 
      25              : const SCRAM_SHA_256: &str = "SCRAM-SHA-256";
      26              : const SCRAM_SHA_256_PLUS: &str = "SCRAM-SHA-256-PLUS";
      27              : 
      28              : /// A list of supported SCRAM methods.
      29              : pub const METHODS: &[&str] = &[SCRAM_SHA_256_PLUS, SCRAM_SHA_256];
      30              : pub const METHODS_WITHOUT_PLUS: &[&str] = &[SCRAM_SHA_256];
      31              : 
      32              : /// Decode base64 into array without any heap allocations
      33           98 : fn base64_decode_array<const N: usize>(input: impl AsRef<[u8]>) -> Option<[u8; N]> {
      34           98 :     let mut bytes = [0u8; N];
      35              : 
      36           98 :     let size = base64::decode_config_slice(input, base64::STANDARD, &mut bytes).ok()?;
      37           98 :     if size != N {
      38            0 :         return None;
      39           98 :     }
      40           98 : 
      41           98 :     Some(bytes)
      42           98 : }
      43              : 
      44              : /// This function essentially is `Hmac(sha256, key, input)`.
      45              : /// Further reading: <https://datatracker.ietf.org/doc/html/rfc2104>.
      46           30 : fn hmac_sha256<'a>(key: &[u8], parts: impl IntoIterator<Item = &'a [u8]>) -> [u8; 32] {
      47           30 :     let mut mac = Hmac::<Sha256>::new_from_slice(key).expect("bad key size");
      48          150 :     parts.into_iter().for_each(|s| mac.update(s));
      49           30 : 
      50           30 :     mac.finalize().into_bytes().into()
      51           30 : }
      52              : 
      53           24 : fn sha256<'a>(parts: impl IntoIterator<Item = &'a [u8]>) -> [u8; 32] {
      54           24 :     let mut hasher = Sha256::new();
      55           24 :     parts.into_iter().for_each(|s| hasher.update(s));
      56           24 : 
      57           24 :     hasher.finalize().into()
      58           24 : }
      59              : 
      60              : #[cfg(test)]
      61              : mod tests {
      62              :     use crate::{
      63              :         intern::EndpointIdInt,
      64              :         sasl::{Mechanism, Step},
      65              :         EndpointId,
      66              :     };
      67              : 
      68              :     use super::{threadpool::ThreadPool, Exchange, ServerSecret};
      69              : 
      70              :     #[test]
      71            2 :     fn snapshot() {
      72            2 :         let iterations = 4096;
      73            2 :         let salt = "QSXCR+Q6sek8bf92";
      74            2 :         let stored_key = "FO+9jBb3MUukt6jJnzjPZOWc5ow/Pu6JtPyju0aqaE8=";
      75            2 :         let server_key = "qxJ1SbmSAi5EcS0J5Ck/cKAm/+Ixa+Kwp63f4OHDgzo=";
      76            2 :         let secret = format!("SCRAM-SHA-256${iterations}:{salt}${stored_key}:{server_key}",);
      77            2 :         let secret = ServerSecret::parse(&secret).unwrap();
      78            2 : 
      79            2 :         const NONCE: [u8; 18] = [
      80            2 :             1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
      81            2 :         ];
      82            2 :         let mut exchange = Exchange::new(
      83            2 :             &secret,
      84            2 :             || NONCE,
      85            2 :             crate::config::TlsServerEndPoint::Undefined,
      86            2 :         );
      87            2 : 
      88            2 :         let client_first = "n,,n=user,r=rOprNGfwEbeRWgbNEkqO";
      89            2 :         let client_final = "c=biws,r=rOprNGfwEbeRWgbNEkqOAQIDBAUGBwgJCgsMDQ4PEBES,p=rw1r5Kph5ThxmaUBC2GAQ6MfXbPnNkFiTIvdb/Rear0=";
      90            2 :         let server_first =
      91            2 :             "r=rOprNGfwEbeRWgbNEkqOAQIDBAUGBwgJCgsMDQ4PEBES,s=QSXCR+Q6sek8bf92,i=4096";
      92            2 :         let server_final = "v=qtUDIofVnIhM7tKn93EQUUt5vgMOldcDVu1HC+OH0o0=";
      93              : 
      94            2 :         exchange = match exchange.exchange(client_first).unwrap() {
      95            2 :             Step::Continue(exchange, message) => {
      96            2 :                 assert_eq!(message, server_first);
      97            2 :                 exchange
      98              :             }
      99            0 :             Step::Success(_, _) => panic!("expected continue, got success"),
     100            0 :             Step::Failure(f) => panic!("{f}"),
     101              :         };
     102              : 
     103            2 :         let key = match exchange.exchange(client_final).unwrap() {
     104            2 :             Step::Success(key, message) => {
     105            2 :                 assert_eq!(message, server_final);
     106            2 :                 key
     107              :             }
     108            0 :             Step::Continue(_, _) => panic!("expected success, got continue"),
     109            0 :             Step::Failure(f) => panic!("{f}"),
     110              :         };
     111              : 
     112            2 :         assert_eq!(
     113            2 :             key.as_bytes(),
     114            2 :             [
     115            2 :                 74, 103, 1, 132, 12, 31, 200, 48, 28, 54, 82, 232, 207, 12, 138, 189, 40, 32, 134,
     116            2 :                 27, 125, 170, 232, 35, 171, 167, 166, 41, 70, 228, 182, 112,
     117            2 :             ]
     118            2 :         );
     119            2 :     }
     120              : 
     121            4 :     async fn run_round_trip_test(server_password: &str, client_password: &str) {
     122            4 :         let pool = ThreadPool::new(1);
     123            4 : 
     124            4 :         let ep = EndpointId::from("foo");
     125            4 :         let ep = EndpointIdInt::from(ep);
     126              : 
     127           12 :         let scram_secret = ServerSecret::build(server_password).await.unwrap();
     128            4 :         let outcome = super::exchange(&pool, ep, &scram_secret, client_password.as_bytes())
     129            4 :             .await
     130            4 :             .unwrap();
     131            4 : 
     132            4 :         match outcome {
     133            2 :             crate::sasl::Outcome::Success(_) => {}
     134            2 :             crate::sasl::Outcome::Failure(r) => panic!("{r}"),
     135              :         }
     136            2 :     }
     137              : 
     138              :     #[tokio::test]
     139            2 :     async fn round_trip() {
     140            8 :         run_round_trip_test("pencil", "pencil").await
     141            2 :     }
     142              : 
     143              :     #[tokio::test]
     144              :     #[should_panic(expected = "password doesn't match")]
     145            2 :     async fn failure() {
     146            8 :         run_round_trip_test("pencil", "eraser").await
     147            2 :     }
     148              : }
        

Generated by: LCOV version 2.1-beta