Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [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 | // A simple implementation of the native-bridge interface. |
| 18 | |
| 19 | #include <algorithm> |
| 20 | #include <dlfcn.h> |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 21 | #include <jni.h> |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 22 | #include <stdlib.h> |
| 23 | #include <signal.h> |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 24 | #include <vector> |
| 25 | |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 26 | #include "stdio.h" |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 27 | #include "unistd.h" |
Calin Juravle | 44a3506 | 2014-10-22 20:17:58 +0100 | [diff] [blame] | 28 | #include "sys/stat.h" |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 29 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 30 | #include "base/macros.h" |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 31 | #include "nativebridge/native_bridge.h" |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 32 | |
Yong WU | f7a68c1 | 2014-08-03 16:06:52 +0800 | [diff] [blame] | 33 | struct NativeBridgeMethod { |
| 34 | const char* name; |
| 35 | const char* signature; |
| 36 | bool static_method; |
| 37 | void* fnPtr; |
| 38 | void* trampoline; |
| 39 | }; |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 40 | |
Yong WU | f7a68c1 | 2014-08-03 16:06:52 +0800 | [diff] [blame] | 41 | static NativeBridgeMethod* find_native_bridge_method(const char *name); |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 42 | static const android::NativeBridgeRuntimeCallbacks* gNativeBridgeArtCallbacks; |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 43 | |
Yong WU | f7a68c1 | 2014-08-03 16:06:52 +0800 | [diff] [blame] | 44 | static jint trampoline_JNI_OnLoad(JavaVM* vm, void* reserved) { |
| 45 | JNIEnv* env = nullptr; |
| 46 | typedef jint (*FnPtr_t)(JavaVM*, void*); |
| 47 | FnPtr_t fnPtr = reinterpret_cast<FnPtr_t>(find_native_bridge_method("JNI_OnLoad")->fnPtr); |
| 48 | |
| 49 | vm->GetEnv(reinterpret_cast<void **>(&env), JNI_VERSION_1_6); |
| 50 | if (env == nullptr) { |
| 51 | return 0; |
| 52 | } |
| 53 | |
| 54 | jclass klass = env->FindClass("Main"); |
| 55 | if (klass != nullptr) { |
| 56 | int i, count1, count2; |
| 57 | count1 = gNativeBridgeArtCallbacks->getNativeMethodCount(env, klass); |
| 58 | std::unique_ptr<JNINativeMethod[]> methods(new JNINativeMethod[count1]); |
| 59 | if (methods == nullptr) { |
| 60 | return 0; |
| 61 | } |
| 62 | count2 = gNativeBridgeArtCallbacks->getNativeMethods(env, klass, methods.get(), count1); |
| 63 | if (count1 == count2) { |
| 64 | printf("Test ART callbacks: all JNI function number is %d.\n", count1); |
| 65 | } |
| 66 | |
| 67 | for (i = 0; i < count1; i++) { |
| 68 | NativeBridgeMethod* nb_method = find_native_bridge_method(methods[i].name); |
| 69 | if (nb_method != nullptr) { |
| 70 | jmethodID mid = nullptr; |
| 71 | if (nb_method->static_method) { |
| 72 | mid = env->GetStaticMethodID(klass, methods[i].name, nb_method->signature); |
| 73 | } else { |
| 74 | mid = env->GetMethodID(klass, methods[i].name, nb_method->signature); |
| 75 | } |
| 76 | if (mid != nullptr) { |
| 77 | const char* shorty = gNativeBridgeArtCallbacks->getMethodShorty(env, mid); |
| 78 | if (strcmp(shorty, methods[i].signature) == 0) { |
| 79 | printf(" name:%s, signature:%s, shorty:%s.\n", |
| 80 | methods[i].name, nb_method->signature, shorty); |
| 81 | } |
| 82 | } |
| 83 | } |
| 84 | } |
| 85 | methods.release(); |
| 86 | } |
| 87 | |
| 88 | printf("%s called!\n", __FUNCTION__); |
| 89 | return fnPtr(vm, reserved); |
| 90 | } |
| 91 | |
| 92 | static void trampoline_Java_Main_testFindClassOnAttachedNativeThread(JNIEnv* env, |
| 93 | jclass klass) { |
| 94 | typedef void (*FnPtr_t)(JNIEnv*, jclass); |
| 95 | FnPtr_t fnPtr = reinterpret_cast<FnPtr_t> |
| 96 | (find_native_bridge_method("testFindClassOnAttachedNativeThread")->fnPtr); |
| 97 | printf("%s called!\n", __FUNCTION__); |
| 98 | return fnPtr(env, klass); |
| 99 | } |
| 100 | |
| 101 | static void trampoline_Java_Main_testFindFieldOnAttachedNativeThreadNative(JNIEnv* env, |
| 102 | jclass klass) { |
| 103 | typedef void (*FnPtr_t)(JNIEnv*, jclass); |
| 104 | FnPtr_t fnPtr = reinterpret_cast<FnPtr_t> |
| 105 | (find_native_bridge_method("testFindFieldOnAttachedNativeThreadNative")->fnPtr); |
| 106 | printf("%s called!\n", __FUNCTION__); |
| 107 | return fnPtr(env, klass); |
| 108 | } |
| 109 | |
| 110 | static void trampoline_Java_Main_testCallStaticVoidMethodOnSubClassNative(JNIEnv* env, |
| 111 | jclass klass) { |
| 112 | typedef void (*FnPtr_t)(JNIEnv*, jclass); |
| 113 | FnPtr_t fnPtr = reinterpret_cast<FnPtr_t> |
| 114 | (find_native_bridge_method("testCallStaticVoidMethodOnSubClassNative")->fnPtr); |
| 115 | printf("%s called!\n", __FUNCTION__); |
| 116 | return fnPtr(env, klass); |
| 117 | } |
| 118 | |
| 119 | static jobject trampoline_Java_Main_testGetMirandaMethodNative(JNIEnv* env, jclass klass) { |
| 120 | typedef jobject (*FnPtr_t)(JNIEnv*, jclass); |
| 121 | FnPtr_t fnPtr = reinterpret_cast<FnPtr_t> |
| 122 | (find_native_bridge_method("testGetMirandaMethodNative")->fnPtr); |
| 123 | printf("%s called!\n", __FUNCTION__); |
| 124 | return fnPtr(env, klass); |
| 125 | } |
| 126 | |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 127 | static void trampoline_Java_Main_testNewStringObject(JNIEnv* env, jclass klass) { |
| 128 | typedef void (*FnPtr_t)(JNIEnv*, jclass); |
| 129 | FnPtr_t fnPtr = reinterpret_cast<FnPtr_t> |
| 130 | (find_native_bridge_method("testNewStringObject")->fnPtr); |
| 131 | printf("%s called!\n", __FUNCTION__); |
| 132 | return fnPtr(env, klass); |
| 133 | } |
| 134 | |
Yong WU | f7a68c1 | 2014-08-03 16:06:52 +0800 | [diff] [blame] | 135 | static void trampoline_Java_Main_testZeroLengthByteBuffers(JNIEnv* env, jclass klass) { |
| 136 | typedef void (*FnPtr_t)(JNIEnv*, jclass); |
| 137 | FnPtr_t fnPtr = reinterpret_cast<FnPtr_t> |
| 138 | (find_native_bridge_method("testZeroLengthByteBuffers")->fnPtr); |
| 139 | printf("%s called!\n", __FUNCTION__); |
| 140 | return fnPtr(env, klass); |
| 141 | } |
| 142 | |
| 143 | static jbyte trampoline_Java_Main_byteMethod(JNIEnv* env, jclass klass, jbyte b1, jbyte b2, |
| 144 | jbyte b3, jbyte b4, jbyte b5, jbyte b6, |
| 145 | jbyte b7, jbyte b8, jbyte b9, jbyte b10) { |
| 146 | typedef jbyte (*FnPtr_t)(JNIEnv*, jclass, jbyte, jbyte, jbyte, jbyte, jbyte, |
| 147 | jbyte, jbyte, jbyte, jbyte, jbyte); |
| 148 | FnPtr_t fnPtr = reinterpret_cast<FnPtr_t>(find_native_bridge_method("byteMethod")->fnPtr); |
| 149 | printf("%s called!\n", __FUNCTION__); |
| 150 | return fnPtr(env, klass, b1, b2, b3, b4, b5, b6, b7, b8, b9, b10); |
| 151 | } |
| 152 | |
| 153 | static jshort trampoline_Java_Main_shortMethod(JNIEnv* env, jclass klass, jshort s1, jshort s2, |
| 154 | jshort s3, jshort s4, jshort s5, jshort s6, |
| 155 | jshort s7, jshort s8, jshort s9, jshort s10) { |
| 156 | typedef jshort (*FnPtr_t)(JNIEnv*, jclass, jshort, jshort, jshort, jshort, jshort, |
| 157 | jshort, jshort, jshort, jshort, jshort); |
| 158 | FnPtr_t fnPtr = reinterpret_cast<FnPtr_t>(find_native_bridge_method("shortMethod")->fnPtr); |
| 159 | printf("%s called!\n", __FUNCTION__); |
| 160 | return fnPtr(env, klass, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10); |
| 161 | } |
| 162 | |
| 163 | static jboolean trampoline_Java_Main_booleanMethod(JNIEnv* env, jclass klass, jboolean b1, |
| 164 | jboolean b2, jboolean b3, jboolean b4, |
| 165 | jboolean b5, jboolean b6, jboolean b7, |
| 166 | jboolean b8, jboolean b9, jboolean b10) { |
| 167 | typedef jboolean (*FnPtr_t)(JNIEnv*, jclass, jboolean, jboolean, jboolean, jboolean, jboolean, |
| 168 | jboolean, jboolean, jboolean, jboolean, jboolean); |
| 169 | FnPtr_t fnPtr = reinterpret_cast<FnPtr_t>(find_native_bridge_method("booleanMethod")->fnPtr); |
| 170 | printf("%s called!\n", __FUNCTION__); |
| 171 | return fnPtr(env, klass, b1, b2, b3, b4, b5, b6, b7, b8, b9, b10); |
| 172 | } |
| 173 | |
| 174 | static jchar trampoline_Java_Main_charMethod(JNIEnv* env, jclass klass, jchar c1, jchar c2, |
| 175 | jchar c3, jchar c4, jchar c5, jchar c6, |
| 176 | jchar c7, jchar c8, jchar c9, jchar c10) { |
| 177 | typedef jchar (*FnPtr_t)(JNIEnv*, jclass, jchar, jchar, jchar, jchar, jchar, |
| 178 | jchar, jchar, jchar, jchar, jchar); |
| 179 | FnPtr_t fnPtr = reinterpret_cast<FnPtr_t>(find_native_bridge_method("charMethod")->fnPtr); |
| 180 | printf("%s called!\n", __FUNCTION__); |
| 181 | return fnPtr(env, klass, c1, c2, c3, c4, c5, c6, c7, c8, c9, c10); |
| 182 | } |
| 183 | |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 184 | // This code is adapted from 004-SignalTest and causes a segfault. |
| 185 | char *go_away_compiler = nullptr; |
| 186 | |
| 187 | [[ noreturn ]] static void test_sigaction_handler(int sig ATTRIBUTE_UNUSED, |
| 188 | siginfo_t* info ATTRIBUTE_UNUSED, |
| 189 | void* context ATTRIBUTE_UNUSED) { |
| 190 | printf("Should not reach the test sigaction handler."); |
| 191 | abort(); |
| 192 | } |
| 193 | |
| 194 | static jint trampoline_Java_Main_testSignal(JNIEnv*, jclass) { |
| 195 | // Install the sigaction handler above, which should *not* be reached as the native-bridge |
| 196 | // handler should be called first. Note: we won't chain at all, if we ever get here, we'll die. |
| 197 | struct sigaction tmp; |
| 198 | sigemptyset(&tmp.sa_mask); |
| 199 | tmp.sa_sigaction = test_sigaction_handler; |
Douglas Leung | d0af547 | 2015-05-29 19:50:02 -0700 | [diff] [blame] | 200 | #if !defined(__APPLE__) && !defined(__mips__) |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 201 | tmp.sa_restorer = nullptr; |
Douglas Leung | d0af547 | 2015-05-29 19:50:02 -0700 | [diff] [blame] | 202 | #endif |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 203 | |
jgu21 | 0c7c55c | 2015-07-24 13:40:33 +0800 | [diff] [blame] | 204 | // Test segv |
| 205 | sigaction(SIGSEGV, &tmp, nullptr); |
Agi Csaki | 3996c89 | 2015-08-17 13:40:45 -0700 | [diff] [blame] | 206 | #if defined(__arm__) || defined(__i386__) || defined(__aarch64__) |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 207 | *go_away_compiler = 'a'; |
Agi Csaki | 3996c89 | 2015-08-17 13:40:45 -0700 | [diff] [blame] | 208 | #elif defined(__x86_64__) |
Andreas Gampe | fd28541 | 2015-08-26 14:24:26 -0700 | [diff] [blame] | 209 | // Cause a SEGV using an instruction known to be 2 bytes long to account for hardcoded jump |
Agi Csaki | 3835acc | 2015-08-21 12:56:30 -0700 | [diff] [blame] | 210 | // in the signal handler |
Andreas Gampe | fd28541 | 2015-08-26 14:24:26 -0700 | [diff] [blame] | 211 | asm volatile("movl $0, %%eax;" "movb %%ah, (%%rax);" : : : "%eax"); |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 212 | #else |
| 213 | // On other architectures we simulate SEGV. |
| 214 | kill(getpid(), SIGSEGV); |
| 215 | #endif |
jgu21 | 0c7c55c | 2015-07-24 13:40:33 +0800 | [diff] [blame] | 216 | |
| 217 | // Test sigill |
| 218 | sigaction(SIGILL, &tmp, nullptr); |
| 219 | kill(getpid(), SIGILL); |
| 220 | |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 221 | return 1234; |
| 222 | } |
| 223 | |
Yong WU | f7a68c1 | 2014-08-03 16:06:52 +0800 | [diff] [blame] | 224 | NativeBridgeMethod gNativeBridgeMethods[] = { |
| 225 | { "JNI_OnLoad", "", true, nullptr, |
| 226 | reinterpret_cast<void*>(trampoline_JNI_OnLoad) }, |
| 227 | { "booleanMethod", "(ZZZZZZZZZZ)Z", true, nullptr, |
| 228 | reinterpret_cast<void*>(trampoline_Java_Main_booleanMethod) }, |
| 229 | { "byteMethod", "(BBBBBBBBBB)B", true, nullptr, |
| 230 | reinterpret_cast<void*>(trampoline_Java_Main_byteMethod) }, |
| 231 | { "charMethod", "(CCCCCCCCCC)C", true, nullptr, |
| 232 | reinterpret_cast<void*>(trampoline_Java_Main_charMethod) }, |
| 233 | { "shortMethod", "(SSSSSSSSSS)S", true, nullptr, |
| 234 | reinterpret_cast<void*>(trampoline_Java_Main_shortMethod) }, |
| 235 | { "testCallStaticVoidMethodOnSubClassNative", "()V", true, nullptr, |
| 236 | reinterpret_cast<void*>(trampoline_Java_Main_testCallStaticVoidMethodOnSubClassNative) }, |
| 237 | { "testFindClassOnAttachedNativeThread", "()V", true, nullptr, |
| 238 | reinterpret_cast<void*>(trampoline_Java_Main_testFindClassOnAttachedNativeThread) }, |
| 239 | { "testFindFieldOnAttachedNativeThreadNative", "()V", true, nullptr, |
| 240 | reinterpret_cast<void*>(trampoline_Java_Main_testFindFieldOnAttachedNativeThreadNative) }, |
| 241 | { "testGetMirandaMethodNative", "()Ljava/lang/reflect/Method;", true, nullptr, |
| 242 | reinterpret_cast<void*>(trampoline_Java_Main_testGetMirandaMethodNative) }, |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 243 | { "testNewStringObject", "()V", true, nullptr, |
| 244 | reinterpret_cast<void*>(trampoline_Java_Main_testNewStringObject) }, |
Yong WU | f7a68c1 | 2014-08-03 16:06:52 +0800 | [diff] [blame] | 245 | { "testZeroLengthByteBuffers", "()V", true, nullptr, |
| 246 | reinterpret_cast<void*>(trampoline_Java_Main_testZeroLengthByteBuffers) }, |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 247 | { "testSignal", "()I", true, nullptr, |
| 248 | reinterpret_cast<void*>(trampoline_Java_Main_testSignal) }, |
Yong WU | f7a68c1 | 2014-08-03 16:06:52 +0800 | [diff] [blame] | 249 | }; |
| 250 | |
| 251 | static NativeBridgeMethod* find_native_bridge_method(const char *name) { |
| 252 | const char* pname = name; |
| 253 | if (strncmp(name, "Java_Main_", 10) == 0) { |
| 254 | pname += 10; |
| 255 | } |
| 256 | |
| 257 | for (size_t i = 0; i < sizeof(gNativeBridgeMethods) / sizeof(gNativeBridgeMethods[0]); i++) { |
| 258 | if (strcmp(pname, gNativeBridgeMethods[i].name) == 0) { |
| 259 | return &gNativeBridgeMethods[i]; |
| 260 | } |
| 261 | } |
| 262 | return nullptr; |
| 263 | } |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 264 | |
| 265 | // NativeBridgeCallbacks implementations |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 266 | extern "C" bool native_bridge_initialize(const android::NativeBridgeRuntimeCallbacks* art_cbs, |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 267 | const char* app_code_cache_dir, |
| 268 | const char* isa ATTRIBUTE_UNUSED) { |
Calin Juravle | 44a3506 | 2014-10-22 20:17:58 +0100 | [diff] [blame] | 269 | struct stat st; |
| 270 | if ((app_code_cache_dir != nullptr) |
| 271 | && (stat(app_code_cache_dir, &st) == 0) |
| 272 | && S_ISDIR(st.st_mode)) { |
| 273 | printf("Code cache exists: '%s'.\n", app_code_cache_dir); |
| 274 | } |
Yong WU | f7a68c1 | 2014-08-03 16:06:52 +0800 | [diff] [blame] | 275 | if (art_cbs != nullptr) { |
| 276 | gNativeBridgeArtCallbacks = art_cbs; |
| 277 | printf("Native bridge initialized.\n"); |
| 278 | } |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 279 | return true; |
| 280 | } |
| 281 | |
| 282 | extern "C" void* native_bridge_loadLibrary(const char* libpath, int flag) { |
| 283 | size_t len = strlen(libpath); |
| 284 | char* tmp = new char[len + 10]; |
| 285 | strncpy(tmp, libpath, len); |
| 286 | tmp[len - 3] = '2'; |
| 287 | tmp[len - 2] = '.'; |
| 288 | tmp[len - 1] = 's'; |
| 289 | tmp[len] = 'o'; |
| 290 | tmp[len + 1] = 0; |
| 291 | void* handle = dlopen(tmp, flag); |
| 292 | delete[] tmp; |
| 293 | |
| 294 | if (handle == nullptr) { |
| 295 | printf("Handle = nullptr!\n"); |
| 296 | printf("Was looking for %s.\n", libpath); |
| 297 | printf("Error = %s.\n", dlerror()); |
| 298 | char cwd[1024]; |
| 299 | if (getcwd(cwd, sizeof(cwd)) != nullptr) { |
| 300 | printf("Current working dir: %s\n", cwd); |
| 301 | } |
| 302 | } |
| 303 | return handle; |
| 304 | } |
| 305 | |
| 306 | extern "C" void* native_bridge_getTrampoline(void* handle, const char* name, const char* shorty, |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 307 | uint32_t len ATTRIBUTE_UNUSED) { |
Yong WU | f7a68c1 | 2014-08-03 16:06:52 +0800 | [diff] [blame] | 308 | printf("Getting trampoline for %s with shorty %s.\n", name, shorty); |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 309 | |
| 310 | // The name here is actually the JNI name, so we can directly do the lookup. |
| 311 | void* sym = dlsym(handle, name); |
Yong WU | f7a68c1 | 2014-08-03 16:06:52 +0800 | [diff] [blame] | 312 | NativeBridgeMethod* method = find_native_bridge_method(name); |
| 313 | if (method == nullptr) |
| 314 | return nullptr; |
| 315 | method->fnPtr = sym; |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 316 | |
Yong WU | f7a68c1 | 2014-08-03 16:06:52 +0800 | [diff] [blame] | 317 | return method->trampoline; |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | extern "C" bool native_bridge_isSupported(const char* libpath) { |
| 321 | printf("Checking for support.\n"); |
| 322 | |
| 323 | if (libpath == nullptr) { |
| 324 | return false; |
| 325 | } |
| 326 | // We don't want to hijack javacore. So we should get libarttest... |
| 327 | return strcmp(libpath, "libjavacore.so") != 0; |
| 328 | } |
| 329 | |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 330 | namespace android { |
| 331 | |
| 332 | // Environment values required by the apps running with native bridge. |
| 333 | struct NativeBridgeRuntimeValues { |
| 334 | const char* os_arch; |
| 335 | const char* cpu_abi; |
| 336 | const char* cpu_abi2; |
| 337 | const char* *supported_abis; |
| 338 | int32_t abi_count; |
| 339 | }; |
| 340 | |
| 341 | } // namespace android |
| 342 | |
| 343 | const char* supported_abis[] = { |
| 344 | "supported1", "supported2", "supported3" |
| 345 | }; |
| 346 | |
| 347 | const struct android::NativeBridgeRuntimeValues nb_env { |
| 348 | .os_arch = "os.arch", |
| 349 | .cpu_abi = "cpu_abi", |
| 350 | .cpu_abi2 = "cpu_abi2", |
| 351 | .supported_abis = supported_abis, |
| 352 | .abi_count = 3 |
| 353 | }; |
| 354 | |
| 355 | extern "C" const struct android::NativeBridgeRuntimeValues* native_bridge_getAppEnv( |
| 356 | const char* abi) { |
| 357 | printf("Checking for getEnvValues.\n"); |
| 358 | |
| 359 | if (abi == nullptr) { |
| 360 | return nullptr; |
| 361 | } |
| 362 | |
| 363 | return &nb_env; |
| 364 | } |
| 365 | |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 366 | // v2 parts. |
| 367 | |
| 368 | extern "C" bool nb_is_compatible(uint32_t bridge_version ATTRIBUTE_UNUSED) { |
| 369 | return true; |
| 370 | } |
| 371 | |
| 372 | #if defined(__i386__) || defined(__x86_64__) |
| 373 | #if defined(__APPLE__) |
| 374 | #define ucontext __darwin_ucontext |
| 375 | |
| 376 | #if defined(__x86_64__) |
| 377 | // 64 bit mac build. |
| 378 | #define CTX_EIP uc_mcontext->__ss.__rip |
| 379 | #else |
| 380 | // 32 bit mac build. |
| 381 | #define CTX_EIP uc_mcontext->__ss.__eip |
| 382 | #endif |
| 383 | |
| 384 | #elif defined(__x86_64__) |
| 385 | // 64 bit linux build. |
| 386 | #define CTX_EIP uc_mcontext.gregs[REG_RIP] |
| 387 | #else |
| 388 | // 32 bit linux build. |
| 389 | #define CTX_EIP uc_mcontext.gregs[REG_EIP] |
| 390 | #endif |
| 391 | #endif |
| 392 | |
jgu21 | 0d6f026 | 2015-09-22 03:47:43 -0400 | [diff] [blame] | 393 | static bool cannot_be_blocked(int signum) { |
| 394 | // These two sigs cannot be blocked anywhere. |
| 395 | if ((signum == SIGKILL) || (signum == SIGSTOP)) { |
| 396 | return true; |
| 397 | } |
| 398 | |
| 399 | // The invalid rt_sig cannot be blocked. |
| 400 | if (((signum >= 32) && (signum < SIGRTMIN)) || (signum > SIGRTMAX)) { |
| 401 | return true; |
| 402 | } |
| 403 | |
| 404 | return false; |
| 405 | } |
| 406 | |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 407 | // A dummy special handler, continueing after the faulting location. This code comes from |
| 408 | // 004-SignalTest. |
| 409 | static bool nb_signalhandler(int sig, siginfo_t* info ATTRIBUTE_UNUSED, void* context) { |
| 410 | printf("NB signal handler with signal %d.\n", sig); |
jgu21 | 0c7c55c | 2015-07-24 13:40:33 +0800 | [diff] [blame] | 411 | if (sig == SIGSEGV) { |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 412 | #if defined(__arm__) |
jgu21 | 0c7c55c | 2015-07-24 13:40:33 +0800 | [diff] [blame] | 413 | struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); |
| 414 | struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); |
| 415 | sc->arm_pc += 2; // Skip instruction causing segv & sigill. |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 416 | #elif defined(__aarch64__) |
jgu21 | 0c7c55c | 2015-07-24 13:40:33 +0800 | [diff] [blame] | 417 | struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); |
| 418 | struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); |
| 419 | sc->pc += 4; // Skip instruction causing segv & sigill. |
Andreas Gampe | fd28541 | 2015-08-26 14:24:26 -0700 | [diff] [blame] | 420 | #elif defined(__i386__) |
jgu21 | 0c7c55c | 2015-07-24 13:40:33 +0800 | [diff] [blame] | 421 | struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); |
| 422 | uc->CTX_EIP += 3; |
Andreas Gampe | fd28541 | 2015-08-26 14:24:26 -0700 | [diff] [blame] | 423 | #elif defined(__x86_64__) |
| 424 | struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); |
| 425 | uc->CTX_EIP += 2; |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 426 | #else |
jgu21 | 0c7c55c | 2015-07-24 13:40:33 +0800 | [diff] [blame] | 427 | UNUSED(context); |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 428 | #endif |
jgu21 | 0c7c55c | 2015-07-24 13:40:33 +0800 | [diff] [blame] | 429 | } |
jgu21 | 0d6f026 | 2015-09-22 03:47:43 -0400 | [diff] [blame] | 430 | |
| 431 | // Before invoking this handler, all other unclaimed signals must be blocked. |
| 432 | // We're trying to check the signal mask to verify its status here. |
| 433 | sigset_t tmpset; |
| 434 | sigemptyset(&tmpset); |
| 435 | sigprocmask(SIG_SETMASK, nullptr, &tmpset); |
| 436 | int other_claimed = (sig == SIGSEGV) ? SIGILL : SIGSEGV; |
| 437 | for (int signum = 0; signum < NSIG; ++signum) { |
| 438 | if (cannot_be_blocked(signum)) { |
| 439 | continue; |
| 440 | } else if ((sigismember(&tmpset, signum)) && (signum == other_claimed)) { |
| 441 | printf("ERROR: The claimed signal %d is blocked\n", signum); |
| 442 | } else if ((!sigismember(&tmpset, signum)) && (signum != other_claimed)) { |
| 443 | printf("ERROR: The unclaimed signal %d is not blocked\n", signum); |
| 444 | } |
| 445 | } |
| 446 | |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 447 | // We handled this... |
| 448 | return true; |
| 449 | } |
| 450 | |
| 451 | static ::android::NativeBridgeSignalHandlerFn native_bridge_get_signal_handler(int signal) { |
jgu21 | 0c7c55c | 2015-07-24 13:40:33 +0800 | [diff] [blame] | 452 | // Test segv for already claimed signal, and sigill for not claimed signal |
| 453 | if ((signal == SIGSEGV) || (signal == SIGILL)) { |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 454 | return &nb_signalhandler; |
| 455 | } |
| 456 | return nullptr; |
| 457 | } |
| 458 | |
| 459 | |
Calin Juravle | c842352 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 460 | // "NativeBridgeItf" is effectively an API (it is the name of the symbol that will be loaded |
| 461 | // by the native bridge library). |
| 462 | android::NativeBridgeCallbacks NativeBridgeItf { |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 463 | .version = 2, |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 464 | .initialize = &native_bridge_initialize, |
| 465 | .loadLibrary = &native_bridge_loadLibrary, |
| 466 | .getTrampoline = &native_bridge_getTrampoline, |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 467 | .isSupported = &native_bridge_isSupported, |
Andreas Gampe | 540cc3d | 2015-05-20 18:01:30 -0700 | [diff] [blame] | 468 | .getAppEnv = &native_bridge_getAppEnv, |
Andreas Gampe | 03c2cc8 | 2015-05-22 18:31:50 -0700 | [diff] [blame] | 469 | .isCompatibleWith = &nb_is_compatible, |
| 470 | .getSignalHandler = &native_bridge_get_signal_handler |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 471 | }; |