#![allow(clippy::needless_return)]
use clap::{ArgAction, Args, Parser, Subcommand, ValueEnum};
use miette::{miette, IntoDiagnostic, NamedSource, Report, Result, WrapErr};
use serde::{Deserialize, Serialize};
use std::io::Write;
use std::{
collections::HashMap,
fmt::{self, Display},
fs::OpenOptions,
path::Path,
process::{ExitCode, Termination},
str::FromStr,
time::Instant,
};
use cedar_policy::*;
use cedar_policy_formatter::{policies_str_to_pretty, Config};
#[derive(Parser)]
#[command(author, version, about, long_about = None)] pub struct Cli {
#[command(subcommand)]
pub command: Commands,
#[arg(
global = true,
short = 'f',
long = "error-format",
env = "CEDAR_ERROR_FORMAT",
default_value_t,
value_enum
)]
pub err_fmt: ErrorFormat,
}
#[derive(Clone, Copy, Debug, Default, Eq, PartialEq, ValueEnum)]
pub enum ErrorFormat {
#[default]
Human,
Plain,
Json,
}
impl Display for ErrorFormat {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"{}",
match self {
ErrorFormat::Human => "human",
ErrorFormat::Plain => "plain",
ErrorFormat::Json => "json",
}
)
}
}
#[derive(Subcommand, Debug)]
pub enum Commands {
Authorize(AuthorizeArgs),
Evaluate(EvaluateArgs),
Validate(ValidateArgs),
CheckParse(CheckParseArgs),
Link(LinkArgs),
Format(FormatArgs),
TranslatePolicy(TranslatePolicyArgs),
TranslateSchema(TranslateSchemaArgs),
Visualize(VisualizeArgs),
New(NewArgs),
PartiallyAuthorize(PartiallyAuthorizeArgs),
LanguageVersion,
}
#[derive(Args, Debug)]
pub struct TranslatePolicyArgs {
#[arg(long)]
pub direction: PolicyTranslationDirection,
#[arg(short = 'p', long = "policies", value_name = "FILE")]
pub input_file: Option<String>,
}
#[derive(Debug, Clone, Copy, ValueEnum)]
pub enum PolicyTranslationDirection {
CedarToJson,
}
#[derive(Args, Debug)]
pub struct TranslateSchemaArgs {
#[arg(long)]
pub direction: SchemaTranslationDirection,
#[arg(short = 's', long = "schema", value_name = "FILE")]
pub input_file: Option<String>,
}
#[derive(Debug, Clone, Copy, ValueEnum)]
pub enum SchemaTranslationDirection {
JsonToCedar,
CedarToJson,
}
#[derive(Debug, Clone, Copy, ValueEnum)]
pub enum SchemaFormat {
Cedar,
Json,
}
impl Default for SchemaFormat {
fn default() -> Self {
Self::Cedar
}
}
#[derive(Debug, Clone, Copy, ValueEnum)]
pub enum ValidationMode {
Strict,
Permissive,
Partial,
}
#[derive(Args, Debug)]
pub struct ValidateArgs {
#[arg(short, long = "schema", value_name = "FILE")]
pub schema_file: String,
#[command(flatten)]
pub policies: PoliciesArgs,
#[arg(long)]
pub deny_warnings: bool,
#[arg(long, value_enum, default_value_t = SchemaFormat::Cedar)]
pub schema_format: SchemaFormat,
#[arg(long, value_enum, default_value_t = ValidationMode::Strict)]
pub validation_mode: ValidationMode,
}
#[derive(Args, Debug)]
pub struct CheckParseArgs {
#[command(flatten)]
pub policies: PoliciesArgs,
}
#[derive(Args, Debug)]
pub struct RequestArgs {
#[arg(short = 'l', long)]
pub principal: Option<String>,
#[arg(short, long)]
pub action: Option<String>,
#[arg(short, long)]
pub resource: Option<String>,
#[arg(short, long = "context", value_name = "FILE")]
pub context_json_file: Option<String>,
#[arg(long = "request-json", value_name = "FILE", conflicts_with_all = &["principal", "action", "resource", "context_json_file"])]
pub request_json_file: Option<String>,
#[arg(long = "request-validation", action = ArgAction::Set, default_value_t = true)]
pub request_validation: bool,
}
#[cfg(feature = "partial-eval")]
#[derive(Args, Debug)]
pub struct PartialRequestArgs {
#[arg(short = 'l', long)]
pub principal: Option<String>,
#[arg(short, long)]
pub action: Option<String>,
#[arg(short, long)]
pub resource: Option<String>,
#[arg(short, long = "context", value_name = "FILE")]
pub context_json_file: Option<String>,
#[arg(long = "request-json", value_name = "FILE", conflicts_with_all = &["principal", "action", "resource", "context_json_file"])]
pub request_json_file: Option<String>,
}
impl RequestArgs {
fn get_request(&self, schema: Option<&Schema>) -> Result<Request> {
match &self.request_json_file {
Some(jsonfile) => {
let jsonstring = std::fs::read_to_string(jsonfile)
.into_diagnostic()
.wrap_err_with(|| format!("failed to open request-json file {jsonfile}"))?;
let qjson: RequestJSON = serde_json::from_str(&jsonstring)
.into_diagnostic()
.wrap_err_with(|| format!("failed to parse request-json file {jsonfile}"))?;
let principal = qjson.principal.parse().wrap_err_with(|| {
format!("failed to parse principal in {jsonfile} as entity Uid")
})?;
let action = qjson.action.parse().wrap_err_with(|| {
format!("failed to parse action in {jsonfile} as entity Uid")
})?;
let resource = qjson.resource.parse().wrap_err_with(|| {
format!("failed to parse resource in {jsonfile} as entity Uid")
})?;
let context = Context::from_json_value(qjson.context, schema.map(|s| (s, &action)))
.wrap_err_with(|| format!("failed to create a context from {jsonfile}"))?;
Request::new(
principal,
action,
resource,
context,
if self.request_validation {
schema
} else {
None
},
)
.map_err(|e| miette!("{e}"))
}
None => {
let principal = self
.principal
.as_ref()
.map(|s| {
s.parse().wrap_err_with(|| {
format!("failed to parse principal {s} as entity Uid")
})
})
.transpose()?;
let action = self
.action
.as_ref()
.map(|s| {
s.parse()
.wrap_err_with(|| format!("failed to parse action {s} as entity Uid"))
})
.transpose()?;
let resource = self
.resource
.as_ref()
.map(|s| {
s.parse()
.wrap_err_with(|| format!("failed to parse resource {s} as entity Uid"))
})
.transpose()?;
let context: Context = match &self.context_json_file {
None => Context::empty(),
Some(jsonfile) => match std::fs::OpenOptions::new().read(true).open(jsonfile) {
Ok(f) => Context::from_json_file(
f,
schema.and_then(|s| Some((s, action.as_ref()?))),
)
.wrap_err_with(|| format!("failed to create a context from {jsonfile}"))?,
Err(e) => Err(e).into_diagnostic().wrap_err_with(|| {
format!("error while loading context from {jsonfile}")
})?,
},
};
match (principal, action, resource) {
(Some(principal), Some(action), Some(resource)) => Request::new(
principal,
action,
resource,
context,
if self.request_validation {
schema
} else {
None
},
)
.map_err(|e| miette!("{e}")),
_ => Err(miette!(
"All three (`principal`, `action`, `resource`) variables must be specified"
)),
}
}
}
}
}
#[cfg(feature = "partial-eval")]
impl PartialRequestArgs {
fn get_request(&self) -> Result<Request> {
let mut builder = RequestBuilder::default();
let qjson: PartialRequestJSON = match self.request_json_file.as_ref() {
Some(jsonfile) => {
let jsonstring = std::fs::read_to_string(jsonfile)
.into_diagnostic()
.wrap_err_with(|| format!("failed to open request-json file {jsonfile}"))?;
serde_json::from_str(&jsonstring)
.into_diagnostic()
.wrap_err_with(|| format!("failed to parse request-json file {jsonfile}"))?
}
None => PartialRequestJSON {
principal: self.principal.clone(),
action: self.action.clone(),
resource: self.resource.clone(),
context: self
.context_json_file
.as_ref()
.map(|jsonfile| {
let jsonstring = std::fs::read_to_string(jsonfile)
.into_diagnostic()
.wrap_err_with(|| {
format!("failed to open context-json file {jsonfile}")
})?;
serde_json::from_str(&jsonstring)
.into_diagnostic()
.wrap_err_with(|| {
format!("failed to parse context-json file {jsonfile}")
})
})
.transpose()?,
},
};
if let Some(principal) = qjson
.principal
.map(|s| {
s.parse()
.wrap_err_with(|| format!("failed to parse principal {s} as entity Uid"))
})
.transpose()?
{
builder = builder.principal(principal);
}
if let Some(action) = qjson
.action
.map(|s| {
s.parse()
.wrap_err_with(|| format!("failed to parse action {s} as entity Uid"))
})
.transpose()?
{
builder = builder.action(action);
}
if let Some(resource) = qjson
.resource
.map(|s| {
s.parse()
.wrap_err_with(|| format!("failed to parse resource {s} as entity Uid"))
})
.transpose()?
{
builder = builder.resource(resource);
}
if let Some(context) = qjson
.context
.map(|json| {
Context::from_json_value(json.clone(), None)
.wrap_err_with(|| format!("fail to convert context json {json} to Context"))
})
.transpose()?
{
builder = builder.context(context);
}
Ok(builder.build())
}
}
#[derive(Args, Debug)]
pub struct PoliciesArgs {
#[arg(short, long = "policies", value_name = "FILE")]
pub policies_file: Option<String>,
#[arg(long = "policy-format", default_value_t, value_enum)]
pub policy_format: PolicyFormat,
#[arg(short = 'k', long = "template-linked", value_name = "FILE")]
pub template_linked_file: Option<String>,
}
impl PoliciesArgs {
fn get_policy_set(&self) -> Result<PolicySet> {
let mut pset = match self.policy_format {
PolicyFormat::Cedar => read_cedar_policy_set(self.policies_file.as_ref()),
PolicyFormat::Json => read_json_policy_set(self.policies_file.as_ref()),
}?;
if let Some(links_filename) = self.template_linked_file.as_ref() {
add_template_links_to_set(links_filename, &mut pset)?;
}
Ok(pset)
}
}
#[derive(Args, Debug)]
pub struct AuthorizeArgs {
#[command(flatten)]
pub request: RequestArgs,
#[command(flatten)]
pub policies: PoliciesArgs,
#[arg(short, long = "schema", value_name = "FILE")]
pub schema_file: Option<String>,
#[arg(long, value_enum, default_value_t = SchemaFormat::Cedar)]
pub schema_format: SchemaFormat,
#[arg(long = "entities", value_name = "FILE")]
pub entities_file: String,
#[arg(short, long)]
pub verbose: bool,
#[arg(short, long)]
pub timing: bool,
}
#[cfg(feature = "partial-eval")]
#[derive(Args, Debug)]
pub struct PartiallyAuthorizeArgs {
#[command(flatten)]
pub request: PartialRequestArgs,
#[command(flatten)]
pub policies: PoliciesArgs,
#[arg(long = "entities", value_name = "FILE")]
pub entities_file: String,
#[arg(short, long)]
pub timing: bool,
}
#[cfg(not(feature = "partial-eval"))]
#[derive(Debug, Args)]
pub struct PartiallyAuthorizeArgs;
#[derive(Args, Debug)]
pub struct VisualizeArgs {
#[arg(long = "entities", value_name = "FILE")]
pub entities_file: String,
}
#[derive(Clone, Copy, Debug, Default, Eq, PartialEq, ValueEnum)]
pub enum PolicyFormat {
#[default]
Cedar,
Json,
}
#[derive(Args, Debug)]
pub struct LinkArgs {
#[command(flatten)]
pub policies: PoliciesArgs,
#[arg(long)]
pub template_id: String,
#[arg(short, long)]
pub new_id: String,
#[arg(short, long)]
pub arguments: Arguments,
}
#[derive(Args, Debug)]
pub struct FormatArgs {
#[arg(short, long = "policies", value_name = "FILE")]
pub policies_file: Option<String>,
#[arg(short, long, value_name = "UINT", default_value_t = 80)]
pub line_width: usize,
#[arg(short, long, value_name = "INT", default_value_t = 2)]
pub indent_width: isize,
#[arg(short, long, group = "action", requires = "policies_file")]
pub write: bool,
#[arg(short, long, group = "action")]
pub check: bool,
}
#[derive(Args, Debug)]
pub struct NewArgs {
#[arg(short, long, value_name = "DIR")]
pub name: String,
}
#[derive(Clone, Debug, Deserialize)]
#[serde(try_from = "HashMap<String,String>")]
pub struct Arguments {
pub data: HashMap<SlotId, String>,
}
impl TryFrom<HashMap<String, String>> for Arguments {
type Error = String;
fn try_from(value: HashMap<String, String>) -> Result<Self, Self::Error> {
Ok(Self {
data: value
.into_iter()
.map(|(k, v)| parse_slot_id(k).map(|slot_id| (slot_id, v)))
.collect::<Result<HashMap<SlotId, String>, String>>()?,
})
}
}
impl FromStr for Arguments {
type Err = serde_json::Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
serde_json::from_str(s)
}
}
#[derive(Deserialize)]
struct RequestJSON {
#[serde(default)]
principal: String,
#[serde(default)]
action: String,
#[serde(default)]
resource: String,
context: serde_json::Value,
}
#[cfg(feature = "partial-eval")]
#[derive(Deserialize)]
struct PartialRequestJSON {
pub(self) principal: Option<String>,
pub(self) action: Option<String>,
pub(self) resource: Option<String>,
pub(self) context: Option<serde_json::Value>,
}
#[derive(Args, Debug)]
pub struct EvaluateArgs {
#[command(flatten)]
pub request: RequestArgs,
#[arg(short, long = "schema", value_name = "FILE")]
pub schema_file: Option<String>,
#[arg(long, value_enum, default_value_t = SchemaFormat::Cedar)]
pub schema_format: SchemaFormat,
#[arg(long = "entities", value_name = "FILE")]
pub entities_file: Option<String>,
#[arg(value_name = "EXPRESSION")]
pub expression: String,
}
#[derive(Eq, PartialEq, Debug)]
pub enum CedarExitCode {
Success,
Failure,
AuthorizeDeny,
ValidationFailure,
#[cfg(feature = "partial-eval")]
Unknown,
}
impl Termination for CedarExitCode {
fn report(self) -> ExitCode {
match self {
CedarExitCode::Success => ExitCode::SUCCESS,
CedarExitCode::Failure => ExitCode::FAILURE,
CedarExitCode::AuthorizeDeny => ExitCode::from(2),
CedarExitCode::ValidationFailure => ExitCode::from(3),
#[cfg(feature = "partial-eval")]
CedarExitCode::Unknown => ExitCode::SUCCESS,
}
}
}
pub fn check_parse(args: &CheckParseArgs) -> CedarExitCode {
match args.policies.get_policy_set() {
Ok(_) => CedarExitCode::Success,
Err(e) => {
println!("{e:?}");
CedarExitCode::Failure
}
}
}
pub fn validate(args: &ValidateArgs) -> CedarExitCode {
let mode = match args.validation_mode {
ValidationMode::Strict => cedar_policy::ValidationMode::Strict,
ValidationMode::Permissive => {
#[cfg(not(feature = "permissive-validate"))]
{
eprintln!("Error: arguments include the experimental option `--validation-mode permissive`, but this executable was not built with `permissive-validate` experimental feature enabled");
return CedarExitCode::Failure;
}
#[cfg(feature = "permissive-validate")]
cedar_policy::ValidationMode::Permissive
}
ValidationMode::Partial => {
#[cfg(not(feature = "partial-validate"))]
{
eprintln!("Error: arguments include the experimental option `--validation-mode partial`, but this executable was not built with `partial-validate` experimental feature enabled");
return CedarExitCode::Failure;
}
#[cfg(feature = "partial-validate")]
cedar_policy::ValidationMode::Partial
}
};
let pset = match args.policies.get_policy_set() {
Ok(pset) => pset,
Err(e) => {
println!("{e:?}");
return CedarExitCode::Failure;
}
};
let schema = match read_schema_file(&args.schema_file, args.schema_format) {
Ok(schema) => schema,
Err(e) => {
println!("{e:?}");
return CedarExitCode::Failure;
}
};
let validator = Validator::new(schema);
let result = validator.validate(&pset, mode);
if !result.validation_passed()
|| (args.deny_warnings && !result.validation_passed_without_warnings())
{
println!(
"{:?}",
Report::new(result).wrap_err("policy set validation failed")
);
CedarExitCode::ValidationFailure
} else {
println!(
"{:?}",
Report::new(result).wrap_err("policy set validation passed")
);
CedarExitCode::Success
}
}
pub fn evaluate(args: &EvaluateArgs) -> (CedarExitCode, EvalResult) {
println!();
let schema = match args
.schema_file
.as_ref()
.map(|f| read_schema_file(f, args.schema_format))
{
None => None,
Some(Ok(schema)) => Some(schema),
Some(Err(e)) => {
println!("{e:?}");
return (CedarExitCode::Failure, EvalResult::Bool(false));
}
};
let request = match args.request.get_request(schema.as_ref()) {
Ok(q) => q,
Err(e) => {
println!("{e:?}");
return (CedarExitCode::Failure, EvalResult::Bool(false));
}
};
let expr =
match Expression::from_str(&args.expression).wrap_err("failed to parse the expression") {
Ok(expr) => expr,
Err(e) => {
println!("{:?}", e.with_source_code(args.expression.clone()));
return (CedarExitCode::Failure, EvalResult::Bool(false));
}
};
let entities = match &args.entities_file {
None => Entities::empty(),
Some(file) => match load_entities(file, schema.as_ref()) {
Ok(entities) => entities,
Err(e) => {
println!("{e:?}");
return (CedarExitCode::Failure, EvalResult::Bool(false));
}
},
};
match eval_expression(&request, &entities, &expr).wrap_err("failed to evaluate the expression")
{
Err(e) => {
println!("{e:?}");
return (CedarExitCode::Failure, EvalResult::Bool(false));
}
Ok(result) => {
println!("{result}");
return (CedarExitCode::Success, result);
}
}
}
pub fn link(args: &LinkArgs) -> CedarExitCode {
if let Err(err) = link_inner(args) {
println!("{err:?}");
CedarExitCode::Failure
} else {
CedarExitCode::Success
}
}
pub fn visualize(args: &VisualizeArgs) -> CedarExitCode {
match load_entities(&args.entities_file, None) {
Ok(entities) => {
println!("{}", entities.to_dot_str());
CedarExitCode::Success
}
Err(report) => {
eprintln!("{report:?}");
CedarExitCode::Failure
}
}
}
fn format_policies_inner(args: &FormatArgs) -> Result<bool> {
let policies_str = read_from_file_or_stdin(args.policies_file.as_ref(), "policy set")?;
let config = Config {
line_width: args.line_width,
indent_width: args.indent_width,
};
let formatted_policy = policies_str_to_pretty(&policies_str, &config)?;
let are_policies_equivalent = policies_str == formatted_policy;
match &args.policies_file {
Some(policies_file) if args.write => {
let mut file = OpenOptions::new()
.write(true)
.truncate(true)
.open(policies_file)
.into_diagnostic()
.wrap_err(format!("failed to open {policies_file} for writing"))?;
file.write_all(formatted_policy.as_bytes())
.into_diagnostic()
.wrap_err(format!(
"failed to write formatted policies to {policies_file}"
))?;
}
_ => print!("{}", formatted_policy),
}
Ok(are_policies_equivalent)
}
pub fn format_policies(args: &FormatArgs) -> CedarExitCode {
match format_policies_inner(args) {
Ok(false) if args.check => CedarExitCode::Failure,
Err(err) => {
println!("{err:?}");
CedarExitCode::Failure
}
_ => CedarExitCode::Success,
}
}
fn translate_policy_to_json(cedar_src: impl AsRef<str>) -> Result<String> {
let policy_set = PolicySet::from_str(cedar_src.as_ref())?;
let output = policy_set.to_json()?.to_string();
Ok(output)
}
fn translate_policy_inner(args: &TranslatePolicyArgs) -> Result<String> {
let translate = match args.direction {
PolicyTranslationDirection::CedarToJson => translate_policy_to_json,
};
read_from_file_or_stdin(args.input_file.clone(), "policy").and_then(translate)
}
pub fn translate_policy(args: &TranslatePolicyArgs) -> CedarExitCode {
match translate_policy_inner(args) {
Ok(sf) => {
println!("{sf}");
CedarExitCode::Success
}
Err(err) => {
eprintln!("{err:?}");
CedarExitCode::Failure
}
}
}
fn translate_schema_to_cedar(json_src: impl AsRef<str>) -> Result<String> {
let fragment = SchemaFragment::from_json_str(json_src.as_ref())?;
let output = fragment.to_cedarschema()?;
Ok(output)
}
fn translate_schema_to_json(cedar_src: impl AsRef<str>) -> Result<String> {
let (fragment, warnings) = SchemaFragment::from_cedarschema_str(cedar_src.as_ref())?;
for warning in warnings {
let report = miette::Report::new(warning);
eprintln!("{:?}", report);
}
let output = fragment.to_json_string()?;
Ok(output)
}
fn translate_schema_inner(args: &TranslateSchemaArgs) -> Result<String> {
let translate = match args.direction {
SchemaTranslationDirection::JsonToCedar => translate_schema_to_cedar,
SchemaTranslationDirection::CedarToJson => translate_schema_to_json,
};
read_from_file_or_stdin(args.input_file.clone(), "schema").and_then(translate)
}
pub fn translate_schema(args: &TranslateSchemaArgs) -> CedarExitCode {
match translate_schema_inner(args) {
Ok(sf) => {
println!("{sf}");
CedarExitCode::Success
}
Err(err) => {
eprintln!("{err:?}");
CedarExitCode::Failure
}
}
}
fn generate_schema(path: &Path) -> Result<()> {
std::fs::write(
path,
serde_json::to_string_pretty(&serde_json::json!(
{
"": {
"entityTypes": {
"A": {
"memberOfTypes": [
"B"
]
},
"B": {
"memberOfTypes": []
},
"C": {
"memberOfTypes": []
}
},
"actions": {
"action": {
"appliesTo": {
"resourceTypes": [
"C"
],
"principalTypes": [
"A",
"B"
]
}
}
}
}
}))
.into_diagnostic()?,
)
.into_diagnostic()
}
fn generate_policy(path: &Path) -> Result<()> {
std::fs::write(
path,
r#"permit (
principal in A::"a",
action == Action::"action",
resource == C::"c"
) when { true };
"#,
)
.into_diagnostic()
}
fn generate_entities(path: &Path) -> Result<()> {
std::fs::write(
path,
serde_json::to_string_pretty(&serde_json::json!(
[
{
"uid": { "type": "A", "id": "a"} ,
"attrs": {},
"parents": [{"type": "B", "id": "b"}]
},
{
"uid": { "type": "B", "id": "b"} ,
"attrs": {},
"parents": []
},
{
"uid": { "type": "C", "id": "c"} ,
"attrs": {},
"parents": []
}
]))
.into_diagnostic()?,
)
.into_diagnostic()
}
fn new_inner(args: &NewArgs) -> Result<()> {
let dir = &std::env::current_dir().into_diagnostic()?.join(&args.name);
std::fs::create_dir(dir).into_diagnostic()?;
let schema_path = dir.join("schema.cedarschema.json");
let policy_path = dir.join("policy.cedar");
let entities_path = dir.join("entities.json");
generate_schema(&schema_path)?;
generate_policy(&policy_path)?;
generate_entities(&entities_path)
}
pub fn new(args: &NewArgs) -> CedarExitCode {
if let Err(err) = new_inner(args) {
println!("{err:?}");
CedarExitCode::Failure
} else {
CedarExitCode::Success
}
}
pub fn language_version() -> CedarExitCode {
let version = get_lang_version();
println!(
"Cedar language version: {}.{}",
version.major, version.minor
);
CedarExitCode::Success
}
fn create_slot_env(data: &HashMap<SlotId, String>) -> Result<HashMap<SlotId, EntityUid>> {
data.iter()
.map(|(key, value)| Ok(EntityUid::from_str(value).map(|euid| (key.clone(), euid))?))
.collect::<Result<HashMap<SlotId, EntityUid>>>()
}
fn link_inner(args: &LinkArgs) -> Result<()> {
let mut policies = args.policies.get_policy_set()?;
let slotenv = create_slot_env(&args.arguments.data)?;
policies.link(
PolicyId::new(&args.template_id),
PolicyId::new(&args.new_id),
slotenv,
)?;
let linked = policies
.policy(&PolicyId::new(&args.new_id))
.ok_or_else(|| miette!("Failed to find newly-added template-linked policy"))?;
println!("Template-linked policy added: {linked}");
if let Some(links_filename) = args.policies.template_linked_file.as_ref() {
update_template_linked_file(
links_filename,
TemplateLinked {
template_id: args.template_id.clone(),
link_id: args.new_id.clone(),
args: args.arguments.data.clone(),
},
)?;
}
Ok(())
}
#[derive(Clone, Serialize, Deserialize, Debug)]
#[serde(try_from = "LiteralTemplateLinked")]
#[serde(into = "LiteralTemplateLinked")]
struct TemplateLinked {
template_id: String,
link_id: String,
args: HashMap<SlotId, String>,
}
impl TryFrom<LiteralTemplateLinked> for TemplateLinked {
type Error = String;
fn try_from(value: LiteralTemplateLinked) -> Result<Self, Self::Error> {
Ok(Self {
template_id: value.template_id,
link_id: value.link_id,
args: value
.args
.into_iter()
.map(|(k, v)| parse_slot_id(k).map(|slot_id| (slot_id, v)))
.collect::<Result<HashMap<SlotId, String>, Self::Error>>()?,
})
}
}
fn parse_slot_id<S: AsRef<str>>(s: S) -> Result<SlotId, String> {
match s.as_ref() {
"?principal" => Ok(SlotId::principal()),
"?resource" => Ok(SlotId::resource()),
_ => Err(format!(
"Invalid SlotId! Expected ?principal|?resource, got: {}",
s.as_ref()
)),
}
}
#[derive(Serialize, Deserialize)]
struct LiteralTemplateLinked {
template_id: String,
link_id: String,
args: HashMap<String, String>,
}
impl From<TemplateLinked> for LiteralTemplateLinked {
fn from(i: TemplateLinked) -> Self {
Self {
template_id: i.template_id,
link_id: i.link_id,
args: i
.args
.into_iter()
.map(|(k, v)| (format!("{k}"), v))
.collect(),
}
}
}
fn add_template_links_to_set(path: impl AsRef<Path>, policy_set: &mut PolicySet) -> Result<()> {
for template_linked in load_links_from_file(path)? {
let slot_env = create_slot_env(&template_linked.args)?;
policy_set.link(
PolicyId::new(&template_linked.template_id),
PolicyId::new(&template_linked.link_id),
slot_env,
)?;
}
Ok(())
}
fn load_links_from_file(path: impl AsRef<Path>) -> Result<Vec<TemplateLinked>> {
let f = match std::fs::File::open(path) {
Ok(f) => f,
Err(_) => {
return Ok(vec![]);
}
};
if f.metadata()
.into_diagnostic()
.wrap_err("Failed to read metadata")?
.len()
== 0
{
Ok(vec![])
} else {
serde_json::from_reader(f)
.into_diagnostic()
.wrap_err("Deserialization error")
}
}
fn update_template_linked_file(path: impl AsRef<Path>, new_linked: TemplateLinked) -> Result<()> {
let mut template_linked = load_links_from_file(path.as_ref())?;
template_linked.push(new_linked);
write_template_linked_file(&template_linked, path.as_ref())
}
fn write_template_linked_file(linked: &[TemplateLinked], path: impl AsRef<Path>) -> Result<()> {
let f = OpenOptions::new()
.write(true)
.truncate(true)
.create(true)
.open(path)
.into_diagnostic()?;
serde_json::to_writer(f, linked).into_diagnostic()
}
pub fn authorize(args: &AuthorizeArgs) -> CedarExitCode {
println!();
let ans = execute_request(
&args.request,
&args.policies,
&args.entities_file,
args.schema_file.as_ref(),
args.schema_format,
args.timing,
);
match ans {
Ok(ans) => {
let status = match ans.decision() {
Decision::Allow => {
println!("ALLOW");
CedarExitCode::Success
}
Decision::Deny => {
println!("DENY");
CedarExitCode::AuthorizeDeny
}
};
if ans.diagnostics().errors().peekable().peek().is_some() {
println!();
for err in ans.diagnostics().errors() {
println!("{err}");
}
}
if args.verbose {
println!();
if ans.diagnostics().reason().peekable().peek().is_none() {
println!("note: no policies applied to this request");
} else {
println!("note: this decision was due to the following policies:");
for reason in ans.diagnostics().reason() {
println!(" {}", reason);
}
println!();
}
}
status
}
Err(errs) => {
for err in errs {
println!("{err:?}");
}
CedarExitCode::Failure
}
}
}
#[cfg(not(feature = "partial-eval"))]
pub fn partial_authorize(_: &PartiallyAuthorizeArgs) -> CedarExitCode {
{
eprintln!("Error: option `partially-authorize` is experimental, but this executable was not built with `partial-eval` experimental feature enabled");
return CedarExitCode::Failure;
}
}
#[cfg(feature = "partial-eval")]
pub fn partial_authorize(args: &PartiallyAuthorizeArgs) -> CedarExitCode {
println!();
let ans = execute_partial_request(
&args.request,
&args.policies,
&args.entities_file,
args.timing,
);
match ans {
Ok(ans) => match ans.decision() {
Some(Decision::Allow) => {
println!("ALLOW");
CedarExitCode::Success
}
Some(Decision::Deny) => {
println!("DENY");
CedarExitCode::AuthorizeDeny
}
None => {
println!("UNKNOWN");
println!("All policy residuals:");
for p in ans.nontrivial_residuals() {
println!("{p}");
}
CedarExitCode::Unknown
}
},
Err(errs) => {
for err in errs {
println!("{err:?}");
}
CedarExitCode::Failure
}
}
}
fn load_entities(entities_filename: impl AsRef<Path>, schema: Option<&Schema>) -> Result<Entities> {
match std::fs::OpenOptions::new()
.read(true)
.open(entities_filename.as_ref())
{
Ok(f) => Entities::from_json_file(f, schema).wrap_err_with(|| {
format!(
"failed to parse entities from file {}",
entities_filename.as_ref().display()
)
}),
Err(e) => Err(e).into_diagnostic().wrap_err_with(|| {
format!(
"failed to open entities file {}",
entities_filename.as_ref().display()
)
}),
}
}
fn rename_from_id_annotation(ps: PolicySet) -> Result<PolicySet> {
let mut new_ps = PolicySet::new();
let t_iter = ps.templates().map(|t| match t.annotation("id") {
None => Ok(t.clone()),
Some(anno) => anno.parse().map(|a| t.new_id(a)),
});
for t in t_iter {
let template = t.unwrap_or_else(|never| match never {});
new_ps
.add_template(template)
.wrap_err("failed to add template to policy set")?;
}
let p_iter = ps.policies().map(|p| match p.annotation("id") {
None => Ok(p.clone()),
Some(anno) => anno.parse().map(|a| p.new_id(a)),
});
for p in p_iter {
let policy = p.unwrap_or_else(|never| match never {});
new_ps
.add(policy)
.wrap_err("failed to add template to policy set")?;
}
Ok(new_ps)
}
fn read_from_file_or_stdin(filename: Option<impl AsRef<Path>>, context: &str) -> Result<String> {
let mut src_str = String::new();
match filename.as_ref() {
Some(path) => {
src_str = std::fs::read_to_string(path)
.into_diagnostic()
.wrap_err_with(|| {
format!("failed to open {context} file {}", path.as_ref().display())
})?;
}
None => {
std::io::Read::read_to_string(&mut std::io::stdin(), &mut src_str)
.into_diagnostic()
.wrap_err_with(|| format!("failed to read {} from stdin", context))?;
}
};
Ok(src_str)
}
fn read_from_file(filename: impl AsRef<Path>, context: &str) -> Result<String> {
read_from_file_or_stdin(Some(filename), context)
}
fn read_cedar_policy_set(
filename: Option<impl AsRef<Path> + std::marker::Copy>,
) -> Result<PolicySet> {
let context = "policy set";
let ps_str = read_from_file_or_stdin(filename, context)?;
let ps = PolicySet::from_str(&ps_str)
.map_err(|err| {
let name = filename.map_or_else(
|| "<stdin>".to_owned(),
|n| n.as_ref().display().to_string(),
);
Report::new(err).with_source_code(NamedSource::new(name, ps_str))
})
.wrap_err_with(|| format!("failed to parse {context}"))?;
rename_from_id_annotation(ps)
}
fn read_json_policy_set(
filename: Option<impl AsRef<Path> + std::marker::Copy>,
) -> Result<PolicySet> {
let context = "JSON policy";
let json_source = read_from_file_or_stdin(filename, context)?;
let json = serde_json::from_str::<serde_json::Value>(&json_source).into_diagnostic()?;
let policy_type = get_json_policy_type(&json)?;
let add_json_source = |report: Report| {
let name = filename.map_or_else(
|| "<stdin>".to_owned(),
|n| n.as_ref().display().to_string(),
);
report.with_source_code(NamedSource::new(name, json_source.clone()))
};
match policy_type {
JsonPolicyType::SinglePolicy => match Policy::from_json(None, json.clone()) {
Ok(policy) => PolicySet::from_policies([policy])
.wrap_err_with(|| format!("failed to create policy set from {context}")),
Err(_) => match Template::from_json(None, json)
.map_err(|err| add_json_source(Report::new(err)))
{
Ok(template) => {
let mut ps = PolicySet::new();
ps.add_template(template)?;
Ok(ps)
}
Err(err) => Err(err).wrap_err_with(|| format!("failed to parse {context}")),
},
},
JsonPolicyType::PolicySet => PolicySet::from_json_value(json)
.map_err(|err| add_json_source(Report::new(err)))
.wrap_err_with(|| format!("failed to create policy set from {context}")),
}
}
fn get_json_policy_type(json: &serde_json::Value) -> Result<JsonPolicyType> {
let policy_set_properties = ["staticPolicies", "templates", "templateLinks"];
let policy_properties = ["action", "effect", "principal", "resource", "conditions"];
let json_has_property = |p| json.get(p).is_some();
let has_any_policy_set_property = policy_set_properties.iter().any(json_has_property);
let has_any_policy_property = policy_properties.iter().any(json_has_property);
match (has_any_policy_set_property, has_any_policy_property) {
(false, false) => Err(miette!("cannot determine if json policy is a single policy or a policy set. Found no matching properties from either format")),
(true, true) => Err(miette!("cannot determine if json policy is a single policy or a policy set. Found matching properties from both formats")),
(true, _) => Ok(JsonPolicyType::PolicySet),
(_, true) => Ok(JsonPolicyType::SinglePolicy),
}
}
enum JsonPolicyType {
SinglePolicy,
PolicySet,
}
fn read_schema_file(
filename: impl AsRef<Path> + std::marker::Copy,
format: SchemaFormat,
) -> Result<Schema> {
let schema_src = read_from_file(filename, "schema")?;
match format {
SchemaFormat::Json => Schema::from_json_str(&schema_src).wrap_err_with(|| {
format!(
"failed to parse schema from file {}",
filename.as_ref().display()
)
}),
SchemaFormat::Cedar => {
let (schema, warnings) = Schema::from_cedarschema_str(&schema_src)?;
for warning in warnings {
let report = miette::Report::new(warning);
eprintln!("{:?}", report);
}
Ok(schema)
}
}
}
fn execute_request(
request: &RequestArgs,
policies: &PoliciesArgs,
entities_filename: impl AsRef<Path>,
schema_filename: Option<impl AsRef<Path> + std::marker::Copy>,
schema_format: SchemaFormat,
compute_duration: bool,
) -> Result<Response, Vec<Report>> {
let mut errs = vec![];
let policies = match policies.get_policy_set() {
Ok(pset) => pset,
Err(e) => {
errs.push(e);
PolicySet::new()
}
};
let schema = match schema_filename.map(|f| read_schema_file(f, schema_format)) {
None => None,
Some(Ok(schema)) => Some(schema),
Some(Err(e)) => {
errs.push(e);
None
}
};
let entities = match load_entities(entities_filename, schema.as_ref()) {
Ok(entities) => entities,
Err(e) => {
errs.push(e);
Entities::empty()
}
};
match request.get_request(schema.as_ref()) {
Ok(request) if errs.is_empty() => {
let authorizer = Authorizer::new();
let auth_start = Instant::now();
let ans = authorizer.is_authorized(&request, &policies, &entities);
let auth_dur = auth_start.elapsed();
if compute_duration {
println!(
"Authorization Time (micro seconds) : {}",
auth_dur.as_micros()
);
}
Ok(ans)
}
Ok(_) => Err(errs),
Err(e) => {
errs.push(e.wrap_err("failed to parse request"));
Err(errs)
}
}
}
#[cfg(feature = "partial-eval")]
fn execute_partial_request(
request: &PartialRequestArgs,
policies: &PoliciesArgs,
entities_filename: impl AsRef<Path>,
compute_duration: bool,
) -> Result<PartialResponse, Vec<Report>> {
let mut errs = vec![];
let policies = match policies.get_policy_set() {
Ok(pset) => pset,
Err(e) => {
errs.push(e);
PolicySet::new()
}
};
let entities = match load_entities(entities_filename, None) {
Ok(entities) => entities,
Err(e) => {
errs.push(e);
Entities::empty()
}
};
match request.get_request() {
Ok(request) if errs.is_empty() => {
let authorizer = Authorizer::new();
let auth_start = Instant::now();
let ans = authorizer.is_authorized_partial(&request, &policies, &entities);
let auth_dur = auth_start.elapsed();
if compute_duration {
println!(
"Authorization Time (micro seconds) : {}",
auth_dur.as_micros()
);
}
Ok(ans)
}
Ok(_) => Err(errs),
Err(e) => {
errs.push(e.wrap_err("failed to parse request"));
Err(errs)
}
}
}