AltBN128AddPrecompiledContract.java
/*
* Copyright ConsenSys AG.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.besu.evm.precompile;
import org.hyperledger.besu.crypto.altbn128.AltBn128Point;
import org.hyperledger.besu.crypto.altbn128.Fq;
import org.hyperledger.besu.evm.frame.ExceptionalHaltReason;
import org.hyperledger.besu.evm.frame.MessageFrame;
import org.hyperledger.besu.evm.gascalculator.GasCalculator;
import org.hyperledger.besu.nativelib.bls12_381.LibEthPairings;
import java.math.BigInteger;
import java.util.Arrays;
import java.util.Optional;
import javax.annotation.Nonnull;
import org.apache.tuweni.bytes.Bytes;
import org.apache.tuweni.bytes.MutableBytes;
/** The AltBN128Add precompiled contract. */
public class AltBN128AddPrecompiledContract extends AbstractAltBnPrecompiledContract {
private static final int PARAMETER_LENGTH = 128;
private final long gasCost;
private AltBN128AddPrecompiledContract(final GasCalculator gasCalculator, final long gasCost) {
super(
"AltBN128Add",
gasCalculator,
LibEthPairings.EIP196_ADD_OPERATION_RAW_VALUE,
PARAMETER_LENGTH);
this.gasCost = gasCost;
}
/**
* Create Byzantium AltBN128Add precompiled contract.
*
* @param gasCalculator the gas calculator
* @return the AltBN128Add precompiled contract
*/
public static AltBN128AddPrecompiledContract byzantium(final GasCalculator gasCalculator) {
return new AltBN128AddPrecompiledContract(gasCalculator, 500L);
}
/**
* Create Istanbul AltBN128Add precompiled contract.
*
* @param gasCalculator the gas calculator
* @return the AltBN128Add precompiled contract
*/
public static AltBN128AddPrecompiledContract istanbul(final GasCalculator gasCalculator) {
return new AltBN128AddPrecompiledContract(gasCalculator, 150L);
}
@Override
public long gasRequirement(final Bytes input) {
return gasCost;
}
@Nonnull
@Override
public PrecompileContractResult computePrecompile(
final Bytes input, @Nonnull final MessageFrame messageFrame) {
if (useNative) {
return computeNative(input, messageFrame);
} else {
return computeDefault(input);
}
}
private static PrecompileContractResult computeDefault(final Bytes input) {
final BigInteger x1 = extractParameter(input, 0, 32);
final BigInteger y1 = extractParameter(input, 32, 32);
final BigInteger x2 = extractParameter(input, 64, 32);
final BigInteger y2 = extractParameter(input, 96, 32);
final AltBn128Point p1 = new AltBn128Point(Fq.create(x1), Fq.create(y1));
final AltBn128Point p2 = new AltBn128Point(Fq.create(x2), Fq.create(y2));
if (!p1.isOnCurve() || !p2.isOnCurve()) {
return PrecompileContractResult.halt(
null, Optional.of(ExceptionalHaltReason.PRECOMPILE_ERROR));
}
final AltBn128Point sum = p1.add(p2);
final Bytes x = sum.getX().toBytes();
final Bytes y = sum.getY().toBytes();
final MutableBytes result = MutableBytes.create(64);
x.copyTo(result, 32 - x.size());
y.copyTo(result, 64 - y.size());
return PrecompileContractResult.success(result.copy());
}
private static BigInteger extractParameter(
final Bytes input, final int offset, final int length) {
if (offset > input.size() || length == 0) {
return BigInteger.ZERO;
}
final byte[] raw = Arrays.copyOfRange(input.toArray(), offset, offset + length);
return new BigInteger(1, raw);
}
}