1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
|
/*
* Copyright (c) 2016, 2017, 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 <string.h>
#include "jvmti.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
#define TranslateError(err) "JVMTI error"
#define PASSED 0
#define FAILED 2
static const char *EXC_CNAME = "java/lang/Exception";
static const char* MOD_CNAME = "Ljava/lang/Module;";
static jvmtiEnv *jvmti = NULL;
static jint result = PASSED;
static jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved);
JNIEXPORT
jint JNICALL Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
return Agent_Initialize(jvm, options, reserved);
}
JNIEXPORT
jint JNICALL Agent_OnAttach(JavaVM *jvm, char *options, void *reserved) {
return Agent_Initialize(jvm, options, reserved);
}
JNIEXPORT
jint JNICALL JNI_OnLoad(JavaVM *jvm, void *reserved) {
return JNI_VERSION_1_8;
}
static
jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
jint res = JNI_ENV_PTR(jvm)->GetEnv(JNI_ENV_ARG(jvm, (void **) &jvmti),
JVMTI_VERSION_9);
if (res != JNI_OK || jvmti == NULL) {
printf(" Error: wrong result of a valid call to GetEnv!\n");
return JNI_ERR;
}
return JNI_OK;
}
static
void throw_exc(JNIEnv *env, char *msg) {
jclass exc_class = JNI_ENV_PTR(env)->FindClass(JNI_ENV_ARG(env, EXC_CNAME));
jint rt = JNI_OK;
if (exc_class == NULL) {
printf("throw_exc: Error in FindClass(env, %s)\n", EXC_CNAME);
return;
}
rt = JNI_ENV_PTR(env)->ThrowNew(JNI_ENV_ARG(env, exc_class), msg);
if (rt == JNI_ERR) {
printf("throw_exc: Error in JNI ThrowNew(env, %s)\n", msg);
}
}
static
jclass jlM(JNIEnv *env) {
jclass cls = NULL;
cls = JNI_ENV_PTR(env)->FindClass(JNI_ENV_ARG(env, MOD_CNAME));
if (cls == NULL) {
printf(" Error in JNI FindClass: %s\n", MOD_CNAME);
}
return cls;
}
jmethodID
get_method(JNIEnv *env, jclass clazz, const char * name, const char *sig) {
jmethodID method = NULL;
method = JNI_ENV_PTR(env)->GetMethodID(JNI_ENV_ARG(env, clazz), name, sig);
if (method == NULL) {
printf(" Error in JNI GetMethodID %s with signature %s", name, sig);
}
return method;
}
static
jboolean can_module_read(JNIEnv *env, jobject module, jobject to_module) {
static jmethodID mCanRead = NULL;
jboolean res = JNI_FALSE;
if (mCanRead == NULL) {
const char* sign = "(Ljava/lang/Module;)Z";
mCanRead = get_method(env, jlM(env), "canRead", sign);
}
res = JNI_ENV_PTR(env)->CallBooleanMethod(JNI_ENV_ARG(env, module),
mCanRead, to_module);
return res;
}
static
jint check_add_module_reads(JNIEnv *env,
jclass cls,
jobject unnamedModule,
jobject baseModule,
jobject instrModule) {
jvmtiError err = JVMTI_ERROR_NONE;
jboolean can = JNI_FALSE;
// Add an invalid read edge from NULL module
printf("Check #N1:\n");
err = (*jvmti)->AddModuleReads(jvmti, NULL, baseModule);
if (err != JVMTI_ERROR_NULL_POINTER) {
printf("#N1: jvmtiError from AddModuleReads: %d\n", err);
throw_exc(env, "Check #N1: failed to return JVMTI_ERROR_NULL_POINTER for module==NULL");
return FAILED;
}
// Add an invalid read edge to NULL module
printf("Check #N2:\n");
err = (*jvmti)->AddModuleReads(jvmti, baseModule, NULL);
if (err != JVMTI_ERROR_NULL_POINTER) {
printf("#N2: jvmtiError from AddModuleReads: %d\n", err);
throw_exc(env, "Check #N2: failed to return JVMTI_ERROR_NULL_POINTER for to_module==NULL");
return FAILED;
}
// Add an invalid read edge from invalid module (cls)
printf("Check #I1:\n");
err = (*jvmti)->AddModuleReads(jvmti, cls, baseModule);
if (err != JVMTI_ERROR_INVALID_MODULE) {
printf("#I1: jvmtiError from AddModuleReads: %d\n", err);
throw_exc(env, "Check #I1: failed to return JVMTI_ERROR_INVALID_MODULE for module==cls");
return FAILED;
}
// Add an invalid read edge to invalid module (cls)
printf("Check #I2:\n");
err = (*jvmti)->AddModuleReads(jvmti, baseModule, cls);
if (err != JVMTI_ERROR_INVALID_MODULE) {
printf("#I2: jvmtiError from AddModuleReads: %d\n", err);
throw_exc(env, "Check #I2: failed to return JVMTI_ERROR_INVALID_MODULE for to_module==cls");
return FAILED;
}
// Check the edge baseModule->instrModule is absent
printf("Check #C0:\n");
can = can_module_read(env, baseModule, instrModule);
if (can != JNI_FALSE) {
throw_exc(env, "Check #C0: read edge from base to instr is unexpected");
return FAILED;
}
// Add read edge baseModule->instrModule
printf("Check #C1:\n");
err = (*jvmti)->AddModuleReads(jvmti, baseModule, instrModule);
if (err != JVMTI_ERROR_NONE) {
printf("#C1: jvmtiError from AddModuleReads: %d\n", err);
throw_exc(env, "Check #C1: error in add reads from base to instr");
return FAILED;
}
// Check the read edge baseModule->instrModule is present now
printf("Check #C2:\n");
can = can_module_read(env, baseModule, instrModule);
if (can == JNI_FALSE) {
throw_exc(env, "Check #C2: failed to add reads from base to instr");
return FAILED;
}
// Check the read edge baseModule->unnamedModule is absent
printf("Check #C3:\n");
can = can_module_read(env, baseModule, unnamedModule);
if (can != JNI_FALSE) {
throw_exc(env, "Check #C3: got unexpected read edge from base to unnamed");
return FAILED;
}
// Add read edge baseModule->unnamedModule
printf("Check #C4:\n");
err = (*jvmti)->AddModuleReads(jvmti, baseModule, unnamedModule);
if (err != JVMTI_ERROR_NONE) {
printf("#C4: jvmtiError from AddModuleReads: %d\n", err);
throw_exc(env, "Check #C4: failed to ignore adding read edge from base to unnamed");
return FAILED;
}
// Check the read edge baseModule->unnamedModule is present now
printf("Check #C5:\n");
can = can_module_read(env, baseModule, unnamedModule);
if (can == JNI_FALSE) {
throw_exc(env, "Check #C5: did not get expected read edge from base to unnamed");
return FAILED;
}
// Check the read edge unnamedModule->instrModule is absent
printf("Check #C6:\n");
can = can_module_read(env, unnamedModule, instrModule);
if (can == JNI_FALSE) {
throw_exc(env, "Check #C6: did not get expected read edge from unnamed to instr");
return FAILED;
}
// Add read edge unnamedModule->instrModule
printf("Check #C7:\n");
err = (*jvmti)->AddModuleReads(jvmti, unnamedModule, instrModule);
if (err != JVMTI_ERROR_NONE) {
printf("#C7: jvmtiError from AddModuleReads: %d\n", err);
throw_exc(env, "Check #C7: failed to ignore adding read edge from unnamed to instr");
return FAILED;
}
return PASSED;
}
JNIEXPORT jint JNICALL
Java_MyPackage_AddModuleReadsTest_check(JNIEnv *env,
jclass cls,
jobject unnamedModule,
jobject baseModule,
jobject instrModule) {
if (jvmti == NULL) {
throw_exc(env, "JVMTI client was not properly loaded!\n");
return FAILED;
}
printf("\n*** Checks for JVMTI AddModuleReads ***\n\n");
result = check_add_module_reads(env, cls, unnamedModule, baseModule, instrModule);
if (result != PASSED) {
return result;
}
return result;
}
#ifdef __cplusplus
}
#endif
|