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
/*
* Copyright 2022-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* 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::entities::{ContextJsonDeserializationError, ContextJsonParser, NullContextSchema};
use crate::evaluator::{EvaluationError, RestrictedEvaluator};
use crate::extensions::Extensions;
use crate::parser::Loc;
use miette::Diagnostic;
use serde::Serialize;
use smol_str::SmolStr;
use std::sync::Arc;
use thiserror::Error;
use super::{
BorrowedRestrictedExpr, EntityUID, Expr, ExprConstructionError, ExprKind, PartialValue,
PartialValueSerializedAsExpr, RestrictedExpr, Unknown, Value, ValueKind, Var,
};
/// Represents the request tuple <P, A, R, C> (see the Cedar design doc).
#[derive(Debug, Clone, Serialize)]
pub struct Request {
/// Principal associated with the request
pub(crate) principal: EntityUIDEntry,
/// Action associated with the request
pub(crate) action: EntityUIDEntry,
/// Resource associated with the request
pub(crate) resource: EntityUIDEntry,
/// Context associated with the request.
/// `None` means that variable will result in a residual for partial evaluation.
pub(crate) context: Option<Context>,
}
/// An entry in a request for a Entity UID.
/// It may either be a concrete EUID
/// or an unknown in the case of partial evaluation
#[derive(Debug, Clone, Serialize)]
pub enum EntityUIDEntry {
/// A concrete (but perhaps unspecified) EntityUID
Known {
/// The concrete `EntityUID`
euid: Arc<EntityUID>,
/// Source location associated with the `EntityUIDEntry`, if any
loc: Option<Loc>,
},
/// An EntityUID left as unknown for partial evaluation
Unknown {
/// Source location associated with the `EntityUIDEntry`, if any
loc: Option<Loc>,
},
}
impl EntityUIDEntry {
/// Evaluate the entry to either:
/// A value, if the entry is concrete
/// An unknown corresponding to the passed `var`
pub fn evaluate(&self, var: Var) -> PartialValue {
match self {
EntityUIDEntry::Known { euid, loc } => {
Value::new(Arc::unwrap_or_clone(Arc::clone(euid)), loc.clone()).into()
}
EntityUIDEntry::Unknown { loc } => Expr::unknown(Unknown::new_untyped(var.to_string()))
.with_maybe_source_loc(loc.clone())
.into(),
}
}
/// Create an entry with a concrete EntityUID and the given source location
pub fn concrete(euid: EntityUID, loc: Option<Loc>) -> Self {
Self::Known {
euid: Arc::new(euid),
loc,
}
}
/// Get the UID of the entry, or `None` if it is unknown (partial evaluation)
pub fn uid(&self) -> Option<&EntityUID> {
match self {
Self::Known { euid, .. } => Some(euid),
Self::Unknown { .. } => None,
}
}
}
impl Request {
/// Default constructor.
///
/// If `schema` is provided, this constructor validates that this `Request`
/// complies with the given `schema`.
pub fn new<S: RequestSchema>(
principal: (EntityUID, Option<Loc>),
action: (EntityUID, Option<Loc>),
resource: (EntityUID, Option<Loc>),
context: Context,
schema: Option<&S>,
extensions: Extensions<'_>,
) -> Result<Self, S::Error> {
let req = Self {
principal: EntityUIDEntry::concrete(principal.0, principal.1),
action: EntityUIDEntry::concrete(action.0, action.1),
resource: EntityUIDEntry::concrete(resource.0, resource.1),
context: Some(context),
};
if let Some(schema) = schema {
schema.validate_request(&req, extensions)?;
}
Ok(req)
}
/// Create a new `Request` with potentially unknown (for partial eval) variables.
///
/// If `schema` is provided, this constructor validates that this `Request`
/// complies with the given `schema` (at least to the extent that we can
/// validate with the given information)
pub fn new_with_unknowns<S: RequestSchema>(
principal: EntityUIDEntry,
action: EntityUIDEntry,
resource: EntityUIDEntry,
context: Option<Context>,
schema: Option<&S>,
extensions: Extensions<'_>,
) -> Result<Self, S::Error> {
let req = Self {
principal,
action,
resource,
context,
};
if let Some(schema) = schema {
schema.validate_request(&req, extensions)?;
}
Ok(req)
}
/// Create a new `Request` with potentially unknown (for partial eval) variables/context
/// and without schema validation.
pub fn new_unchecked(
principal: EntityUIDEntry,
action: EntityUIDEntry,
resource: EntityUIDEntry,
context: Option<Context>,
) -> Self {
Self {
principal,
action,
resource,
context,
}
}
/// Get the principal associated with the request
pub fn principal(&self) -> &EntityUIDEntry {
&self.principal
}
/// Get the action associated with the request
pub fn action(&self) -> &EntityUIDEntry {
&self.action
}
/// Get the resource associated with the request
pub fn resource(&self) -> &EntityUIDEntry {
&self.resource
}
/// Get the context associated with the request
/// Returning `None` means the variable is unknown, and will result in a residual expression
pub fn context(&self) -> Option<&Context> {
self.context.as_ref()
}
}
impl std::fmt::Display for Request {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let display_euid = |maybe_euid: &EntityUIDEntry| match maybe_euid {
EntityUIDEntry::Known { euid, .. } => format!("{euid}"),
EntityUIDEntry::Unknown { .. } => "unknown".to_string(),
};
write!(
f,
"request with principal {}, action {}, resource {}, and context {}",
display_euid(&self.principal),
display_euid(&self.action),
display_euid(&self.resource),
match &self.context {
Some(x) => format!("{x}"),
None => "unknown".to_string(),
}
)
}
}
/// `Context` field of a `Request`
#[derive(Debug, Clone, PartialEq, Serialize)]
pub struct Context {
/// Context is internally represented as a `PartialValue`
///
/// Context is serialized as a `RestrictedExpr`, for partly historical reasons.
//
// INVARIANT(ContextRecord): This must be a `Record`: either
// `PartialValue::Value(Value::Record)`, or
// `PartialValue::Residual(Expr::Record)`, or an appropriate unknown
#[serde(flatten)]
context: PartialValueSerializedAsExpr,
}
impl Context {
/// Create an empty `Context`
//
// INVARIANT(ContextRecord): via invariant on `Self::from_pairs`
pub fn empty() -> Self {
Self {
context: PartialValue::Value(Value::empty_record(None)).into(),
}
}
/// Create a `Context` from a `RestrictedExpr`, which must be a `Record`.
///
/// `extensions` provides the `Extensions` which should be active for
/// evaluating the `RestrictedExpr`.
//
// INVARIANT(ContextRecord): always constructs a record if it returns Ok
pub fn from_expr(
expr: BorrowedRestrictedExpr<'_>,
extensions: Extensions<'_>,
) -> Result<Self, ContextCreationError> {
match expr.expr_kind() {
// INVARIANT(ContextRecord): guaranteed by the match case
ExprKind::Record { .. } => {
let evaluator = RestrictedEvaluator::new(&extensions);
let pval = evaluator.partial_interpret(expr)?;
Ok(Self {
context: pval.into(),
})
}
_ => Err(ContextCreationError::NotARecord {
expr: Box::new(expr.to_owned()),
}),
}
}
/// Create a `Context` from a map of key to `RestrictedExpr`, or a Vec of
/// `(key, RestrictedExpr)` pairs, or any other iterator of `(key, RestrictedExpr)` pairs
///
/// `extensions` provides the `Extensions` which should be active for
/// evaluating the `RestrictedExpr`.
//
// INVARIANT(ContextRecord): always constructs a record if it returns Ok
pub fn from_pairs(
pairs: impl IntoIterator<Item = (SmolStr, RestrictedExpr)>,
extensions: Extensions<'_>,
) -> Result<Self, ContextCreationError> {
// INVARIANT(ContextRecord): via invariant on `Self::from_expr`
Self::from_expr(RestrictedExpr::record(pairs)?.as_borrowed(), extensions)
}
/// Create a `Context` from a string containing JSON (which must be a JSON
/// object, not any other JSON type, or you will get an error here).
/// JSON here must use the `__entity` and `__extn` escapes for entity
/// references, extension values, etc.
///
/// For schema-based parsing, use `ContextJsonParser`.
pub fn from_json_str(json: &str) -> Result<Self, ContextJsonDeserializationError> {
// INVARIANT `.from_json_str` always produces an expression of variant `Record`
ContextJsonParser::new(None::<&NullContextSchema>, Extensions::all_available())
.from_json_str(json)
}
/// Create a `Context` from a `serde_json::Value` (which must be a JSON
/// object, not any other JSON type, or you will get an error here).
/// JSON here must use the `__entity` and `__extn` escapes for entity
/// references, extension values, etc.
///
/// For schema-based parsing, use `ContextJsonParser`.
pub fn from_json_value(
json: serde_json::Value,
) -> Result<Self, ContextJsonDeserializationError> {
// INVARIANT `.from_json_value` always produces an expression of variant `Record`
ContextJsonParser::new(None::<&NullContextSchema>, Extensions::all_available())
.from_json_value(json)
}
/// Create a `Context` from a JSON file. The JSON file must contain a JSON
/// object, not any other JSON type, or you will get an error here.
/// JSON here must use the `__entity` and `__extn` escapes for entity
/// references, extension values, etc.
///
/// For schema-based parsing, use `ContextJsonParser`.
pub fn from_json_file(
json: impl std::io::Read,
) -> Result<Self, ContextJsonDeserializationError> {
// INVARIANT `.from_json_file` always produces an expression of variant `Record`
ContextJsonParser::new(None::<&NullContextSchema>, Extensions::all_available())
.from_json_file(json)
}
/// Iterate over the (key, value) pairs in the `Context`; or return `None`
/// if the `Context` is purely unknown
//
// PANIC SAFETY: This is safe due to the invariant on `self.context`, `self.context` must always be a record
pub fn iter<'s>(&'s self) -> Option<Box<dyn Iterator<Item = (&SmolStr, PartialValue)> + 's>> {
// PANIC SAFETY invariant on `self.context` ensures that it is a record
#[allow(clippy::panic)]
match self.context.as_ref() {
PartialValue::Value(Value {
value: ValueKind::Record(record),
..
}) => Some(Box::new(
record
.iter()
.map(|(k, v)| (k, PartialValue::Value(v.clone()))),
)),
PartialValue::Residual(expr) => match expr.expr_kind() {
ExprKind::Record(map) => Some(Box::new(
map.iter()
.map(|(k, v)| (k, PartialValue::Residual(v.clone()))),
)),
ExprKind::Unknown(_) => None,
kind => panic!("internal invariant violation: expected a record, got {kind:?}"),
},
v => panic!("internal invariant violation: expected a record, got {v:?}"),
}
}
}
impl AsRef<PartialValue> for Context {
fn as_ref(&self) -> &PartialValue {
&self.context
}
}
impl From<Context> for PartialValue {
fn from(ctx: Context) -> PartialValue {
ctx.context.into()
}
}
impl std::default::Default for Context {
fn default() -> Context {
Context::empty()
}
}
impl std::fmt::Display for Context {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.context)
}
}
/// Errors while trying to create a `Context`
#[derive(Debug, Diagnostic, Error)]
pub enum ContextCreationError {
/// Tried to create a `Context` out of something other than a record
#[error("expression is not a record: `{expr}`")]
NotARecord {
/// Expression which is not a record
expr: Box<RestrictedExpr>,
},
/// Error evaluating the expression given for the `Context`
#[error(transparent)]
#[diagnostic(transparent)]
Evaluation(#[from] EvaluationError),
/// Error constructing the expression given for the `Context`.
/// Only returned by `Context::from_pairs()`
#[error(transparent)]
#[diagnostic(transparent)]
ExprConstruction(#[from] ExprConstructionError),
}
/// Trait for schemas capable of validating `Request`s
pub trait RequestSchema {
/// Error type returned when a request fails validation
type Error: miette::Diagnostic;
/// Validate the given `request`, returning `Err` if it fails validation
fn validate_request(
&self,
request: &Request,
extensions: Extensions<'_>,
) -> Result<(), Self::Error>;
}
/// A `RequestSchema` that does no validation and always reports a passing result
#[derive(Debug, Clone)]
pub struct RequestSchemaAllPass;
impl RequestSchema for RequestSchemaAllPass {
type Error = Infallible;
fn validate_request(
&self,
_request: &Request,
_extensions: Extensions<'_>,
) -> Result<(), Self::Error> {
Ok(())
}
}
/// Wrapper around `std::convert::Infallible` which also implements
/// `miette::Diagnostic`
#[derive(Debug, Diagnostic, Error)]
#[error(transparent)]
pub struct Infallible(pub std::convert::Infallible);
#[cfg(test)]
mod test {
use super::*;
use cool_asserts::assert_matches;
#[test]
fn test_json_from_str_non_record() {
assert_matches!(
Context::from_expr(RestrictedExpr::val("1").as_borrowed(), Extensions::none()),
Err(ContextCreationError::NotARecord { .. })
);
assert_matches!(
Context::from_json_str("1"),
Err(ContextJsonDeserializationError::ContextCreation(
ContextCreationError::NotARecord { .. }
))
);
}
}