1 /*
2 * Copyright (C) 2020 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 // An implementation of the native-bridge interface for testing.
18
19 #include "nativebridge/native_bridge.h"
20
21 #include "NativeBridge6PreZygoteFork_lib.h"
22
23 // NativeBridgeCallbacks implementations
native_bridge6_initialize(const android::NativeBridgeRuntimeCallbacks *,const char *,const char *)24 extern "C" bool native_bridge6_initialize(
25 const android::NativeBridgeRuntimeCallbacks* /* art_cbs */,
26 const char* /* app_code_cache_dir */,
27 const char* /* isa */) {
28 return true;
29 }
30
native_bridge6_loadLibrary(const char *,int)31 extern "C" void* native_bridge6_loadLibrary(const char* /* libpath */, int /* flag */) {
32 return nullptr;
33 }
34
native_bridge6_getTrampoline(void *,const char *,const char *,uint32_t)35 extern "C" void* native_bridge6_getTrampoline(void* /* handle */, const char* /* name */,
36 const char* /* shorty */, uint32_t /* len */) {
37 return nullptr;
38 }
39
native_bridge6_isSupported(const char *)40 extern "C" bool native_bridge6_isSupported(const char* /* libpath */) {
41 return false;
42 }
43
native_bridge6_getAppEnv(const char *)44 extern "C" const struct android::NativeBridgeRuntimeValues* native_bridge6_getAppEnv(
45 const char* /* abi */) {
46 return nullptr;
47 }
48
native_bridge6_isCompatibleWith(uint32_t version)49 extern "C" bool native_bridge6_isCompatibleWith(uint32_t version) {
50 // For testing, allow 1-6, but disallow 7+.
51 return version <= 6;
52 }
53
native_bridge6_getSignalHandler(int)54 extern "C" android::NativeBridgeSignalHandlerFn native_bridge6_getSignalHandler(int /* signal */) {
55 return nullptr;
56 }
57
native_bridge6_unloadLibrary(void *)58 extern "C" int native_bridge6_unloadLibrary(void* /* handle */) {
59 return 0;
60 }
61
native_bridge6_getError()62 extern "C" const char* native_bridge6_getError() {
63 return nullptr;
64 }
65
native_bridge6_isPathSupported(const char *)66 extern "C" bool native_bridge6_isPathSupported(const char* /* path */) {
67 return true;
68 }
69
70 extern "C" android::native_bridge_namespace_t*
native_bridge6_createNamespace(const char *,const char *,const char *,uint64_t,const char *,android::native_bridge_namespace_t *)71 native_bridge6_createNamespace(const char* /* name */,
72 const char* /* ld_library_path */,
73 const char* /* default_library_path */,
74 uint64_t /* type */,
75 const char* /* permitted_when_isolated_path */,
76 android::native_bridge_namespace_t* /* parent_ns */) {
77 return nullptr;
78 }
79
native_bridge6_linkNamespaces(android::native_bridge_namespace_t *,android::native_bridge_namespace_t *,const char *)80 extern "C" bool native_bridge6_linkNamespaces(android::native_bridge_namespace_t* /* from */,
81 android::native_bridge_namespace_t* /* to */,
82 const char* /* shared_libs_soname */) {
83 return true;
84 }
85
native_bridge6_loadLibraryExt(const char *,int,android::native_bridge_namespace_t *)86 extern "C" void* native_bridge6_loadLibraryExt(const char* /* libpath */,
87 int /* flag */,
88 android::native_bridge_namespace_t* /* ns */) {
89 return nullptr;
90 }
91
native_bridge6_getVendorNamespace()92 extern "C" android::native_bridge_namespace_t* native_bridge6_getVendorNamespace() {
93 return nullptr;
94 }
95
native_bridge6_getExportedNamespace(const char *)96 extern "C" android::native_bridge_namespace_t* native_bridge6_getExportedNamespace(const char* /* name */) {
97 return nullptr;
98 }
99
native_bridge6_preZygoteFork()100 extern "C" void native_bridge6_preZygoteFork() {
101 android::SetPreZygoteForkDone();
102 }
103
104 android::NativeBridgeCallbacks NativeBridgeItf{
105 // v1
106 .version = 6,
107 .initialize = &native_bridge6_initialize,
108 .loadLibrary = &native_bridge6_loadLibrary,
109 .getTrampoline = &native_bridge6_getTrampoline,
110 .isSupported = &native_bridge6_isSupported,
111 .getAppEnv = &native_bridge6_getAppEnv,
112 // v2
113 .isCompatibleWith = &native_bridge6_isCompatibleWith,
114 .getSignalHandler = &native_bridge6_getSignalHandler,
115 // v3
116 .unloadLibrary = &native_bridge6_unloadLibrary,
117 .getError = &native_bridge6_getError,
118 .isPathSupported = &native_bridge6_isPathSupported,
119 .unused_initAnonymousNamespace = nullptr,
120 .createNamespace = &native_bridge6_createNamespace,
121 .linkNamespaces = &native_bridge6_linkNamespaces,
122 .loadLibraryExt = &native_bridge6_loadLibraryExt,
123 // v4
124 &native_bridge6_getVendorNamespace,
125 // v5
126 &native_bridge6_getExportedNamespace,
127 // v6
128 &native_bridge6_preZygoteFork,
129 };
130