Line data Source code
1 : use super::{ComputeCredentials, ComputeUserInfo};
2 : use crate::{
3 : auth::{self, backend::ComputeCredentialKeys, AuthFlow},
4 : compute,
5 : config::AuthenticationConfig,
6 : console::AuthSecret,
7 : context::RequestMonitoring,
8 : sasl,
9 : stream::{PqStream, Stream},
10 : };
11 : use tokio::io::{AsyncRead, AsyncWrite};
12 : use tracing::{info, warn};
13 :
14 0 : pub(super) async fn authenticate(
15 0 : ctx: &mut RequestMonitoring,
16 0 : creds: ComputeUserInfo,
17 0 : client: &mut PqStream<Stream<impl AsyncRead + AsyncWrite + Unpin>>,
18 0 : config: &'static AuthenticationConfig,
19 0 : secret: AuthSecret,
20 0 : ) -> auth::Result<ComputeCredentials> {
21 0 : let flow = AuthFlow::new(client);
22 0 : let scram_keys = match secret {
23 : #[cfg(any(test, feature = "testing"))]
24 : AuthSecret::Md5(_) => {
25 0 : info!("auth endpoint chooses MD5");
26 0 : return Err(auth::AuthError::bad_auth_method("MD5"));
27 : }
28 0 : AuthSecret::Scram(secret) => {
29 0 : info!("auth endpoint chooses SCRAM");
30 0 : let scram = auth::Scram(&secret, &mut *ctx);
31 :
32 0 : let auth_outcome = tokio::time::timeout(
33 0 : config.scram_protocol_timeout,
34 0 : async {
35 0 :
36 0 : flow.begin(scram).await.map_err(|error| {
37 0 : warn!(?error, "error sending scram acknowledgement");
38 0 : error
39 0 : })?.authenticate().await.map_err(|error| {
40 0 : warn!(?error, "error processing scram messages");
41 0 : error
42 0 : })
43 0 : }
44 0 : )
45 0 : .await
46 0 : .map_err(|e| {
47 0 : warn!("error processing scram messages error = authentication timed out, execution time exceeded {} seconds", config.scram_protocol_timeout.as_secs());
48 0 : auth::AuthError::user_timeout(e)
49 0 : })??;
50 :
51 0 : let client_key = match auth_outcome {
52 0 : sasl::Outcome::Success(key) => key,
53 0 : sasl::Outcome::Failure(reason) => {
54 0 : info!("auth backend failed with an error: {reason}");
55 0 : return Err(auth::AuthError::auth_failed(&*creds.user));
56 : }
57 : };
58 :
59 0 : compute::ScramKeys {
60 0 : client_key: client_key.as_bytes(),
61 0 : server_key: secret.server_key.as_bytes(),
62 0 : }
63 0 : }
64 0 : };
65 0 :
66 0 : Ok(ComputeCredentials {
67 0 : info: creds,
68 0 : keys: ComputeCredentialKeys::AuthKeys(tokio_postgres::config::AuthKeys::ScramSha256(
69 0 : scram_keys,
70 0 : )),
71 0 : })
72 0 : }
|