kanidm/server/lib/src/modify.rs

255 lines
7.9 KiB
Rust
Raw Normal View History

2021-06-02 01:42:40 +02:00
//! Modification expressions and validation. This is how `ModifyEvents` store and
//! express the series of Modifications that should be applied. These are expressed
//! as "states" on what attribute-values should appear as within the `Entry`
2022-10-01 08:08:51 +02:00
use std::slice;
2024-02-27 10:25:02 +01:00
use kanidm_proto::internal::{
Modify as ProtoModify, ModifyList as ProtoModifyList, OperationError, SchemaError,
2022-10-01 08:08:51 +02:00
};
2024-02-27 10:25:02 +01:00
use kanidm_proto::v1::Entry as ProtoEntry;
// Should this be std?
2021-12-31 00:11:20 +01:00
use serde::{Deserialize, Serialize};
2022-10-01 08:08:51 +02:00
use crate::prelude::*;
use crate::schema::SchemaTransaction;
use crate::value::{PartialValue, Value};
2022-07-07 05:28:36 +02:00
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ModifyValid;
2022-07-07 05:28:36 +02:00
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ModifyInvalid;
2022-07-07 05:28:36 +02:00
#[derive(Debug, Clone)]
#[allow(clippy::large_enum_variant)]
pub enum Modify {
// This value *should* exist.
// Clippy doesn't like value here, as value > pv. It could be an improvement to
// box here, but not sure. ... TODO and thought needed.
Present(Attribute, Value),
// This value *should not* exist.
Removed(Attribute, PartialValue),
// This attr *should not* exist.
Purged(Attribute),
// This attr and value must exist *in this state* for this change to proceed.
Assert(Attribute, PartialValue),
}
pub fn m_pres(attr: Attribute, v: &Value) -> Modify {
Modify::Present(attr, v.clone())
}
pub fn m_remove(attr: Attribute, v: &PartialValue) -> Modify {
Modify::Removed(attr, v.clone())
}
pub fn m_purge(attr: Attribute) -> Modify {
Modify::Purged(attr)
}
pub fn m_assert(attr: Attribute, v: &PartialValue) -> Modify {
Modify::Assert(attr, v.clone())
}
2019-02-22 07:15:48 +01:00
impl Modify {
pub fn from(
m: &ProtoModify,
qs: &mut QueryServerWriteTransaction,
) -> Result<Self, OperationError> {
2019-03-17 04:24:06 +01:00
Ok(match m {
ProtoModify::Present(a, v) => {
let a = Attribute::from(a.as_str());
let v = qs.clone_value(&a, v)?;
Modify::Present(a, v)
}
ProtoModify::Removed(a, v) => {
let a = Attribute::from(a.as_str());
let v = qs.clone_partialvalue(&a, v)?;
Modify::Removed(a, v)
}
ProtoModify::Purged(a) => Modify::Purged(Attribute::from(a.as_str())),
2019-03-17 04:24:06 +01:00
})
2019-02-22 07:15:48 +01:00
}
}
2022-07-07 05:28:36 +02:00
#[derive(Clone, Debug, Default)]
pub struct ModifyList<VALID> {
// This is never read, it's just used for state machine enforcement.
#[allow(dead_code)]
valid: VALID,
// The order of this list matters. Each change must be done in order.
mods: Vec<Modify>,
}
impl<'a> IntoIterator for &'a ModifyList<ModifyValid> {
type IntoIter = slice::Iter<'a, Modify>;
2022-10-01 08:08:51 +02:00
type Item = &'a Modify;
fn into_iter(self) -> Self::IntoIter {
self.mods.iter()
}
}
impl ModifyList<ModifyInvalid> {
pub fn new() -> Self {
ModifyList {
valid: ModifyInvalid,
mods: Vec::with_capacity(0),
}
}
pub fn new_list(mods: Vec<Modify>) -> Self {
ModifyList {
valid: ModifyInvalid,
mods,
}
}
pub fn new_purge_and_set(attr: Attribute, v: Value) -> Self {
Self::new_list(vec![m_purge(attr.clone()), Modify::Present(attr, v)])
}
pub fn new_append(attr: Attribute, v: Value) -> Self {
Self::new_list(vec![Modify::Present(attr, v)])
}
pub fn new_remove(attr: Attribute, pv: PartialValue) -> Self {
Self::new_list(vec![Modify::Removed(attr, pv)])
2021-10-07 10:31:48 +02:00
}
pub fn new_purge(attr: Attribute) -> Self {
Self::new_list(vec![m_purge(attr)])
}
pub fn push_mod(&mut self, modify: Modify) {
self.mods.push(modify)
}
2019-03-17 04:24:06 +01:00
pub fn from(
ml: &ProtoModifyList,
qs: &mut QueryServerWriteTransaction,
2019-03-17 04:24:06 +01:00
) -> Result<Self, OperationError> {
2019-02-22 07:15:48 +01:00
// For each ProtoModify, do a from.
2021-09-21 04:42:00 +02:00
let inner: Result<Vec<_>, _> = ml.mods.iter().map(|pm| Modify::from(pm, qs)).collect();
2019-03-17 04:24:06 +01:00
match inner {
Ok(m) => Ok(ModifyList {
valid: ModifyInvalid,
mods: m,
}),
Err(e) => Err(e),
2019-02-22 07:15:48 +01:00
}
}
pub fn from_patch(
pe: &ProtoEntry,
qs: &mut QueryServerWriteTransaction,
) -> Result<Self, OperationError> {
let mut mods = Vec::with_capacity(0);
pe.attrs.iter().try_for_each(|(attr, vals)| {
// Issue a purge to the attr.
let attr: Attribute = attr.as_str().into();
mods.push(m_purge(attr.clone()));
// Now if there are vals, push those too.
// For each value we want to now be present.
vals.iter().try_for_each(|val| {
qs.clone_value(&attr, val).map(|resolved_v| {
mods.push(Modify::Present(attr.clone(), resolved_v));
})
})
})?;
Ok(ModifyList {
valid: ModifyInvalid,
mods,
})
}
2019-03-12 06:40:25 +01:00
pub fn validate(
&self,
schema: &dyn SchemaTransaction,
2019-03-12 06:40:25 +01:00
) -> Result<ModifyList<ModifyValid>, SchemaError> {
let schema_attributes = schema.get_attributes();
/*
let schema_name = schema_attributes
.get(Attribute::Name.as_ref()")
.expect("Critical: Core schema corrupt or missing. To initiate a core transfer, please deposit substitute core in receptacle.");
*/
2022-10-29 11:07:54 +02:00
let res: Result<Vec<Modify>, _> = self
.mods
.iter()
2019-03-12 06:40:25 +01:00
.map(|m| match m {
Modify::Present(attr, value) => match schema_attributes.get(attr) {
Some(schema_a) => schema_a
.validate_value(attr, value)
.map(|_| Modify::Present(attr.clone(), value.clone())),
None => Err(SchemaError::InvalidAttribute(attr.to_string())),
},
Modify::Removed(attr, value) => match schema_attributes.get(attr) {
Some(schema_a) => schema_a
.validate_partialvalue(attr, value)
.map(|_| Modify::Removed(attr.clone(), value.clone())),
None => Err(SchemaError::InvalidAttribute(attr.to_string())),
},
Modify::Assert(attr, value) => match schema_attributes.get(attr) {
Some(schema_a) => schema_a
.validate_partialvalue(attr, value)
.map(|_| Modify::Assert(attr.clone(), value.clone())),
None => Err(SchemaError::InvalidAttribute(attr.to_string())),
},
Modify::Purged(attr) => match schema_attributes.get(attr) {
Some(_attr_name) => Ok(Modify::Purged(attr.clone())),
None => Err(SchemaError::InvalidAttribute(attr.to_string())),
},
})
.collect();
let valid_mods = match res {
Ok(v) => v,
Err(e) => return Err(e),
};
// Return new ModifyList!
Ok(ModifyList {
valid: ModifyValid,
mods: valid_mods,
})
}
2023-07-31 04:20:52 +02:00
/// ⚠️ - Convert a modlist to be considered valid, bypassing schema.
/// This is a TEST ONLY method and will never be exposed in production.
2022-09-11 04:23:57 +02:00
#[cfg(test)]
2023-07-31 04:20:52 +02:00
pub(crate) fn into_valid(self) -> ModifyList<ModifyValid> {
ModifyList {
valid: ModifyValid,
mods: self.mods,
}
}
}
impl ModifyList<ModifyValid> {
2023-07-31 04:20:52 +02:00
/// ⚠️ - Create a new modlist that is considered valid, bypassing schema.
/// This is a TEST ONLY method and will never be exposed in production.
#[cfg(test)]
2023-07-31 04:20:52 +02:00
pub fn new_valid_list(mods: Vec<Modify>) -> Self {
ModifyList {
valid: ModifyValid,
mods,
}
}
pub fn iter(&self) -> slice::Iter<Modify> {
self.mods.iter()
}
}
impl<VALID> ModifyList<VALID> {
pub fn len(&self) -> usize {
self.mods.len()
}
pub fn is_empty(&self) -> bool {
self.len() == 0
}
}