我有以下Java代码:
import java.io.IOException;
public class Simple {
public native void initClient(byte[] buffer, int size);
static {
System.loadLibrary("simpleclient");
}
public static void main(String[] args) throws Exception {
Simple client = new Simple();
byte[] buffer = "test".getBytes();
client.initClient(buffer, buffer.length);
}
}
以下C代码:
#include <jni.h>
#include <stdio.h>
JNIEXPORT void JNICALL Java_Simple_initClient
(JNIEnv *env, jobject jobj, jbyteArray jBuffer, int size)
{
unsigned char *buffer = (unsigned char*)malloc(sizeof(unsigned char) * size);
if(buffer == NULL || jBuffer == NULL) return;
(*env)->GetByteArrayRegion(env, jBuffer, 0, size,(jbyte*) buffer );
FILE * metaFile = NULL;
metaFile = fmemopen(buffer, size, "rb");
if(metaFile == NULL) return;
printf("int _flags %d\n", metaFile->_flags);
}
我使用以下方法编译:
gcc -o libsimpleclient.so -shared -fPIC simpleclient.c
javac Simple.java
java -Djava.library.path=. -cp . Simple
在C中的printf调用中使用SIGSEGV时崩溃 - 一次进入。
我检查过缓冲区在崩溃时是否有有效数据并且没有崩溃。