//! Utility gadgets. use ff::PrimeFieldBits; use halo2::{ circuit::{AssignedCell, Cell, Layouter}, plonk::{Advice, Column, Error, Expression}, }; use pasta_curves::arithmetic::FieldExt; use std::{array, ops::Range}; pub(crate) mod cond_swap; pub(crate) mod decompose_running_sum; pub(crate) mod lookup_range_check; /// Trait for a variable in the circuit. pub trait Var: Clone + std::fmt::Debug + From> { /// The cell at which this variable was allocated. fn cell(&self) -> Cell; /// The value allocated to this variable. fn value(&self) -> Option; } impl Var for AssignedCell { fn cell(&self) -> Cell { self.cell() } fn value(&self) -> Option { self.value().cloned() } } /// Trait for utilities used across circuits. pub trait UtilitiesInstructions { /// Variable in the circuit. type Var: Var; /// Load a variable. fn load_private( &self, mut layouter: impl Layouter, column: Column, value: Option, ) -> Result { layouter.assign_region( || "load private", |mut region| { region .assign_advice( || "load private", column, 0, || value.ok_or(Error::Synthesis), ) .map(Self::Var::from) }, ) } } pub(crate) fn transpose_option_array( option_array: Option<[T; LEN]>, ) -> [Option; LEN] { let mut ret = [None; LEN]; if let Some(arr) = option_array { for (entry, value) in ret.iter_mut().zip(array::IntoIter::new(arr)) { *entry = Some(value); } } ret } /// Checks that an expresssion is either 1 or 0. pub fn bool_check(value: Expression) -> Expression { range_check(value, 2) } /// If `a` then `b`, else `c`. Returns (a * b) + (1 - a) * c. /// /// `a` must be a boolean-constrained expression. pub fn ternary(a: Expression, b: Expression, c: Expression) -> Expression { let one_minus_a = Expression::Constant(F::one()) - a.clone(); a * b + one_minus_a * c } /// Takes a specified subsequence of the little-endian bit representation of a field element. /// The bits are numbered from 0 for the LSB. pub fn bitrange_subset(field_elem: &F, bitrange: Range) -> F { // We can allow a subsequence of length NUM_BITS, because // field_elem.to_le_bits() returns canonical bitstrings. assert!(bitrange.end <= F::NUM_BITS as usize); field_elem .to_le_bits() .iter() .by_val() .skip(bitrange.start) .take(bitrange.end - bitrange.start) .rev() .fold(F::zero(), |acc, bit| { if bit { acc.double() + F::one() } else { acc.double() } }) } /// Check that an expression is in the small range [0..range), /// i.e. 0 ≤ word < range. pub fn range_check(word: Expression, range: usize) -> Expression { (1..range).fold(word.clone(), |acc, i| { acc * (Expression::Constant(F::from(i as u64)) - word.clone()) }) } #[cfg(test)] mod tests { use super::*; use bigint::U256; use ff::PrimeField; use halo2::{ circuit::{Layouter, SimpleFloorPlanner}, dev::{FailureLocation, MockProver, VerifyFailure}, plonk::{Any, Circuit, ConstraintSystem, Error, Selector}, poly::Rotation, }; use pasta_curves::pallas; #[test] fn test_range_check() { struct MyCircuit(u8); impl UtilitiesInstructions for MyCircuit { type Var = AssignedCell; } #[derive(Clone)] struct Config { selector: Selector, advice: Column, } impl Circuit for MyCircuit { type Config = Config; type FloorPlanner = SimpleFloorPlanner; fn without_witnesses(&self) -> Self { MyCircuit(self.0) } fn configure(meta: &mut ConstraintSystem) -> Self::Config { let selector = meta.selector(); let advice = meta.advice_column(); meta.create_gate("range check", |meta| { let selector = meta.query_selector(selector); let advice = meta.query_advice(advice, Rotation::cur()); vec![selector * range_check(advice, RANGE)] }); Config { selector, advice } } fn synthesize( &self, config: Self::Config, mut layouter: impl Layouter, ) -> Result<(), Error> { layouter.assign_region( || "range constrain", |mut region| { config.selector.enable(&mut region, 0)?; region.assign_advice( || format!("witness {}", self.0), config.advice, 0, || Ok(pallas::Base::from(self.0 as u64)), )?; Ok(()) }, ) } } for i in 0..8 { let circuit: MyCircuit<8> = MyCircuit(i); let prover = MockProver::::run(3, &circuit, vec![]).unwrap(); assert_eq!(prover.verify(), Ok(())); } { let circuit: MyCircuit<8> = MyCircuit(8); let prover = MockProver::::run(3, &circuit, vec![]).unwrap(); assert_eq!( prover.verify(), Err(vec![VerifyFailure::ConstraintNotSatisfied { constraint: ((0, "range check").into(), 0, "").into(), location: FailureLocation::InRegion { region: (0, "range constrain").into(), offset: 0, }, cell_values: vec![(((Any::Advice, 0).into(), 0).into(), "0x8".to_string())], }]) ); } } #[test] fn test_bitrange_subset() { // Subset full range. { let field_elem = pallas::Base::rand(); let bitrange = 0..(pallas::Base::NUM_BITS as usize); let subset = bitrange_subset(&field_elem, bitrange); assert_eq!(field_elem, subset); } // Subset zero bits { let field_elem = pallas::Base::rand(); let bitrange = 0..0; let subset = bitrange_subset(&field_elem, bitrange); assert_eq!(pallas::Base::zero(), subset); } // Closure to decompose field element into pieces using consecutive ranges, // and check that we recover the original. let decompose = |field_elem: pallas::Base, ranges: &[Range]| { assert_eq!( ranges.iter().map(|range| range.len()).sum::(), pallas::Base::NUM_BITS as usize ); assert_eq!(ranges[0].start, 0); assert_eq!(ranges.last().unwrap().end, pallas::Base::NUM_BITS as usize); // Check ranges are contiguous #[allow(unused_assignments)] { let mut ranges = ranges.iter(); let mut range = ranges.next().unwrap(); if let Some(next_range) = ranges.next() { assert_eq!(range.end, next_range.start); range = next_range; } } let subsets = ranges .iter() .map(|range| bitrange_subset(&field_elem, range.clone())) .collect::>(); let mut sum = subsets[0]; let mut num_bits = 0; for (idx, subset) in subsets.iter().skip(1).enumerate() { // 2^num_bits let range_shift: [u8; 32] = { num_bits += ranges[idx].len(); let mut range_shift = [0u8; 32]; U256([2, 0, 0, 0]) .pow(U256([num_bits as u64, 0, 0, 0])) .to_little_endian(&mut range_shift); range_shift }; sum += subset * pallas::Base::from_repr(range_shift).unwrap(); } assert_eq!(field_elem, sum); }; decompose(pallas::Base::rand(), &[0..255]); decompose(pallas::Base::rand(), &[0..1, 1..255]); decompose(pallas::Base::rand(), &[0..254, 254..255]); decompose(pallas::Base::rand(), &[0..127, 127..255]); decompose(pallas::Base::rand(), &[0..128, 128..255]); decompose( pallas::Base::rand(), &[0..50, 50..100, 100..150, 150..200, 200..255], ); } }