#![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::{
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),
TranslateSchema(TranslateSchemaArgs),
New(NewArgs),
}
#[derive(Args, Debug)]
pub struct TranslateSchemaArgs {
#[arg(long)]
pub direction: TranslationDirection,
#[arg(short = 's', long = "schema", value_name = "FILE")]
pub input_file: Option<String>,
}
#[derive(Debug, Clone, Copy, ValueEnum)]
pub enum TranslationDirection {
JsonToHuman,
HumanToJson,
}
#[derive(Debug, Clone, Copy, ValueEnum)]
pub enum SchemaFormat {
Human,
Json,
}
impl Default for SchemaFormat {
fn default() -> Self {
Self::Json
}
}
#[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 = "partial-validate")]
pub partial_validate: bool,
#[arg(long, value_enum, default_value_t = SchemaFormat::Json)]
pub schema_format: SchemaFormat,
}
#[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,
}
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
.map(|s| {
s.parse().wrap_err_with(|| {
format!("failed to parse principal in {jsonfile} as entity Uid")
})
})
.transpose()?;
let action = qjson
.action
.map(|s| {
s.parse().wrap_err_with(|| {
format!("failed to parse action in {jsonfile} as entity Uid")
})
})
.transpose()?;
let resource = qjson
.resource
.map(|s| {
s.parse().wrap_err_with(|| {
format!("failed to parse resource in {jsonfile} as entity Uid")
})
})
.transpose()?;
let context = Context::from_json_value(
qjson.context,
schema.and_then(|s| Some((s, action.as_ref()?))),
)
.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}")
})?,
},
};
Request::new(
principal,
action,
resource,
context,
if self.request_validation {
schema
} else {
None
},
)
.map_err(|e| miette!("{e}"))
}
}
}
}
#[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::Human => read_policy_set(self.policies_file.as_ref()),
PolicyFormat::Json => read_json_policy(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::Json)]
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,
}
#[derive(Clone, Copy, Debug, Default, Eq, PartialEq, ValueEnum)]
pub enum PolicyFormat {
#[default]
Human,
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,
}
#[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: Option<String>,
#[serde(default)]
action: Option<String>,
#[serde(default)]
resource: Option<String>,
context: 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::Json)]
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,
}
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),
}
}
}
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 = if args.partial_validate {
#[cfg(not(feature = "partial-validate"))]
{
eprintln!("Error: arguments include the experimental option `--partial-validate`, but this executable was not built with `partial-validate` experimental feature enabled");
return CedarExitCode::Failure;
}
#[cfg(feature = "partial-validate")]
ValidationMode::Partial
} else {
ValidationMode::default()
};
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
}
}
fn format_policies_inner(args: &FormatArgs) -> Result<()> {
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,
};
println!("{}", policies_str_to_pretty(&policies_str, &config)?);
Ok(())
}
pub fn format_policies(args: &FormatArgs) -> CedarExitCode {
if let Err(err) = format_policies_inner(args) {
println!("{err:?}");
CedarExitCode::Failure
} else {
CedarExitCode::Success
}
}
fn translate_to_human(json_src: impl AsRef<str>) -> Result<String> {
let fragment = SchemaFragment::from_str(json_src.as_ref())?;
let output = fragment.as_natural()?;
Ok(output)
}
fn translate_to_json(natural_src: impl AsRef<str>) -> Result<String> {
let (fragment, warnings) = SchemaFragment::from_str_natural(natural_src.as_ref())?;
for warning in warnings {
let report = miette::Report::new(warning);
eprintln!("{:?}", report);
}
let output = fragment.as_json_string()?;
Ok(output)
}
fn translate_schema_inner(args: &TranslateSchemaArgs) -> Result<String> {
let translate = match args.direction {
TranslationDirection::JsonToHuman => translate_to_human,
TranslationDirection::HumanToJson => translate_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.jon");
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
}
}
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
}
}
}
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.wrap_err("failed to parse policy id annotation")?;
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.wrap_err("failed to parse policy id annotation")?;
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_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(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::Value = serde_json::from_str(&json_source).into_diagnostic()?;
let err_to_report = |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, json_source.clone()))
};
match Policy::from_json(None, json.clone()).map_err(err_to_report) {
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_to_report) {
Ok(template) => {
let mut ps = PolicySet::new();
let _ = ps.add_template(template)?;
Ok(ps)
}
Err(err) => Err(err).wrap_err_with(|| format!("failed to parse {context}")),
},
}
}
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_str(&schema_src).wrap_err_with(|| {
format!(
"failed to parse schema from file {}",
filename.as_ref().display()
)
}),
SchemaFormat::Human => {
let (schema, warnings) = Schema::from_str_natural(&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)
}
}
}