use std::{ collections::BTreeMap, sync::{Arc, RwLock}, }; use ruma::{ CanonicalJsonValue, DeviceId, OwnedDeviceId, OwnedUserId, UserId, api::client::{ error::{ErrorKind, StandardErrorBody}, uiaa::{AuthData, AuthType, Password, UiaaInfo, UserIdentifier}, }, }; use tuwunel_core::{ Err, Result, debug_warn, err, error, implement, utils, utils::{hash, string::EMPTY}, }; use tuwunel_database::{Deserialized, Json, Map}; pub struct Service { userdevicesessionid_uiaarequest: RwLock, db: Data, services: Arc, } struct Data { userdevicesessionid_uiaainfo: Arc, } type RequestMap = BTreeMap; type RequestKey = (OwnedUserId, OwnedDeviceId, String); pub const SESSION_ID_LENGTH: usize = 32; impl crate::Service for Service { fn build(args: &crate::Args<'_>) -> Result> { Ok(Arc::new(Self { userdevicesessionid_uiaarequest: RwLock::new(RequestMap::new()), db: Data { userdevicesessionid_uiaainfo: args.db["userdevicesessionid_uiaainfo"].clone(), }, services: args.services.clone(), })) } fn name(&self) -> &str { crate::service::make_name(std::module_path!()) } } /// Creates a new Uiaa session. Make sure the session token is unique. #[implement(Service)] pub fn create( &self, user_id: &UserId, device_id: &DeviceId, uiaainfo: &UiaaInfo, json_body: &CanonicalJsonValue, ) { // TODO: better session error handling (why is uiaainfo.session optional in // ruma?) let session = uiaainfo .session .as_ref() .expect("session should be set"); self.set_uiaa_request(user_id, device_id, session, json_body); self.update_uiaa_session(user_id, device_id, session, Some(uiaainfo)); } #[implement(Service)] #[allow(clippy::useless_let_if_seq)] pub async fn try_auth( &self, user_id: &UserId, device_id: &DeviceId, auth: &AuthData, uiaainfo: &UiaaInfo, ) -> Result<(bool, UiaaInfo)> { let mut uiaainfo = if let Some(session) = auth.session() { self.get_uiaa_session(user_id, device_id, session) .await? } else { uiaainfo.clone() }; if uiaainfo.session.is_none() { uiaainfo.session = Some(utils::random_string(SESSION_ID_LENGTH)); } match auth { // Find out what the user completed | AuthData::Password(Password { identifier, password, user, .. }) => { let username = if let Some(UserIdentifier::UserIdOrLocalpart(username)) = identifier { username } else if cfg!(feature = "element_hacks") && let Some(username) = user { username } else { return Err!(Request(Unrecognized("Identifier type not recognized."))); }; let user_id_from_username = UserId::parse_with_server_name( username.clone(), self.services.globals.server_name(), ) .map_err(|_| err!(Request(InvalidParam("User ID is invalid."))))?; // Check if the access token being used matches the credentials used for UIAA if user_id.localpart() != user_id_from_username.localpart() { return Err!(Request(Forbidden("User ID and access token mismatch."))); } // Check if password is correct let user_id = user_id_from_username; let mut password_verified = false; // First try local password hash verification if let Ok(hash) = self.services.users.password_hash(&user_id).await { password_verified = hash::verify_password(password, &hash).is_ok(); } // If local password verification failed, try LDAP authentication #[cfg(feature = "ldap")] if !password_verified && self.services.server.config.ldap.enable { // Search for user in LDAP to get their DN if let Ok(dns) = self.services.users.search_ldap(&user_id).await { if let Some((user_dn, _is_admin)) = dns.first() { // Try to authenticate with LDAP password_verified = self .services .users .auth_ldap(user_dn, password) .await .is_ok(); } } } if !password_verified { uiaainfo.auth_error = Some(StandardErrorBody { kind: ErrorKind::forbidden(), message: "Invalid username or password.".to_owned(), }); return Ok((false, uiaainfo)); } // Password was correct! Let's add it to `completed` uiaainfo.completed.push(AuthType::Password); }, | AuthData::RegistrationToken(t) => { let tokens = self.services.globals.get_registration_tokens(); if tokens.contains(t.token.trim()) { uiaainfo .completed .push(AuthType::RegistrationToken); } else { uiaainfo.auth_error = Some(StandardErrorBody { kind: ErrorKind::forbidden(), message: "Invalid registration token.".to_owned(), }); return Ok((false, uiaainfo)); } }, | AuthData::FallbackAcknowledgement(session) => { debug_warn!("FallbackAcknowledgement: {session:?}"); }, | AuthData::Dummy(_) => { uiaainfo.completed.push(AuthType::Dummy); }, | auth => error!("AuthData type not supported: {auth:?}"), } // Check if a flow now succeeds let mut completed = false; 'flows: for flow in &mut uiaainfo.flows { for stage in &flow.stages { if !uiaainfo.completed.contains(stage) { continue 'flows; } } // We didn't break, so this flow succeeded! completed = true; } let session = uiaainfo .session .as_ref() .expect("session is always set"); if !completed { self.update_uiaa_session(user_id, device_id, session, Some(&uiaainfo)); return Ok((false, uiaainfo)); } // UIAA was successful! Remove this session and return true self.update_uiaa_session(user_id, device_id, session, None); Ok((true, uiaainfo)) } #[implement(Service)] fn set_uiaa_request( &self, user_id: &UserId, device_id: &DeviceId, session: &str, request: &CanonicalJsonValue, ) { let key = (user_id.to_owned(), device_id.to_owned(), session.to_owned()); self.userdevicesessionid_uiaarequest .write() .expect("locked for writing") .insert(key, request.to_owned()); } #[implement(Service)] pub fn get_uiaa_request( &self, user_id: &UserId, device_id: Option<&DeviceId>, session: &str, ) -> Option { let device_id = device_id.unwrap_or_else(|| EMPTY.into()); let key = (user_id.to_owned(), device_id.to_owned(), session.to_owned()); self.userdevicesessionid_uiaarequest .read() .expect("locked for reading") .get(&key) .cloned() } #[implement(Service)] fn update_uiaa_session( &self, user_id: &UserId, device_id: &DeviceId, session: &str, uiaainfo: Option<&UiaaInfo>, ) { let key = (user_id, device_id, session); if let Some(uiaainfo) = uiaainfo { self.db .userdevicesessionid_uiaainfo .put(key, Json(uiaainfo)); } else { self.db.userdevicesessionid_uiaainfo.del(key); } } #[implement(Service)] async fn get_uiaa_session( &self, user_id: &UserId, device_id: &DeviceId, session: &str, ) -> Result { let key = (user_id, device_id, session); self.db .userdevicesessionid_uiaainfo .qry(&key) .await .deserialized() .map_err(|_| err!(Request(Forbidden("UIAA session does not exist.")))) }