Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach021/attach021Agent00.cpp
40951 views
1
/*
2
* Copyright (c) 2007, 2020, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
#include <stdio.h>
24
#include <stdlib.h>
25
#include <string.h>
26
#include <jni.h>
27
#include <jvmti.h>
28
#include <aod.h>
29
#include <jvmti_aod.h>
30
#include "ExceptionCheckingJniEnv.hpp"
31
32
extern "C" {
33
34
/*
35
* Expected agent work scenario:
36
* - during initialization agent registers native methods used be target application and enables ObjectFree events
37
* - target application using native method and agent's jvmti environment tags object and provokes collection
38
* of this object
39
* - agent receives ObjectFree event for tagged object
40
* - target application using native method calls nsk_aod_agentFinished and agent finishes work
41
* (agent can't call nsk_aod_agentFinished from ObjectFree handler, nsk_aod_agentFinished calls
42
* JNI functions and it is prohibited in ObjectFree handler)
43
*
44
*/
45
46
#define TAG_VALUE (jlong)777
47
#define ATTACH021_TARGET_APP_CLASS_NAME "nsk/jvmti/AttachOnDemand/attach021/attach021Target"
48
49
static jvmtiEnv* jvmti;
50
51
static Options* options = NULL;
52
static const char* agentName;
53
54
// agent should set success status from objectFreeHandler
55
volatile int success = 0;
56
57
JNIEXPORT jboolean JNICALL
58
Java_nsk_jvmti_AttachOnDemand_attach021_attach021Target_setTagFor(JNIEnv * jni,
59
jclass klass, jobject obj) {
60
if (!NSK_JVMTI_VERIFY(jvmti->SetTag(obj, TAG_VALUE))) {
61
return JNI_FALSE;
62
}
63
64
NSK_DISPLAY2("%s: object is tagged (tag: %ld)\n", agentName, TAG_VALUE);
65
66
return JNI_TRUE;
67
}
68
69
JNIEXPORT void JNICALL
70
Java_nsk_jvmti_AttachOnDemand_attach021_attach021Target_shutdownAgent(JNIEnv * jni,
71
jclass klass) {
72
73
/* Flush any pending ObjectFree events, which will set global success variable to 1
74
for any pending ObjectFree events. */
75
if (jvmti->SetEventNotificationMode(JVMTI_DISABLE,
76
JVMTI_EVENT_OBJECT_FREE,
77
NULL) != JVMTI_ERROR_NONE) {
78
success = 0;
79
}
80
81
nsk_aod_agentFinished(jni, agentName, success);
82
}
83
84
void JNICALL objectFreeHandler(jvmtiEnv *jvmti, jlong tag) {
85
NSK_DISPLAY2("%s: object free event for object %ld\n", agentName, tag);
86
87
if (tag != TAG_VALUE) {
88
success = 0;
89
NSK_COMPLAIN2("%s: unexpected tag value, expected is %ld\n", agentName, TAG_VALUE);
90
} else {
91
success = 1;
92
}
93
94
/*
95
* Can't use JNI functions from ObjectFree event handler, in this test target application calls
96
* function nsk_aod_agentFinished
97
*/
98
}
99
100
void registerNativeMethods(JNIEnv* jni_env) {
101
ExceptionCheckingJniEnvPtr ec_jni(jni_env);
102
jclass appClass;
103
JNINativeMethod nativeMethods[] = {
104
{ (char*) "setTagFor", (char*) "(Ljava/lang/Object;)Z", (void*) Java_nsk_jvmti_AttachOnDemand_attach021_attach021Target_setTagFor },
105
{ (char*) "shutdownAgent", (char*) "()V", (void*) Java_nsk_jvmti_AttachOnDemand_attach021_attach021Target_shutdownAgent } };
106
jint nativeMethodsNumber = 2;
107
108
appClass = ec_jni->FindClass(ATTACH021_TARGET_APP_CLASS_NAME, TRACE_JNI_CALL);
109
ec_jni->RegisterNatives(appClass, nativeMethods, nativeMethodsNumber, TRACE_JNI_CALL);
110
}
111
112
#ifdef STATIC_BUILD
113
JNIEXPORT jint JNI_OnLoad_attach021Agent00(JavaVM *jvm, char *options, void *reserved) {
114
return JNI_VERSION_1_8;
115
}
116
#endif
117
118
JNIEXPORT jint JNICALL
119
#ifdef STATIC_BUILD
120
Agent_OnAttach_attach021Agent00(JavaVM *vm, char *optionsString, void *reserved)
121
#else
122
Agent_OnAttach(JavaVM *vm, char *optionsString, void *reserved)
123
#endif
124
{
125
jvmtiEventCallbacks eventCallbacks;
126
jvmtiCapabilities caps;
127
JNIEnv* jni;
128
129
options = (Options*) nsk_aod_createOptions(optionsString);
130
if (!NSK_VERIFY(options != NULL))
131
return JNI_ERR;
132
133
agentName = nsk_aod_getOptionValue(options, NSK_AOD_AGENT_NAME_OPTION);
134
135
jni = (JNIEnv*) nsk_aod_createJNIEnv(vm);
136
if (jni == NULL)
137
return JNI_ERR;
138
139
jvmti = nsk_jvmti_createJVMTIEnv(vm, reserved);
140
if (!NSK_VERIFY(jvmti != NULL))
141
return JNI_ERR;
142
143
registerNativeMethods(jni);
144
145
memset(&caps, 0, sizeof(caps));
146
caps.can_tag_objects = 1;
147
caps.can_generate_object_free_events = 1;
148
if (!NSK_JVMTI_VERIFY(jvmti->AddCapabilities(&caps))) {
149
return JNI_ERR;
150
}
151
152
memset(&eventCallbacks,0, sizeof(eventCallbacks));
153
eventCallbacks.ObjectFree = objectFreeHandler;
154
if (!NSK_JVMTI_VERIFY(jvmti->SetEventCallbacks(&eventCallbacks, sizeof(eventCallbacks)))) {
155
return JNI_ERR;
156
}
157
158
if (!(nsk_jvmti_aod_enableEvent(jvmti, JVMTI_EVENT_OBJECT_FREE))) {
159
return JNI_ERR;
160
}
161
162
NSK_DISPLAY1("%s: initialization was done\n", agentName);
163
164
if (!NSK_VERIFY(nsk_aod_agentLoaded(jni, agentName)))
165
return JNI_ERR;
166
167
return JNI_OK;
168
}
169
170
}
171
172