blob: c538fa071f5396c0791725d16fa6e0bc90bb4a4e [file] [log] [blame]
Zhenhua WANGf2804e52016-05-30 11:16:08 +08001/*
2 * Copyright (C) 2016 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 dummy implementation of the native-bridge interface.
18
19#include "nativebridge/native_bridge.h"
20
21#include <signal.h>
22
23// NativeBridgeCallbacks implementations
24extern "C" bool native_bridge3_initialize(
25 const android::NativeBridgeRuntimeCallbacks* /* art_cbs */,
26 const char* /* app_code_cache_dir */,
27 const char* /* isa */) {
28 return true;
29}
30
31extern "C" void* native_bridge3_loadLibrary(const char* /* libpath */, int /* flag */) {
32 return nullptr;
33}
34
35extern "C" void* native_bridge3_getTrampoline(void* /* handle */, const char* /* name */,
36 const char* /* shorty */, uint32_t /* len */) {
37 return nullptr;
38}
39
40extern "C" bool native_bridge3_isSupported(const char* /* libpath */) {
41 return false;
42}
43
44extern "C" const struct android::NativeBridgeRuntimeValues* native_bridge3_getAppEnv(
45 const char* /* abi */) {
46 return nullptr;
47}
48
49extern "C" bool native_bridge3_isCompatibleWith(uint32_t version) {
50 // For testing, allow 1-3, but disallow 4+.
51 return version <= 3;
52}
53
54static bool native_bridge3_dummy_signal_handler(int, siginfo_t*, void*) {
55 // TODO: Implement something here. We'd either have to have a death test with a log here, or
56 // we'd have to be able to resume after the faulting instruction...
57 return true;
58}
59
60extern "C" android::NativeBridgeSignalHandlerFn native_bridge3_getSignalHandler(int signal) {
61 if (signal == SIGSEGV) {
62 return &native_bridge3_dummy_signal_handler;
63 }
64 return nullptr;
65}
66
67extern "C" int native_bridge3_unloadLibrary(void* /* handle */) {
68 return 0;
69}
70
71extern "C" char* native_bridge3_getError() {
72 return nullptr;
73}
74
75extern "C" bool native_bridge3_isPathSupported(const char* /* path */) {
76 return true;
77}
78
79extern "C" bool native_bridge3_initNamespace(const char* /* public_ns_sonames */,
80 const char* /* anon_ns_library_path */) {
81 return true;
82}
83
84extern "C" android::native_bridge_namespace_t*
85native_bridge3_createNamespace(const char* /* name */,
86 const char* /* ld_library_path */,
87 const char* /* default_library_path */,
88 uint64_t /* type */,
89 const char* /* permitted_when_isolated_path */,
90 android::native_bridge_namespace_t* /* parent_ns */) {
91 return nullptr;
92}
93
94extern "C" void* native_bridge3_loadLibraryExt(const char* /* libpath */,
95 int /* flag */,
96 android::native_bridge_namespace_t* /* ns */) {
97 return nullptr;
98}
99
100
101android::NativeBridgeCallbacks NativeBridgeItf {
102 // v1
103 .version = 3,
104 .initialize = &native_bridge3_initialize,
105 .loadLibrary = &native_bridge3_loadLibrary,
106 .getTrampoline = &native_bridge3_getTrampoline,
107 .isSupported = &native_bridge3_isSupported,
108 .getAppEnv = &native_bridge3_getAppEnv,
109 // v2
110 .isCompatibleWith = &native_bridge3_isCompatibleWith,
111 .getSignalHandler = &native_bridge3_getSignalHandler,
112 // v3
113 .unloadLibrary = &native_bridge3_unloadLibrary,
114 .getError = &native_bridge3_getError,
115 .isPathSupported = &native_bridge3_isPathSupported,
116 .initNamespace = &native_bridge3_initNamespace,
117 .createNamespace = &native_bridge3_createNamespace,
118 .loadLibraryExt = &native_bridge3_loadLibraryExt
119};
120