blob: b64952d62bff3981374347f6afd7b303bad91fc6 [file] [log] [blame]
Andreas Gampe3c252f02016-10-27 18:25:17 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "methods.h"
18
19#include <stdio.h>
20
21#include "base/macros.h"
22#include "jni.h"
23#include "openjdkjvmti/jvmti.h"
24#include "ScopedLocalRef.h"
25
Andreas Gampe336c3c32016-11-08 17:02:19 -080026#include "ti-agent/common_helper.h"
Andreas Gampe3c252f02016-10-27 18:25:17 -070027#include "ti-agent/common_load.h"
28
29namespace art {
30namespace Test910Methods {
31
32extern "C" JNIEXPORT jobjectArray JNICALL Java_Main_getMethodName(
33 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) {
34 jmethodID id = env->FromReflectedMethod(method);
35
36 char* name;
37 char* sig;
38 char* gen;
39 jvmtiError result = jvmti_env->GetMethodName(id, &name, &sig, &gen);
40 if (result != JVMTI_ERROR_NONE) {
41 char* err;
42 jvmti_env->GetErrorName(result, &err);
43 printf("Failure running GetMethodName: %s\n", err);
Alex Light41960712017-01-06 14:44:23 -080044 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(err));
Andreas Gampe3c252f02016-10-27 18:25:17 -070045 return nullptr;
46 }
47
Andreas Gampe336c3c32016-11-08 17:02:19 -080048 auto callback = [&](jint i) {
49 if (i == 0) {
50 return name == nullptr ? nullptr : env->NewStringUTF(name);
51 } else if (i == 1) {
52 return sig == nullptr ? nullptr : env->NewStringUTF(sig);
53 } else {
54 return gen == nullptr ? nullptr : env->NewStringUTF(gen);
55 }
56 };
57 jobjectArray ret = CreateObjectArray(env, 3, "java/lang/String", callback);
Andreas Gampe3c252f02016-10-27 18:25:17 -070058
59 // Need to deallocate the strings.
60 if (name != nullptr) {
61 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(name));
62 }
63 if (sig != nullptr) {
64 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(sig));
65 }
66 if (gen != nullptr) {
67 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(gen));
68 }
69
Andreas Gampe862bdd82016-11-18 13:31:13 -080070 // Also run GetMethodName with all parameter pointers null to check for segfaults.
71 jvmtiError result2 = jvmti_env->GetMethodName(id, nullptr, nullptr, nullptr);
72 if (result2 != JVMTI_ERROR_NONE) {
73 char* err;
74 jvmti_env->GetErrorName(result2, &err);
75 printf("Failure running GetMethodName(null, null, null): %s\n", err);
Alex Light41960712017-01-06 14:44:23 -080076 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(err));
Andreas Gampe862bdd82016-11-18 13:31:13 -080077 return nullptr;
78 }
79
Andreas Gampe3c252f02016-10-27 18:25:17 -070080 return ret;
81}
82
Andreas Gampe368a2082016-10-28 17:33:13 -070083extern "C" JNIEXPORT jclass JNICALL Java_Main_getMethodDeclaringClass(
84 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) {
85 jmethodID id = env->FromReflectedMethod(method);
86
87 jclass declaring_class;
88 jvmtiError result = jvmti_env->GetMethodDeclaringClass(id, &declaring_class);
89 if (result != JVMTI_ERROR_NONE) {
90 char* err;
91 jvmti_env->GetErrorName(result, &err);
92 printf("Failure running GetMethodDeclaringClass: %s\n", err);
Alex Light41960712017-01-06 14:44:23 -080093 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(err));
Andreas Gampe368a2082016-10-28 17:33:13 -070094 return nullptr;
95 }
96
97 return declaring_class;
98}
99
Andreas Gampe36bcd4f2016-10-28 18:07:18 -0700100extern "C" JNIEXPORT jint JNICALL Java_Main_getMethodModifiers(
101 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) {
102 jmethodID id = env->FromReflectedMethod(method);
103
104 jint modifiers;
105 jvmtiError result = jvmti_env->GetMethodModifiers(id, &modifiers);
106 if (result != JVMTI_ERROR_NONE) {
107 char* err;
108 jvmti_env->GetErrorName(result, &err);
109 printf("Failure running GetMethodModifiers: %s\n", err);
Alex Light41960712017-01-06 14:44:23 -0800110 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(err));
Andreas Gampe36bcd4f2016-10-28 18:07:18 -0700111 return 0;
112 }
113
114 return modifiers;
115}
116
Andreas Gampe3c252f02016-10-27 18:25:17 -0700117// Don't do anything
118jint OnLoad(JavaVM* vm,
119 char* options ATTRIBUTE_UNUSED,
120 void* reserved ATTRIBUTE_UNUSED) {
121 if (vm->GetEnv(reinterpret_cast<void**>(&jvmti_env), JVMTI_VERSION_1_0)) {
122 printf("Unable to get jvmti env!\n");
123 return 1;
124 }
Alex Lighte6574242016-08-17 09:56:24 -0700125 SetAllCapabilities(jvmti_env);
Andreas Gampe3c252f02016-10-27 18:25:17 -0700126 return 0;
127}
128
129} // namespace Test910Methods
130} // namespace art