use crate::allocator::{Allocator, NodePtr};
use crate::cost::{check_cost, Cost};
use crate::node::Node;
use crate::op_utils::{
arg_count, atom, check_arg_count, int_atom, mod_group_order, new_atom_and_cost,
number_to_scalar, MALLOC_COST_PER_BYTE,
};
use crate::reduction::{EvalErr, Reduction, Response};
use bls12_381::hash_to_curve::{ExpandMsgXmd, HashToCurve};
use bls12_381::{multi_miller_loop, G1Affine, G1Projective, G2Affine, G2Prepared, G2Projective};
use group::Group;
use std::ops::Neg;
const BLS_G1_SUBTRACT_BASE_COST: Cost = 101094;
const BLS_G1_SUBTRACT_COST_PER_ARG: Cost = 1343980;
const BLS_G1_MULTIPLY_BASE_COST: Cost = 705500;
const BLS_G1_MULTIPLY_COST_PER_BYTE: Cost = 10;
const BLS_G1_NEGATE_BASE_COST: Cost = 1396 - 480;
const BLS_G2_ADD_BASE_COST: Cost = 80000;
const BLS_G2_ADD_COST_PER_ARG: Cost = 1950000;
const BLS_G2_SUBTRACT_BASE_COST: Cost = 80000;
const BLS_G2_SUBTRACT_COST_PER_ARG: Cost = 1950000;
const BLS_G2_MULTIPLY_BASE_COST: Cost = 2100000;
const BLS_G2_MULTIPLY_COST_PER_BYTE: Cost = 5;
const BLS_G2_NEGATE_BASE_COST: Cost = 2164 - 960;
const BLS_MAP_TO_G1_BASE_COST: Cost = 195000;
const BLS_MAP_TO_G1_COST_PER_BYTE: Cost = 4;
const BLS_MAP_TO_G1_COST_PER_DST_BYTE: Cost = 4;
const BLS_MAP_TO_G2_BASE_COST: Cost = 815000;
const BLS_MAP_TO_G2_COST_PER_BYTE: Cost = 4;
const BLS_MAP_TO_G2_COST_PER_DST_BYTE: Cost = 4;
const BLS_PAIRING_BASE_COST: Cost = 3000000;
const BLS_PAIRING_COST_PER_ARG: Cost = 1200000;
const DST_G2: &[u8; 43] = b"BLS_SIG_BLS12381G2_XMD:SHA-256_SSWU_RO_AUG_";
fn g1_atom(node: Node) -> Result<G1Affine, EvalErr> {
let blob = atom(node.clone(), "G1 atom")?;
if blob.len() != 48 {
return node.err("atom is not G1 size, 48 bytes");
}
match G1Affine::from_compressed(blob.try_into().expect("G1 slice is not 48 bytes")).into() {
Some(point) => Ok(point),
_ => node.err("atom is not a G1 point"),
}
}
fn g2_atom(node: Node) -> Result<G2Affine, EvalErr> {
let blob = atom(node.clone(), "G2 atom")?;
if blob.len() != 96 {
return node.err("atom is not G2 size, 96 bytes");
}
match G2Affine::from_compressed(blob.try_into().expect("G2 slice is not 96 bytes")).into() {
Some(point) => Ok(point),
_ => node.err("atom is not a G2 point"),
}
}
pub fn op_bls_g1_subtract(a: &mut Allocator, input: NodePtr, max_cost: Cost) -> Response {
let args = Node::new(a, input);
let mut cost = BLS_G1_SUBTRACT_BASE_COST;
check_cost(a, cost, max_cost)?;
let mut total: G1Projective = G1Projective::identity();
let mut is_first = true;
for arg in &args {
let point = g1_atom(arg)?;
cost += BLS_G1_SUBTRACT_COST_PER_ARG;
check_cost(a, cost, max_cost)?;
if is_first {
total = G1Projective::from(point);
} else {
total -= point;
};
is_first = false;
}
let total: G1Affine = total.into();
new_atom_and_cost(a, cost, &total.to_compressed())
}
pub fn op_bls_g1_multiply(a: &mut Allocator, input: NodePtr, max_cost: Cost) -> Response {
let args = Node::new(a, input);
check_arg_count(&args, 2, "g1_multiply")?;
let mut cost = BLS_G1_MULTIPLY_BASE_COST;
check_cost(a, cost, max_cost)?;
let mut total = G1Projective::from(g1_atom(args.first()?)?);
let args = args.rest()?;
let (scalar, scalar_len) = int_atom(args.first()?, "g1_multiply")?;
cost += scalar_len as Cost * BLS_G1_MULTIPLY_COST_PER_BYTE;
check_cost(a, cost, max_cost)?;
total *= number_to_scalar(mod_group_order(scalar));
let total: G1Affine = total.into();
new_atom_and_cost(a, cost, &total.to_compressed())
}
pub fn op_bls_g1_negate(a: &mut Allocator, input: NodePtr, _max_cost: Cost) -> Response {
let args = Node::new(a, input);
check_arg_count(&args, 1, "g1_negate")?;
let blob = atom(args.first()?, "G1 atom")?;
if blob.len() != 48 {
return args.first()?.err("atom is not G1 size, 48 bytes");
}
if (blob[0] & 0xe0) == 0xc0 {
Ok(Reduction(
BLS_G1_NEGATE_BASE_COST + 48 * MALLOC_COST_PER_BYTE,
args.first()?.node,
))
} else {
let mut blob: [u8; 48] = blob.try_into().unwrap();
blob[0] ^= 0x20;
new_atom_and_cost(a, BLS_G1_NEGATE_BASE_COST, &blob)
}
}
pub fn op_bls_g2_add(a: &mut Allocator, input: NodePtr, max_cost: Cost) -> Response {
let args = Node::new(a, input);
let mut cost = BLS_G2_ADD_BASE_COST;
check_cost(a, cost, max_cost)?;
let mut total: G2Projective = G2Projective::identity();
for arg in &args {
let point = g2_atom(arg)?;
cost += BLS_G2_ADD_COST_PER_ARG;
check_cost(a, cost, max_cost)?;
total += &point;
}
let total: G2Affine = total.into();
new_atom_and_cost(a, cost, &total.to_compressed())
}
pub fn op_bls_g2_subtract(a: &mut Allocator, input: NodePtr, max_cost: Cost) -> Response {
let args = Node::new(a, input);
let mut cost = BLS_G2_SUBTRACT_BASE_COST;
check_cost(a, cost, max_cost)?;
let mut total: G2Projective = G2Projective::identity();
let mut is_first = true;
for arg in &args {
let point = g2_atom(arg)?;
cost += BLS_G2_SUBTRACT_COST_PER_ARG;
check_cost(a, cost, max_cost)?;
if is_first {
total = G2Projective::from(point);
} else {
total -= point;
};
is_first = false;
}
let total: G2Affine = total.into();
new_atom_and_cost(a, cost, &total.to_compressed())
}
pub fn op_bls_g2_multiply(a: &mut Allocator, input: NodePtr, max_cost: Cost) -> Response {
let args = Node::new(a, input);
check_arg_count(&args, 2, "g2_multiply")?;
let mut cost = BLS_G2_MULTIPLY_BASE_COST;
check_cost(a, cost, max_cost)?;
let mut total = G2Projective::from(g2_atom(args.first()?)?);
let args = args.rest()?;
let (scalar, scalar_len) = int_atom(args.first()?, "g2_multiply")?;
cost += scalar_len as Cost * BLS_G2_MULTIPLY_COST_PER_BYTE;
check_cost(a, cost, max_cost)?;
total *= number_to_scalar(mod_group_order(scalar));
let total: G2Affine = total.into();
new_atom_and_cost(a, cost, &total.to_compressed())
}
pub fn op_bls_g2_negate(a: &mut Allocator, input: NodePtr, _max_cost: Cost) -> Response {
let args = Node::new(a, input);
check_arg_count(&args, 1, "g2_negate")?;
let blob = atom(args.first()?, "G2 atom")?;
if blob.len() != 96 {
return args.first()?.err("atom is not G2 size, 96 bytes");
}
if (blob[0] & 0xe0) == 0xc0 {
Ok(Reduction(
BLS_G2_NEGATE_BASE_COST + 96 * MALLOC_COST_PER_BYTE,
args.first()?.node,
))
} else {
let mut blob: [u8; 96] = blob.try_into().unwrap();
blob[0] ^= 0x20;
new_atom_and_cost(a, BLS_G2_NEGATE_BASE_COST, &blob)
}
}
pub fn op_bls_map_to_g1(a: &mut Allocator, input: NodePtr, max_cost: Cost) -> Response {
let args = Node::new(a, input);
let ac = arg_count(&args, 2);
if !(1..=2).contains(&ac) {
return args.err("g_1_map takes exactly 1 or 2 arguments");
}
let mut cost: Cost = BLS_MAP_TO_G1_BASE_COST;
check_cost(a, cost, max_cost)?;
let msg = atom(args.first()?, "g1_map")?;
let args = args.rest()?;
cost += msg.len() as Cost * BLS_MAP_TO_G1_COST_PER_BYTE;
check_cost(a, cost, max_cost)?;
let dst: &[u8] = if ac == 2 {
atom(args.first()?, "g1_map")?
} else {
b"BLS_SIG_BLS12381G1_XMD:SHA-256_SSWU_RO_AUG_"
};
cost += dst.len() as Cost * BLS_MAP_TO_G1_COST_PER_DST_BYTE;
check_cost(a, cost, max_cost)?;
let point = <G1Projective as HashToCurve<ExpandMsgXmd<sha2::Sha256>>>::hash_to_curve(msg, dst);
new_atom_and_cost(a, cost, &G1Affine::from(point).to_compressed())
}
pub fn op_bls_map_to_g2(a: &mut Allocator, input: NodePtr, max_cost: Cost) -> Response {
let args = Node::new(a, input);
let ac = arg_count(&args, 2);
if !(1..=2).contains(&ac) {
return args.err("g2_map takes exactly 1 or 2 arguments");
}
let mut cost: Cost = BLS_MAP_TO_G2_BASE_COST;
check_cost(a, cost, max_cost)?;
let msg = atom(args.first()?, "g2_map")?;
let args = args.rest()?;
cost += msg.len() as Cost * BLS_MAP_TO_G2_COST_PER_BYTE;
let dst: &[u8] = if ac == 2 {
atom(args.first()?, "g2_map")?
} else {
DST_G2
};
cost += dst.len() as Cost * BLS_MAP_TO_G2_COST_PER_DST_BYTE;
check_cost(a, cost, max_cost)?;
let point = <G2Projective as HashToCurve<ExpandMsgXmd<sha2::Sha256>>>::hash_to_curve(msg, dst);
new_atom_and_cost(a, cost, &G2Affine::from(point).to_compressed())
}
pub fn op_bls_pairing_identity(a: &mut Allocator, input: NodePtr, max_cost: Cost) -> Response {
let mut cost = BLS_PAIRING_BASE_COST;
check_cost(a, cost, max_cost)?;
let mut items = Vec::<(G1Affine, G2Prepared)>::new();
let mut args = Node::new(a, input);
while !args.nullp() {
cost += BLS_PAIRING_COST_PER_ARG;
check_cost(a, cost, max_cost)?;
let g1 = g1_atom(args.first()?)?;
args = args.rest()?;
let g2 = g2_atom(args.first()?)?;
args = args.rest()?;
items.push((g1, G2Prepared::from(g2)));
}
let mut item_refs = Vec::<(&G1Affine, &G2Prepared)>::new();
for (p, q) in &items {
item_refs.push((p, q));
}
let identity: bool = multi_miller_loop(&item_refs)
.final_exponentiation()
.is_identity()
.into();
if !identity {
Node::new(a, input).err("bls_pairing_identity failed")
} else {
Ok(Reduction(cost, a.null()))
}
}
pub fn op_bls_verify(a: &mut Allocator, input: NodePtr, max_cost: Cost) -> Response {
let mut cost = BLS_PAIRING_BASE_COST;
check_cost(a, cost, max_cost)?;
let args = Node::new(a, input);
let signature = g2_atom(args.first()?)?;
let mut args = args.rest()?;
let mut items = Vec::<(G1Affine, G2Prepared)>::new();
while !args.nullp() {
let pk = g1_atom(args.first()?)?;
args = args.rest()?;
let msg = atom(args.first()?, "bls_verify message")?;
args = args.rest()?;
cost += BLS_PAIRING_COST_PER_ARG;
cost += msg.len() as Cost * BLS_MAP_TO_G2_COST_PER_BYTE;
cost += DST_G2.len() as Cost * BLS_MAP_TO_G2_COST_PER_DST_BYTE;
check_cost(a, cost, max_cost)?;
let mut prepended_msg = pk.to_compressed().to_vec();
prepended_msg.extend_from_slice(msg);
let point = <G2Projective as HashToCurve<ExpandMsgXmd<sha2::Sha256>>>::hash_to_curve(
prepended_msg,
DST_G2,
);
items.push((pk, G2Prepared::from(G2Affine::from(point))));
}
items.push((G1Affine::generator().neg(), G2Prepared::from(signature)));
let mut item_refs = Vec::<(&G1Affine, &G2Prepared)>::new();
for (p, q) in &items {
item_refs.push((p, q));
}
let identity: bool = multi_miller_loop(&item_refs)
.final_exponentiation()
.is_identity()
.into();
if !identity {
Node::new(a, input).err("bls_verify failed")
} else {
Ok(Reduction(cost, a.null()))
}
}
#[cfg(test)]
use rstest::rstest;
#[cfg(test)]
fn test_g1(n: &Node) -> EvalErr {
g1_atom(n.clone()).unwrap_err()
}
#[cfg(test)]
fn test_g2(n: &Node) -> EvalErr {
g2_atom(n.clone()).unwrap_err()
}
#[cfg(test)]
type TestFun = fn(&Node<'_>) -> EvalErr;
#[cfg(test)]
#[rstest]
#[case(test_g1, 0, "atom is not G1 size, 48 bytes")]
#[case(test_g1, 3, "atom is not G1 size, 48 bytes")]
#[case(test_g1, 47, "atom is not G1 size, 48 bytes")]
#[case(test_g1, 49, "atom is not G1 size, 48 bytes")]
#[case(test_g1, 48, "atom is not a G1 point")]
#[case(test_g2, 0, "atom is not G2 size, 96 bytes")]
#[case(test_g2, 3, "atom is not G2 size, 96 bytes")]
#[case(test_g2, 95, "atom is not G2 size, 96 bytes")]
#[case(test_g2, 97, "atom is not G2 size, 96 bytes")]
#[case(test_g2, 96, "atom is not a G2 point")]
fn test_point_atom(#[case] fun: TestFun, #[case] size: usize, #[case] expected: &str) {
let mut a = Allocator::new();
let mut buf = Vec::<u8>::new();
buf.resize(size, 0xcc);
let n = a.new_atom(&buf).unwrap();
let r = fun(&Node::new(&mut a, n));
assert_eq!(r.0, n);
assert_eq!(r.1, expected.to_string());
}
#[cfg(test)]
#[rstest]
#[case(test_g1, "G1 atom on list")]
#[case(test_g2, "G2 atom on list")]
fn test_point_atom_pair(#[case] fun: TestFun, #[case] expected: &str) {
let mut a = Allocator::new();
let n = a.new_pair(a.null(), a.one()).unwrap();
let r = fun(&Node::new(&mut a, n));
assert_eq!(r.0, n);
assert_eq!(r.1, expected.to_string());
}
#[cfg(test)]
#[rstest]
#[case("97f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb")]
#[case("a572cbea904d67468808c8eb50a9450c9721db309128012543902d0ac358a62ae28f75bb8f1c7c42c39a8c5529bf0f4e")]
fn test_g1_atom(#[case] atom: &str) {
let mut a = Allocator::new();
let n = a.new_atom(&hex::decode(atom).unwrap()).unwrap();
let g1 = g1_atom(Node::new(&mut a, n)).unwrap();
assert_eq!(hex::encode(g1.to_compressed()), atom);
}
#[cfg(test)]
#[rstest]
#[case("93e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb8")]
#[case("aa4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a053")]
fn test_g2_atom(#[case] atom: &str) {
let mut a = Allocator::new();
let n = a.new_atom(&hex::decode(atom).unwrap()).unwrap();
let g2 = g2_atom(Node::new(&mut a, n)).unwrap();
assert_eq!(hex::encode(g2.to_compressed()), atom);
}