271 lines
9.0 KiB
C
271 lines
9.0 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "c_kzg_4844_jni.h"
|
|
#include "c_kzg_4844.h"
|
|
|
|
static const char *TRUSTED_SETUP_NOT_LOADED = "Trusted Setup is not loaded.";
|
|
|
|
KZGSettings *settings;
|
|
|
|
void reset_trusted_setup()
|
|
{
|
|
if (settings)
|
|
{
|
|
free_trusted_setup(settings);
|
|
free(settings);
|
|
settings = NULL;
|
|
}
|
|
}
|
|
|
|
void throw_exception(JNIEnv *env, const char *message)
|
|
{
|
|
jclass exception_class = (*env)->FindClass(env, "java/lang/RuntimeException");
|
|
(*env)->ThrowNew(env, exception_class, message);
|
|
}
|
|
|
|
void throw_c_kzg_exception(JNIEnv *env, C_KZG_RET error_code, const char *message)
|
|
{
|
|
jclass exception_class = (*env)->FindClass(env, "ethereum/ckzg4844/CKZGException");
|
|
jstring error_message = (*env)->NewStringUTF(env, message);
|
|
jmethodID exception_init = (*env)->GetMethodID(env, exception_class, "<init>", "(ILjava/lang/String;)V");
|
|
jobject exception = (*env)->NewObject(env, exception_class, exception_init, error_code, error_message);
|
|
(*env)->Throw(env, exception);
|
|
}
|
|
|
|
void throw_invalid_size_exception(JNIEnv *env, const char *prefix, size_t size, size_t expected_size)
|
|
{
|
|
char message[100];
|
|
sprintf(message, "%s Expected %zu bytes but got %zu.", prefix, expected_size, size);
|
|
throw_c_kzg_exception(env, C_KZG_BADARGS, message);
|
|
}
|
|
|
|
JNIEXPORT jint JNICALL Java_ethereum_ckzg4844_CKZG4844JNI_getFieldElementsPerBlob(JNIEnv *env, jclass thisCls)
|
|
{
|
|
return (jint)FIELD_ELEMENTS_PER_BLOB;
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_ethereum_ckzg4844_CKZG4844JNI_loadTrustedSetup__Ljava_lang_String_2(JNIEnv *env, jclass thisCls, jstring file)
|
|
{
|
|
if (settings)
|
|
{
|
|
throw_exception(env, "Trusted Setup is already loaded. Free it before loading a new one.");
|
|
return;
|
|
}
|
|
|
|
settings = malloc(sizeof(KZGSettings));
|
|
if (settings == NULL)
|
|
{
|
|
throw_exception(env, "Failed to allocate memory for the Trusted Setup.");
|
|
return;
|
|
}
|
|
|
|
const char *file_native = (*env)->GetStringUTFChars(env, file, 0);
|
|
|
|
FILE *f = fopen(file_native, "r");
|
|
|
|
if (f == NULL)
|
|
{
|
|
reset_trusted_setup();
|
|
(*env)->ReleaseStringUTFChars(env, file, file_native);
|
|
throw_exception(env, "Couldn't load Trusted Setup. File might not exist or there is a permission issue.");
|
|
return;
|
|
}
|
|
|
|
C_KZG_RET ret = load_trusted_setup_file(settings, f);
|
|
|
|
(*env)->ReleaseStringUTFChars(env, file, file_native);
|
|
fclose(f);
|
|
|
|
if (ret != C_KZG_OK)
|
|
{
|
|
reset_trusted_setup();
|
|
throw_c_kzg_exception(env, ret, "There was an error while loading the Trusted Setup.");
|
|
return;
|
|
}
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_ethereum_ckzg4844_CKZG4844JNI_loadTrustedSetup___3BJ_3BJ(JNIEnv *env, jclass thisCls, jbyteArray g1, jlong g1Count, jbyteArray g2, jlong g2Count)
|
|
{
|
|
if (settings)
|
|
{
|
|
throw_exception(env, "Trusted Setup is already loaded. Free it before loading a new one.");
|
|
return;
|
|
}
|
|
|
|
settings = malloc(sizeof(KZGSettings));
|
|
if (settings == NULL)
|
|
{
|
|
throw_exception(env, "Failed to allocate memory for the Trusted Setup.");
|
|
return;
|
|
}
|
|
|
|
jbyte *g1_native = (*env)->GetByteArrayElements(env, g1, NULL);
|
|
jbyte *g2_native = (*env)->GetByteArrayElements(env, g2, NULL);
|
|
|
|
C_KZG_RET ret = load_trusted_setup(settings, (uint8_t *)g1_native, (size_t)g1Count, (uint8_t *)g2_native, (size_t)g2Count);
|
|
|
|
(*env)->ReleaseByteArrayElements(env, g1, g1_native, JNI_ABORT);
|
|
(*env)->ReleaseByteArrayElements(env, g2, g2_native, JNI_ABORT);
|
|
|
|
if (ret != C_KZG_OK)
|
|
{
|
|
reset_trusted_setup();
|
|
throw_c_kzg_exception(env, ret, "There was an error while loading the Trusted Setup.");
|
|
return;
|
|
}
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_ethereum_ckzg4844_CKZG4844JNI_freeTrustedSetup(JNIEnv *env, jclass thisCls)
|
|
{
|
|
if (settings == NULL)
|
|
{
|
|
throw_exception(env, TRUSTED_SETUP_NOT_LOADED);
|
|
return;
|
|
}
|
|
reset_trusted_setup();
|
|
}
|
|
|
|
JNIEXPORT jbyteArray JNICALL Java_ethereum_ckzg4844_CKZG4844JNI_computeAggregateKzgProof(JNIEnv *env, jclass thisCls, jbyteArray blobs, jlong count)
|
|
{
|
|
if (settings == NULL)
|
|
{
|
|
throw_exception(env, TRUSTED_SETUP_NOT_LOADED);
|
|
return NULL;
|
|
}
|
|
|
|
size_t blobs_size = (size_t)(*env)->GetArrayLength(env, blobs);
|
|
size_t expected_blobs_size = BYTES_PER_BLOB * (size_t)count;
|
|
if (blobs_size != expected_blobs_size)
|
|
{
|
|
throw_invalid_size_exception(env, "Invalid blobs size.", blobs_size, expected_blobs_size);
|
|
return NULL;
|
|
}
|
|
|
|
size_t count_native = (size_t)count;
|
|
jbyte *blobs_native = (*env)->GetByteArrayElements(env, blobs, NULL);
|
|
jbyteArray proof = (*env)->NewByteArray(env, BYTES_PER_PROOF);
|
|
KZGProof *proof_native = (KZGProof *)(uint8_t *)(*env)->GetByteArrayElements(env, proof, NULL);
|
|
|
|
C_KZG_RET ret = compute_aggregate_kzg_proof(proof_native, (const Blob *)blobs_native, count_native, settings);
|
|
|
|
(*env)->ReleaseByteArrayElements(env, blobs, blobs_native, JNI_ABORT);
|
|
(*env)->ReleaseByteArrayElements(env, proof, (jbyte *)proof_native, 0);
|
|
|
|
if (ret != C_KZG_OK)
|
|
{
|
|
throw_c_kzg_exception(env, ret, "There was an error while computing aggregate kzg proof.");
|
|
return NULL;
|
|
}
|
|
|
|
return proof;
|
|
}
|
|
|
|
JNIEXPORT jboolean JNICALL Java_ethereum_ckzg4844_CKZG4844JNI_verifyAggregateKzgProof(JNIEnv *env, jclass thisCls, jbyteArray blobs, jbyteArray commitments, jlong count, jbyteArray proof)
|
|
{
|
|
if (settings == NULL)
|
|
{
|
|
throw_exception(env, TRUSTED_SETUP_NOT_LOADED);
|
|
return 0;
|
|
}
|
|
|
|
size_t count_native = (size_t)count;
|
|
|
|
size_t blobs_size = (size_t)(*env)->GetArrayLength(env, blobs);
|
|
size_t expected_blobs_size = BYTES_PER_BLOB * count_native;
|
|
if (blobs_size != expected_blobs_size)
|
|
{
|
|
throw_invalid_size_exception(env, "Invalid blobs size.", blobs_size, expected_blobs_size);
|
|
return 0;
|
|
}
|
|
|
|
size_t commitments_size = (size_t)(*env)->GetArrayLength(env, commitments);
|
|
size_t expected_commitments_size = BYTES_PER_COMMITMENT * count_native;
|
|
if (commitments_size != expected_commitments_size)
|
|
{
|
|
throw_invalid_size_exception(env, "Invalid commitments size.", commitments_size, expected_commitments_size);
|
|
return 0;
|
|
}
|
|
|
|
KZGProof *proof_native = (KZGProof *)(*env)->GetByteArrayElements(env, proof, NULL);
|
|
KZGCommitment *commitments_native = (KZGCommitment *)(*env)->GetByteArrayElements(env, commitments, NULL);
|
|
jbyte *blobs_native = (*env)->GetByteArrayElements(env, blobs, NULL);
|
|
|
|
bool out;
|
|
C_KZG_RET ret = verify_aggregate_kzg_proof(&out, (const Blob *)blobs_native, commitments_native, count_native, proof_native, settings);
|
|
|
|
(*env)->ReleaseByteArrayElements(env, proof, (jbyte *)proof_native, JNI_ABORT);
|
|
(*env)->ReleaseByteArrayElements(env, commitments, (jbyte *)commitments_native, JNI_ABORT);
|
|
(*env)->ReleaseByteArrayElements(env, blobs, blobs_native, JNI_ABORT);
|
|
|
|
if (ret != C_KZG_OK)
|
|
{
|
|
throw_c_kzg_exception(env, ret, "There was an error while verifying aggregate kzg proof.");
|
|
return 0;
|
|
}
|
|
|
|
return (jboolean)out;
|
|
}
|
|
|
|
JNIEXPORT jbyteArray JNICALL Java_ethereum_ckzg4844_CKZG4844JNI_blobToKzgCommitment(JNIEnv *env, jclass thisCls, jbyteArray blob)
|
|
{
|
|
if (settings == NULL)
|
|
{
|
|
throw_exception(env, TRUSTED_SETUP_NOT_LOADED);
|
|
return NULL;
|
|
}
|
|
|
|
size_t blob_size = (size_t)(*env)->GetArrayLength(env, blob);
|
|
if (blob_size != BYTES_PER_BLOB)
|
|
{
|
|
throw_invalid_size_exception(env, "Invalid blob size.", blob_size, BYTES_PER_BLOB);
|
|
return NULL;
|
|
}
|
|
|
|
jbyte *blob_native = (*env)->GetByteArrayElements(env, blob, NULL);
|
|
jbyteArray commitment = (*env)->NewByteArray(env, BYTES_PER_COMMITMENT);
|
|
KZGCommitment *commitment_native = (KZGCommitment *)(*env)->GetByteArrayElements(env, commitment, NULL);
|
|
|
|
C_KZG_RET ret = blob_to_kzg_commitment(commitment_native, (const Blob *)blob_native, settings);
|
|
|
|
(*env)->ReleaseByteArrayElements(env, blob, blob_native, JNI_ABORT);
|
|
(*env)->ReleaseByteArrayElements(env, commitment, (jbyte *)commitment_native, 0);
|
|
|
|
if (ret != C_KZG_OK)
|
|
{
|
|
throw_c_kzg_exception(env, ret, "There was an error while converting blob to commitment.");
|
|
return NULL;
|
|
}
|
|
|
|
return commitment;
|
|
}
|
|
|
|
JNIEXPORT jboolean JNICALL Java_ethereum_ckzg4844_CKZG4844JNI_verifyKzgProof(JNIEnv *env, jclass thisCls, jbyteArray commitment, jbyteArray z, jbyteArray y, jbyteArray proof)
|
|
{
|
|
if (settings == NULL)
|
|
{
|
|
throw_exception(env, TRUSTED_SETUP_NOT_LOADED);
|
|
return 0;
|
|
}
|
|
|
|
KZGCommitment *commitment_native = (KZGCommitment *)(*env)->GetByteArrayElements(env, commitment, NULL);
|
|
KZGProof *proof_native = (KZGProof *)(*env)->GetByteArrayElements(env, proof, NULL);
|
|
BLSFieldElement *z_native = (BLSFieldElement *)(*env)->GetByteArrayElements(env, z, NULL);
|
|
BLSFieldElement *y_native = (BLSFieldElement *)(*env)->GetByteArrayElements(env, y, NULL);
|
|
|
|
bool out;
|
|
C_KZG_RET ret = verify_kzg_proof(&out, commitment_native, z_native, y_native, proof_native, settings);
|
|
|
|
(*env)->ReleaseByteArrayElements(env, commitment, (jbyte *)commitment_native, JNI_ABORT);
|
|
(*env)->ReleaseByteArrayElements(env, z, (jbyte *)z_native, JNI_ABORT);
|
|
(*env)->ReleaseByteArrayElements(env, y, (jbyte *)y_native, JNI_ABORT);
|
|
(*env)->ReleaseByteArrayElements(env, proof, (jbyte *)proof_native, JNI_ABORT);
|
|
|
|
if (ret != C_KZG_OK)
|
|
{
|
|
throw_c_kzg_exception(env, ret, "There was an error while verifying kzg proof.");
|
|
return 0;
|
|
}
|
|
|
|
return (jboolean)out;
|
|
}
|