/* * Copyright (c) 2003, 2020, 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 #include #include #include "jvmti.h" #include "agent_common.h" #include "JVMTITools.h" extern "C" { #define PASSED 0 #define STATUS_FAILED 2 typedef struct { jfieldID fid; char *m_cls; char *m_name; char *m_sig; jlocation loc; char *f_cls; char *f_name; char *f_sig; jboolean is_static; jvalue val; } writable_watch_info; typedef struct { jfieldID fid; const char *m_cls; const char *m_name; const char *m_sig; jlocation loc; const char *f_cls; const char *f_name; const char *f_sig; jboolean is_static; jvalue val; } watch_info; static jvmtiEnv *jvmti; static jvmtiEventCallbacks callbacks; static jvmtiCapabilities caps; static jint result = PASSED; static jboolean printdump = JNI_FALSE; static int eventsExpected = 0; static int eventsCount = 0; static watch_info watches[] = { { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "staticBoolean", "Z", JNI_TRUE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "staticByte", "B", JNI_TRUE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "staticShort", "S", JNI_TRUE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "staticInt", "I", JNI_TRUE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "staticLong", "J", JNI_TRUE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "staticFloat", "F", JNI_TRUE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "staticDouble", "D", JNI_TRUE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "staticChar", "C", JNI_TRUE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "staticObject", "Ljava/lang/Object;", JNI_TRUE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "staticArrInt", "[I", JNI_TRUE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "instanceBoolean", "Z", JNI_FALSE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "instanceByte", "B", JNI_FALSE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "instanceShort", "S", JNI_FALSE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "instanceInt", "I", JNI_FALSE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "instanceLong", "J", JNI_FALSE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "instanceFloat", "F", JNI_FALSE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "instanceDouble", "D", JNI_FALSE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "instanceChar", "C", JNI_FALSE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "instanceObject", "Ljava/lang/Object;", JNI_FALSE, {} }, { NULL, "Lnsk/jvmti/FieldModification/fieldmod002;", "check", "(Ljava/lang/Object;)I", 0, "Lnsk/jvmti/FieldModification/fieldmod002a;", "instanceArrInt", "[I", JNI_FALSE, {} } }; void printValue(jvalue val, char *sig) { switch (*sig) { case 'J': printf("0x%x%08x", (jint)(val.j >> 32), (jint)val.j); break; case 'F': printf("%.3f", (double)val.f); break; case 'D': printf("%f", (double)val.d); break; case 'L': case '[': printf("0x%p", val.l); break; case 'Z': printf("0x%x", val.z); break; case 'B': printf("%d", val.b); break; case 'S': printf("%d", val.s); break; case 'C': printf("0x%x", val.c); break; case 'I': printf("%d", val.i); break; default: printf("0x%x%08x", (jint)(val.j >> 32), (jint)val.j); break; } } int isEqual(JNIEnv *env, char *sig, jvalue v1, jvalue v2) { switch (*sig) { case 'J': return (v1.j == v2.j); case 'F': return (v1.f == v2.f); case 'D': return (v1.d == v2.d); case 'L': case '[': return env->IsSameObject(v1.l, v2.l); case 'Z': return (v1.z == v2.z); case 'B': return (v1.b == v2.b); case 'S': return (v1.s == v2.s); case 'C': return (v1.c == v2.c); case 'I': return (v1.i == v2.i); default: return (1); } } void JNICALL FieldModification(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thr, jmethodID method, jlocation location, jclass field_klass, jobject obj, jfieldID field, char sig, jvalue new_value) { jvmtiError err; jclass cls; writable_watch_info watch; char *generic; size_t i; eventsCount++; if (printdump == JNI_TRUE) { printf(">>> retrieving modification watch info ...\n"); } watch.fid = field; watch.loc = location; watch.is_static = (obj == NULL) ? JNI_TRUE : JNI_FALSE; watch.val = new_value; err = jvmti_env->GetMethodDeclaringClass(method, &cls); if (err != JVMTI_ERROR_NONE) { printf("(GetMethodDeclaringClass) unexpected error: %s (%d)\n", TranslateError(err), err); result = STATUS_FAILED; return; } err = jvmti_env->GetClassSignature(cls, &watch.m_cls, &generic); if (err != JVMTI_ERROR_NONE) { printf("(GetClassSignature) unexpected error: %s (%d)\n", TranslateError(err), err); result = STATUS_FAILED; return; } err = jvmti_env->GetMethodName(method, &watch.m_name, &watch.m_sig, &generic); if (err != JVMTI_ERROR_NONE) { printf("(GetMethodName) unexpected error: %s (%d)\n", TranslateError(err), err); result = STATUS_FAILED; return; } err = jvmti_env->GetClassSignature(field_klass, &watch.f_cls, &generic); if (err != JVMTI_ERROR_NONE) { printf("(GetClassSignature) unexpected error: %s (%d)\n", TranslateError(err), err); result = STATUS_FAILED; return; } err = jvmti_env->GetFieldName(field_klass, field, &watch.f_name, &watch.f_sig, &generic); if (err != JVMTI_ERROR_NONE) { printf("(GetFieldName) unexpected error: %s (%d)\n", TranslateError(err), err); result = STATUS_FAILED; return; } if (printdump == JNI_TRUE) { printf(">>> class: \"%s\"\n", watch.m_cls); printf(">>> method: \"%s%s\"\n", watch.m_name, watch.m_sig); printf(">>> location: 0x%x%08x\n", (jint)(watch.loc >> 32), (jint)watch.loc); printf(">>> field cls: \"%s\"\n", watch.f_cls); printf(">>> field: \"%s:%s\"\n", watch.f_name, watch.f_sig); printf(">>> object: 0x%p\n", obj); printf(">>> new value: "); printValue(watch.val, watch.f_sig); printf("\n"); } for (i = 0; i < sizeof(watches)/sizeof(watch_info); i++) { if (watch.fid == watches[i].fid) { if (watch.m_cls == NULL || strcmp(watch.m_cls, watches[i].m_cls) != 0) { printf("(watch#%" PRIuPTR ") wrong class: \"%s\", expected: \"%s\"\n", i, watch.m_cls, watches[i].m_cls); result = STATUS_FAILED; } if (watch.m_name == NULL || strcmp(watch.m_name, watches[i].m_name) != 0) { printf("(watch#%" PRIuPTR ") wrong method name: \"%s\"", i, watch.m_name); printf(", expected: \"%s\"\n", watches[i].m_name); result = STATUS_FAILED; } if (watch.m_sig == NULL || strcmp(watch.m_sig, watches[i].m_sig) != 0) { printf("(watch#%" PRIuPTR ") wrong method sig: \"%s\"", i, watch.m_sig); printf(", expected: \"%s\"\n", watches[i].m_sig); result = STATUS_FAILED; } if (watch.loc != watches[i].loc) { printf("(watch#%" PRIuPTR ") wrong location: 0x%x%08x", i, (jint)(watch.loc >> 32), (jint)watch.loc); printf(", expected: 0x%x%08x\n", (jint)(watches[i].loc >> 32), (jint)watches[i].loc); result = STATUS_FAILED; } if (watch.f_name == NULL || strcmp(watch.f_name, watches[i].f_name) != 0) { printf("(watch#%" PRIuPTR ") wrong field name: \"%s\"", i, watch.f_name); printf(", expected: \"%s\"\n", watches[i].f_name); result = STATUS_FAILED; } if (watch.f_sig == NULL || strcmp(watch.f_sig, watches[i].f_sig) != 0) { printf("(watch#%" PRIuPTR ") wrong field sig: \"%s\"", i, watch.f_sig); printf(", expected: \"%s\"\n", watches[i].f_sig); result = STATUS_FAILED; } if (watch.is_static != watches[i].is_static) { printf("(watch#%" PRIuPTR ") wrong field type: %s", i, (watch.is_static == JNI_TRUE) ? "static" : "instance"); printf(", expected: %s\n", (watches[i].is_static == JNI_TRUE) ? "static" : "instance"); result = STATUS_FAILED; } if (!isEqual((JNIEnv *)env, watch.f_sig, watch.val, watches[i].val)) { printf("(watch#%" PRIuPTR ") wrong new value: ", i); printValue(watch.val, watch.f_sig); printf(", expected: "); printValue(watches[i].val, watch.f_sig); printf("\n"); result = STATUS_FAILED; } return; } } printf("Unexpected field modification catched: 0x%p\n", watch.fid); result = STATUS_FAILED; } #ifdef STATIC_BUILD JNIEXPORT jint JNICALL Agent_OnLoad_fieldmod002(JavaVM *jvm, char *options, void *reserved) { return Agent_Initialize(jvm, options, reserved); } JNIEXPORT jint JNICALL Agent_OnAttach_fieldmod002(JavaVM *jvm, char *options, void *reserved) { return Agent_Initialize(jvm, options, reserved); } JNIEXPORT jint JNI_OnLoad_fieldmod002(JavaVM *jvm, char *options, void *reserved) { return JNI_VERSION_1_8; } #endif jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) { jvmtiError err; jint res; if (options != NULL && strcmp(options, "printdump") == 0) { printdump = JNI_TRUE; } res = jvm->GetEnv((void **) &jvmti, JVMTI_VERSION_1_1); if (res != JNI_OK || jvmti == NULL) { printf("Wrong result of a valid call to GetEnv!\n"); return JNI_ERR; } err = jvmti->GetPotentialCapabilities(&caps); if (err != JVMTI_ERROR_NONE) { printf("(GetPotentialCapabilities) unexpected error: %s (%d)\n", TranslateError(err), err); return JNI_ERR; } err = jvmti->AddCapabilities(&caps); if (err != JVMTI_ERROR_NONE) { printf("(AddCapabilities) unexpected error: %s (%d)\n", TranslateError(err), err); return JNI_ERR; } err = jvmti->GetCapabilities(&caps); if (err != JVMTI_ERROR_NONE) { printf("(GetCapabilities) unexpected error: %s (%d)\n", TranslateError(err), err); return JNI_ERR; } if (caps.can_generate_field_modification_events) { callbacks.FieldModification = &FieldModification; err = jvmti->SetEventCallbacks(&callbacks, sizeof(callbacks)); if (err != JVMTI_ERROR_NONE) { printf("(SetEventCallbacks) unexpected error: %s (%d)\n", TranslateError(err), err); return JNI_ERR; } err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_FIELD_MODIFICATION, NULL); if (err != JVMTI_ERROR_NONE) { printf("Failed to enable JVMTI_EVENT_FIELD_MODIFICATION: %s (%d)\n", TranslateError(err), err); return JNI_ERR; } } else { printf("Warning: FieldModification watch is not implemented\n"); } return JNI_OK; } JNIEXPORT void JNICALL Java_nsk_jvmti_FieldModification_fieldmod002_getReady(JNIEnv *env, jclass clz) { jvmtiError err; jclass cls; jmethodID ctor; jintArray arr1, arr2; jobject obj1, obj2; size_t i; if (!caps.can_generate_field_modification_events) { return; } if (printdump == JNI_TRUE) { printf(">>> setting field modification watches ...\n"); } cls = env->FindClass("nsk/jvmti/FieldModification/fieldmod002a"); if (cls == NULL) { printf("Cannot find fieldmod001a class!\n"); result = STATUS_FAILED; return; } for (i = 0; i < sizeof(watches)/sizeof(watch_info); i++) { if (watches[i].is_static == JNI_TRUE) { watches[i].fid = env->GetStaticFieldID( cls, watches[i].f_name, watches[i].f_sig); } else { watches[i].fid = env->GetFieldID( cls, watches[i].f_name, watches[i].f_sig); } if (watches[i].fid == NULL) { printf("Cannot get field ID for \"%s:%s\"\n", watches[i].f_name, watches[i].f_sig); result = STATUS_FAILED; return; } err = jvmti->SetFieldModificationWatch(cls, watches[i].fid); if (err == JVMTI_ERROR_NONE) { eventsExpected++; } else { printf("(SetFieldModificationWatch#%" PRIuPTR ") unexpected error: %s (%d)\n", i, TranslateError(err), err); result = STATUS_FAILED; } } ctor = env->GetMethodID(cls, "", "()V"); obj1 = env->NewGlobalRef(env->NewObject(cls, ctor)); obj2 = env->NewGlobalRef(env->NewObject(cls, ctor)); arr1 = (jintArray) env->NewGlobalRef(env->NewIntArray((jsize) 1)); arr2 = (jintArray) env->NewGlobalRef(env->NewIntArray((jsize) 1)); watches[0].val.z = JNI_TRUE; watches[1].val.b = 1; watches[2].val.s = 2; watches[3].val.i = 3; watches[4].val.j = 4; watches[5].val.f = 0.5F; watches[6].val.d = 0.6; watches[7].val.c = 0x7; watches[8].val.l = obj1; watches[9].val.l = arr1; watches[10].val.z = JNI_FALSE; watches[11].val.b = 10; watches[12].val.s = 20; watches[13].val.i = 30; watches[14].val.j = 40; watches[15].val.f = 0.05F; watches[16].val.d = 0.06; watches[17].val.c = 0x70; watches[18].val.l = obj2; watches[19].val.l = arr2; if (printdump == JNI_TRUE) { printf(">>> ... done\n"); } } JNIEXPORT jint JNICALL Java_nsk_jvmti_FieldModification_fieldmod002_check(JNIEnv *env, jclass clz, jobject obj) { jclass cls; if (!caps.can_generate_field_modification_events) { return PASSED; } if (printdump == JNI_TRUE) { printf(">>> modifying fields ...\n"); } cls = env->FindClass("nsk/jvmti/FieldModification/fieldmod002a"); if (cls == NULL) { printf("Cannot find fieldmod001a class!\n"); return STATUS_FAILED; } env->SetStaticBooleanField(cls, watches[0].fid, watches[0].val.z); env->SetStaticByteField(cls, watches[1].fid, watches[1].val.b); env->SetStaticShortField(cls, watches[2].fid, watches[2].val.s); env->SetStaticIntField(cls, watches[3].fid, watches[3].val.i); env->SetStaticLongField(cls, watches[4].fid, watches[4].val.j); env->SetStaticFloatField(cls, watches[5].fid, watches[5].val.f); env->SetStaticDoubleField(cls, watches[6].fid, watches[6].val.d); env->SetStaticCharField(cls, watches[7].fid, watches[7].val.c); env->SetStaticObjectField(cls, watches[8].fid, watches[8].val.l); env->SetStaticObjectField(cls, watches[9].fid, watches[9].val.l); env->SetBooleanField(obj, watches[10].fid, watches[10].val.z); env->SetByteField(obj, watches[11].fid, watches[11].val.b); env->SetShortField(obj, watches[12].fid, watches[12].val.s); env->SetIntField(obj, watches[13].fid, watches[13].val.i); env->SetLongField(obj, watches[14].fid, watches[14].val.j); env->SetFloatField(obj, watches[15].fid, watches[15].val.f); env->SetDoubleField(obj, watches[16].fid, watches[16].val.d); env->SetCharField(obj, watches[17].fid, watches[17].val.c); env->SetObjectField(obj, watches[18].fid, watches[18].val.l); env->SetObjectField(obj, watches[19].fid, watches[19].val.l); if (printdump == JNI_TRUE) { printf(">>> ... done\n"); } if (eventsCount != eventsExpected) { printf("Wrong number of field modification events: %d, expected: %d\n", eventsCount, eventsExpected); result = STATUS_FAILED; } return result; } }