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
/*
* 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::ast;
use crate::entities::JsonDeserializationError;
use crate::parser::unescape;
use smol_str::SmolStr;
use thiserror::Error;
/// Errors arising while converting EST to AST
#[derive(Debug, Error)]
pub enum EstToAstError {
/// Error while deserializing JSON
#[error(transparent)]
JsonDeserializationError(#[from] JsonDeserializationError),
/// Tried to convert an EST representing a template to an AST representing a static policy
#[error("tried to convert JSON representing a template to a static policy: {0}")]
TemplateToPolicy(#[from] ast::UnexpectedSlotError),
/// Slot name was not valid for the position it was used in. (Currently, principal slots must
/// be named `?principal`, and resource slots must be named `?resource`.)
#[error("invalid slot name, or used in wrong position")]
InvalidSlotName,
/// EST contained a template slot for `action`. This is not currently allowed
#[error("specified a slot for `action`")]
ActionSlot,
/// EST contained a template slot in policy condition
#[error("found template slot {slot} in a `{clausetype}` clause")]
SlotsInConditionClause {
/// Slot that was found in a when/unless clause
slot: ast::SlotId,
/// Clause type, e.g. "when" or "unless"
clausetype: &'static str,
},
/// EST contained the empty JSON object `{}` where a key (operator) was expected
#[error("Missing operator, found empty object")]
MissingOperator,
/// EST contained an object with multiple keys (operators) where a single operator was expected
#[error("Found multiple operators where one was expected: {ops:?}")]
MultipleOperators {
/// the multiple operators that were found where one was expected
ops: Vec<SmolStr>,
},
/// At most one of the operands in `a * b * c * d * ...` can be a non-{constant int}
#[error("Multiplication must be by a constant int. Neither {arg1} nor {arg2} is a constant")]
MultiplicationByNonConstant {
/// First non-constant argument
arg1: ast::Expr,
/// Second non-constant argument
arg2: ast::Expr,
},
/// Error thrown while processing string escapes
#[error("{:?}", .0.iter().map(|e| e.to_string()).collect::<Vec<String>>())]
UnescapeError(Vec<unescape::UnescapeError>),
}
/// Errors while instantiating a policy
#[derive(Debug, PartialEq, Error)]
pub enum InstantiationError {
/// Template contains this slot, but a value wasn't provided for it
#[error("failed to instantiate template: no value provided for {slot}")]
MissedSlot {
/// Slot which didn't have a value provided for it
slot: ast::SlotId,
},
}