blob: f6b750e43f45332622838ddeb53725e6bf326104 [file] [log] [blame]
/*
* Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <jvmti.h>
#include "agent_common.h"
#include "JVMTITools.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifndef JNI_ENV_ARG
#ifdef __cplusplus
#define JNI_ENV_ARG(x, y) y
#define JNI_ENV_PTR(x) x
#else
#define JNI_ENV_ARG(x, y) x, y
#define JNI_ENV_PTR(x) (*x)
#endif
#endif
#ifndef JNI_ENV_ARG1
#ifdef __cplusplus
#define JNI_ENV_ARG1(x)
#else
#define JNI_ENV_ARG1(x) x
#endif
#endif
#define PASSED 0
#define STATUS_FAILED 2
static jvmtiEnv *jvmti = NULL;
static jint result = PASSED;
static int verbose = 0;
static const char *classSig =
"Lnsk/jvmti/scenarios/jni_interception/JI03/ji03t004a;";
/* the original JNI function table */
static jniNativeInterface *orig_jni_functions = NULL;
/* the redirected JNI function table */
static jniNativeInterface *redir_jni_functions = NULL;
/* number of the redirected JNI function calls */
int allobj_calls = 0;
int newobj_calls = 0;
/** redirected JNI functions **/
jobject JNICALL MyAllocObject(JNIEnv *env, jclass cls) {
allobj_calls++;
if (verbose)
printf("\nMyAllocObject: the function called successfully: number of calls=%d\n",
allobj_calls);
return orig_jni_functions->AllocObject(
JNI_ENV_ARG(env, cls));
}
jobject JNICALL MyNewObjectV(JNIEnv *env, jclass cls, jmethodID ctorId, va_list args) {
newobj_calls++;
if (verbose)
printf("\nMyNewObjectV: the function called successfully: number of calls=%d\n",
newobj_calls);
return orig_jni_functions->NewObjectV(
JNI_ENV_ARG(env, cls), ctorId, args);
}
/*****************************/
void doRedirect(JNIEnv *env) {
jvmtiError err;
if (verbose)
printf("\ndoRedirect: obtaining the JNI function table ...\n");
if ((err = (*jvmti)->GetJNIFunctionTable(jvmti, &orig_jni_functions)) !=
JVMTI_ERROR_NONE) {
result = STATUS_FAILED;
printf("(%s,%d): TEST FAILED: failed to get original JNI function table: %s\n",
__FILE__, __LINE__, TranslateError(err));
JNI_ENV_PTR(env)->FatalError(JNI_ENV_ARG(env,
"failed to get original JNI function table"));
}
if ((err = (*jvmti)->GetJNIFunctionTable(jvmti, &redir_jni_functions)) !=
JVMTI_ERROR_NONE) {
result = STATUS_FAILED;
printf("(%s,%d): TEST FAILED: failed to get redirected JNI function table: %s\n",
__FILE__, __LINE__, TranslateError(err));
JNI_ENV_PTR(env)->FatalError(JNI_ENV_ARG(env,
"failed to get redirected JNI function table"));
}
if (verbose)
printf("doRedirect: the JNI function table obtained successfully\n");
if (verbose)
printf("\ndoRedirect: overwriting the functions AllocObject,NewObjectV ...\n");
redir_jni_functions->AllocObject = MyAllocObject;
redir_jni_functions->NewObjectV = MyNewObjectV;
if ((err = (*jvmti)->SetJNIFunctionTable(jvmti, redir_jni_functions)) !=
JVMTI_ERROR_NONE) {
result = STATUS_FAILED;
printf("(%s,%d): TEST FAILED: failed to set new JNI function table: %s\n",
__FILE__, __LINE__, TranslateError(err));
JNI_ENV_PTR(env)->FatalError(JNI_ENV_ARG(env,
"failed to set new JNI function table"));
}
if (verbose)
printf("\ndoRedirect: the functions are overwritten successfully\n");
}
void doRestore(JNIEnv *env) {
jvmtiError err;
if (verbose)
printf("\ndoRestore: restoring the original JNI function table ...\n");
if ((err = (*jvmti)->SetJNIFunctionTable(jvmti, orig_jni_functions)) !=
JVMTI_ERROR_NONE) {
result = STATUS_FAILED;
printf("(%s,%d): TEST FAILED: failed to restore original JNI function table: %s\n",
__FILE__, __LINE__, TranslateError(err));
JNI_ENV_PTR(env)->FatalError(JNI_ENV_ARG(env,
"failed to restore original JNI function table"));
}
if (verbose)
printf("doRestore: the original JNI function table is restored successfully\n");
}
void doExec(JNIEnv *env, jclass allCls, jmethodID ctorId, const char *msg, ...) {
jobject allObj;
jobject newObj;
va_list args;
va_start(args, msg);
if ((allObj = JNI_ENV_PTR(env)->AllocObject(JNI_ENV_ARG(env, allCls)))
== NULL) {
result = STATUS_FAILED;
printf("(%s,%d): TEST FAILED: failed to call %s AllocObject()\n",
__FILE__, __LINE__, msg);
JNI_ENV_PTR(env)->FatalError(JNI_ENV_ARG(env,
"failed to failed to call AllocObject()"));
}
if (JNI_ENV_PTR(env)->ExceptionOccurred(JNI_ENV_ARG1(env))) {
result = STATUS_FAILED;
printf("(%s,%d): TEST FAILED: exception occured during the call of %s AllocObject()\n",
__FILE__, __LINE__, msg);
JNI_ENV_PTR(env)->ExceptionDescribe(JNI_ENV_ARG1(env));
JNI_ENV_PTR(env)->ExceptionClear(JNI_ENV_ARG1(env));
}
newObj = JNI_ENV_PTR(env)->NewObjectV(JNI_ENV_ARG(env, allCls), ctorId, args);
if (newObj == NULL) {
result = STATUS_FAILED;
printf("(%s,%d): TEST FAILED: failed to call %s NewObjectV()\n",
__FILE__, __LINE__, msg);
JNI_ENV_PTR(env)->FatalError(JNI_ENV_ARG(env,
"failed to failed to call NewObjectV()"));
}
if (JNI_ENV_PTR(env)->ExceptionOccurred(JNI_ENV_ARG1(env))) {
result = STATUS_FAILED;
printf("(%s,%d): TEST FAILED: exception occured during the call of %s AllocObject()\n",
__FILE__, __LINE__, msg);
JNI_ENV_PTR(env)->ExceptionDescribe(JNI_ENV_ARG1(env));
JNI_ENV_PTR(env)->ExceptionClear(JNI_ENV_ARG1(env));
}
va_end(args);
JNI_ENV_PTR(env)->DeleteLocalRef(JNI_ENV_ARG(env, allObj));
JNI_ENV_PTR(env)->DeleteLocalRef(JNI_ENV_ARG(env, newObj));
}
void checkCall(int step, int exAllObjCalls, int exNewObjCalls) {
if (allobj_calls == exAllObjCalls) {
if (verbose)
printf("\nCHECK PASSED: the %s JNI function AllocObject() has been %s:\n\t%d intercepted call(s) as expected\n",
(step==1)?"tested":"original",
(step==1)?"redirected":"restored",
allobj_calls);
}
else {
result = STATUS_FAILED;
printf("\nTEST FAILED: the %s JNI function AllocObject() has not been %s:\t%d intercepted call(s) instead of %d as expected\n\n",
(step==1)?"tested":"original",
(step==1)?"redirected":"restored",
allobj_calls, exAllObjCalls);
}
allobj_calls = 0; /* zeroing an interception counter */
if (newobj_calls == exNewObjCalls) {
if (verbose)
printf("\nCHECK PASSED: the %s JNI function NewObjectV() has been %s:\n\t%d intercepted call(s) as expected\n",
(step==1)?"tested":"original",
(step==1)?"redirected":"restored",
newobj_calls);
}
else {
result = STATUS_FAILED;
printf("\nTEST FAILED: the %s JNI function NewObjectV() has not been %s:\n\t%d intercepted call(s) instead of %d as expected\n",
(step==1)?"tested":"original",
(step==1)?"redirected":"restored",
newobj_calls, exNewObjCalls);
}
newobj_calls = 0; /* zeroing an interception counter */
}
JNIEXPORT jint JNICALL
Java_nsk_jvmti_scenarios_jni_1interception_JI03_ji03t004_check(JNIEnv *env, jobject obj) {
jmethodID ctorId;
jclass objCls;
if (jvmti == NULL) {
printf("(%s,%d): TEST FAILURE: JVMTI client was not properly loaded\n",
__FILE__, __LINE__);
return STATUS_FAILED;
}
if ((objCls = JNI_ENV_PTR(env)->FindClass(JNI_ENV_ARG(env, classSig)))
== NULL) {
printf("(%s,%d): TEST FAILED: failed to call FindClass() for \"%s\"\n",
__FILE__, __LINE__, classSig);
return STATUS_FAILED;
}
if ((ctorId = JNI_ENV_PTR(env)->GetMethodID(
JNI_ENV_ARG(env, objCls), "<init>", "()V"))
== NULL) {
printf("(%s,%d): TEST FAILED: failed to call GetMethodID() for a constructor\n",
__FILE__, __LINE__);
return STATUS_FAILED;
}
/* 1: check the JNI function table interception */
if (verbose)
printf("\na) Checking the JNI function table interception ...\n");
doRedirect(env);
doExec(env, objCls, ctorId, "redirected");
checkCall(1, 1, 1);
/* 2: check the restored JNI function table */
if (verbose)
printf("\nb) Checking the restored JNI function table ...\n");
doRestore(env);
doExec(env, objCls, ctorId, "restored");
checkCall(2, 0, 0);
return result;
}
#ifdef STATIC_BUILD
JNIEXPORT jint JNICALL Agent_OnLoad_ji03t004(JavaVM *jvm, char *options, void *reserved) {
return Agent_Initialize(jvm, options, reserved);
}
JNIEXPORT jint JNICALL Agent_OnAttach_ji03t004(JavaVM *jvm, char *options, void *reserved) {
return Agent_Initialize(jvm, options, reserved);
}
JNIEXPORT jint JNI_OnLoad_ji03t004(JavaVM *jvm, char *options, void *reserved) {
return JNI_VERSION_1_8;
}
#endif
jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
jint res;
if (options != NULL && strcmp(options, "-verbose") == 0)
verbose = 1;
if (verbose)
printf("verbose mode on\n");
res = JNI_ENV_PTR(jvm)->
GetEnv(JNI_ENV_ARG(jvm, (void **) &jvmti), JVMTI_VERSION_1_1);
if (res != JNI_OK || jvmti == NULL) {
printf("(%s,%d): Failed to call GetEnv\n", __FILE__, __LINE__);
return JNI_ERR;
}
return JNI_OK;
}
#ifdef __cplusplus
}
#endif