Before you begin, ensure you have Installed CVC5 FOR Finite Field.
These are the steps to install CVC5 on MacOS (probably transferable to Linux). Instructions taken from: https://github.com/cvc5/cvc5/blob/main/INSTALL.rst
- Clone CVC5 from official repo
git clone https://github.com/cvc5/cvc5
You can also download the source code from https://github.com/cvc5/cvc5/releases/tag/cvc5-1.0.5 but using the repo is recommended. 2. Install all dependencies and set proper ENV variables. See dependencies section below 3. Run
./configure.sh —cocoa —auto-download
- The do:
cd build
make -j4
make check
sudo make install
- Python 3.9 (you might need to install pip or update it):
brew install [email protected]
python3.9 -m pip install toml
python3.9 -m pip install pyparsing
-
Java. Go to the following link and install the latest Java https://www.oracle.com/java/technologies/downloads/
-
Necessary for cocoa
brew install gmp
brew install libpgm
- Now that you have
gmp
installed you need to tell CVC5 where to find it. The easiest way is through an env variable. If you install gap via homebrew, the path will look something like the following
export GMP_LIB=/opt/homebrew/Cellar/gmp/6.2.1_1/lib/libgmp.a
- If you’re having trouble finding it you can search for it with:
find /usr /opt -name "libgmp.a"
This project leverages feature flags to enable support of different versions of the Halo2. Each feature flag corresponds to a specific version of Halo2, allowing for flexible and targeted compilation.
Feature flags can be managed directly via the Cargo.toml
file or through command line options when building or testing.
-
Default Configuration: By default, the
use_zcash_halo2_proofs
feature is enabled in theCargo.toml
. -
Changing the Default Feature Flag: There are two ways for changing the default feature flag related to the Halo2 version:
-
Modifying the
Cargo.toml
File: To change the default feature flag used in builds and tests, you can modify theCargo.toml
file. Update the[features]
section by replacinguse_zcash_halo2_proofs
with the feature flag of your choice. This will set a new default feature for the project, affecting all builds and tests unless overridden in the command line. -
Disabling Default Features via Command Line: You can disable default features in command line or in cargo toml. For disabling the default in command line and specifying your desired flag:
cargo build --no-default-features --features your_custom_feature cargo test --no-default-features --features your_custom_feature
By removing the default flag from
crgo.toml
the commands will be:cargo build --features your_custom_feature cargo test --features your_custom_feature
Replace
your_custom_feature
with the appropriate feature flag. This ensures that only the specified feature is active during the build or test process.
-
For certain versions, multiple patches may be available. It's important to ensure that only the relevant patch is enabled to avoid conflicts. This is managed by commenting out or uncommenting the appropriate lines in the Cargo.toml file under the [patch] section.
-
Go to "korrekt"
-
Run
cargo run
for the default feature flag (use_zcash_halo2_proofs
).cargo run -- [OPTIONS]
For other versions of halo2 run
cargo run
with relevant halo2 version feature flag:cargo run --no-default-features --features use_pse_halo2_proofs -- [OPTIONS] cargo run --no-default-features --features use_axiom_halo2_proofs -- [OPTIONS] cargo run --no-default-features --features use_scroll_halo2_proofs -- [OPTIONS] cargo run --no-default-features --features use_pse_v1_halo2_proofs -- [OPTIONS]
Replace [OPTIONS]
with the desired options as described below.
-
-p, --profile <PROFILE>
: Select a predefined configuration profile. Available profiles include:specific_inline
random_inline
random_uninterpreted
random_interpreted
-
-t, --type <TYPE>
: Specify the type of analysis to be performed. Available types include:unused_gates
(ug
)unused_columns
(uc
)unconstrained_cells
(ucc
)underconstrained_circuit
(undcc
)
-
-l, --lookup <METHOD>
: Set the lookup method. This option is required for theunderconstrained_circuit
type. Available methods include:uninterpreted
(u
)interpreted
(i
)inline
(in
)
-
-v, --verification <METHOD>
: Specify the verification method. This option is required for theunderconstrained_circuit
type. Available methods include:specific
(s
)random
(r
)
-
-i, --iterations <COUNT>
: Specify the number of iterations for random input verification. This option is only needed if the verification method is set torandom
.
-
Go to "korrekt"
-
Run
cargo test
for the default feature flag (use_zcash_halo2_proofs
).cargo test -- --test-threads=1
For other versions of halo2 run
cargo test
with relevant halo2 version feature flag:cargo test --no-default-features --features use_pse_halo2_proofs -- --test-threads=1 cargo test --no-default-features --features use_axiom_halo2_proofs -- --test-threads=1 cargo test --no-default-features --features use_scroll_halo2_proofs -- --test-threads=1 cargo test --no-default-features --features use_pse_v1_halo2_proofs -- --test-threads=1
- Go to "korrekt"
cargo clippy --all-targets --all-features -- -D warnings
- Go to "korrekt"
cargo fmt --
Part of our benchmarking involves comparing the performance of analyzer version 2 with version 1. To enable this comparison, version 2 supports the exact version of Halo2 that version 1 supports, activated by the use_pse_v1_halo2_proofs
feature flag.
To run the benchmarks successfully, follow these steps:
-
Update Dependency Features: Open the
Cargo.toml
file in thebenchmarks
directory, and update thefeatures
forkorrekt_V2
:korrekt_V2 = { path = "../korrekt", package = "korrekt", features = ["use_pse_v1_halo2_proofs"] }
-
Remove Default Feature: Ensure that there are no default feature flag set for halo2 dependency in the
Cargo.toml
file of thekorrekt
.[features] default = [] use_zcash_halo2_proofs = ["zcash_halo2_proofs"] use_pse_halo2_proofs = ["pse_halo2_proofs"] use_axiom_halo2_proofs = ["axiom_halo2_proofs"] use_scroll_halo2_proofs = ["scroll_halo2_proofs"] use_pse_v1_halo2_proofs = ["pse_v1_halo2_proofs"]
-
Activate Relevant Patch: In the
Cargo.toml
file of thekorrekt
, ensure the relevant patch is active.[patch."https://github.com/privacy-scaling-explorations/halo2.git"] pse_v1_halo2_proofs = { git = "https://github.com/Analyzable-Halo2/v1-halo2.git", package = "halo2_proofs"}
Once you've made these updates, navigate to the benchmarks directory and for all available benchmarks run:
cargo bench
Multiple benchmarks are available:
- benchmark_bit_decomp
- benchmark_fibo_v1
- benchmark_fibo_v2
For running a specific benchmark run:
cargo bench --bench NAME_OF_BENCHMARK
Replace NAME_OF_BENCHMARK
with one of the available benchmarks.
When constructing a Halo2 relation, it consists of:
- Gates: a "small" number of (parameterized) constraints between cells.
- Regions: a logical collection of cells with a set of enabled gates (as indicated by the "selectors").
Calling the Halo2 "Gates" is kind of a misnomer, for multiple reasons:
Halo2 "gates" are very powerful: they can enforce any number of arbitrary non-deterministic relations. For instance, the following can be enforced by a single Halo2 gate:
a * b * c != 0
Using the polynomial:
f(a,b,c,d) := (a * b * c) * d - 1
Which has an assignment for d
st. f(a,b,c,d) = 0
iff a * b * c != 0
.
Note that the "gate" above has no "output wires".
Note that d
is not really "an input": it is part of the witness, but in the example above, it cannot be the output of another gate or part of the statement: it's a "gate hint".
When describing a "circuit" you can usually wire any output to any input. This is also possible in Halo2, indeed, the original PlonK paper describes a "universal gate" and a permutation check which enables this (in Halo2 this corresponds to "enabling equality" on the 3 input/output columns). However, often in Plonkish arithmetization the layout is intentionally restricted: allowing some subset of the wires (columns) to have arbitrary wiring and restricting the rest to accessing other cells defined only locally. This is done for efficiency. An example of when this is useful is the repeated application of a function:
y = f(f(f(x))
Which can be described as:
z1 = f(x)
z2 = f(z1)
y = f(z2)
Note that every application of "f" only accesses the output from the previous application. Defining a "gate" implementing "f" taking as "input" the "output register" of the previous row, enables computing repeated applications of "f" without wiring checks. When "f" is, for instance, the round function of a hash function, a single application of "f" is never used, instead large numbers of consecutive rows will implement the full call to the compression function.
As you can probably see there is ample opportunity to screw this up, e.g.
- Accidentally choosing the wrong offset when defining/using a gate.
- Forgetting to enable a selector, or enabling the wrong selector.
These pit-falls will lead to soundness (not completeness) issues: the proof will still generate and will still be valid. This problem is much more pronounced with Halo than previous systems e.g. bellman, since witness generation (completeness) is completely independent of constraints (soundness).
As outlined above, Halo2 first defines a number of "gates" (which are enabled by selectors), each such "gate" consists of one/more polynomials which can be enforced over regions. Korrekt works by collecting all the gates and regions using a custom implementation (AnalyticLayouter
of the Layouter
trait, which normally is responsible for "place-and-route" (similar to the role of PnR in HDLs is responsible for mapping the regions to rows to minimize the number of required rows to enforce the constraints: essentially it solves a packing problem).
In our case, the Layouter
will simply record the details of every region.
Since we never need to actually generate a proof the actual PnR is not needed.
At this point we have for every region:
- The set of enabled selectors.
- The assigned cells (but with dummy values)
And the gates:
- A set of polynomials for each gate.
If the "circuit" is satisfied, then every polynomial of every gate should vanish over every region: for gates which are not "enabled" the polynomial is 0 * g(<witness>)
, since the "selector" variable is set to 0, i.e. the gate polynomial is:
f(<witness>, selector) = selector * g(<witness>)
However, since we do not have a witness we can't evaluate the gate polynomials (also, doing so would always yield 0).
What we do have is the selectors and constants which enables us to abstractly evaluate every polynomial of every gate in every region for concrete values of selector and constant free variables.
An example is in order:
Suppose we have the following polynomial:
f(s,a,b,C) := s * (C * a - b)
The variables have the following interpretations:
s
is the "selector" (determining if the "gate" is enabled), if it is 0 then the polynomial is always 0.a
is the "input" of the gate.b
is the "output" of the gate.C
is a parameter used to configure the gate: a constant in the circuit.
The "gate" "computes" the following relation: b = C * a
i.e. it is a "multiplication by constant" gate.
After running synthesis with the AnalyticalLayouer
we have assignments for s
and C
(but not for a
and b
),
as such we cannot fully evaluate f
but we can determine if it is identically zero, i.e. zero for every a
and b
.
We could so so by enumerating assignments for a
and b
, which would be slow and accurate, by using a SAT solver, which would be much faster and accurate, or as presently done using abstract interpretation, which is blazingly fast at the cost of accuracy i.e. may yields false negatives:
may return that f
is not identically zero, when in fact it is.
We introduce the following type:
pub enum AbsResult {
Variable,
NonZero,
Zero,
}
Which represents a polynomial which is either:
- Something (probably depending on the witness).
- Definitely not zero (for any witness).
- Definitely zero (for any witness).
To see how to generate this consider the simples possible case of a constant:
pub fn eval_abstract<F: FieldExt>(expr: &Expression<F>, selectors: &HashSet<Selector>) -> AbsResult {
match expr {
Expression::Constant(v) => if v.is_zero().into() { AbsResult::Zero } else { AbsResult::NonZero },
The function of the code is pretty self-explanatory. We can do a similar thing for the selectors:
Expression::Selector(selector) => {
match selectors.contains(selector) {
true => AbsResult::NonZero,
false => AbsResult::Zero
}
}
However for the "advice" (wire assignments), we have to throw up our hands and output "Variable" (meaning it could be anything):
Expression::Advice { .. } => AbsResult::Variable,
We can also calculate with these, e.g. a negation does not affect the zero/non-zero status:
Expression::Negated(expr) => {
let res = eval_abstract(expr, selectors);
return res
}
While a sum operates as follows:
Expression::Sum(left, right) => {
let res1 = eval_abstract(left, selectors);
let res2 = eval_abstract(right, selectors);
match (res1, res2) {
(AbsResult::Variable, _) => AbsResult::Variable, // could be anything
(_, AbsResult::Variable) => AbsResult::Variable, // could be anything
(AbsResult::NonZero, AbsResult::NonZero) => AbsResult::Variable, // could be zero or non-zero
(AbsResult::Zero, AbsResult::Zero) => AbsResult::Zero,
(AbsResult::Zero, AbsResult::NonZero) => AbsResult::NonZero,
(AbsResult::NonZero, AbsResult::Zero) => AbsResult::NonZero,
}
}
And a multiplication operates as follows:
Expression::Product(left, right) => {
let res1 = eval_abstract(left, selectors);
let res2 = eval_abstract(right, selectors);
match (res1, res2) {
(AbsResult::Zero, _) => AbsResult::Zero,
(_, AbsResult::Zero) => AbsResult::Zero,
(AbsResult::NonZero, AbsResult::NonZero) => AbsResult::NonZero,
_ => AbsResult::Variable,
}
}
After this process, we have a result indicating whether a polynomial is: definitely zero (trivially satisfied), definitely non-zero (impossible to satisfy) or variable (depending on the witness). With this simple tool we then proceed to implement a bunch of checks for individual regions described next.
Check that for every gate there exists a region in which it is not identically zero.
Check that for every assigned cell in the region, it occurs in a polynomial which is not identically zero over this region. This means that part of the witness is not constrained -- this is almost certainly a bug.
Check that every column occurs in some polynomial.