From 471ae501b10deda39f5bbb3a7aefa733d794b008 Mon Sep 17 00:00:00 2001 From: dmpierre Date: Tue, 21 May 2024 09:30:37 +0200 Subject: [PATCH] fix: manage already allocated public inputs with a custom mapping --- src/circom/circuit.rs | 103 ++++++++++++++++++++++++++++-------------- 1 file changed, 68 insertions(+), 35 deletions(-) diff --git a/src/circom/circuit.rs b/src/circom/circuit.rs index 17e5d9f..295695c 100644 --- a/src/circom/circuit.rs +++ b/src/circom/circuit.rs @@ -1,17 +1,27 @@ +use std::collections::HashMap; + use ark_ff::PrimeField; use ark_relations::r1cs::{ ConstraintSynthesizer, ConstraintSystemRef, LinearCombination, SynthesisError, Variable, }; -use super::R1CS; - use color_eyre::Result; +use super::R1CS; + +/// `self.public_inputs_indexes` stores already allocated public variables. We assume that: +/// 1. `self.public_inputs_indexes` is sorted in the same order as circom's r1cs public inputs +/// 2. the first element of `self.public_inputs_indexes` is the first element *after* the last non-allocated yet public input +/// example: +/// if circom public values are [1, out1, out2, in1, in2] (where out and in denote public signals only) +/// and `self.public_inputs_indexes` is [Variable(2), Variable(3)] +/// then we will allocate Variable(1), Variable(out1), Variable(out2) and consider that +/// Variable(in1) and Variable(in2) are already allocated as Variable(2), Variable(3) #[derive(Clone, Debug)] pub struct CircomCircuit { pub r1cs: R1CS, pub witness: Option>, - pub inputs_already_allocated: bool, + pub public_inputs_indexes: Vec, } impl CircomCircuit { @@ -31,58 +41,81 @@ impl ConstraintSynthesizer for CircomCircuit { let witness = &self.witness; let wire_mapping = &self.r1cs.wire_mapping; - // Start from 1 because Arkworks implicitly allocates One for the first input - if !self.inputs_already_allocated { - for i in 1..self.r1cs.num_inputs { - cs.new_input_variable(|| { - Ok(match witness { - None => F::from(1u32), - Some(w) => match wire_mapping { - Some(m) => w[m[i]], - None => w[i], - }, - }) - })?; - } + // Since our cs might already have allocated constraints, + // We store a mapping between circom's defined indexes and the newly obtained cs indexes + let mut circom_index_to_cs_index = HashMap::new(); + let n_non_allocated_inputs = self.r1cs.num_inputs - self.public_inputs_indexes.len(); + + // allocate non-allocated inputs and update mapping + // !! today, we allocate everything as witnesses by default for compatibility with sonobe !! + for circom_public_input_index in 0..n_non_allocated_inputs { + circom_index_to_cs_index.insert( + circom_public_input_index, + Variable::Witness(cs.num_witness_variables()), + ); + cs.new_witness_variable(|| { + Ok(match witness { + None => F::from(1u32), + Some(w) => match wire_mapping { + Some(m) => w[m[circom_public_input_index]], + None => w[circom_public_input_index], + }, + }) + })?; + } + + for circom_public_input_index in n_non_allocated_inputs..self.r1cs.num_inputs { + let access_input_index = circom_public_input_index - n_non_allocated_inputs; + circom_index_to_cs_index.insert( + circom_public_input_index, + self.public_inputs_indexes[access_input_index], + ); } for i in 0..self.r1cs.num_aux { + let circom_defined_r1cs_index = i + self.r1cs.num_inputs; + circom_index_to_cs_index.insert( + circom_defined_r1cs_index, + Variable::Witness(cs.num_witness_variables()), + ); cs.new_witness_variable(|| { Ok(match witness { None => F::from(1u32), Some(w) => match wire_mapping { Some(m) => w[m[i + self.r1cs.num_inputs]], - None => w[i + self.r1cs.num_inputs], + None => w[circom_defined_r1cs_index], }, }) })?; } let make_index = |index| { - if index < self.r1cs.num_inputs { - Variable::Instance(index) - } else { - Variable::Witness(index - self.r1cs.num_inputs) - } + let new_index = match circom_index_to_cs_index.get(&index) { + Some(i) => Ok(*i), + None => Err(SynthesisError::AssignmentMissing), + }; + Ok(new_index?) }; + let make_lc = |lc_data: &[(usize, F)]| { - lc_data.iter().fold( + lc_data.iter().try_fold( LinearCombination::::zero(), - |lc: LinearCombination, (index, coeff)| lc + (*coeff, make_index(*index)), + |lc: LinearCombination, (index, coeff)| { + let r1cs_index = make_index(*index); + match r1cs_index { + Ok(r1cs_index) => Ok(lc + (*coeff, r1cs_index)), + Err(e) => Err(e), + } + }, ) }; - let skip = if self.inputs_already_allocated { - self.r1cs.num_inputs - } else { - 0 - }; - for constraint in self.r1cs.constraints.iter().skip(skip) { - cs.enforce_constraint( - make_lc(&constraint.0), - make_lc(&constraint.1), - make_lc(&constraint.2), - )?; + for constraint in self.r1cs.constraints.iter() { + let a = make_lc(&constraint.0)?; + let b = make_lc(&constraint.1)?; + let c = make_lc(&constraint.2)?; + let res = cs.enforce_constraint(a, b, c); + res? } Ok(())