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 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
/*
* 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.
*/
use crate::ast::*;
use crate::evaluator::{EvaluationError, RestrictedEvaluator};
use crate::extensions::Extensions;
use crate::parser::err::ParseErrors;
use crate::parser::Loc;
use crate::transitive_closure::TCNode;
use crate::FromNormalizedStr;
use itertools::Itertools;
use miette::Diagnostic;
use serde::{Deserialize, Serialize};
use serde_with::{serde_as, TryFromInto};
use smol_str::SmolStr;
use std::collections::{BTreeMap, HashMap, HashSet};
use thiserror::Error;
/// We support two types of entities. The first is a nominal type (e.g., User, Action)
/// and the second is an unspecified type, which is used (internally) to represent cases
/// where the input request does not provide a principal, action, and/or resource.
#[derive(Serialize, Deserialize, PartialEq, Eq, Debug, Clone, Hash, PartialOrd, Ord)]
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
pub enum EntityType {
/// Concrete nominal type
Specified(Name),
/// Unspecified
Unspecified,
}
impl EntityType {
/// Is this an Action entity type
pub fn is_action(&self) -> bool {
match self {
Self::Specified(name) => name.basename() == &Id::new_unchecked("Action"),
Self::Unspecified => false,
}
}
}
// Note: the characters '<' and '>' are not allowed in `Name`s, so the display for
// `Unspecified` never conflicts with `Specified(name)`.
impl std::fmt::Display for EntityType {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Unspecified => write!(f, "<Unspecified>"),
Self::Specified(name) => write!(f, "{}", name),
}
}
}
/// Unique ID for an entity. These represent entities in the AST.
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct EntityUID {
/// Typename of the entity
ty: EntityType,
/// EID of the entity
eid: Eid,
/// Location of the entity in policy source
#[serde(skip)]
loc: Option<Loc>,
}
/// `PartialEq` implementation ignores the `loc`.
impl PartialEq for EntityUID {
fn eq(&self, other: &Self) -> bool {
self.ty == other.ty && self.eid == other.eid
}
}
impl Eq for EntityUID {}
impl std::hash::Hash for EntityUID {
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
// hash the ty and eid, in line with the `PartialEq` impl which compares
// the ty and eid.
self.ty.hash(state);
self.eid.hash(state);
}
}
impl PartialOrd for EntityUID {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
Some(self.cmp(other))
}
}
impl Ord for EntityUID {
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
self.ty.cmp(&other.ty).then(self.eid.cmp(&other.eid))
}
}
impl StaticallyTyped for EntityUID {
fn type_of(&self) -> Type {
Type::Entity {
ty: self.ty.clone(),
}
}
}
impl EntityUID {
/// Create an `EntityUID` with the given string as its EID.
/// Useful for testing.
#[cfg(test)]
pub(crate) fn with_eid(eid: &str) -> Self {
Self {
ty: Self::test_entity_type(),
eid: Eid(eid.into()),
loc: None,
}
}
// by default, Coverlay does not track coverage for lines after a line
// containing #[cfg(test)].
// we use the following sentinel to "turn back on" coverage tracking for
// remaining lines of this file, until the next #[cfg(test)]
// GRCOV_BEGIN_COVERAGE
/// The type of entities created with the above `with_eid()`.
#[cfg(test)]
pub(crate) fn test_entity_type() -> EntityType {
let name = Name::parse_unqualified_name("test_entity_type")
.expect("test_entity_type should be a valid identifier");
EntityType::Specified(name)
}
// by default, Coverlay does not track coverage for lines after a line
// containing #[cfg(test)].
// we use the following sentinel to "turn back on" coverage tracking for
// remaining lines of this file, until the next #[cfg(test)]
// GRCOV_BEGIN_COVERAGE
/// Create an `EntityUID` with the given (unqualified) typename, and the given string as its EID.
pub fn with_eid_and_type(typename: &str, eid: &str) -> Result<Self, ParseErrors> {
Ok(Self {
ty: EntityType::Specified(Name::parse_unqualified_name(typename)?),
eid: Eid(eid.into()),
loc: None,
})
}
/// Split into the `EntityType` representing the entity type, and the `Eid`
/// representing its name
pub fn components(self) -> (EntityType, Eid) {
(self.ty, self.eid)
}
/// Get the source location for this `EntityUID`.
pub fn loc(&self) -> Option<&Loc> {
self.loc.as_ref()
}
/// Create a nominally-typed `EntityUID` with the given typename and EID
pub fn from_components(name: Name, eid: Eid, loc: Option<Loc>) -> Self {
Self {
ty: EntityType::Specified(name),
eid,
loc,
}
}
/// Create an unspecified `EntityUID` with the given EID
pub fn unspecified_from_eid(eid: Eid) -> Self {
Self {
ty: EntityType::Unspecified,
eid,
loc: None,
}
}
/// Get the type component.
pub fn entity_type(&self) -> &EntityType {
&self.ty
}
/// Get the Eid component.
pub fn eid(&self) -> &Eid {
&self.eid
}
/// Does this EntityUID refer to an action entity?
pub fn is_action(&self) -> bool {
self.entity_type().is_action()
}
}
impl std::fmt::Display for EntityUID {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}::\"{}\"", self.entity_type(), self.eid)
}
}
// allow `.parse()` on a string to make an `EntityUID`
impl std::str::FromStr for EntityUID {
type Err = ParseErrors;
fn from_str(s: &str) -> Result<Self, Self::Err> {
crate::parser::parse_euid(s)
}
}
impl FromNormalizedStr for EntityUID {
fn describe_self() -> &'static str {
"Entity UID"
}
}
#[cfg(feature = "arbitrary")]
impl<'a> arbitrary::Arbitrary<'a> for EntityUID {
fn arbitrary(u: &mut arbitrary::Unstructured<'a>) -> arbitrary::Result<Self> {
Ok(Self {
ty: u.arbitrary()?,
eid: u.arbitrary()?,
loc: None,
})
}
}
/// EID type is just a SmolStr for now
#[derive(Serialize, Deserialize, PartialEq, Eq, Debug, Clone, Hash, PartialOrd, Ord)]
pub struct Eid(SmolStr);
impl Eid {
/// Construct an Eid
pub fn new(eid: impl Into<SmolStr>) -> Self {
Eid(eid.into())
}
}
impl AsRef<SmolStr> for Eid {
fn as_ref(&self) -> &SmolStr {
&self.0
}
}
impl AsRef<str> for Eid {
fn as_ref(&self) -> &str {
&self.0
}
}
#[cfg(feature = "arbitrary")]
impl<'a> arbitrary::Arbitrary<'a> for Eid {
fn arbitrary(u: &mut arbitrary::Unstructured<'a>) -> arbitrary::Result<Self> {
let x: String = u.arbitrary()?;
Ok(Self(x.into()))
}
}
impl std::fmt::Display for Eid {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0.escape_debug())
}
}
/// Entity datatype
#[derive(Debug, Clone, Serialize)]
pub struct Entity {
/// UID
uid: EntityUID,
/// Internal BTreMap of attributes.
/// We use a btreemap so that the keys have a determenistic order.
///
/// In the serialized form of `Entity`, attribute values appear as
/// `RestrictedExpr`s, for mostly historical reasons.
attrs: BTreeMap<SmolStr, PartialValueSerializedAsExpr>,
/// Set of ancestors of this `Entity` (i.e., all direct and transitive
/// parents), as UIDs
ancestors: HashSet<EntityUID>,
}
impl Entity {
/// Create a new `Entity` with this UID, attributes, and ancestors
pub fn new(
uid: EntityUID,
attrs: HashMap<SmolStr, RestrictedExpr>,
ancestors: HashSet<EntityUID>,
extensions: &Extensions<'_>,
) -> Result<Self, EntityAttrEvaluationError> {
let evaluator = RestrictedEvaluator::new(extensions);
let evaluated_attrs = attrs
.into_iter()
.map(|(k, v)| {
let attr_val = evaluator
.partial_interpret(v.as_borrowed())
.map_err(|err| EntityAttrEvaluationError {
uid: uid.clone(),
attr: k.clone(),
err,
})?;
Ok((k, attr_val.into()))
})
.collect::<Result<_, EntityAttrEvaluationError>>()?;
Ok(Entity {
uid,
attrs: evaluated_attrs,
ancestors,
})
}
/// Create a new `Entity` with this UID, attributes, and ancestors.
///
/// Unlike in `Entity::new()`, in this constructor, attributes are expressed
/// as `PartialValue`.
pub fn new_with_attr_partial_value(
uid: EntityUID,
attrs: HashMap<SmolStr, PartialValue>,
ancestors: HashSet<EntityUID>,
) -> Self {
Entity {
uid,
attrs: attrs.into_iter().map(|(k, v)| (k, v.into())).collect(), // TODO(#540): can we do this without disassembling and reassembling the HashMap
ancestors,
}
}
/// Create a new `Entity` with this UID, attributes, and ancestors.
///
/// Unlike in `Entity::new()`, in this constructor, attributes are expressed
/// as `PartialValueSerializedAsExpr`.
pub fn new_with_attr_partial_value_serialized_as_expr(
uid: EntityUID,
attrs: BTreeMap<SmolStr, PartialValueSerializedAsExpr>,
ancestors: HashSet<EntityUID>,
) -> Self {
Entity {
uid,
attrs,
ancestors,
}
}
/// Get the UID of this entity
pub fn uid(&self) -> &EntityUID {
&self.uid
}
/// Get the value for the given attribute, or `None` if not present
pub fn get(&self, attr: &str) -> Option<&PartialValue> {
self.attrs.get(attr).map(|v| v.as_ref())
}
/// Is this `Entity` a descendant of `e` in the entity hierarchy?
pub fn is_descendant_of(&self, e: &EntityUID) -> bool {
self.ancestors.contains(e)
}
/// Iterate over this entity's ancestors
pub fn ancestors(&self) -> impl Iterator<Item = &EntityUID> {
self.ancestors.iter()
}
/// Get the number of attributes on this entity
pub fn attrs_len(&self) -> usize {
self.attrs.len()
}
/// Iterate over this entity's attribute names
pub fn keys(&self) -> impl Iterator<Item = &SmolStr> {
self.attrs.keys()
}
/// Iterate over this entity's attributes
pub fn attrs(&self) -> impl Iterator<Item = (&SmolStr, &PartialValue)> {
self.attrs.iter().map(|(k, v)| (k, v.as_ref()))
}
/// Create an `Entity` with the given UID, no attributes, and no parents.
pub fn with_uid(uid: EntityUID) -> Self {
Self {
uid,
attrs: BTreeMap::new(),
ancestors: HashSet::new(),
}
}
/// Test if two `Entity` objects are deep/structurally equal.
/// That is, not only do they have the same UID, but also the same
/// attributes, attribute values, and ancestors.
pub(crate) fn deep_eq(&self, other: &Self) -> bool {
self.uid == other.uid && self.attrs == other.attrs && self.ancestors == other.ancestors
}
/// Set the given attribute to the given value.
// Only used for convenience in some tests and when fuzzing
#[cfg(any(test, fuzzing))]
pub fn set_attr(
&mut self,
attr: SmolStr,
val: RestrictedExpr,
extensions: &Extensions<'_>,
) -> Result<(), EvaluationError> {
let val = RestrictedEvaluator::new(extensions).partial_interpret(val.as_borrowed())?;
self.attrs.insert(attr, val.into());
Ok(())
}
/// Mark the given `UID` as an ancestor of this `Entity`.
// When fuzzing, `add_ancestor()` is fully `pub`.
#[cfg(not(fuzzing))]
pub(crate) fn add_ancestor(&mut self, uid: EntityUID) {
self.ancestors.insert(uid);
}
/// Mark the given `UID` as an ancestor of this `Entity`
#[cfg(fuzzing)]
pub fn add_ancestor(&mut self, uid: EntityUID) {
self.ancestors.insert(uid);
}
/// Consume the entity and return the entity's owned Uid, attributes and parents.
pub fn into_inner(
self,
) -> (
EntityUID,
HashMap<SmolStr, PartialValue>,
HashSet<EntityUID>,
) {
let Self {
uid,
attrs,
ancestors,
} = self;
(
uid,
attrs.into_iter().map(|(k, v)| (k, v.0)).collect(),
ancestors,
)
}
}
impl PartialEq for Entity {
fn eq(&self, other: &Self) -> bool {
self.uid() == other.uid()
}
}
impl Eq for Entity {}
impl StaticallyTyped for Entity {
fn type_of(&self) -> Type {
self.uid.type_of()
}
}
impl TCNode<EntityUID> for Entity {
fn get_key(&self) -> EntityUID {
self.uid().clone()
}
fn add_edge_to(&mut self, k: EntityUID) {
self.add_ancestor(k)
}
fn out_edges(&self) -> Box<dyn Iterator<Item = &EntityUID> + '_> {
Box::new(self.ancestors())
}
fn has_edge_to(&self, e: &EntityUID) -> bool {
self.is_descendant_of(e)
}
}
impl std::fmt::Display for Entity {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"{}:\n attrs:{}\n ancestors:{}",
self.uid,
self.attrs
.iter()
.map(|(k, v)| format!("{}: {}", k, v))
.join("; "),
self.ancestors.iter().join(", ")
)
}
}
/// `PartialValue`, but serialized as a `RestrictedExpr`.
///
/// (Extension values can't be directly serialized, but can be serialized as
/// `RestrictedExpr`)
#[serde_as]
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
pub struct PartialValueSerializedAsExpr(
#[serde_as(as = "TryFromInto<RestrictedExpr>")] PartialValue,
);
impl AsRef<PartialValue> for PartialValueSerializedAsExpr {
fn as_ref(&self) -> &PartialValue {
&self.0
}
}
impl std::ops::Deref for PartialValueSerializedAsExpr {
type Target = PartialValue;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<PartialValue> for PartialValueSerializedAsExpr {
fn from(value: PartialValue) -> PartialValueSerializedAsExpr {
PartialValueSerializedAsExpr(value)
}
}
impl From<PartialValueSerializedAsExpr> for PartialValue {
fn from(value: PartialValueSerializedAsExpr) -> PartialValue {
value.0
}
}
impl std::fmt::Display for PartialValueSerializedAsExpr {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
/// Error type for evaluation errors when evaluating an entity attribute.
/// Contains some extra contextual information and the underlying
/// `EvaluationError`.
#[derive(Debug, Diagnostic, Error)]
#[error("failed to evaluate attribute `{attr}` of `{uid}`: {err}")]
pub struct EntityAttrEvaluationError {
/// UID of the entity where the error was encountered
pub uid: EntityUID,
/// Attribute of the entity where the error was encountered
pub attr: SmolStr,
/// Underlying evaluation error
#[diagnostic(transparent)]
pub err: EvaluationError,
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn display() {
let e = EntityUID::with_eid("eid");
assert_eq!(format!("{e}"), "test_entity_type::\"eid\"");
}
#[test]
fn test_euid_equality() {
let e1 = EntityUID::with_eid("foo");
let e2 = EntityUID::from_components(
Name::parse_unqualified_name("test_entity_type").expect("should be a valid identifier"),
Eid("foo".into()),
None,
);
let e3 = EntityUID::unspecified_from_eid(Eid("foo".into()));
let e4 = EntityUID::unspecified_from_eid(Eid("bar".into()));
let e5 = EntityUID::from_components(
Name::parse_unqualified_name("Unspecified").expect("should be a valid identifier"),
Eid("foo".into()),
None,
);
// an EUID is equal to itself
assert_eq!(e1, e1);
assert_eq!(e2, e2);
assert_eq!(e3, e3);
// constructing with `with_euid` or `from_components` is the same
assert_eq!(e1, e2);
// other pairs are not equal
assert!(e1 != e3);
assert!(e1 != e4);
assert!(e1 != e5);
assert!(e3 != e4);
assert!(e3 != e5);
assert!(e4 != e5);
// e3 and e5 are displayed differently
assert!(format!("{e3}") != format!("{e5}"));
}
}