blob: b7f31f2005ff9723cd04b9903089a3c093c4eb39 [file] [log] [blame]
Calin Juravlec8423522014-08-12 20:55:20 +01001/*
2 * Copyright (C) 2014 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 "native_bridge_art_interface.h"
18
jgu21a6da74e2014-09-10 06:57:17 -040019#include "nativebridge/native_bridge.h"
20
21#include "base/logging.h"
Andreas Gamped77ac7e2014-11-04 00:42:32 -080022#include "base/macros.h"
Elliott Hughes956af0f2014-12-11 14:34:28 -080023#include "dex_file-inl.h"
Calin Juravlec8423522014-08-12 20:55:20 +010024#include "mirror/art_method-inl.h"
25#include "mirror/class-inl.h"
26#include "scoped_thread_state_change.h"
27
28namespace art {
29
Andreas Gampe277ccbd2014-11-03 21:36:10 -080030static const char* GetMethodShorty(JNIEnv* env, jmethodID mid) {
Calin Juravlec8423522014-08-12 20:55:20 +010031 ScopedObjectAccess soa(env);
Calin Juravlec8423522014-08-12 20:55:20 +010032 mirror::ArtMethod* m = soa.DecodeMethod(mid);
Ian Rogerse94652f2014-12-02 11:13:19 -080033 return m->GetShorty();
Calin Juravlec8423522014-08-12 20:55:20 +010034}
35
Andreas Gampe277ccbd2014-11-03 21:36:10 -080036static uint32_t GetNativeMethodCount(JNIEnv* env, jclass clazz) {
Calin Juravlec8423522014-08-12 20:55:20 +010037 if (clazz == nullptr)
38 return 0;
39
40 ScopedObjectAccess soa(env);
41 mirror::Class* c = soa.Decode<mirror::Class*>(clazz);
42
43 uint32_t native_method_count = 0;
44 for (uint32_t i = 0; i < c->NumDirectMethods(); ++i) {
45 mirror::ArtMethod* m = c->GetDirectMethod(i);
46 if (m->IsNative()) {
47 native_method_count++;
48 }
49 }
50 for (uint32_t i = 0; i < c->NumVirtualMethods(); ++i) {
51 mirror::ArtMethod* m = c->GetVirtualMethod(i);
52 if (m->IsNative()) {
53 native_method_count++;
54 }
55 }
56 return native_method_count;
57}
58
Andreas Gampe277ccbd2014-11-03 21:36:10 -080059static uint32_t GetNativeMethods(JNIEnv* env, jclass clazz, JNINativeMethod* methods,
60 uint32_t method_count) {
Calin Juravlec8423522014-08-12 20:55:20 +010061 if ((clazz == nullptr) || (methods == nullptr)) {
62 return 0;
63 }
64 ScopedObjectAccess soa(env);
65 mirror::Class* c = soa.Decode<mirror::Class*>(clazz);
66
67 uint32_t count = 0;
68 for (uint32_t i = 0; i < c->NumDirectMethods(); ++i) {
69 mirror::ArtMethod* m = c->GetDirectMethod(i);
70 if (m->IsNative()) {
71 if (count < method_count) {
72 methods[count].name = m->GetName();
73 methods[count].signature = m->GetShorty();
Mathieu Chartier2d721012014-11-10 11:08:06 -080074 methods[count].fnPtr = m->GetEntryPointFromJni();
Calin Juravlec8423522014-08-12 20:55:20 +010075 count++;
76 } else {
77 LOG(WARNING) << "Output native method array too small. Skipping " << PrettyMethod(m);
78 }
79 }
80 }
81 for (uint32_t i = 0; i < c->NumVirtualMethods(); ++i) {
82 mirror::ArtMethod* m = c->GetVirtualMethod(i);
83 if (m->IsNative()) {
84 if (count < method_count) {
85 methods[count].name = m->GetName();
86 methods[count].signature = m->GetShorty();
Mathieu Chartier2d721012014-11-10 11:08:06 -080087 methods[count].fnPtr = m->GetEntryPointFromJni();
Calin Juravlec8423522014-08-12 20:55:20 +010088 count++;
89 } else {
90 LOG(WARNING) << "Output native method array too small. Skipping " << PrettyMethod(m);
91 }
92 }
93 }
94 return count;
95}
96
jgu21a6da74e2014-09-10 06:57:17 -040097// Native bridge library runtime callbacks. They represent the runtime interface to native bridge.
98//
99// The interface is expected to expose the following methods:
100// getMethodShorty(): in the case of native method calling JNI native function CallXXXXMethodY(),
101// native bridge calls back to VM for the shorty of the method so that it can prepare based on
102// host calling convention.
103// getNativeMethodCount() and getNativeMethods(): in case of JNI function UnregisterNatives(),
104// native bridge can call back to get all native methods of specified class so that all
105// corresponding trampolines can be destroyed.
106static android::NativeBridgeRuntimeCallbacks native_bridge_art_callbacks_ {
107 GetMethodShorty, GetNativeMethodCount, GetNativeMethods
108};
109
Calin Juravle07d83c72014-10-22 21:02:23 +0100110bool LoadNativeBridge(std::string& native_bridge_library_filename) {
jgu21a6da74e2014-09-10 06:57:17 -0400111 VLOG(startup) << "Runtime::Setup native bridge library: "
112 << (native_bridge_library_filename.empty() ? "(empty)" : native_bridge_library_filename);
Calin Juravle07d83c72014-10-22 21:02:23 +0100113 return android::LoadNativeBridge(native_bridge_library_filename.c_str(),
114 &native_bridge_art_callbacks_);
jgu21a6da74e2014-09-10 06:57:17 -0400115}
116
117void PreInitializeNativeBridge(std::string dir) {
118 VLOG(startup) << "Runtime::Pre-initialize native bridge";
Andreas Gampe7a536532014-09-25 23:13:47 -0700119#ifndef __APPLE__ // Mac OS does not support CLONE_NEWNS.
jgu21a6da74e2014-09-10 06:57:17 -0400120 if (unshare(CLONE_NEWNS) == -1) {
121 LOG(WARNING) << "Could not create mount namespace.";
jgu21a6da74e2014-09-10 06:57:17 -0400122 }
123 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA));
Andreas Gamped77ac7e2014-11-04 00:42:32 -0800124#else
125 UNUSED(dir);
Andreas Gampe7a536532014-09-25 23:13:47 -0700126#endif
jgu21a6da74e2014-09-10 06:57:17 -0400127}
128
129void InitializeNativeBridge(JNIEnv* env, const char* instruction_set) {
130 android::InitializeNativeBridge(env, instruction_set);
131}
132
133void UnloadNativeBridge() {
134 android::UnloadNativeBridge();
135}
136
Andreas Gampec8ccf682014-09-29 20:07:43 -0700137} // namespace art