mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
238 lines
7.8 KiB
Rust
238 lines
7.8 KiB
Rust
|
use crate::{domain::handler::*, infra::{tcp_backend_handler::*, tcp_server::{AppState, error_to_http_response}}};
|
||
|
use hmac::Hmac;
|
||
|
use jwt::{SignWithKey, VerifyWithKey};
|
||
|
use log::*;
|
||
|
use std::collections::{hash_map::DefaultHasher, HashSet};
|
||
|
use std::hash::{Hash, Hasher};
|
||
|
use time::ext::NumericalDuration;
|
||
|
use actix_web_httpauth::extractors::bearer::BearerAuth;
|
||
|
use anyhow::Result;
|
||
|
use std::task::{Context, Poll};
|
||
|
use std::pin::Pin;
|
||
|
use actix_web::{
|
||
|
cookie::{Cookie, SameSite},
|
||
|
dev::{ServiceRequest, Service, Transform, ServiceResponse},
|
||
|
error::{ErrorBadRequest, ErrorUnauthorized},
|
||
|
web, HttpRequest, HttpResponse
|
||
|
};
|
||
|
use futures_util::{FutureExt, TryFutureExt};
|
||
|
use futures::future::{ok, Ready};
|
||
|
use chrono::prelude::*;
|
||
|
use sha2::Sha512;
|
||
|
|
||
|
type Token<S> = jwt::Token<jwt::Header, JWTClaims, S>;
|
||
|
type SignedToken = Token<jwt::token::Signed>;
|
||
|
|
||
|
fn create_jwt(key: &Hmac<Sha512>, user: String, groups: HashSet<String>) -> SignedToken {
|
||
|
let claims = JWTClaims {
|
||
|
exp: Utc::now() + chrono::Duration::days(1),
|
||
|
iat: Utc::now(),
|
||
|
user,
|
||
|
groups,
|
||
|
};
|
||
|
let header = jwt::Header {
|
||
|
algorithm: jwt::AlgorithmType::Hs512,
|
||
|
..Default::default()
|
||
|
};
|
||
|
jwt::Token::new(header, claims).sign_with_key(key).unwrap()
|
||
|
}
|
||
|
|
||
|
async fn get_refresh<Backend>(
|
||
|
data: web::Data<AppState<Backend>>,
|
||
|
request: HttpRequest,
|
||
|
) -> HttpResponse
|
||
|
where
|
||
|
Backend: TcpBackendHandler + BackendHandler + 'static,
|
||
|
{
|
||
|
let backend_handler = &data.backend_handler;
|
||
|
let jwt_key = &data.jwt_key;
|
||
|
let (refresh_token, user) = match request.cookie("refresh_token") {
|
||
|
None => {
|
||
|
return HttpResponse::Unauthorized().body("Missing refresh token")
|
||
|
}
|
||
|
Some(t) => match t.value().split_once("+") {
|
||
|
None => {
|
||
|
return HttpResponse::Unauthorized().body("Invalid refresh token")
|
||
|
}
|
||
|
Some((t, u)) => (t.to_string(), u.to_string()),
|
||
|
},
|
||
|
};
|
||
|
let res_found = data.backend_handler.check_token(&refresh_token, &user).await;
|
||
|
// Async closures are not supported yet.
|
||
|
match res_found {
|
||
|
Ok(found) => {
|
||
|
if found {
|
||
|
backend_handler.get_user_groups(user.to_string()).await
|
||
|
} else {
|
||
|
Err(DomainError::AuthenticationError(
|
||
|
"Invalid refresh token".to_string(),
|
||
|
))
|
||
|
}
|
||
|
}
|
||
|
Err(e) => Err(e),
|
||
|
}
|
||
|
.map(|groups| create_jwt(jwt_key, user.to_string(), groups))
|
||
|
.map(|token| {
|
||
|
HttpResponse::Ok()
|
||
|
.cookie(
|
||
|
Cookie::build("token", token.as_str())
|
||
|
.max_age(1.days())
|
||
|
.path("/api")
|
||
|
.http_only(true)
|
||
|
.same_site(SameSite::Strict)
|
||
|
.finish(),
|
||
|
)
|
||
|
.body(token.as_str().to_owned())
|
||
|
})
|
||
|
.unwrap_or_else(error_to_http_response)
|
||
|
}
|
||
|
|
||
|
async fn post_authorize<Backend>(
|
||
|
data: web::Data<AppState<Backend>>,
|
||
|
request: web::Json<BindRequest>,
|
||
|
) -> HttpResponse
|
||
|
where
|
||
|
Backend: TcpBackendHandler + BackendHandler + 'static,
|
||
|
{
|
||
|
let req: BindRequest = request.clone();
|
||
|
data.backend_handler
|
||
|
.bind(req)
|
||
|
// If the authentication was successful, we need to fetch the groups to create the JWT
|
||
|
// token.
|
||
|
.and_then(|_| data.backend_handler.get_user_groups(request.name.clone()))
|
||
|
.and_then(|g| async {
|
||
|
Ok((
|
||
|
g,
|
||
|
data.backend_handler
|
||
|
.create_refresh_token(&request.name)
|
||
|
.await?,
|
||
|
))
|
||
|
})
|
||
|
.await
|
||
|
.map(|(groups, (refresh_token, max_age))| {
|
||
|
let token = create_jwt(&data.jwt_key, request.name.clone(), groups);
|
||
|
HttpResponse::Ok()
|
||
|
.cookie(
|
||
|
Cookie::build("token", token.as_str())
|
||
|
.max_age(1.days())
|
||
|
.path("/api")
|
||
|
.http_only(true)
|
||
|
.same_site(SameSite::Strict)
|
||
|
.finish(),
|
||
|
)
|
||
|
.cookie(
|
||
|
Cookie::build("refresh_token", refresh_token + "+" + &request.name)
|
||
|
.max_age(max_age.num_days().days())
|
||
|
.path("/api/authorize/refresh")
|
||
|
.http_only(true)
|
||
|
.same_site(SameSite::Strict)
|
||
|
.finish(),
|
||
|
)
|
||
|
.body(token.as_str().to_owned())
|
||
|
})
|
||
|
.unwrap_or_else(error_to_http_response)
|
||
|
}
|
||
|
|
||
|
pub struct CookieToHeaderTranslatorFactory;
|
||
|
|
||
|
impl<S, B> Transform<S, ServiceRequest> for CookieToHeaderTranslatorFactory
|
||
|
where
|
||
|
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error=actix_web::Error>,
|
||
|
S::Future: 'static,
|
||
|
B: 'static,
|
||
|
{
|
||
|
type Response = ServiceResponse<B>;
|
||
|
type Error = actix_web::Error;
|
||
|
type InitError = ();
|
||
|
type Transform = CookieToHeaderTranslator<S>;
|
||
|
type Future = Ready<Result<Self::Transform, Self::InitError>>;
|
||
|
|
||
|
fn new_transform(&self, service: S) -> Self::Future {
|
||
|
ok(CookieToHeaderTranslator { service })
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub struct CookieToHeaderTranslator<S> {
|
||
|
service: S,
|
||
|
}
|
||
|
|
||
|
impl<S, B> Service<ServiceRequest> for CookieToHeaderTranslator<S>
|
||
|
where
|
||
|
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = actix_web::Error>,
|
||
|
S::Future: 'static,
|
||
|
B: 'static,
|
||
|
{
|
||
|
type Response = ServiceResponse<B>;
|
||
|
type Error = actix_web::Error;
|
||
|
#[allow(clippy::type_complexity)]
|
||
|
type Future = Pin<Box<dyn core::future::Future<Output = Result<Self::Response, Self::Error>>>>;
|
||
|
|
||
|
fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
||
|
self.service.poll_ready(cx)
|
||
|
}
|
||
|
|
||
|
fn call(&self, mut req: ServiceRequest) -> Self::Future {
|
||
|
if let Some(token_cookie) = req.cookie("token") {
|
||
|
if let Ok(header_value) = actix_http::header::HeaderValue::from_str(&format!(
|
||
|
"Bearer {}",
|
||
|
token_cookie.value()
|
||
|
)) {
|
||
|
req.headers_mut()
|
||
|
.insert(actix_http::header::AUTHORIZATION, header_value);
|
||
|
} else {
|
||
|
return async move {
|
||
|
Ok(req.error_response(ErrorBadRequest("Invalid token cookie")))
|
||
|
}
|
||
|
.boxed_local();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Box::pin(self.service.call(req))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub async fn token_validator<Backend>(
|
||
|
req: ServiceRequest,
|
||
|
credentials: BearerAuth,
|
||
|
) -> Result<ServiceRequest, actix_web::Error>
|
||
|
where
|
||
|
Backend: TcpBackendHandler + BackendHandler + 'static,
|
||
|
{
|
||
|
let state = req
|
||
|
.app_data::<web::Data<AppState<Backend>>>()
|
||
|
.expect("Invalid app config");
|
||
|
let token: Token<_> = VerifyWithKey::verify_with_key(credentials.token(), &state.jwt_key)
|
||
|
.map_err(|_| ErrorUnauthorized("Invalid JWT"))?;
|
||
|
if token.claims().exp.lt(&Utc::now()) {
|
||
|
return Err(ErrorUnauthorized("Expired JWT"));
|
||
|
}
|
||
|
let jwt_hash = {
|
||
|
let mut s = DefaultHasher::new();
|
||
|
credentials.token().hash(&mut s);
|
||
|
s.finish()
|
||
|
};
|
||
|
if state.jwt_blacklist.contains(&jwt_hash) {
|
||
|
return Err(ErrorUnauthorized("JWT was logged out"));
|
||
|
}
|
||
|
let groups = &token.claims().groups;
|
||
|
if groups.contains("lldap_admin") {
|
||
|
debug!("Got authorized token for user {}", &token.claims().user);
|
||
|
Ok(req)
|
||
|
} else {
|
||
|
Err(ErrorUnauthorized(
|
||
|
"JWT error: User is not in group lldap_admin",
|
||
|
))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
pub fn configure_server<Backend>(
|
||
|
cfg: &mut web::ServiceConfig,
|
||
|
) where
|
||
|
Backend: TcpBackendHandler + BackendHandler + 'static,
|
||
|
{
|
||
|
cfg
|
||
|
.service(web::resource("").route(web::post().to(post_authorize::<Backend>)))
|
||
|
.service(web::resource("/refresh").route(web::get().to(get_refresh::<Backend>)));
|
||
|
}
|