Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cherry-pick PRs for release 4.1.x #441

Merged
merged 9 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,27 @@ jobs:
run: |
wget https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh
bash elan-init.sh -y
- name: Build
- name: Download dependencies
working-directory: ./cedar-lean
shell: bash
run: source ~/.profile && lake -R -Kenv=dev update
- name: Build proofs
working-directory: ./cedar-lean
shell: bash
run: source ~/.profile && lake build Cedar
- name: Test
- name: Run unit tests
working-directory: ./cedar-lean
shell: bash
run: source ~/.profile && lake exe CedarUnitTests
- name: Test CLI
working-directory: ./cedar-lean
shell: bash
run: source ~/.profile && ./test_cli.sh
- name: Build docs
working-directory: ./cedar-lean
shell: bash
run: source ~/.profile && lake -R -Kenv=dev build Cedar:docs


build_and_test_drt:
needs: get-branch-name
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
run: |
wget https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh
bash elan-init.sh -y
- name: Download doc-gen4
- name: Download dependencies
working-directory: ./cedar-lean
shell: bash
run: source ~/.profile && sed -i '/^meta if get_config? env = some "dev" then/d' lakefile.lean && lake update doc-gen4
run: source ~/.profile && lake -R -Kenv=dev update
- name: Build docs
working-directory: ./cedar-lean
shell: bash
run: source ~/.profile && lake -Kenv=dev build Cedar:docs
run: source ~/.profile && lake -R -Kenv=dev build Cedar:docs
- name: Move documentation to `docs/docs`
run: |
mkdir docs
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ See the README in each directory for more information.
* Install Lean, following the instructions [here](https://leanprover.github.io/lean4/doc/setup.html).
* `cd cedar-lean`
* `source ../cedar-drt/set_env_vars.sh` (only required if running on AL2)
* `lake update`
* `lake build Cedar`

### DRT framework
Expand Down
2 changes: 1 addition & 1 deletion cedar-drt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ miette = "7.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
lazy_static = "1.4"
smol_str = { version = "0.2", features = ["serde"] }
smol_str = { version = "0.3", features = ["serde"] }

[features]
integration-testing = []
Expand Down
1 change: 1 addition & 0 deletions cedar-drt/build_lean_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@
# limitations under the License.

# Build command needed for linking Lean lib with Rust code
lake update
lake build Cedar:static DiffTest:static Batteries:static
2 changes: 1 addition & 1 deletion cedar-drt/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cedar-policy-formatter = { path = "../../cedar/cedar-policy-formatter", version
cedar-testing = { path = "../../cedar/cedar-testing", version = "4.*" }
cedar-policy-generators = { path = "../../cedar-policy-generators", version = "4.*" }
miette = "7.1.0"
smol_str = { version = "0.2", features = ["serde"] }
smol_str = { version = "0.3", features = ["serde"] }
regex = "1"
rayon = { version = "1.5", optional = true }
rand = { version = "0.8", features = ["small_rng"] }
Expand Down
3 changes: 2 additions & 1 deletion cedar-drt/fuzz/fuzz_targets/convert-policy-json-to-cedar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ enum ESTParseError {
}

fuzz_target!(|est_json_str: String| {
if let Ok(ast_from_est) = serde_json::from_str::<cedar_policy_core::est::Policy>(&est_json_str)
if let Ok(ast_from_est) = serde_json::from_str::<serde_json::Value>(&est_json_str)
.and_then(|val| serde_json::from_value::<cedar_policy_core::est::Policy>(val))
.map_err(ESTParseError::from)
.and_then(|est| {
est.try_into_ast_template(Some(PolicyID::from_string("policy0")))
Expand Down
21 changes: 16 additions & 5 deletions cedar-drt/fuzz/fuzz_targets/validation-pbt-type-directed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,12 @@ impl<'a> Arbitrary<'a> for FuzzTargetInput {
}

/// helper function that just tells us whether a policyset passes validation
fn passes_validation(validator: &Validator, policyset: &ast::PolicySet) -> bool {
validator
.validate(policyset, ValidationMode::default())
.validation_passed()
fn passes_validation(
validator: &Validator,
policyset: &ast::PolicySet,
mode: ValidationMode,
) -> bool {
validator.validate(policyset, mode).validation_passed()
}

// The main fuzz target. This is for PBT on the validator
Expand All @@ -125,7 +127,10 @@ fuzz_target!(|input: FuzzTargetInput| {
let mut policyset = ast::PolicySet::new();
let policy: ast::StaticPolicy = input.policy.into();
policyset.add_static(policy.clone()).unwrap();
if passes_validation(&validator, &policyset) {
let passes_strict = passes_validation(&validator, &policyset, ValidationMode::Strict);
let passes_permissive =
passes_validation(&validator, &policyset, ValidationMode::Permissive);
if passes_permissive {
// policy successfully validated, let's make sure we don't get any
// dynamic type errors
let authorizer = Authorizer::new();
Expand Down Expand Up @@ -172,6 +177,12 @@ fuzz_target!(|input: FuzzTargetInput| {
"validated policy produced unexpected errors {unexpected_errs:?}!\npolicies:\n{policyset}\nentities:\n{entities}\nschema:\n{schemafile_string}\nrequest:\n{q}\n",
)
}
} else {
assert_eq!(
false,
passes_strict,
"policy fails permissive validation but passes strict validation!\npolicies:\n{policyset}\nentities:\n{entities}\nschema:\n{schemafile_string}\n",
);
}
}
}
Expand Down
27 changes: 19 additions & 8 deletions cedar-drt/fuzz/fuzz_targets/validation-pbt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,12 @@ impl<'a> Arbitrary<'a> for FuzzTargetInput {
}

/// helper function that just tells us whether a policyset passes validation
fn passes_validation(validator: &Validator, policyset: &ast::PolicySet) -> bool {
validator
.validate(policyset, ValidationMode::default())
.validation_passed()
fn passes_validation(
validator: &Validator,
policyset: &ast::PolicySet,
mode: ValidationMode,
) -> bool {
validator.validate(policyset, mode).validation_passed()
}

// The main fuzz target. This is for PBT on the validator
Expand All @@ -332,11 +334,15 @@ fuzz_target!(|input: FuzzTargetInput| {
let mut policyset = ast::PolicySet::new();
let policy: ast::StaticPolicy = input.policy.into();
policyset.add_static(policy.clone()).unwrap();
if passes_validation(&validator, &policyset) {
let passes_strict = passes_validation(&validator, &policyset, ValidationMode::Strict);
let passes_permissive =
passes_validation(&validator, &policyset, ValidationMode::Permissive);
if passes_permissive {
checkpoint(LOG_FILENAME_VALIDATION_PASS);
maybe_log_schemastats(schemafile.as_ref(), "vyes");
maybe_log_hierarchystats(&input.hierarchy, "vyes");
maybe_log_policystats(&policy, "vyes");
let suffix = if passes_strict { "vyes" } else { "vpermissive" };
maybe_log_schemastats(schemafile.as_ref(), suffix);
maybe_log_hierarchystats(&input.hierarchy, suffix);
maybe_log_policystats(&policy, suffix);
// policy successfully validated, let's make sure we don't get any
// dynamic type errors
let authorizer = Authorizer::new();
Expand Down Expand Up @@ -387,6 +393,11 @@ fuzz_target!(|input: FuzzTargetInput| {
maybe_log_schemastats(schemafile.as_ref(), "vno");
maybe_log_hierarchystats(&input.hierarchy, "vno");
maybe_log_policystats(&policy, "vno");
assert_eq!(
false,
passes_strict,
"policy fails permissive validation but passes strict validation!\npolicies:\n{policyset}\nentities:\n{entities}\nschema:\n{schemafile_string}\n",
);
}
}
}
Expand Down
Loading