mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
server: Add support for LdapCompare op
This commit is contained in:
parent
e92947fc3b
commit
21e51c3d38
34
Cargo.lock
generated
34
Cargo.lock
generated
@ -2185,13 +2185,16 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ldap3_proto"
|
name = "ldap3_proto"
|
||||||
version = "0.2.3"
|
version = "0.3.1"
|
||||||
source = "git+https://github.com/nitnelave/ldap3_server/?rev=7b50b2b82c383f5f70e02e11072bb916629ed2bc#7b50b2b82c383f5f70e02e11072bb916629ed2bc"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "4162706b6f3b3d58f577990e22e9a0e03e2f9bedc2b8181d8abab2498da32003"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytes",
|
"bytes",
|
||||||
"lber",
|
"lber",
|
||||||
|
"peg",
|
||||||
"tokio-util 0.7.3",
|
"tokio-util 0.7.3",
|
||||||
"tracing",
|
"tracing",
|
||||||
|
"uuid 1.2.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -2864,6 +2867,33 @@ dependencies = [
|
|||||||
"syn",
|
"syn",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "peg"
|
||||||
|
version = "0.8.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a07f2cafdc3babeebc087e499118343442b742cc7c31b4d054682cc598508554"
|
||||||
|
dependencies = [
|
||||||
|
"peg-macros",
|
||||||
|
"peg-runtime",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "peg-macros"
|
||||||
|
version = "0.8.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "4a90084dc05cf0428428e3d12399f39faad19b0909f64fb9170c9fdd6d9cd49b"
|
||||||
|
dependencies = [
|
||||||
|
"peg-runtime",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "peg-runtime"
|
||||||
|
version = "0.8.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "9fa00462b37ead6d11a82c9d568b26682d78e0477dc02d1966c013af80969739"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pem-rfc7468"
|
name = "pem-rfc7468"
|
||||||
version = "0.3.1"
|
version = "0.3.1"
|
||||||
|
@ -8,11 +8,6 @@ members = [
|
|||||||
|
|
||||||
default-members = ["server"]
|
default-members = ["server"]
|
||||||
|
|
||||||
# Remove once https://github.com/kanidm/ldap3_proto/pull/8 is merged.
|
|
||||||
[patch.crates-io.ldap3_proto]
|
|
||||||
git = 'https://github.com/nitnelave/ldap3_server/'
|
|
||||||
rev = '7b50b2b82c383f5f70e02e11072bb916629ed2bc'
|
|
||||||
|
|
||||||
[patch.crates-io.opaque-ke]
|
[patch.crates-io.opaque-ke]
|
||||||
git = 'https://github.com/nitnelave/opaque-ke/'
|
git = 'https://github.com/nitnelave/opaque-ke/'
|
||||||
branch = 'zeroize_1.5'
|
branch = 'zeroize_1.5'
|
||||||
|
@ -28,7 +28,7 @@ itertools = "0.10.1"
|
|||||||
juniper = "0.15.10"
|
juniper = "0.15.10"
|
||||||
juniper_actix = "0.4.0"
|
juniper_actix = "0.4.0"
|
||||||
jwt = "0.13"
|
jwt = "0.13"
|
||||||
ldap3_proto = "*"
|
ldap3_proto = ">=0.3.1"
|
||||||
log = "*"
|
log = "*"
|
||||||
orion = "0.16"
|
orion = "0.16"
|
||||||
rustls = "0.20"
|
rustls = "0.20"
|
||||||
|
@ -17,7 +17,7 @@ use super::{
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
fn get_group_attribute(
|
pub fn get_group_attribute(
|
||||||
group: &Group,
|
group: &Group,
|
||||||
base_dn_str: &str,
|
base_dn_str: &str,
|
||||||
attribute: &str,
|
attribute: &str,
|
||||||
@ -29,8 +29,8 @@ fn get_group_attribute(
|
|||||||
"objectclass" => vec![b"groupOfUniqueNames".to_vec()],
|
"objectclass" => vec![b"groupOfUniqueNames".to_vec()],
|
||||||
// Always returned as part of the base response.
|
// Always returned as part of the base response.
|
||||||
"dn" | "distinguishedname" => return None,
|
"dn" | "distinguishedname" => return None,
|
||||||
"cn" | "uid" => vec![group.display_name.clone().into_bytes()],
|
"cn" | "uid" | "id" => vec![group.display_name.clone().into_bytes()],
|
||||||
"entryuuid" => vec![group.uuid.to_string().into_bytes()],
|
"entryuuid" | "uuid" => vec![group.uuid.to_string().into_bytes()],
|
||||||
"member" | "uniquemember" => group
|
"member" | "uniquemember" => group
|
||||||
.users
|
.users
|
||||||
.iter()
|
.iter()
|
||||||
@ -73,6 +73,10 @@ const ALL_GROUP_ATTRIBUTE_KEYS: &[&str] = &[
|
|||||||
"entryuuid",
|
"entryuuid",
|
||||||
];
|
];
|
||||||
|
|
||||||
|
fn expand_group_attribute_wildcards(attributes: &[String]) -> Vec<&str> {
|
||||||
|
expand_attribute_wildcards(attributes, ALL_GROUP_ATTRIBUTE_KEYS)
|
||||||
|
}
|
||||||
|
|
||||||
fn make_ldap_search_group_result_entry(
|
fn make_ldap_search_group_result_entry(
|
||||||
group: Group,
|
group: Group,
|
||||||
base_dn_str: &str,
|
base_dn_str: &str,
|
||||||
@ -80,7 +84,7 @@ fn make_ldap_search_group_result_entry(
|
|||||||
user_filter: &Option<&UserId>,
|
user_filter: &Option<&UserId>,
|
||||||
ignored_group_attributes: &[String],
|
ignored_group_attributes: &[String],
|
||||||
) -> LdapSearchResultEntry {
|
) -> LdapSearchResultEntry {
|
||||||
let expanded_attributes = expand_attribute_wildcards(attributes, ALL_GROUP_ATTRIBUTE_KEYS);
|
let expanded_attributes = expand_group_attribute_wildcards(attributes);
|
||||||
|
|
||||||
LdapSearchResultEntry {
|
LdapSearchResultEntry {
|
||||||
dn: format!("cn={},ou=groups,{}", group.display_name, base_dn_str),
|
dn: format!("cn={},ou=groups,{}", group.display_name, base_dn_str),
|
||||||
@ -185,11 +189,10 @@ fn convert_group_filter(
|
|||||||
pub async fn get_groups_list<Backend: BackendHandler>(
|
pub async fn get_groups_list<Backend: BackendHandler>(
|
||||||
ldap_info: &LdapInfo,
|
ldap_info: &LdapInfo,
|
||||||
ldap_filter: &LdapFilter,
|
ldap_filter: &LdapFilter,
|
||||||
attributes: &[String],
|
|
||||||
base: &str,
|
base: &str,
|
||||||
user_filter: &Option<&UserId>,
|
user_filter: &Option<&UserId>,
|
||||||
backend: &mut Backend,
|
backend: &mut Backend,
|
||||||
) -> LdapResult<Vec<LdapOp>> {
|
) -> LdapResult<Vec<Group>> {
|
||||||
debug!(?ldap_filter);
|
debug!(?ldap_filter);
|
||||||
let filter = convert_group_filter(ldap_info, ldap_filter)?;
|
let filter = convert_group_filter(ldap_info, ldap_filter)?;
|
||||||
let parsed_filters = match user_filter {
|
let parsed_filters = match user_filter {
|
||||||
@ -200,24 +203,28 @@ pub async fn get_groups_list<Backend: BackendHandler>(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
debug!(?parsed_filters);
|
debug!(?parsed_filters);
|
||||||
let groups = backend
|
backend
|
||||||
.list_groups(Some(parsed_filters))
|
.list_groups(Some(parsed_filters))
|
||||||
.await
|
.await
|
||||||
.map_err(|e| LdapError {
|
.map_err(|e| LdapError {
|
||||||
code: LdapResultCode::Other,
|
code: LdapResultCode::Other,
|
||||||
message: format!(r#"Error while listing groups "{}": {:#}"#, base, e),
|
message: format!(r#"Error while listing groups "{}": {:#}"#, base, e),
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(groups
|
|
||||||
.into_iter()
|
|
||||||
.map(|u| {
|
|
||||||
LdapOp::SearchResultEntry(make_ldap_search_group_result_entry(
|
|
||||||
u,
|
|
||||||
&ldap_info.base_dn_str,
|
|
||||||
attributes,
|
|
||||||
user_filter,
|
|
||||||
&ldap_info.ignored_group_attributes,
|
|
||||||
))
|
|
||||||
})
|
})
|
||||||
.collect::<Vec<_>>())
|
}
|
||||||
|
|
||||||
|
pub fn convert_groups_to_ldap_op<'a>(
|
||||||
|
groups: Vec<Group>,
|
||||||
|
attributes: &'a [String],
|
||||||
|
ldap_info: &'a LdapInfo,
|
||||||
|
user_filter: &'a Option<&'a UserId>,
|
||||||
|
) -> impl Iterator<Item = LdapOp> + 'a {
|
||||||
|
groups.into_iter().map(move |g| {
|
||||||
|
LdapOp::SearchResultEntry(make_ldap_search_group_result_entry(
|
||||||
|
g,
|
||||||
|
&ldap_info.base_dn_str,
|
||||||
|
attributes,
|
||||||
|
user_filter,
|
||||||
|
&ldap_info.ignored_group_attributes,
|
||||||
|
))
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@ use crate::domain::{
|
|||||||
error::LdapError,
|
error::LdapError,
|
||||||
utils::{expand_attribute_wildcards, get_user_id_from_distinguished_name},
|
utils::{expand_attribute_wildcards, get_user_id_from_distinguished_name},
|
||||||
},
|
},
|
||||||
types::{GroupDetails, User, UserColumn, UserId},
|
types::{GroupDetails, User, UserAndGroups, UserColumn, UserId},
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::{
|
use super::{
|
||||||
@ -18,7 +18,7 @@ use super::{
|
|||||||
utils::{get_group_id_from_distinguished_name, map_user_field, LdapInfo},
|
utils::{get_group_id_from_distinguished_name, map_user_field, LdapInfo},
|
||||||
};
|
};
|
||||||
|
|
||||||
fn get_user_attribute(
|
pub fn get_user_attribute(
|
||||||
user: &User,
|
user: &User,
|
||||||
attribute: &str,
|
attribute: &str,
|
||||||
base_dn_str: &str,
|
base_dn_str: &str,
|
||||||
@ -35,12 +35,12 @@ fn get_user_attribute(
|
|||||||
],
|
],
|
||||||
// dn is always returned as part of the base response.
|
// dn is always returned as part of the base response.
|
||||||
"dn" | "distinguishedname" => return None,
|
"dn" | "distinguishedname" => return None,
|
||||||
"uid" => vec![user.user_id.to_string().into_bytes()],
|
"uid" | "user_id" | "id" => vec![user.user_id.to_string().into_bytes()],
|
||||||
"entryuuid" => vec![user.uuid.to_string().into_bytes()],
|
"entryuuid" | "uuid" => vec![user.uuid.to_string().into_bytes()],
|
||||||
"mail" => vec![user.email.clone().into_bytes()],
|
"mail" | "email" => vec![user.email.clone().into_bytes()],
|
||||||
"givenname" => vec![user.first_name.clone()?.into_bytes()],
|
"givenname" | "first_name" | "firstname" => vec![user.first_name.clone()?.into_bytes()],
|
||||||
"sn" => vec![user.last_name.clone()?.into_bytes()],
|
"sn" | "last_name" | "lastname" => vec![user.last_name.clone()?.into_bytes()],
|
||||||
"jpegphoto" => vec![user.avatar.clone()?.into_bytes()],
|
"jpegphoto" | "avatar" => vec![user.avatar.clone()?.into_bytes()],
|
||||||
"memberof" => groups
|
"memberof" => groups
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.flatten()
|
.flatten()
|
||||||
@ -53,10 +53,12 @@ fn get_user_attribute(
|
|||||||
})
|
})
|
||||||
.collect(),
|
.collect(),
|
||||||
"cn" | "displayname" => vec![user.display_name.clone()?.into_bytes()],
|
"cn" | "displayname" => vec![user.display_name.clone()?.into_bytes()],
|
||||||
"createtimestamp" | "modifytimestamp" => vec![chrono::Utc
|
"creationdate" | "creation_date" | "createtimestamp" | "modifytimestamp" => {
|
||||||
.from_utc_datetime(&user.creation_date)
|
vec![chrono::Utc
|
||||||
.to_rfc3339()
|
.from_utc_datetime(&user.creation_date)
|
||||||
.into_bytes()],
|
.to_rfc3339()
|
||||||
|
.into_bytes()]
|
||||||
|
}
|
||||||
"1.1" => return None,
|
"1.1" => return None,
|
||||||
// We ignore the operational attribute wildcard.
|
// We ignore the operational attribute wildcard.
|
||||||
"+" => return None,
|
"+" => return None,
|
||||||
@ -99,15 +101,17 @@ const ALL_USER_ATTRIBUTE_KEYS: &[&str] = &[
|
|||||||
fn make_ldap_search_user_result_entry(
|
fn make_ldap_search_user_result_entry(
|
||||||
user: User,
|
user: User,
|
||||||
base_dn_str: &str,
|
base_dn_str: &str,
|
||||||
attributes: &[&str],
|
attributes: &[String],
|
||||||
groups: Option<&[GroupDetails]>,
|
groups: Option<&[GroupDetails]>,
|
||||||
ignored_user_attributes: &[String],
|
ignored_user_attributes: &[String],
|
||||||
) -> LdapSearchResultEntry {
|
) -> LdapSearchResultEntry {
|
||||||
|
let expanded_attributes = expand_user_attribute_wildcards(attributes);
|
||||||
let dn = format!("uid={},ou=people,{}", user.user_id.as_str(), base_dn_str);
|
let dn = format!("uid={},ou=people,{}", user.user_id.as_str(), base_dn_str);
|
||||||
|
dbg!(&attributes, &expanded_attributes, &user);
|
||||||
|
|
||||||
LdapSearchResultEntry {
|
LdapSearchResultEntry {
|
||||||
dn,
|
dn,
|
||||||
attributes: attributes
|
attributes: expanded_attributes
|
||||||
.iter()
|
.iter()
|
||||||
.filter_map(|a| {
|
.filter_map(|a| {
|
||||||
let values =
|
let values =
|
||||||
@ -188,15 +192,19 @@ fn convert_user_filter(ldap_info: &LdapInfo, filter: &LdapFilter) -> LdapResult<
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn expand_user_attribute_wildcards(attributes: &[String]) -> Vec<&str> {
|
||||||
|
expand_attribute_wildcards(attributes, ALL_USER_ATTRIBUTE_KEYS)
|
||||||
|
}
|
||||||
|
|
||||||
#[instrument(skip_all, level = "debug")]
|
#[instrument(skip_all, level = "debug")]
|
||||||
pub async fn get_user_list<Backend: BackendHandler>(
|
pub async fn get_user_list<Backend: BackendHandler>(
|
||||||
ldap_info: &LdapInfo,
|
ldap_info: &LdapInfo,
|
||||||
ldap_filter: &LdapFilter,
|
ldap_filter: &LdapFilter,
|
||||||
attributes: &[String],
|
request_groups: bool,
|
||||||
base: &str,
|
base: &str,
|
||||||
user_filter: &Option<&UserId>,
|
user_filter: &Option<&UserId>,
|
||||||
backend: &mut Backend,
|
backend: &mut Backend,
|
||||||
) -> LdapResult<Vec<LdapOp>> {
|
) -> LdapResult<Vec<UserAndGroups>> {
|
||||||
debug!(?ldap_filter);
|
debug!(?ldap_filter);
|
||||||
let filters = convert_user_filter(ldap_info, ldap_filter)?;
|
let filters = convert_user_filter(ldap_info, ldap_filter)?;
|
||||||
let parsed_filters = match user_filter {
|
let parsed_filters = match user_filter {
|
||||||
@ -207,28 +215,27 @@ pub async fn get_user_list<Backend: BackendHandler>(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
debug!(?parsed_filters);
|
debug!(?parsed_filters);
|
||||||
let expanded_attributes = expand_attribute_wildcards(attributes, ALL_USER_ATTRIBUTE_KEYS);
|
backend
|
||||||
let need_groups = expanded_attributes
|
.list_users(Some(parsed_filters), request_groups)
|
||||||
.iter()
|
|
||||||
.any(|s| s.to_ascii_lowercase() == "memberof");
|
|
||||||
let users = backend
|
|
||||||
.list_users(Some(parsed_filters), need_groups)
|
|
||||||
.await
|
.await
|
||||||
.map_err(|e| LdapError {
|
.map_err(|e| LdapError {
|
||||||
code: LdapResultCode::Other,
|
code: LdapResultCode::Other,
|
||||||
message: format!(r#"Error while searching user "{}": {:#}"#, base, e),
|
message: format!(r#"Error while searching user "{}": {:#}"#, base, e),
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(users
|
|
||||||
.into_iter()
|
|
||||||
.map(|u| {
|
|
||||||
LdapOp::SearchResultEntry(make_ldap_search_user_result_entry(
|
|
||||||
u.user,
|
|
||||||
&ldap_info.base_dn_str,
|
|
||||||
&expanded_attributes,
|
|
||||||
u.groups.as_deref(),
|
|
||||||
&ldap_info.ignored_user_attributes,
|
|
||||||
))
|
|
||||||
})
|
})
|
||||||
.collect::<Vec<_>>())
|
}
|
||||||
|
|
||||||
|
pub fn convert_users_to_ldap_op<'a>(
|
||||||
|
users: Vec<UserAndGroups>,
|
||||||
|
attributes: &'a [String],
|
||||||
|
ldap_info: &'a LdapInfo,
|
||||||
|
) -> impl Iterator<Item = LdapOp> + 'a {
|
||||||
|
users.into_iter().map(move |u| {
|
||||||
|
LdapOp::SearchResultEntry(make_ldap_search_user_result_entry(
|
||||||
|
u.user,
|
||||||
|
&ldap_info.base_dn_str,
|
||||||
|
attributes,
|
||||||
|
u.groups.as_deref(),
|
||||||
|
&ldap_info.ignored_user_attributes,
|
||||||
|
))
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
@ -143,7 +143,7 @@ pub fn map_user_field(field: &str) -> Option<UserColumn> {
|
|||||||
"cn" | "displayname" | "display_name" => UserColumn::DisplayName,
|
"cn" | "displayname" | "display_name" => UserColumn::DisplayName,
|
||||||
"givenname" | "first_name" => UserColumn::FirstName,
|
"givenname" | "first_name" => UserColumn::FirstName,
|
||||||
"sn" | "last_name" => UserColumn::LastName,
|
"sn" | "last_name" => UserColumn::LastName,
|
||||||
"avatar" => UserColumn::Avatar,
|
"avatar" | "jpegphoto" => UserColumn::Avatar,
|
||||||
"creationdate" | "createtimestamp" | "modifytimestamp" | "creation_date" => {
|
"creationdate" | "createtimestamp" | "modifytimestamp" | "creation_date" => {
|
||||||
UserColumn::CreationDate
|
UserColumn::CreationDate
|
||||||
}
|
}
|
||||||
|
@ -3,23 +3,23 @@ use crate::{
|
|||||||
handler::{BackendHandler, BindRequest, CreateUserRequest, LoginHandler},
|
handler::{BackendHandler, BindRequest, CreateUserRequest, LoginHandler},
|
||||||
ldap::{
|
ldap::{
|
||||||
error::{LdapError, LdapResult},
|
error::{LdapError, LdapResult},
|
||||||
group::get_groups_list,
|
group::{convert_groups_to_ldap_op, get_groups_list},
|
||||||
user::get_user_list,
|
user::{convert_users_to_ldap_op, get_user_list},
|
||||||
utils::{
|
utils::{
|
||||||
get_user_id_from_distinguished_name, is_subtree, parse_distinguished_name, LdapInfo,
|
get_user_id_from_distinguished_name, is_subtree, parse_distinguished_name, LdapInfo,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
opaque_handler::OpaqueHandler,
|
opaque_handler::OpaqueHandler,
|
||||||
types::{JpegPhoto, UserId},
|
types::{Group, JpegPhoto, UserAndGroups, UserId},
|
||||||
},
|
},
|
||||||
infra::auth_service::{Permission, ValidationResults},
|
infra::auth_service::{Permission, ValidationResults},
|
||||||
};
|
};
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use ldap3_proto::proto::{
|
use ldap3_proto::proto::{
|
||||||
LdapAddRequest, LdapBindCred, LdapBindRequest, LdapBindResponse, LdapExtendedRequest,
|
LdapAddRequest, LdapBindCred, LdapBindRequest, LdapBindResponse, LdapCompareRequest,
|
||||||
LdapExtendedResponse, LdapFilter, LdapOp, LdapPartialAttribute, LdapPasswordModifyRequest,
|
LdapDerefAliases, LdapExtendedRequest, LdapExtendedResponse, LdapFilter, LdapOp,
|
||||||
LdapResult as LdapResultOp, LdapResultCode, LdapSearchRequest, LdapSearchResultEntry,
|
LdapPartialAttribute, LdapPasswordModifyRequest, LdapResult as LdapResultOp, LdapResultCode,
|
||||||
LdapSearchScope,
|
LdapSearchRequest, LdapSearchResultEntry, LdapSearchScope,
|
||||||
};
|
};
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use tracing::{debug, instrument, warn};
|
use tracing::{debug, instrument, warn};
|
||||||
@ -71,6 +71,23 @@ fn get_search_scope(base_dn: &[(String, String)], dn_parts: &[(String, String)])
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn make_search_request<S: Into<String>>(
|
||||||
|
base: &str,
|
||||||
|
filter: LdapFilter,
|
||||||
|
attrs: Vec<S>,
|
||||||
|
) -> LdapSearchRequest {
|
||||||
|
LdapSearchRequest {
|
||||||
|
base: base.to_string(),
|
||||||
|
scope: LdapSearchScope::Base,
|
||||||
|
aliases: LdapDerefAliases::Never,
|
||||||
|
sizelimit: 0,
|
||||||
|
timelimit: 0,
|
||||||
|
typesonly: false,
|
||||||
|
filter,
|
||||||
|
attrs: attrs.into_iter().map(Into::into).collect(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn make_search_success() -> LdapOp {
|
fn make_search_success() -> LdapOp {
|
||||||
make_search_error(LdapResultCode::Success, "".to_string())
|
make_search_error(LdapResultCode::Success, "".to_string())
|
||||||
}
|
}
|
||||||
@ -334,6 +351,18 @@ impl<Backend: BackendHandler + LoginHandler + OpaqueHandler> LdapHandler<Backend
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn get_user_permission_filter(&self) -> LdapResult<Option<UserId>> {
|
||||||
|
let user_info = self.user_info.as_ref().ok_or_else(|| LdapError {
|
||||||
|
code: LdapResultCode::InsufficentAccessRights,
|
||||||
|
message: "No user currently bound".to_string(),
|
||||||
|
})?;
|
||||||
|
Ok(if user_info.is_admin_or_readonly() {
|
||||||
|
None
|
||||||
|
} else {
|
||||||
|
Some(user_info.user.clone())
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn do_search_or_dse(
|
pub async fn do_search_or_dse(
|
||||||
&mut self,
|
&mut self,
|
||||||
request: &LdapSearchRequest,
|
request: &LdapSearchRequest,
|
||||||
@ -349,30 +378,19 @@ impl<Backend: BackendHandler + LoginHandler + OpaqueHandler> LdapHandler<Backend
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let user_info = self.user_info.as_ref().ok_or_else(|| LdapError {
|
self.do_search(request).await
|
||||||
code: LdapResultCode::InsufficentAccessRights,
|
|
||||||
message: "No user currently bound".to_string(),
|
|
||||||
})?;
|
|
||||||
let user_filter = if user_info.is_admin_or_readonly() {
|
|
||||||
None
|
|
||||||
} else {
|
|
||||||
Some(user_info.user.clone())
|
|
||||||
};
|
|
||||||
self.do_search(request, user_filter).await
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[instrument(skip_all, level = "debug")]
|
async fn do_search_internal(
|
||||||
pub async fn do_search(
|
|
||||||
&mut self,
|
&mut self,
|
||||||
request: &LdapSearchRequest,
|
request: &LdapSearchRequest,
|
||||||
user_filter: Option<UserId>,
|
user_filter: &Option<&UserId>,
|
||||||
) -> LdapResult<Vec<LdapOp>> {
|
) -> LdapResult<(Option<Vec<UserAndGroups>>, Option<Vec<Group>>)> {
|
||||||
let user_filter = user_filter.as_ref();
|
|
||||||
let dn_parts = parse_distinguished_name(&request.base.to_ascii_lowercase())?;
|
let dn_parts = parse_distinguished_name(&request.base.to_ascii_lowercase())?;
|
||||||
let scope = get_search_scope(&self.ldap_info.base_dn, &dn_parts);
|
let scope = get_search_scope(&self.ldap_info.base_dn, &dn_parts);
|
||||||
debug!(?request.base, ?scope);
|
debug!(?request.base, ?scope);
|
||||||
// Disambiguate the lifetimes.
|
// Disambiguate the lifetimes.
|
||||||
fn cast<T, R, B: 'a, 'a>(x: T) -> T
|
fn cast<'a, T, R, B: 'a>(x: T) -> T
|
||||||
where
|
where
|
||||||
T: Fn(&'a mut B, &'a LdapFilter) -> R + 'a,
|
T: Fn(&'a mut B, &'a LdapFilter) -> R + 'a,
|
||||||
{
|
{
|
||||||
@ -380,12 +398,16 @@ impl<Backend: BackendHandler + LoginHandler + OpaqueHandler> LdapHandler<Backend
|
|||||||
}
|
}
|
||||||
|
|
||||||
let get_user_list = cast(|backend_handler: &mut Backend, filter: &LdapFilter| async {
|
let get_user_list = cast(|backend_handler: &mut Backend, filter: &LdapFilter| async {
|
||||||
|
let need_groups = request
|
||||||
|
.attrs
|
||||||
|
.iter()
|
||||||
|
.any(|s| s.to_ascii_lowercase() == "memberof");
|
||||||
get_user_list(
|
get_user_list(
|
||||||
&self.ldap_info,
|
&self.ldap_info,
|
||||||
filter,
|
filter,
|
||||||
&request.attrs,
|
need_groups,
|
||||||
&request.base,
|
&request.base,
|
||||||
&user_filter,
|
user_filter,
|
||||||
backend_handler,
|
backend_handler,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
@ -394,38 +416,45 @@ impl<Backend: BackendHandler + LoginHandler + OpaqueHandler> LdapHandler<Backend
|
|||||||
get_groups_list(
|
get_groups_list(
|
||||||
&self.ldap_info,
|
&self.ldap_info,
|
||||||
filter,
|
filter,
|
||||||
&request.attrs,
|
|
||||||
&request.base,
|
&request.base,
|
||||||
&user_filter,
|
user_filter,
|
||||||
backend_handler,
|
backend_handler,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
});
|
});
|
||||||
let mut results: Vec<_> = match scope {
|
Ok(match scope {
|
||||||
SearchScope::Global => {
|
SearchScope::Global => (
|
||||||
let mut results = Vec::new();
|
Some(get_user_list(&mut self.backend_handler, &request.filter).await?),
|
||||||
results.extend(get_user_list(&mut self.backend_handler, &request.filter).await?);
|
Some(get_group_list(&mut self.backend_handler, &request.filter).await?),
|
||||||
results.extend(get_group_list(&mut self.backend_handler, &request.filter).await?);
|
),
|
||||||
results
|
SearchScope::Users => (
|
||||||
}
|
Some(get_user_list(&mut self.backend_handler, &request.filter).await?),
|
||||||
SearchScope::Users => get_user_list(&mut self.backend_handler, &request.filter).await?,
|
None,
|
||||||
SearchScope::Groups => {
|
),
|
||||||
get_group_list(&mut self.backend_handler, &request.filter).await?
|
SearchScope::Groups => (
|
||||||
}
|
None,
|
||||||
|
Some(get_group_list(&mut self.backend_handler, &request.filter).await?),
|
||||||
|
),
|
||||||
SearchScope::User(filter) => {
|
SearchScope::User(filter) => {
|
||||||
let filter = LdapFilter::And(vec![request.filter.clone(), filter]);
|
let filter = LdapFilter::And(vec![request.filter.clone(), filter]);
|
||||||
get_user_list(&mut self.backend_handler, &filter).await?
|
(
|
||||||
|
Some(get_user_list(&mut self.backend_handler, &filter).await?),
|
||||||
|
None,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
SearchScope::Group(filter) => {
|
SearchScope::Group(filter) => {
|
||||||
let filter = LdapFilter::And(vec![request.filter.clone(), filter]);
|
let filter = LdapFilter::And(vec![request.filter.clone(), filter]);
|
||||||
get_group_list(&mut self.backend_handler, &filter).await?
|
(
|
||||||
|
None,
|
||||||
|
Some(get_group_list(&mut self.backend_handler, &filter).await?),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
SearchScope::Unknown => {
|
SearchScope::Unknown => {
|
||||||
warn!(
|
warn!(
|
||||||
r#"The requested search tree "{}" matches neither the user subtree "ou=people,{}" nor the group subtree "ou=groups,{}""#,
|
r#"The requested search tree "{}" matches neither the user subtree "ou=people,{}" nor the group subtree "ou=groups,{}""#,
|
||||||
&request.base, &self.ldap_info.base_dn_str, &self.ldap_info.base_dn_str
|
&request.base, &self.ldap_info.base_dn_str, &self.ldap_info.base_dn_str
|
||||||
);
|
);
|
||||||
Vec::new()
|
(None, None)
|
||||||
}
|
}
|
||||||
SearchScope::Invalid => {
|
SearchScope::Invalid => {
|
||||||
// Search path is not in our tree, just return an empty success.
|
// Search path is not in our tree, just return an empty success.
|
||||||
@ -433,9 +462,33 @@ impl<Backend: BackendHandler + LoginHandler + OpaqueHandler> LdapHandler<Backend
|
|||||||
"The specified search tree {:?} is not under the common subtree {:?}",
|
"The specified search tree {:?} is not under the common subtree {:?}",
|
||||||
&dn_parts, &self.ldap_info.base_dn
|
&dn_parts, &self.ldap_info.base_dn
|
||||||
);
|
);
|
||||||
Vec::new()
|
(None, None)
|
||||||
}
|
}
|
||||||
};
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
#[instrument(skip_all, level = "debug")]
|
||||||
|
pub async fn do_search(&mut self, request: &LdapSearchRequest) -> LdapResult<Vec<LdapOp>> {
|
||||||
|
let user_filter = self.get_user_permission_filter()?;
|
||||||
|
let user_filter = user_filter.as_ref();
|
||||||
|
let (users, groups) = self.do_search_internal(request, &user_filter).await?;
|
||||||
|
|
||||||
|
let mut results = Vec::new();
|
||||||
|
if let Some(users) = users {
|
||||||
|
results.extend(convert_users_to_ldap_op(
|
||||||
|
users,
|
||||||
|
&request.attrs,
|
||||||
|
&self.ldap_info,
|
||||||
|
));
|
||||||
|
}
|
||||||
|
if let Some(groups) = groups {
|
||||||
|
results.extend(convert_groups_to_ldap_op(
|
||||||
|
groups,
|
||||||
|
&request.attrs,
|
||||||
|
&self.ldap_info,
|
||||||
|
&user_filter,
|
||||||
|
));
|
||||||
|
}
|
||||||
if results.is_empty() || matches!(results[results.len() - 1], LdapOp::SearchResultEntry(_))
|
if results.is_empty() || matches!(results[results.len() - 1], LdapOp::SearchResultEntry(_))
|
||||||
{
|
{
|
||||||
results.push(make_search_success());
|
results.push(make_search_success());
|
||||||
@ -527,6 +580,57 @@ impl<Backend: BackendHandler + LoginHandler + OpaqueHandler> LdapHandler<Backend
|
|||||||
Ok(vec![make_add_error(LdapResultCode::Success, String::new())])
|
Ok(vec![make_add_error(LdapResultCode::Success, String::new())])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn do_compare(&mut self, request: LdapCompareRequest) -> LdapResult<Vec<LdapOp>> {
|
||||||
|
dbg!(&request);
|
||||||
|
let req = make_search_request::<String>(
|
||||||
|
&self.ldap_info.base_dn_str,
|
||||||
|
LdapFilter::Equality("dn".to_string(), request.dn.to_string()),
|
||||||
|
vec![request.atype.clone()],
|
||||||
|
);
|
||||||
|
let entries = self.do_search(&req).await?;
|
||||||
|
if entries.len() > 2 {
|
||||||
|
// SearchResultEntry + SearchResultDone
|
||||||
|
return Err(LdapError {
|
||||||
|
code: LdapResultCode::OperationsError,
|
||||||
|
message: "Too many search results".to_string(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
match entries.first() {
|
||||||
|
Some(LdapOp::SearchResultEntry(entry)) => {
|
||||||
|
dbg!(&entry.attributes);
|
||||||
|
let available = entry
|
||||||
|
.attributes
|
||||||
|
.iter()
|
||||||
|
.any(|attr| attr.atype == request.atype && attr.vals.contains(&request.val));
|
||||||
|
Ok(vec![LdapOp::CompareResult(LdapResultOp {
|
||||||
|
code: if available {
|
||||||
|
LdapResultCode::CompareTrue
|
||||||
|
} else {
|
||||||
|
LdapResultCode::CompareFalse
|
||||||
|
},
|
||||||
|
matcheddn: request.dn,
|
||||||
|
message: "".to_string(),
|
||||||
|
referral: vec![],
|
||||||
|
})])
|
||||||
|
}
|
||||||
|
Some(LdapOp::SearchResultDone(_)) => Ok(vec![LdapOp::CompareResult(LdapResultOp {
|
||||||
|
code: LdapResultCode::NoSuchObject,
|
||||||
|
matcheddn: self.ldap_info.base_dn_str.clone(),
|
||||||
|
message: "".to_string(),
|
||||||
|
referral: vec![],
|
||||||
|
})]),
|
||||||
|
None => Err(LdapError {
|
||||||
|
code: LdapResultCode::OperationsError,
|
||||||
|
message: "Search request returned nothing".to_string(),
|
||||||
|
}),
|
||||||
|
_ => Err(LdapError {
|
||||||
|
code: LdapResultCode::OperationsError,
|
||||||
|
message: "Unexpected results from search".to_string(),
|
||||||
|
}),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn handle_ldap_message(&mut self, ldap_op: LdapOp) -> Option<Vec<LdapOp>> {
|
pub async fn handle_ldap_message(&mut self, ldap_op: LdapOp) -> Option<Vec<LdapOp>> {
|
||||||
Some(match ldap_op {
|
Some(match ldap_op {
|
||||||
LdapOp::BindRequest(request) => {
|
LdapOp::BindRequest(request) => {
|
||||||
@ -555,6 +659,10 @@ impl<Backend: BackendHandler + LoginHandler + OpaqueHandler> LdapHandler<Backend
|
|||||||
.do_create_user(request)
|
.do_create_user(request)
|
||||||
.await
|
.await
|
||||||
.unwrap_or_else(|e: LdapError| vec![make_add_error(e.code, e.message)]),
|
.unwrap_or_else(|e: LdapError| vec![make_add_error(e.code, e.message)]),
|
||||||
|
LdapOp::CompareRequest(request) => self
|
||||||
|
.do_compare(request)
|
||||||
|
.await
|
||||||
|
.unwrap_or_else(|e: LdapError| vec![make_search_error(e.code, e.message)]),
|
||||||
op => vec![make_extended_response(
|
op => vec![make_extended_response(
|
||||||
LdapResultCode::UnwillingToPerform,
|
LdapResultCode::UnwillingToPerform,
|
||||||
format!("Unsupported operation: {:#?}", op),
|
format!("Unsupported operation: {:#?}", op),
|
||||||
@ -625,23 +733,6 @@ mod tests {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn make_search_request<S: Into<String>>(
|
|
||||||
base: &str,
|
|
||||||
filter: LdapFilter,
|
|
||||||
attrs: Vec<S>,
|
|
||||||
) -> LdapSearchRequest {
|
|
||||||
LdapSearchRequest {
|
|
||||||
base: base.to_string(),
|
|
||||||
scope: LdapSearchScope::Base,
|
|
||||||
aliases: LdapDerefAliases::Never,
|
|
||||||
sizelimit: 0,
|
|
||||||
timelimit: 0,
|
|
||||||
typesonly: false,
|
|
||||||
filter,
|
|
||||||
attrs: attrs.into_iter().map(Into::into).collect(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn make_user_search_request<S: Into<String>>(
|
fn make_user_search_request<S: Into<String>>(
|
||||||
filter: LdapFilter,
|
filter: LdapFilter,
|
||||||
attrs: Vec<S>,
|
attrs: Vec<S>,
|
||||||
@ -649,6 +740,13 @@ mod tests {
|
|||||||
make_search_request::<S>("ou=people,Dc=example,dc=com", filter, attrs)
|
make_search_request::<S>("ou=people,Dc=example,dc=com", filter, attrs)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn make_group_search_request<S: Into<String>>(
|
||||||
|
filter: LdapFilter,
|
||||||
|
attrs: Vec<S>,
|
||||||
|
) -> LdapSearchRequest {
|
||||||
|
make_search_request::<S>("ou=groups,dc=example,dc=com", filter, attrs)
|
||||||
|
}
|
||||||
|
|
||||||
async fn setup_bound_handler_with_group(
|
async fn setup_bound_handler_with_group(
|
||||||
mut mock: MockTestBackendHandler,
|
mut mock: MockTestBackendHandler,
|
||||||
group: &str,
|
group: &str,
|
||||||
@ -778,7 +876,7 @@ mod tests {
|
|||||||
mock.expect_list_users()
|
mock.expect_list_users()
|
||||||
.with(
|
.with(
|
||||||
eq(Some(UserRequestFilter::And(vec![
|
eq(Some(UserRequestFilter::And(vec![
|
||||||
UserRequestFilter::from(true),
|
true.into(),
|
||||||
UserRequestFilter::UserId(UserId::new("test")),
|
UserRequestFilter::UserId(UserId::new("test")),
|
||||||
]))),
|
]))),
|
||||||
eq(false),
|
eq(false),
|
||||||
@ -813,7 +911,7 @@ mod tests {
|
|||||||
async fn test_search_readonly_user() {
|
async fn test_search_readonly_user() {
|
||||||
let mut mock = MockTestBackendHandler::new();
|
let mut mock = MockTestBackendHandler::new();
|
||||||
mock.expect_list_users()
|
mock.expect_list_users()
|
||||||
.with(eq(Some(UserRequestFilter::from(true))), eq(false))
|
.with(eq(Some(true.into())), eq(false))
|
||||||
.times(1)
|
.times(1)
|
||||||
.return_once(|_, _| Ok(vec![]));
|
.return_once(|_, _| Ok(vec![]));
|
||||||
let mut ldap_handler = setup_bound_readonly_handler(mock).await;
|
let mut ldap_handler = setup_bound_readonly_handler(mock).await;
|
||||||
@ -830,7 +928,7 @@ mod tests {
|
|||||||
async fn test_search_member_of() {
|
async fn test_search_member_of() {
|
||||||
let mut mock = MockTestBackendHandler::new();
|
let mut mock = MockTestBackendHandler::new();
|
||||||
mock.expect_list_users()
|
mock.expect_list_users()
|
||||||
.with(eq(Some(UserRequestFilter::from(true))), eq(true))
|
.with(eq(Some(true.into())), eq(true))
|
||||||
.times(1)
|
.times(1)
|
||||||
.return_once(|_, _| {
|
.return_once(|_, _| {
|
||||||
Ok(vec![UserAndGroups {
|
Ok(vec![UserAndGroups {
|
||||||
@ -873,7 +971,7 @@ mod tests {
|
|||||||
mock.expect_list_users()
|
mock.expect_list_users()
|
||||||
.with(
|
.with(
|
||||||
eq(Some(UserRequestFilter::And(vec![
|
eq(Some(UserRequestFilter::And(vec![
|
||||||
UserRequestFilter::from(true),
|
true.into(),
|
||||||
UserRequestFilter::UserId(UserId::new("bob")),
|
UserRequestFilter::UserId(UserId::new("bob")),
|
||||||
]))),
|
]))),
|
||||||
eq(false),
|
eq(false),
|
||||||
@ -1131,7 +1229,7 @@ mod tests {
|
|||||||
async fn test_search_groups() {
|
async fn test_search_groups() {
|
||||||
let mut mock = MockTestBackendHandler::new();
|
let mut mock = MockTestBackendHandler::new();
|
||||||
mock.expect_list_groups()
|
mock.expect_list_groups()
|
||||||
.with(eq(Some(GroupRequestFilter::from(true))))
|
.with(eq(Some(true.into())))
|
||||||
.times(1)
|
.times(1)
|
||||||
.return_once(|_| {
|
.return_once(|_| {
|
||||||
Ok(vec![
|
Ok(vec![
|
||||||
@ -1152,8 +1250,7 @@ mod tests {
|
|||||||
])
|
])
|
||||||
});
|
});
|
||||||
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
||||||
let request = make_search_request(
|
let request = make_group_search_request(
|
||||||
"ou=groups,dc=example,dc=cOm",
|
|
||||||
LdapFilter::And(vec![]),
|
LdapFilter::And(vec![]),
|
||||||
vec!["objectClass", "dn", "cn", "uniqueMember", "entryUuid"],
|
vec!["objectClass", "dn", "cn", "uniqueMember", "entryUuid"],
|
||||||
);
|
);
|
||||||
@ -1218,12 +1315,13 @@ mod tests {
|
|||||||
GroupRequestFilter::DisplayName("group_1".to_string()),
|
GroupRequestFilter::DisplayName("group_1".to_string()),
|
||||||
GroupRequestFilter::Member(UserId::new("bob")),
|
GroupRequestFilter::Member(UserId::new("bob")),
|
||||||
GroupRequestFilter::DisplayName("rockstars".to_string()),
|
GroupRequestFilter::DisplayName("rockstars".to_string()),
|
||||||
GroupRequestFilter::from(true),
|
false.into(),
|
||||||
GroupRequestFilter::from(true),
|
true.into(),
|
||||||
GroupRequestFilter::from(true),
|
true.into(),
|
||||||
GroupRequestFilter::from(true),
|
true.into(),
|
||||||
GroupRequestFilter::Not(Box::new(GroupRequestFilter::from(false))),
|
true.into(),
|
||||||
GroupRequestFilter::from(false),
|
GroupRequestFilter::Not(Box::new(false.into())),
|
||||||
|
false.into(),
|
||||||
]))))
|
]))))
|
||||||
.times(1)
|
.times(1)
|
||||||
.return_once(|_| {
|
.return_once(|_| {
|
||||||
@ -1236,8 +1334,7 @@ mod tests {
|
|||||||
}])
|
}])
|
||||||
});
|
});
|
||||||
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
||||||
let request = make_search_request(
|
let request = make_group_search_request(
|
||||||
"ou=groups,dc=example,dc=com",
|
|
||||||
LdapFilter::And(vec![
|
LdapFilter::And(vec![
|
||||||
LdapFilter::Equality("cN".to_string(), "Group_1".to_string()),
|
LdapFilter::Equality("cN".to_string(), "Group_1".to_string()),
|
||||||
LdapFilter::Equality(
|
LdapFilter::Equality(
|
||||||
@ -1248,6 +1345,10 @@ mod tests {
|
|||||||
"dn".to_string(),
|
"dn".to_string(),
|
||||||
"uid=rockstars,ou=groups,dc=example,dc=com".to_string(),
|
"uid=rockstars,ou=groups,dc=example,dc=com".to_string(),
|
||||||
),
|
),
|
||||||
|
LdapFilter::Equality(
|
||||||
|
"dn".to_string(),
|
||||||
|
"uid=rockstars,ou=people,dc=example,dc=com".to_string(),
|
||||||
|
),
|
||||||
LdapFilter::Equality("obJEctclass".to_string(), "groupofUniqueNames".to_string()),
|
LdapFilter::Equality("obJEctclass".to_string(), "groupofUniqueNames".to_string()),
|
||||||
LdapFilter::Equality("objectclass".to_string(), "groupOfNames".to_string()),
|
LdapFilter::Equality("objectclass".to_string(), "groupOfNames".to_string()),
|
||||||
LdapFilter::Present("objectclass".to_string()),
|
LdapFilter::Present("objectclass".to_string()),
|
||||||
@ -1291,8 +1392,7 @@ mod tests {
|
|||||||
}])
|
}])
|
||||||
});
|
});
|
||||||
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
||||||
let request = make_search_request(
|
let request = make_group_search_request(
|
||||||
"ou=groups,dc=example,dc=com",
|
|
||||||
LdapFilter::Or(vec![LdapFilter::Not(Box::new(LdapFilter::Equality(
|
LdapFilter::Or(vec![LdapFilter::Not(Box::new(LdapFilter::Equality(
|
||||||
"displayname".to_string(),
|
"displayname".to_string(),
|
||||||
"group_2".to_string(),
|
"group_2".to_string(),
|
||||||
@ -1319,7 +1419,7 @@ mod tests {
|
|||||||
let mut mock = MockTestBackendHandler::new();
|
let mut mock = MockTestBackendHandler::new();
|
||||||
mock.expect_list_groups()
|
mock.expect_list_groups()
|
||||||
.with(eq(Some(GroupRequestFilter::And(vec![
|
.with(eq(Some(GroupRequestFilter::And(vec![
|
||||||
GroupRequestFilter::from(true),
|
true.into(),
|
||||||
GroupRequestFilter::DisplayName("rockstars".to_string()),
|
GroupRequestFilter::DisplayName("rockstars".to_string()),
|
||||||
]))))
|
]))))
|
||||||
.times(1)
|
.times(1)
|
||||||
@ -1358,8 +1458,7 @@ mod tests {
|
|||||||
))
|
))
|
||||||
});
|
});
|
||||||
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
||||||
let request = make_search_request(
|
let request = make_group_search_request(
|
||||||
"ou=groups,dc=example,dc=com",
|
|
||||||
LdapFilter::Or(vec![LdapFilter::Not(Box::new(LdapFilter::Equality(
|
LdapFilter::Or(vec![LdapFilter::Not(Box::new(LdapFilter::Equality(
|
||||||
"displayname".to_string(),
|
"displayname".to_string(),
|
||||||
"group_2".to_string(),
|
"group_2".to_string(),
|
||||||
@ -1378,8 +1477,7 @@ mod tests {
|
|||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
async fn test_search_groups_filter_error() {
|
async fn test_search_groups_filter_error() {
|
||||||
let mut ldap_handler = setup_bound_admin_handler(MockTestBackendHandler::new()).await;
|
let mut ldap_handler = setup_bound_admin_handler(MockTestBackendHandler::new()).await;
|
||||||
let request = make_search_request(
|
let request = make_group_search_request(
|
||||||
"ou=groups,dc=example,dc=com",
|
|
||||||
LdapFilter::And(vec![LdapFilter::Substring(
|
LdapFilter::And(vec![LdapFilter::Substring(
|
||||||
"whatever".to_string(),
|
"whatever".to_string(),
|
||||||
ldap3_proto::proto::LdapSubstringFilter::default(),
|
ldap3_proto::proto::LdapSubstringFilter::default(),
|
||||||
@ -1407,12 +1505,13 @@ mod tests {
|
|||||||
"bob",
|
"bob",
|
||||||
)))),
|
)))),
|
||||||
UserRequestFilter::UserId("bob_1".to_string().into()),
|
UserRequestFilter::UserId("bob_1".to_string().into()),
|
||||||
UserRequestFilter::from(true),
|
false.into(),
|
||||||
UserRequestFilter::from(false),
|
true.into(),
|
||||||
UserRequestFilter::from(true),
|
false.into(),
|
||||||
UserRequestFilter::from(true),
|
true.into(),
|
||||||
UserRequestFilter::from(false),
|
true.into(),
|
||||||
UserRequestFilter::from(false),
|
false.into(),
|
||||||
|
false.into(),
|
||||||
],
|
],
|
||||||
)]))),
|
)]))),
|
||||||
eq(false),
|
eq(false),
|
||||||
@ -1430,6 +1529,10 @@ mod tests {
|
|||||||
"dn".to_string(),
|
"dn".to_string(),
|
||||||
"uid=bob_1,ou=people,dc=example,dc=com".to_string(),
|
"uid=bob_1,ou=people,dc=example,dc=com".to_string(),
|
||||||
),
|
),
|
||||||
|
LdapFilter::Equality(
|
||||||
|
"dn".to_string(),
|
||||||
|
"uid=bob_1,ou=groups,dc=example,dc=com".to_string(),
|
||||||
|
),
|
||||||
LdapFilter::Equality("objectclass".to_string(), "persOn".to_string()),
|
LdapFilter::Equality("objectclass".to_string(), "persOn".to_string()),
|
||||||
LdapFilter::Equality("objectclass".to_string(), "other".to_string()),
|
LdapFilter::Equality("objectclass".to_string(), "other".to_string()),
|
||||||
LdapFilter::Present("objectClass".to_string()),
|
LdapFilter::Present("objectClass".to_string()),
|
||||||
@ -1560,7 +1663,7 @@ mod tests {
|
|||||||
}])
|
}])
|
||||||
});
|
});
|
||||||
mock.expect_list_groups()
|
mock.expect_list_groups()
|
||||||
.with(eq(Some(GroupRequestFilter::from(true))))
|
.with(eq(Some(true.into())))
|
||||||
.times(1)
|
.times(1)
|
||||||
.return_once(|_| {
|
.return_once(|_| {
|
||||||
Ok(vec![Group {
|
Ok(vec![Group {
|
||||||
@ -1635,7 +1738,7 @@ mod tests {
|
|||||||
}])
|
}])
|
||||||
});
|
});
|
||||||
mock.expect_list_groups()
|
mock.expect_list_groups()
|
||||||
.with(eq(Some(GroupRequestFilter::from(true))))
|
.with(eq(Some(true.into())))
|
||||||
.returning(|_| {
|
.returning(|_| {
|
||||||
Ok(vec![Group {
|
Ok(vec![Group {
|
||||||
id: GroupId(1),
|
id: GroupId(1),
|
||||||
@ -2091,7 +2194,7 @@ mod tests {
|
|||||||
async fn test_search_filter_non_attribute() {
|
async fn test_search_filter_non_attribute() {
|
||||||
let mut mock = MockTestBackendHandler::new();
|
let mut mock = MockTestBackendHandler::new();
|
||||||
mock.expect_list_users()
|
mock.expect_list_users()
|
||||||
.with(eq(Some(UserRequestFilter::from(true))), eq(false))
|
.with(eq(Some(true.into())), eq(false))
|
||||||
.times(1)
|
.times(1)
|
||||||
.return_once(|_, _| Ok(vec![]));
|
.return_once(|_, _| Ok(vec![]));
|
||||||
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
||||||
@ -2104,4 +2207,146 @@ mod tests {
|
|||||||
Ok(vec![make_search_success()])
|
Ok(vec![make_search_success()])
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_compare_user() {
|
||||||
|
let mut mock = MockTestBackendHandler::new();
|
||||||
|
mock.expect_list_users().returning(|f, g| {
|
||||||
|
assert_eq!(f, Some(UserRequestFilter::UserId(UserId::new("bob"))));
|
||||||
|
assert!(!g);
|
||||||
|
Ok(vec![UserAndGroups {
|
||||||
|
user: User {
|
||||||
|
user_id: UserId::new("bob"),
|
||||||
|
email: "bob@bobmail.bob".to_string(),
|
||||||
|
..Default::default()
|
||||||
|
},
|
||||||
|
groups: None,
|
||||||
|
}])
|
||||||
|
});
|
||||||
|
mock.expect_list_groups().returning(|_| Ok(vec![]));
|
||||||
|
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
||||||
|
let dn = "uid=bob,ou=people,dc=example,dc=com";
|
||||||
|
let request = LdapCompareRequest {
|
||||||
|
dn: dn.to_string(),
|
||||||
|
atype: "uid".to_owned(),
|
||||||
|
val: b"bob".to_vec(),
|
||||||
|
};
|
||||||
|
assert_eq!(
|
||||||
|
ldap_handler.do_compare(request).await,
|
||||||
|
Ok(vec![LdapOp::CompareResult(LdapResultOp {
|
||||||
|
code: LdapResultCode::CompareTrue,
|
||||||
|
matcheddn: dn.to_string(),
|
||||||
|
message: "".to_string(),
|
||||||
|
referral: vec![],
|
||||||
|
})])
|
||||||
|
);
|
||||||
|
// Non-canonical attribute.
|
||||||
|
let request = LdapCompareRequest {
|
||||||
|
dn: dn.to_string(),
|
||||||
|
atype: "eMail".to_owned(),
|
||||||
|
val: b"bob@bobmail.bob".to_vec(),
|
||||||
|
};
|
||||||
|
assert_eq!(
|
||||||
|
ldap_handler.do_compare(request).await,
|
||||||
|
Ok(vec![LdapOp::CompareResult(LdapResultOp {
|
||||||
|
code: LdapResultCode::CompareTrue,
|
||||||
|
matcheddn: dn.to_string(),
|
||||||
|
message: "".to_string(),
|
||||||
|
referral: vec![],
|
||||||
|
})])
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_compare_group() {
|
||||||
|
let mut mock = MockTestBackendHandler::new();
|
||||||
|
mock.expect_list_users().returning(|_, _| Ok(vec![]));
|
||||||
|
mock.expect_list_groups().returning(|f| {
|
||||||
|
assert_eq!(f, Some(GroupRequestFilter::DisplayName("group".to_owned())));
|
||||||
|
Ok(vec![Group {
|
||||||
|
id: GroupId(1),
|
||||||
|
display_name: "group".to_string(),
|
||||||
|
creation_date: chrono::Utc.timestamp_opt(42, 42).unwrap().naive_utc(),
|
||||||
|
users: vec![UserId::new("bob")],
|
||||||
|
uuid: uuid!("04ac75e0-2900-3e21-926c-2f732c26b3fc"),
|
||||||
|
}])
|
||||||
|
});
|
||||||
|
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
||||||
|
let dn = "uid=group,ou=groups,dc=example,dc=com";
|
||||||
|
let request = LdapCompareRequest {
|
||||||
|
dn: dn.to_string(),
|
||||||
|
atype: "uid".to_owned(),
|
||||||
|
val: b"group".to_vec(),
|
||||||
|
};
|
||||||
|
assert_eq!(
|
||||||
|
ldap_handler.do_compare(request).await,
|
||||||
|
Ok(vec![LdapOp::CompareResult(LdapResultOp {
|
||||||
|
code: LdapResultCode::CompareTrue,
|
||||||
|
matcheddn: dn.to_string(),
|
||||||
|
message: "".to_string(),
|
||||||
|
referral: vec![],
|
||||||
|
})])
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_compare_not_found() {
|
||||||
|
let mut mock = MockTestBackendHandler::new();
|
||||||
|
mock.expect_list_users().returning(|f, g| {
|
||||||
|
assert_eq!(f, Some(UserRequestFilter::UserId(UserId::new("bob"))));
|
||||||
|
assert!(!g);
|
||||||
|
Ok(vec![])
|
||||||
|
});
|
||||||
|
mock.expect_list_groups().returning(|_| Ok(vec![]));
|
||||||
|
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
||||||
|
let dn = "uid=bob,ou=people,dc=example,dc=com";
|
||||||
|
let request = LdapCompareRequest {
|
||||||
|
dn: dn.to_string(),
|
||||||
|
atype: "uid".to_owned(),
|
||||||
|
val: b"bob".to_vec(),
|
||||||
|
};
|
||||||
|
assert_eq!(
|
||||||
|
ldap_handler.do_compare(request).await,
|
||||||
|
Ok(vec![LdapOp::CompareResult(LdapResultOp {
|
||||||
|
code: LdapResultCode::NoSuchObject,
|
||||||
|
matcheddn: "dc=example,dc=com".to_owned(),
|
||||||
|
message: "".to_string(),
|
||||||
|
referral: vec![],
|
||||||
|
})])
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_compare_no_match() {
|
||||||
|
let mut mock = MockTestBackendHandler::new();
|
||||||
|
mock.expect_list_users().returning(|f, g| {
|
||||||
|
assert_eq!(f, Some(UserRequestFilter::UserId(UserId::new("bob"))));
|
||||||
|
assert!(!g);
|
||||||
|
Ok(vec![UserAndGroups {
|
||||||
|
user: User {
|
||||||
|
user_id: UserId::new("bob"),
|
||||||
|
email: "bob@bobmail.bob".to_string(),
|
||||||
|
..Default::default()
|
||||||
|
},
|
||||||
|
groups: None,
|
||||||
|
}])
|
||||||
|
});
|
||||||
|
mock.expect_list_groups().returning(|_| Ok(vec![]));
|
||||||
|
let mut ldap_handler = setup_bound_admin_handler(mock).await;
|
||||||
|
let dn = "uid=bob,ou=people,dc=example,dc=com";
|
||||||
|
let request = LdapCompareRequest {
|
||||||
|
dn: dn.to_string(),
|
||||||
|
atype: "mail".to_owned(),
|
||||||
|
val: b"bob@bob".to_vec(),
|
||||||
|
};
|
||||||
|
assert_eq!(
|
||||||
|
ldap_handler.do_compare(request).await,
|
||||||
|
Ok(vec![LdapOp::CompareResult(LdapResultOp {
|
||||||
|
code: LdapResultCode::CompareFalse,
|
||||||
|
matcheddn: dn.to_string(),
|
||||||
|
message: "".to_string(),
|
||||||
|
referral: vec![],
|
||||||
|
})])
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user