mirror of
https://github.com/arnaucube/sonobe.git
synced 2026-01-08 15:01:30 +01:00
Circom wrapper's helper function (#26)
* r1cs_parser * z vector calculation * test function done * improved * Brushuped * add comment * Added description of test_circuit * found mistake * fixed cargo.toml * Imported ark-circom as crate * improved l in R1CS as the number of public I/O * separate test functions into success/failure and unify variable to pub_io_len * removed bn254 & abstracted to PrimeField, but still some work * add comments and clean up code * move ark-bn254 in dev-dependencies * abstracted test function * fixed github action's error * cargo fmt * remove convert_constraints_bigint_to_scalar function * fixed n_cols * fixed n_cols * Add functionality to compile Circom files in tests * Remove test_circuit.r1cs * Introduce CircomFrontend trait and simplify with CircomWrapper struct * deleted the CircomFrontend * improved * fixed clippy lint checks of github actions * probably fixed github actions error by changing the github yaml * fixed github yaml, fmt, and clippy --------- Co-authored-by: Carlos Pérez <37264926+CPerezz@users.noreply.github.com>
This commit is contained in:
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@@ -49,6 +49,14 @@ jobs:
|
||||
# use the more efficient nextest
|
||||
- uses: taiki-e/install-action@nextest
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
- name: Download Circom
|
||||
run: |
|
||||
mkdir -p $HOME/bin
|
||||
curl -sSfL https://github.com/iden3/circom/releases/download/v2.1.6/circom-linux-amd64 -o $HOME/bin/circom
|
||||
chmod +x $HOME/bin/circom
|
||||
echo "$HOME/bin" >> $GITHUB_PATH
|
||||
- name: Execute compile.sh to generate .r1cs and .wasm from .circom
|
||||
run: bash ./src/frontend/circom/test_folder/compile.sh
|
||||
- name: Build
|
||||
# This build will be reused by nextest,
|
||||
# and also checks (--all-targets) that benches don't bit-rot
|
||||
|
||||
5
.gitignore
vendored
5
.gitignore
vendored
@@ -1,2 +1,5 @@
|
||||
/target
|
||||
Cargo.lock
|
||||
Cargo.lock
|
||||
# Circom generated files
|
||||
/src/frontend/circom/test_folder/test_circuit.r1cs
|
||||
/src/frontend/circom/test_folder/test_circuit_js/
|
||||
@@ -4,25 +4,28 @@ version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
ark-ec = "0.4.2"
|
||||
ark-ec = "^0.4.0"
|
||||
ark-ff = "^0.4.0"
|
||||
ark-poly = "^0.4.0"
|
||||
ark-std = "^0.4.0"
|
||||
ark-crypto-primitives = { version = "^0.4.0", default-features = false, features = ["r1cs", "sponge", "crh"] }
|
||||
ark-relations = { version = "^0.4.0", default-features = false }
|
||||
ark-r1cs-std = { version = "^0.4.0", default-features = false }
|
||||
ark-circom = { git = "https://github.com/gakonst/ark-circom.git" }
|
||||
thiserror = "1.0"
|
||||
rayon = "1.7.0"
|
||||
num-bigint = "0.4"
|
||||
color-eyre = "=0.6.2"
|
||||
|
||||
# tmp imports for espresso's sumcheck
|
||||
ark-serialize = "0.4.2"
|
||||
ark-serialize = "^0.4.0"
|
||||
espresso_subroutines = {git="https://github.com/EspressoSystems/hyperplonk", package="subroutines"}
|
||||
espresso_transcript = {git="https://github.com/EspressoSystems/hyperplonk", package="transcript"}
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
ark-pallas = {version="0.4.0", features=["r1cs"]}
|
||||
ark-vesta = {version="0.4.0"}
|
||||
ark-bn254 = "0.4.0"
|
||||
|
||||
[features]
|
||||
default = ["parallel", "nova", "hypernova"]
|
||||
|
||||
226
src/frontend/circom/mod.rs
Normal file
226
src/frontend/circom/mod.rs
Normal file
@@ -0,0 +1,226 @@
|
||||
use std::{error::Error, fs::File, io::BufReader, marker::PhantomData, path::PathBuf};
|
||||
|
||||
use color_eyre::Result;
|
||||
use num_bigint::BigInt;
|
||||
|
||||
use ark_circom::{circom::r1cs_reader, WitnessCalculator};
|
||||
use ark_ec::pairing::Pairing;
|
||||
use ark_ff::PrimeField;
|
||||
|
||||
use crate::ccs::r1cs::R1CS;
|
||||
use crate::utils::vec::SparseMatrix;
|
||||
|
||||
// Define the sparse matrices on PrimeFiled.
|
||||
pub type Constraints<F> = (ConstraintVec<F>, ConstraintVec<F>, ConstraintVec<F>);
|
||||
pub type ConstraintVec<F> = Vec<(usize, F)>;
|
||||
type ExtractedConstraints<F> = (Vec<Constraints<F>>, usize, usize);
|
||||
pub type ExtractedConstraintsResult<F> = Result<ExtractedConstraints<F>, Box<dyn Error>>;
|
||||
pub type R1CSandZ<F> = (R1CS<F>, Vec<F>);
|
||||
|
||||
// A struct that wraps Circom functionalities, allowing for extraction of R1CS and witnesses
|
||||
// based on file paths to Circom's .r1cs and .wasm.
|
||||
pub struct CircomWrapper<E: Pairing> {
|
||||
r1cs_filepath: PathBuf,
|
||||
wasm_filepath: PathBuf,
|
||||
_marker: PhantomData<E>,
|
||||
}
|
||||
|
||||
impl<E: Pairing> CircomWrapper<E> {
|
||||
// Creates a new instance of the CircomWrapper with the file paths.
|
||||
pub fn new(r1cs_filepath: PathBuf, wasm_filepath: PathBuf) -> Self {
|
||||
CircomWrapper {
|
||||
r1cs_filepath,
|
||||
wasm_filepath,
|
||||
_marker: PhantomData,
|
||||
}
|
||||
}
|
||||
|
||||
// Aggregates multiple functions to obtain R1CS and Z as defined in folding-schemes from Circom.
|
||||
pub fn extract_r1cs_and_z(
|
||||
&self,
|
||||
inputs: &[(String, Vec<BigInt>)],
|
||||
) -> Result<R1CSandZ<E::ScalarField>, Box<dyn Error>> {
|
||||
let (constraints, pub_io_len, num_variables) = self.extract_constraints_from_r1cs()?;
|
||||
let witness = self.calculate_witness(inputs)?;
|
||||
self.circom_to_folding_schemes_r1cs_and_z(constraints, &witness, pub_io_len, num_variables)
|
||||
}
|
||||
|
||||
// Extracts constraints from the r1cs file.
|
||||
pub fn extract_constraints_from_r1cs(&self) -> ExtractedConstraintsResult<E::ScalarField>
|
||||
where
|
||||
E: Pairing,
|
||||
{
|
||||
// Opens the .r1cs file and create a reader.
|
||||
let file = File::open(&self.r1cs_filepath)?;
|
||||
let reader = BufReader::new(file);
|
||||
|
||||
// Reads the R1CS file and extract the constraints directly.
|
||||
let r1cs_file = r1cs_reader::R1CSFile::<E>::new(reader)?;
|
||||
let pub_io_len = (r1cs_file.header.n_pub_in + r1cs_file.header.n_pub_out) as usize;
|
||||
let r1cs = r1cs_reader::R1CS::<E>::from(r1cs_file);
|
||||
let num_variables = r1cs.num_variables;
|
||||
let constraints: Vec<Constraints<E::ScalarField>> = r1cs.constraints;
|
||||
|
||||
Ok((constraints, pub_io_len, num_variables))
|
||||
}
|
||||
|
||||
// Converts a set of constraints from ark-circom into R1CS format of folding-schemes.
|
||||
pub fn convert_to_folding_schemes_r1cs<F>(
|
||||
&self,
|
||||
constraints: Vec<Constraints<F>>,
|
||||
pub_io_len: usize,
|
||||
num_variables: usize,
|
||||
) -> R1CS<F>
|
||||
where
|
||||
F: PrimeField,
|
||||
{
|
||||
let mut a_matrix: Vec<Vec<(F, usize)>> = Vec::new();
|
||||
let mut b_matrix: Vec<Vec<(F, usize)>> = Vec::new();
|
||||
let mut c_matrix: Vec<Vec<(F, usize)>> = Vec::new();
|
||||
|
||||
let n_rows = constraints.len();
|
||||
|
||||
for (ai, bi, ci) in constraints {
|
||||
a_matrix.push(
|
||||
ai.into_iter()
|
||||
.map(|(index, scalar)| (scalar, index))
|
||||
.collect(),
|
||||
);
|
||||
b_matrix.push(
|
||||
bi.into_iter()
|
||||
.map(|(index, scalar)| (scalar, index))
|
||||
.collect(),
|
||||
);
|
||||
c_matrix.push(
|
||||
ci.into_iter()
|
||||
.map(|(index, scalar)| (scalar, index))
|
||||
.collect(),
|
||||
);
|
||||
}
|
||||
|
||||
let l = pub_io_len;
|
||||
let n_cols = num_variables;
|
||||
|
||||
let A = SparseMatrix {
|
||||
n_rows,
|
||||
n_cols,
|
||||
coeffs: a_matrix,
|
||||
};
|
||||
let B = SparseMatrix {
|
||||
n_rows,
|
||||
n_cols,
|
||||
coeffs: b_matrix,
|
||||
};
|
||||
let C = SparseMatrix {
|
||||
n_rows,
|
||||
n_cols,
|
||||
coeffs: c_matrix,
|
||||
};
|
||||
|
||||
R1CS::<F> { l, A, B, C }
|
||||
}
|
||||
|
||||
// Calculates the witness given the Wasm filepath and inputs.
|
||||
pub fn calculate_witness(&self, inputs: &[(String, Vec<BigInt>)]) -> Result<Vec<BigInt>> {
|
||||
let mut calculator = WitnessCalculator::new(&self.wasm_filepath)?;
|
||||
calculator.calculate_witness(inputs.iter().cloned(), true)
|
||||
}
|
||||
|
||||
// Converts a num_bigint input to `PrimeField`'s BigInt.
|
||||
pub fn num_bigint_to_ark_bigint<F: PrimeField>(
|
||||
&self,
|
||||
value: &BigInt,
|
||||
) -> Result<F::BigInt, Box<dyn Error>> {
|
||||
let big_uint = value
|
||||
.to_biguint()
|
||||
.ok_or_else(|| "BigInt is negative".to_string())?;
|
||||
F::BigInt::try_from(big_uint).map_err(|_| "BigInt conversion failed".to_string().into())
|
||||
}
|
||||
|
||||
// Converts R1CS constraints and witness from ark-circom format
|
||||
// into folding-schemes R1CS and z format.
|
||||
pub fn circom_to_folding_schemes_r1cs_and_z<F>(
|
||||
&self,
|
||||
constraints: Vec<Constraints<F>>,
|
||||
witness: &[BigInt],
|
||||
pub_io_len: usize,
|
||||
num_variables: usize,
|
||||
) -> Result<(R1CS<F>, Vec<F>), Box<dyn Error>>
|
||||
where
|
||||
F: PrimeField,
|
||||
{
|
||||
let folding_schemes_r1cs =
|
||||
self.convert_to_folding_schemes_r1cs(constraints, pub_io_len, num_variables);
|
||||
|
||||
let z: Result<Vec<F>, _> = witness
|
||||
.iter()
|
||||
.map(|big_int| {
|
||||
let ark_big_int = self.num_bigint_to_ark_bigint::<F>(big_int)?;
|
||||
F::from_bigint(ark_big_int).ok_or_else(|| {
|
||||
"Failed to convert bigint to field element"
|
||||
.to_string()
|
||||
.into()
|
||||
})
|
||||
})
|
||||
.collect();
|
||||
|
||||
z.map(|z| (folding_schemes_r1cs, z))
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use crate::frontend::circom::CircomWrapper;
|
||||
use ark_bn254::Bn254;
|
||||
use num_bigint::BigInt;
|
||||
use std::env;
|
||||
|
||||
/*
|
||||
test_circuit represents 35 = x^3 + x + 5 in test_folder/test_circuit.circom.
|
||||
In the test_circom_conversion_success function, x is assigned the value 3, which satisfies the R1CS correctly.
|
||||
In the test_circom_conversion_failure function, x is assigned the value 6, which doesn't satisfy the R1CS.
|
||||
*/
|
||||
|
||||
/*
|
||||
To generate .r1cs and .wasm files, run the below command in the terminal.
|
||||
bash ./src/frontend/circom/test_folder/compile.sh
|
||||
*/
|
||||
|
||||
fn test_circom_conversion_logic(expect_success: bool, inputs: Vec<(String, Vec<BigInt>)>) {
|
||||
let current_dir = env::current_dir().unwrap();
|
||||
let base_path = current_dir.join("src/frontend/circom/test_folder");
|
||||
|
||||
let r1cs_filepath = base_path.join("test_circuit.r1cs");
|
||||
let wasm_filepath = base_path.join("test_circuit_js/test_circuit.wasm");
|
||||
|
||||
assert!(r1cs_filepath.exists());
|
||||
assert!(wasm_filepath.exists());
|
||||
|
||||
let circom_wrapper = CircomWrapper::<Bn254>::new(r1cs_filepath, wasm_filepath);
|
||||
|
||||
let (r1cs, z) = circom_wrapper
|
||||
.extract_r1cs_and_z(&inputs)
|
||||
.expect("Error processing input");
|
||||
|
||||
// Checks the relationship of R1CS.
|
||||
let check_result = std::panic::catch_unwind(|| {
|
||||
r1cs.check_relation(&z).unwrap();
|
||||
});
|
||||
|
||||
match (expect_success, check_result) {
|
||||
(true, Ok(_)) => {}
|
||||
(false, Err(_)) => {}
|
||||
(true, Err(_)) => panic!("Expected success but got a failure."),
|
||||
(false, Ok(_)) => panic!("Expected a failure but got success."),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_circom_conversion() {
|
||||
// expect it to pass for correct inputs.
|
||||
test_circom_conversion_logic(true, vec![("step_in".to_string(), vec![BigInt::from(3)])]);
|
||||
|
||||
// expect it to fail for incorrect inputs.
|
||||
test_circom_conversion_logic(false, vec![("step_in".to_string(), vec![BigInt::from(7)])]);
|
||||
}
|
||||
}
|
||||
2
src/frontend/circom/test_folder/compile.sh
Normal file
2
src/frontend/circom/test_folder/compile.sh
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
circom ./src/frontend/circom/test_folder/test_circuit.circom --r1cs --wasm --prime bn128 --output ./src/frontend/circom/test_folder/
|
||||
13
src/frontend/circom/test_folder/test_circuit.circom
Normal file
13
src/frontend/circom/test_folder/test_circuit.circom
Normal file
@@ -0,0 +1,13 @@
|
||||
pragma circom 2.0.3;
|
||||
|
||||
template Example () {
|
||||
signal input step_in;
|
||||
signal output step_out;
|
||||
signal temp;
|
||||
|
||||
temp <== step_in * step_in;
|
||||
step_out <== temp * step_in + step_in + 5;
|
||||
step_out === 35;
|
||||
}
|
||||
|
||||
component main = Example();
|
||||
@@ -1 +1,2 @@
|
||||
pub mod arkworks;
|
||||
pub mod circom;
|
||||
|
||||
Reference in New Issue
Block a user