cedar_policy_validator/schema/action.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
/*
* Copyright Cedar Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//! This module contains the definition of `ValidatorActionId` and the types it relies on
use cedar_policy_core::{
ast::{self, EntityType, EntityUID, PartialValueSerializedAsExpr},
transitive_closure::TCNode,
};
use itertools::Itertools;
use nonempty::NonEmpty;
use serde::Serialize;
use smol_str::SmolStr;
use std::collections::{BTreeMap, HashSet};
use super::internal_name_to_entity_type;
use crate::{
schema::{AllDefs, SchemaError},
types::{Attributes, Type},
ConditionalName,
};
/// Contains information about actions used by the validator. The contents of
/// the struct are the same as the schema entity type structure, but the
/// `member_of` relation is reversed to instead be `descendants`.
#[derive(Clone, Debug, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ValidatorActionId {
/// The name of the action.
pub(crate) name: EntityUID,
/// The principals and resources that the action can be applied to.
pub(crate) applies_to: ValidatorApplySpec<ast::EntityType>,
/// The set of actions that can be members of this action. When this
/// structure is initially constructed, the field will contain direct
/// children, but it will be updated to contain the closure of all
/// descendants before it is used in any validation.
pub(crate) descendants: HashSet<EntityUID>,
/// The type of the context record associated with this action.
pub(crate) context: Type,
/// The attribute types for this action, used for typechecking.
pub(crate) attribute_types: Attributes,
/// The actual attribute value for this action, used to construct an
/// `Entity` for this action. Could also be used for more precise
/// typechecking by partial evaluation.
///
/// Attributes are serialized as `RestrictedExpr`s, so that roundtripping
/// works seamlessly.
pub(crate) attributes: BTreeMap<SmolStr, PartialValueSerializedAsExpr>,
}
impl ValidatorActionId {
/// Returns an iterator over all the principals that this action applies to
pub fn principals(&self) -> impl Iterator<Item = &EntityType> {
self.applies_to.principal_apply_spec.iter()
}
/// Returns an iterator over all the resources that this action applies to
pub fn resources(&self) -> impl Iterator<Item = &EntityType> {
self.applies_to.resource_apply_spec.iter()
}
/// The `Type` that this action requires for its context.
///
/// This always returns a closed record type.
pub fn context_type(&self) -> &Type {
&self.context
}
/// The [`ast::EntityType`]s that can be the `principal` for this action.
pub fn applies_to_principals(&self) -> impl Iterator<Item = &ast::EntityType> {
self.applies_to.applicable_principal_types()
}
/// The [`ast::EntityType`]s that can be the `resource` for this action.
pub fn applies_to_resources(&self) -> impl Iterator<Item = &ast::EntityType> {
self.applies_to.applicable_resource_types()
}
/// Is the given principal type applicable for this spec?
pub fn is_applicable_principal_type(&self, ty: &ast::EntityType) -> bool {
self.applies_to.is_applicable_principal_type(ty)
}
/// Is the given resource type applicable for this spec?
pub fn is_applicable_resource_type(&self, ty: &ast::EntityType) -> bool {
self.applies_to.is_applicable_resource_type(ty)
}
}
impl TCNode<EntityUID> for ValidatorActionId {
fn get_key(&self) -> EntityUID {
self.name.clone()
}
fn add_edge_to(&mut self, k: EntityUID) {
self.descendants.insert(k);
}
fn out_edges(&self) -> Box<dyn Iterator<Item = &EntityUID> + '_> {
Box::new(self.descendants.iter())
}
fn has_edge_to(&self, e: &EntityUID) -> bool {
self.descendants.contains(e)
}
}
/// The principals and resources that an action can be applied to.
///
/// The parameter `N` represents the type of entity type names stored in this
/// [`ValidatorApplySpec`]. For instance, this could be [`crate::RawName`],
/// [`crate::ConditionalName`], or [`InternalName`], depending on whether the
/// names have been resolved into fully-qualified names yet.
/// (It could also in principle be [`ast::EntityType`], which like
/// [`InternalName`] and [`Name`] always represents a fully-qualified name, but
/// as of this writing we always use [`Name`] or [`InternalName`] for the
/// parameter here when we want to indicate names have been fully qualified.)
#[derive(Clone, Debug, Serialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct ValidatorApplySpec<N> {
/// The principal entity types the action can be applied to.
principal_apply_spec: HashSet<N>,
/// The resource entity types the action can be applied to.
resource_apply_spec: HashSet<N>,
}
impl<N> ValidatorApplySpec<N> {
/// Create an apply spec for an action that can only be applied to some
/// specific entities.
pub fn new(principal_apply_spec: HashSet<N>, resource_apply_spec: HashSet<N>) -> Self {
Self {
principal_apply_spec,
resource_apply_spec,
}
}
}
impl ValidatorApplySpec<ast::EntityType> {
/// Is the given principal type applicable for this spec?
pub fn is_applicable_principal_type(&self, ty: &ast::EntityType) -> bool {
self.principal_apply_spec.contains(ty)
}
/// Get the applicable principal types for this spec.
pub fn applicable_principal_types(&self) -> impl Iterator<Item = &ast::EntityType> {
self.principal_apply_spec.iter()
}
/// Is the given resource type applicable for this spec?
pub fn is_applicable_resource_type(&self, ty: &ast::EntityType) -> bool {
self.resource_apply_spec.contains(ty)
}
/// Get the applicable resource types for this spec.
pub fn applicable_resource_types(&self) -> impl Iterator<Item = &ast::EntityType> {
self.resource_apply_spec.iter()
}
}
impl ValidatorApplySpec<ConditionalName> {
/// Convert this [`ValidatorApplySpec<ConditionalName>`] into a
/// [`ValidatorApplySpec<ast::EntityType>`] by fully-qualifying all
/// typenames that appear anywhere in any definitions, and checking that
/// none of these typenames contain `__cedar`.
///
/// `all_defs` needs to contain the full set of all fully-qualified typenames
/// and actions that are defined in the schema (in all schema fragments).
pub fn fully_qualify_type_references(
self,
all_defs: &AllDefs,
) -> Result<ValidatorApplySpec<ast::EntityType>, crate::schema::SchemaError> {
let (principal_apply_spec, principal_errs) = self
.principal_apply_spec
.into_iter()
.map(|cname| {
let internal_name = cname.resolve(all_defs)?.clone();
internal_name_to_entity_type(internal_name).map_err(Into::into)
})
.partition_result::<_, Vec<SchemaError>, _, _>();
let (resource_apply_spec, resource_errs) = self
.resource_apply_spec
.into_iter()
.map(|cname| {
let internal_name = cname.resolve(all_defs)?.clone();
internal_name_to_entity_type(internal_name).map_err(Into::into)
})
.partition_result::<_, Vec<SchemaError>, _, _>();
match (
NonEmpty::from_vec(principal_errs),
NonEmpty::from_vec(resource_errs),
) {
(None, None) => Ok(ValidatorApplySpec {
principal_apply_spec,
resource_apply_spec,
}),
(Some(principal_errs), None) => Err(SchemaError::join_nonempty(principal_errs)),
(None, Some(resource_errs)) => Err(SchemaError::join_nonempty(resource_errs)),
(Some(principal_errs), Some(resource_errs)) => {
let mut errs = principal_errs;
errs.extend(resource_errs);
Err(SchemaError::join_nonempty(errs))
}
}
}
}
#[cfg(test)]
mod test {
use super::*;
fn make_action() -> ValidatorActionId {
ValidatorActionId {
name: r#"Action::"foo""#.parse().unwrap(),
applies_to: ValidatorApplySpec {
principal_apply_spec: HashSet::from([
// Make sure duplicates are handled as expected
"User".parse().unwrap(),
"User".parse().unwrap(),
]),
resource_apply_spec: HashSet::from([
"App".parse().unwrap(),
"File".parse().unwrap(),
]),
},
descendants: HashSet::new(),
context: Type::any_record(),
attribute_types: Attributes::default(),
attributes: BTreeMap::default(),
}
}
#[test]
fn test_resources() {
let a = make_action();
let got = a.resources().cloned().collect::<HashSet<EntityType>>();
let expected = HashSet::from(["App".parse().unwrap(), "File".parse().unwrap()]);
assert_eq!(got, expected);
}
#[test]
fn test_principals() {
let a = make_action();
let got = a.principals().cloned().collect::<Vec<EntityType>>();
let expected: [EntityType; 1] = ["User".parse().unwrap()];
assert_eq!(got, &expected);
}
}