Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 19 | #include <signal.h> |
| 20 | |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 21 | #include "nativebridge/native_bridge.h" |
| 22 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 23 | #include "art_method-inl.h" |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 24 | #include "base/logging.h" |
Andreas Gampe | d77ac7e | 2014-11-04 00:42:32 -0800 | [diff] [blame] | 25 | #include "base/macros.h" |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 26 | #include "dex_file-inl.h" |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 27 | #include "mirror/class-inl.h" |
| 28 | #include "scoped_thread_state_change.h" |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 29 | #include "sigchain.h" |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 30 | |
| 31 | namespace art { |
| 32 | |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 33 | static const char* GetMethodShorty(JNIEnv* env, jmethodID mid) { |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 34 | ScopedObjectAccess soa(env); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 35 | ArtMethod* m = soa.DecodeMethod(mid); |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 36 | return m->GetShorty(); |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 37 | } |
| 38 | |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 39 | static uint32_t GetNativeMethodCount(JNIEnv* env, jclass clazz) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 40 | if (clazz == nullptr) { |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 41 | return 0; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 42 | } |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 43 | |
| 44 | ScopedObjectAccess soa(env); |
| 45 | mirror::Class* c = soa.Decode<mirror::Class*>(clazz); |
| 46 | |
| 47 | uint32_t native_method_count = 0; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 48 | for (auto& m : c->GetDirectMethods(sizeof(void*))) { |
| 49 | native_method_count += m.IsNative() ? 1u : 0u; |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 50 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 51 | for (auto& m : c->GetVirtualMethods(sizeof(void*))) { |
| 52 | native_method_count += m.IsNative() ? 1u : 0u; |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 53 | } |
| 54 | return native_method_count; |
| 55 | } |
| 56 | |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 57 | static uint32_t GetNativeMethods(JNIEnv* env, jclass clazz, JNINativeMethod* methods, |
| 58 | uint32_t method_count) { |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 59 | if ((clazz == nullptr) || (methods == nullptr)) { |
| 60 | return 0; |
| 61 | } |
| 62 | ScopedObjectAccess soa(env); |
| 63 | mirror::Class* c = soa.Decode<mirror::Class*>(clazz); |
| 64 | |
| 65 | uint32_t count = 0; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 66 | for (auto& m : c->GetDirectMethods(sizeof(void*))) { |
| 67 | if (m.IsNative()) { |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 68 | if (count < method_count) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 69 | methods[count].name = m.GetName(); |
| 70 | methods[count].signature = m.GetShorty(); |
| 71 | methods[count].fnPtr = m.GetEntryPointFromJni(); |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 72 | count++; |
| 73 | } else { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 74 | LOG(WARNING) << "Output native method array too small. Skipping " << PrettyMethod(&m); |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 75 | } |
| 76 | } |
| 77 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 78 | for (auto& m : c->GetVirtualMethods(sizeof(void*))) { |
| 79 | if (m.IsNative()) { |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 80 | if (count < method_count) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 81 | methods[count].name = m.GetName(); |
| 82 | methods[count].signature = m.GetShorty(); |
| 83 | methods[count].fnPtr = m.GetEntryPointFromJni(); |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 84 | count++; |
| 85 | } else { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 86 | LOG(WARNING) << "Output native method array too small. Skipping " << PrettyMethod(&m); |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 87 | } |
| 88 | } |
| 89 | } |
| 90 | return count; |
| 91 | } |
| 92 | |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 93 | // Native bridge library runtime callbacks. They represent the runtime interface to native bridge. |
| 94 | // |
| 95 | // The interface is expected to expose the following methods: |
| 96 | // getMethodShorty(): in the case of native method calling JNI native function CallXXXXMethodY(), |
| 97 | // native bridge calls back to VM for the shorty of the method so that it can prepare based on |
| 98 | // host calling convention. |
| 99 | // getNativeMethodCount() and getNativeMethods(): in case of JNI function UnregisterNatives(), |
| 100 | // native bridge can call back to get all native methods of specified class so that all |
| 101 | // corresponding trampolines can be destroyed. |
| 102 | static android::NativeBridgeRuntimeCallbacks native_bridge_art_callbacks_ { |
| 103 | GetMethodShorty, GetNativeMethodCount, GetNativeMethods |
| 104 | }; |
| 105 | |
Calin Juravle | 07d83c7 | 2014-10-22 21:02:23 +0100 | [diff] [blame] | 106 | bool LoadNativeBridge(std::string& native_bridge_library_filename) { |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 107 | VLOG(startup) << "Runtime::Setup native bridge library: " |
| 108 | << (native_bridge_library_filename.empty() ? "(empty)" : native_bridge_library_filename); |
Calin Juravle | 07d83c7 | 2014-10-22 21:02:23 +0100 | [diff] [blame] | 109 | return android::LoadNativeBridge(native_bridge_library_filename.c_str(), |
| 110 | &native_bridge_art_callbacks_); |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | void PreInitializeNativeBridge(std::string dir) { |
| 114 | VLOG(startup) << "Runtime::Pre-initialize native bridge"; |
Andreas Gampe | 7a53653 | 2014-09-25 23:13:47 -0700 | [diff] [blame] | 115 | #ifndef __APPLE__ // Mac OS does not support CLONE_NEWNS. |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 116 | if (unshare(CLONE_NEWNS) == -1) { |
| 117 | LOG(WARNING) << "Could not create mount namespace."; |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 118 | } |
| 119 | android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA)); |
Andreas Gampe | d77ac7e | 2014-11-04 00:42:32 -0800 | [diff] [blame] | 120 | #else |
| 121 | UNUSED(dir); |
Andreas Gampe | 7a53653 | 2014-09-25 23:13:47 -0700 | [diff] [blame] | 122 | #endif |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | void InitializeNativeBridge(JNIEnv* env, const char* instruction_set) { |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 126 | if (android::InitializeNativeBridge(env, instruction_set)) { |
| 127 | if (android::NativeBridgeGetVersion() >= 2U) { |
| 128 | #ifdef _NSIG // Undefined on Apple, but we don't support running on Mac, anyways. |
| 129 | // Managed signal handling support added in version 2. |
| 130 | for (int signal = 0; signal < _NSIG; ++signal) { |
| 131 | android::NativeBridgeSignalHandlerFn fn = android::NativeBridgeGetSignalHandler(signal); |
| 132 | if (fn != nullptr) { |
| 133 | SetSpecialSignalHandlerFn(signal, fn); |
| 134 | } |
| 135 | } |
| 136 | #endif |
| 137 | } |
| 138 | } |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | void UnloadNativeBridge() { |
| 142 | android::UnloadNativeBridge(); |
| 143 | } |
| 144 | |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 145 | } // namespace art |