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

RFC: Quantifiers #3242

Merged
merged 4 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions rfc/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
- [0007-global-conditions](rfcs/0007-global-conditions.md)
- [0008-line-coverage](rfcs/0008-line-coverage.md)
- [0009-function-contracts](rfcs/0009-function-contracts.md)
- [0010-quantifiers](rfcs/0010-quantifiers.md)
202 changes: 202 additions & 0 deletions rfc/src/rfcs/0010-quantifiers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,202 @@
- **Feature Name:** Quantifiers
- **Feature Request Issue:** [#2546](https://github.com/model-checking/kani/issues/2546) and [#836](https://github.com/model-checking/kani/issues/836)
- **RFC PR:** [#](https://github.com/model-checking/kani/pull/)
- **Status:** Unstable
- **Version:** 1

-------------------

## Summary
celinval marked this conversation as resolved.
Show resolved Hide resolved

Quantifiers are logical operators that allow users to express that a property or condition applies to some or all objects within a given domain.

## User Impact

There are two primary quantifiers: the existential quantifier (∃) and the universal quantifier (∀).

1. The existential quantifier (∃): represents the statement "there exists." We use to express that there is at least one object in the domain that satisfies a given condition. For example, "∃x P(x)" means "there exists a value x such that P(x) is true."

2. The universal quantifier (∀): represents the statement "for all" or "for every." We use it to express that a given condition is true for every object in the domain. For example, "∀x P(x)" means "for every value x, P(x) is true."

Rather than exhaustively listing all elements in a domain, quantifiers enable users to make statements about the entire domain at once. This compact representation is crucial when dealing with large or unbounded inputs. Quantifiers also facilitate abstraction and generalization of properties. Instead of specifying properties for specific instances, quantified properties can capture general patterns and behaviors that hold across different objects in a domain. Additionally, by replacing loops in the specification with quantifiers, Kani can encode the properties more efficiently within the specified bounds, making the verification process more manageable and computationally feasible.

This new feature doesn't introduce any breaking changes to users. It will only allow them to write properites using the existential (∃) and universal (∀) quantifiers.

## User Experience

We propose a syntax inspired by ["Pattern Types"](https://github.com/rust-lang/rust/pull/120131). The syntax of existential (i.e., `kani::exists`) and universal (i.e., `kani::forall`) quantifiers are:

```rust
kani::exists(|<var>: <type> is <range-expr> | <boolean-expression>)
feliperodri marked this conversation as resolved.
Show resolved Hide resolved
kani::forall(|<var>: <type> is <range-expr> | <boolean-expression>)
```

CBMC's SAT backend only supports bounded quantification under **constant** lower and upper bounds (for more details, see the [documentation for quantifiers in CBMC](https://diffblue.github.io/cbmc/contracts-quantifiers.html)). In contracts, the SMT backend supports arbitrary Boolean expressions.

Consider the following example adapted from the documentation for the [from_raw_parts](https://doc.rust-lang.org/std/vec/struct.Vec.html#method.from_raw_parts) function:

```rust
use std::ptr;
use std::mem;

#[kani::proof]
fn main() {
let v = vec![kani::any::<usize>(); 100];

// Prevent running `v`'s destructor so we are in complete control
// of the allocation.
let mut v = mem::ManuallyDrop::new(v);

// Pull out the various important pieces of information about `v`
let p = v.as_mut_ptr();
let len = v.len();
let cap = v.capacity();

unsafe {
// Overwrite memory
for i in 0..len {
*p.add(i) += 1;
}

// Put everything back together into a Vec
let rebuilt = Vec::from_raw_parts(p, len, cap);
}
}
```

Given the `v` vector has non-deterministic values, there are potential arithmetic overflows that might happen in the for loop. So we need to constrain all values of the array. We may also want to check all values of `rebuilt` after the operation. Without quantifiers, we might be tempt to use loops as follows:

```rust
use std::ptr;
use std::mem;

#[kani::proof]
fn main() {
let original_v = vec![kani::any::<usize>(); 100];
let v = original_v.clone();
for i in 0..v.len() {
kani::assume(v[i] < 5);
}

// Prevent running `v`'s destructor so we are in complete control
// of the allocation.
let mut v = mem::ManuallyDrop::new(v);

// Pull out the various important pieces of information about `v`
let p = v.as_mut_ptr();
let len = v.len();
let cap = v.capacity();

unsafe {
// Overwrite memory
for i in 0..len {
*p.add(i) += 1;
}

// Put everything back together into a Vec
let rebuilt = Vec::from_raw_parts(p, len, cap);
for i in 0..len {
assert_eq!(rebuilt[i], original_v[i]+1);
}
}
}
```

This, however, might unnecessary increase the complexity of the verication process. We can achieve the same effect using quantifiers as shown below.

```rust
use std::ptr;
use std::mem;

#[kani::proof]
fn main() {
let original_v = vec![kani::any::<usize>(); 3];
let v = original_v.clone();
kani::assume(kani::forall(|i: usize is ..v.len() | v[i] < 5));

// Prevent running `v`'s destructor so we are in complete control
// of the allocation.
let mut v = mem::ManuallyDrop::new(v);

// Pull out the various important pieces of information about `v`
let p = v.as_mut_ptr();
let len = v.len();
let cap = v.capacity();

unsafe {
// Overwrite memory
for i in 0..len {
*p.add(i) += 1;
}

// Put everything back together into a Vec
let rebuilt = Vec::from_raw_parts(p, len, cap);
assert!(kani::forall(|i: usize is ..len | rebuilt[i] == original_v[i]+1));
}
}
```

The same principle applies if we want to use the existential quantifier.

```rust
use std::ptr;
use std::mem;

#[kani::proof]
fn main() {
let original_v = vec![kani::any::<usize>(); 3];
let v = original_v.clone();
kani::assume(kani::forall(|i: usize is ..v.len() | v[i] < 5));

// Prevent running `v`'s destructor so we are in complete control
// of the allocation.
let mut v = mem::ManuallyDrop::new(v);

// Pull out the various important pieces of information about `v`
let p = v.as_mut_ptr();
let len = v.len();
let cap = v.capacity();

unsafe {
// Overwrite memory
for i in 0..len {
*p.add(i) += 1;
if i == 10 {
*p.add(i) = 0;
}
}

// Put everything back together into a Vec
let rebuilt = Vec::from_raw_parts(p, len, cap);
assert!(kani::exists(|i: usize is ..len | rebuilt[i] == 0));
}
}
```

The usage of quantifiers should be valid in any part of the Rust code analysed by Kani.

## Detailed Design

<!-- For the implementors or the hackers -->

Kani should have the same support that CBMC has for quantifiers with its SAT backend. For more details, see [Quantifiers](https://github.com/diffblue/cbmc/blob/0a69a64e4481473d62496f9975730d24f194884a/doc/cprover-manual/contracts-quantifiers.md).


## Open questions

<!-- For Developers -->
- **Function Contracts RFC** - CBMC has support for both `exists` and `forall`, but the
code generation is difficult. The most ergonomic and easy way to implement
quantifiers on the Rust side is as higher-order functions taking `Fn(T) ->
bool`, where `T` is some arbitrary type that can be quantified over. This
interface is familiar to developers, but the code generation is tricky, as
CBMC level quantifiers only allow certain kinds of expressions. This
feliperodri marked this conversation as resolved.
Show resolved Hide resolved
necessitates a rewrite of the `Fn` closure to a compliant expression.


## Future possibilities

<!-- For Developers -->
- CBMC has an SMT backend which allows the use of quantifiers with arbitrary Boolean expressions. Kani must include an option for users to experiment with this backend.

---
Loading