blob: 86d9d77f7747e986a3d3d600ae38093a8b37b2c6 [file] [log] [blame]
Dimitry Ivanovac1b1912015-12-01 13:56:44 -08001/*
2 * Copyright (C) 2015 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 "nativeloader/native_loader.h"
18#include "ScopedUtfChars.h"
19
20#include <dlfcn.h>
21#ifdef __ANDROID__
22#include <android/dlext.h>
23#include "cutils/properties.h"
Dimitry Ivanov4cd07682016-02-23 14:23:51 -080024#include "log/log.h"
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080025#endif
26
27#include <algorithm>
28#include <vector>
29#include <string>
30#include <mutex>
31
Elliott Hughes8b047142015-12-08 10:38:59 -080032#include "android-base/macros.h"
33#include "android-base/strings.h"
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080034
35namespace android {
36
37#ifdef __ANDROID__
38// TODO(dimitry): move this to system properties.
39static const char* kPublicNativeLibraries = "libandroid.so:"
40 "libc.so:"
41 "libdl.so:"
42 "libEGL.so:"
43 "libGLESv1_CM.so:"
44 "libGLESv2.so:"
45 "libGLESv3.so:"
Dimitry Ivanovc24ca892016-02-02 10:40:08 -080046 "libicui18n.so:"
47 "libicuuc.so:"
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080048 "libjnigraphics.so:"
49 "liblog.so:"
50 "libmediandk.so:"
51 "libm.so:"
52 "libOpenMAXAL.so:"
53 "libOpenSLES.so:"
Dimitry Ivanovcdb6fee2016-01-13 15:19:35 -080054 "libRS.so:"
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080055 "libstdc++.so:"
Dimitry Ivanov90bf68e2016-01-08 12:35:38 -080056 "libwebviewchromium_plat_support.so:"
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080057 "libz.so";
58
59class LibraryNamespaces {
60 public:
Dimitry Ivanov6f800222016-02-22 11:27:48 -080061 LibraryNamespaces() : initialized_(false) { }
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080062
Dimitry Ivanov4cd07682016-02-23 14:23:51 -080063 android_namespace_t* Create(JNIEnv* env,
64 jobject class_loader,
65 bool is_shared,
66 jstring java_library_path,
67 jstring java_permitted_path) {
Dimitry Ivanov0d6e5942015-12-08 11:16:56 -080068 ScopedUtfChars library_path(env, java_library_path);
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080069
Dimitry Ivanov0d6e5942015-12-08 11:16:56 -080070 std::string permitted_path;
71 if (java_permitted_path != nullptr) {
72 ScopedUtfChars path(env, java_permitted_path);
73 permitted_path = path.c_str();
74 }
75
76 if (!initialized_ && !InitPublicNamespace(library_path.c_str())) {
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080077 return nullptr;
78 }
79
Dimitry Ivanov34fa7042016-02-22 13:02:35 -080080 android_namespace_t* ns = FindNamespaceByClassLoader(env, class_loader);
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080081
Dimitry Ivanov4cd07682016-02-23 14:23:51 -080082 LOG_FATAL_IF(ns != nullptr, "There is already a namespace associated with this classloader");
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080083
Dimitry Ivanovd2a62202015-12-15 11:06:57 -080084 uint64_t namespace_type = ANDROID_NAMESPACE_TYPE_ISOLATED;
85 if (is_shared) {
86 namespace_type |= ANDROID_NAMESPACE_TYPE_SHARED;
87 }
88
Dimitry Ivanov34fa7042016-02-22 13:02:35 -080089 ns = android_create_namespace("classloader-namespace",
90 nullptr,
91 library_path.c_str(),
92 namespace_type,
93 java_permitted_path != nullptr ?
94 permitted_path.c_str() :
95 nullptr);
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080096
Dimitry Ivanov4cd07682016-02-23 14:23:51 -080097 if (ns != nullptr) {
98 namespaces_.push_back(std::make_pair(env->NewWeakGlobalRef(class_loader), ns));
99 }
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800100
101 return ns;
102 }
103
Dimitry Ivanov0cd10d82016-02-22 13:48:22 -0800104 android_namespace_t* FindNamespaceByClassLoader(JNIEnv* env, jobject class_loader) {
105 auto it = std::find_if(namespaces_.begin(), namespaces_.end(),
106 [&](const std::pair<jweak, android_namespace_t*>& value) {
107 return env->IsSameObject(value.first, class_loader);
108 });
109 return it != namespaces_.end() ? it->second : nullptr;
110 }
111
Dimitry Ivanov55bbb0d2016-02-10 14:09:22 -0800112 void PreloadPublicLibraries() {
113 // android_init_namespaces() expects all the public libraries
114 // to be loaded so that they can be found by soname alone.
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800115 std::vector<std::string> sonames = android::base::Split(kPublicNativeLibraries, ":");
116 for (const auto& soname : sonames) {
Dimitry Ivanov55bbb0d2016-02-10 14:09:22 -0800117 dlopen(soname.c_str(), RTLD_NOW | RTLD_NODELETE);
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800118 }
Dimitry Ivanov55bbb0d2016-02-10 14:09:22 -0800119 }
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800120
Dimitry Ivanov6f800222016-02-22 11:27:48 -0800121 private:
Dimitry Ivanov55bbb0d2016-02-10 14:09:22 -0800122 bool InitPublicNamespace(const char* library_path) {
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800123 // Some apps call dlopen from generated code unknown to linker in which
124 // case linker uses anonymous namespace. See b/25844435 for details.
125 initialized_ = android_init_namespaces(kPublicNativeLibraries, library_path);
126
127 return initialized_;
128 }
129
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800130 bool initialized_;
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800131 std::vector<std::pair<jweak, android_namespace_t*>> namespaces_;
132
133 DISALLOW_COPY_AND_ASSIGN(LibraryNamespaces);
134};
135
Dimitry Ivanov1dff1aa2016-02-29 13:21:43 -0800136static std::mutex g_namespaces_mutex;
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800137static LibraryNamespaces* g_namespaces = new LibraryNamespaces;
Dimitry Ivanov4cd07682016-02-23 14:23:51 -0800138
139static bool namespaces_enabled(uint32_t target_sdk_version) {
140 return target_sdk_version > 0;
141}
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800142#endif
143
Dimitry Ivanov6f800222016-02-22 11:27:48 -0800144void PreloadPublicNativeLibraries() {
145#if defined(__ANDROID__)
Dimitry Ivanov1dff1aa2016-02-29 13:21:43 -0800146 std::lock_guard<std::mutex> guard(g_namespaces_mutex);
Dimitry Ivanov6f800222016-02-22 11:27:48 -0800147 g_namespaces->PreloadPublicLibraries();
148#endif
149}
150
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800151
Dimitry Ivanov4cd07682016-02-23 14:23:51 -0800152jstring CreateClassLoaderNamespace(JNIEnv* env,
153 int32_t target_sdk_version,
154 jobject class_loader,
155 bool is_shared,
156 jstring library_path,
157 jstring permitted_path) {
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800158#if defined(__ANDROID__)
Dimitry Ivanov4cd07682016-02-23 14:23:51 -0800159 if (!namespaces_enabled(target_sdk_version)) {
160 return nullptr;
161 }
162
Dimitry Ivanov1dff1aa2016-02-29 13:21:43 -0800163 std::lock_guard<std::mutex> guard(g_namespaces_mutex);
Dimitry Ivanov4cd07682016-02-23 14:23:51 -0800164 android_namespace_t* ns = g_namespaces->Create(env,
165 class_loader,
166 is_shared,
167 library_path,
168 permitted_path);
169 if (ns == nullptr) {
170 return env->NewStringUTF(dlerror());
171 }
172#else
173 UNUSED(env, target_sdk_version, class_loader, is_shared,
174 library_path, permitted_path);
175#endif
176 return nullptr;
177}
178
179void* OpenNativeLibrary(JNIEnv* env,
180 int32_t target_sdk_version,
181 const char* path,
182 jobject class_loader,
183 jstring library_path) {
184#if defined(__ANDROID__)
185 if (!namespaces_enabled(target_sdk_version) || class_loader == nullptr) {
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800186 return dlopen(path, RTLD_NOW);
187 }
188
Dimitry Ivanov1dff1aa2016-02-29 13:21:43 -0800189 std::lock_guard<std::mutex> guard(g_namespaces_mutex);
Dimitry Ivanov4cd07682016-02-23 14:23:51 -0800190 android_namespace_t* ns = g_namespaces->FindNamespaceByClassLoader(env, class_loader);
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800191
192 if (ns == nullptr) {
Dimitry Ivanov4cd07682016-02-23 14:23:51 -0800193 // This is the case where the classloader was not created by ApplicationLoaders
194 // In this case we create an isolated not-shared namespace for it.
195 ns = g_namespaces->Create(env, class_loader, false, library_path, nullptr);
196 if (ns == nullptr) {
197 return nullptr;
198 }
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800199 }
200
201 android_dlextinfo extinfo;
202 extinfo.flags = ANDROID_DLEXT_USE_NAMESPACE;
203 extinfo.library_namespace = ns;
204
205 return android_dlopen_ext(path, RTLD_NOW, &extinfo);
206#else
Dimitry Ivanov4cd07682016-02-23 14:23:51 -0800207 UNUSED(env, target_sdk_version, class_loader, library_path);
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800208 return dlopen(path, RTLD_NOW);
209#endif
210}
211
Dimitry Ivanov0cd10d82016-02-22 13:48:22 -0800212#if defined(__ANDROID__)
213android_namespace_t* FindNamespaceByClassLoader(JNIEnv* env, jobject class_loader) {
Dimitry Ivanov1dff1aa2016-02-29 13:21:43 -0800214 std::lock_guard<std::mutex> guard(g_namespaces_mutex);
Dimitry Ivanov0cd10d82016-02-22 13:48:22 -0800215 return g_namespaces->FindNamespaceByClassLoader(env, class_loader);
216}
217#endif
218
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800219}; // android namespace