blob: e9f0c0fca5da07639043ec84e55f2ec5cd110495 [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"
Steven Moreland00fe3ad2017-07-18 16:53:54 -070018#include <nativehelper/ScopedUtfChars.h>
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080019
20#include <dlfcn.h>
21#ifdef __ANDROID__
Dimitry Ivanov7f9a1aa2016-03-22 13:59:59 -070022#define LOG_TAG "libnativeloader"
Jesse Hallb75d82b2017-01-09 16:04:28 -080023#include "nativeloader/dlext_namespaces.h"
Mark Salyzynff2dcd92016-09-28 15:54:45 -070024#include "cutils/properties.h"
Mark Salyzyn30f991f2017-01-10 13:19:54 -080025#include "log/log.h"
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080026#endif
Jiyong Parkd1006fe2017-11-08 18:44:09 +090027#include <dirent.h>
28#include <sys/types.h>
Zhenhua WANGf2804e52016-05-30 11:16:08 +080029#include "nativebridge/native_bridge.h"
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080030
31#include <algorithm>
Jiyong Parkd1006fe2017-11-08 18:44:09 +090032#include <memory>
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080033#include <mutex>
Jiyong Parkd1006fe2017-11-08 18:44:09 +090034#include <string>
35#include <vector>
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080036
Mark Salyzynff2dcd92016-09-28 15:54:45 -070037#include <android-base/file.h>
38#include <android-base/macros.h>
39#include <android-base/strings.h>
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080040
Justin Yun4a1d1102017-11-27 17:04:14 +090041#ifdef __BIONIC__
42#include <android-base/properties.h>
43#endif
44
Zhenhua WANGf2804e52016-05-30 11:16:08 +080045#define CHECK(predicate) LOG_ALWAYS_FATAL_IF(!(predicate),\
46 "%s:%d: %s CHECK '" #predicate "' failed.",\
47 __FILE__, __LINE__, __FUNCTION__)
48
Dimitry Ivanovac1b1912015-12-01 13:56:44 -080049namespace android {
50
Dimitry Ivanov4b0e9632016-03-15 13:51:26 -070051#if defined(__ANDROID__)
Zhenhua WANGf2804e52016-05-30 11:16:08 +080052class NativeLoaderNamespace {
53 public:
54 NativeLoaderNamespace()
55 : android_ns_(nullptr), native_bridge_ns_(nullptr) { }
56
57 explicit NativeLoaderNamespace(android_namespace_t* ns)
58 : android_ns_(ns), native_bridge_ns_(nullptr) { }
59
60 explicit NativeLoaderNamespace(native_bridge_namespace_t* ns)
61 : android_ns_(nullptr), native_bridge_ns_(ns) { }
62
63 NativeLoaderNamespace(NativeLoaderNamespace&& that) = default;
64 NativeLoaderNamespace(const NativeLoaderNamespace& that) = default;
65
66 NativeLoaderNamespace& operator=(const NativeLoaderNamespace& that) = default;
67
68 android_namespace_t* get_android_ns() const {
69 CHECK(native_bridge_ns_ == nullptr);
70 return android_ns_;
71 }
72
73 native_bridge_namespace_t* get_native_bridge_ns() const {
74 CHECK(android_ns_ == nullptr);
75 return native_bridge_ns_;
76 }
77
78 bool is_android_namespace() const {
79 return native_bridge_ns_ == nullptr;
80 }
81
82 private:
83 // Only one of them can be not null
84 android_namespace_t* android_ns_;
85 native_bridge_namespace_t* native_bridge_ns_;
86};
87
Jiyong Parkd1006fe2017-11-08 18:44:09 +090088static constexpr const char kPublicNativeLibrariesSystemConfigPathFromRoot[] =
89 "/etc/public.libraries.txt";
90static constexpr const char kPublicNativeLibrariesExtensionConfigPrefix[] = "public.libraries-";
91static constexpr const size_t kPublicNativeLibrariesExtensionConfigPrefixLen =
92 sizeof(kPublicNativeLibrariesExtensionConfigPrefix) - 1;
93static constexpr const char kPublicNativeLibrariesExtensionConfigSuffix[] = ".txt";
94static constexpr const size_t kPublicNativeLibrariesExtensionConfigSuffixLen =
95 sizeof(kPublicNativeLibrariesExtensionConfigSuffix) - 1;
96static constexpr const char kPublicNativeLibrariesVendorConfig[] =
97 "/vendor/etc/public.libraries.txt";
98static constexpr const char kLlndkNativeLibrariesSystemConfigPathFromRoot[] =
99 "/etc/llndk.libraries.txt";
100static constexpr const char kVndkspNativeLibrariesSystemConfigPathFromRoot[] =
101 "/etc/vndksp.libraries.txt";
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800102
Dimitry Ivanov882cad22017-05-01 15:12:49 -0700103// The device may be configured to have the vendor libraries loaded to a separate namespace.
104// For historical reasons this namespace was named sphal but effectively it is intended
105// to use to load vendor libraries to separate namespace with controlled interface between
106// vendor and system namespaces.
107static constexpr const char* kVendorNamespaceName = "sphal";
108
Jiyong Parka07f3052017-08-22 10:26:10 +0900109static constexpr const char* kVndkNamespaceName = "vndk";
110
111static constexpr const char* kClassloaderNamespaceName = "classloader-namespace";
112static constexpr const char* kVendorClassloaderNamespaceName = "vendor-classloader-namespace";
113
Dimitry Ivanovf334cbf2016-05-10 10:39:48 -0700114// (http://b/27588281) This is a workaround for apps using custom classloaders and calling
115// System.load() with an absolute path which is outside of the classloader library search path.
116// This list includes all directories app is allowed to access this way.
117static constexpr const char* kWhitelistedDirectories = "/data:/mnt/expand";
118
Dimitry Ivanov7d028292016-05-05 17:30:24 -0700119static bool is_debuggable() {
120 char debuggable[PROP_VALUE_MAX];
121 property_get("ro.debuggable", debuggable, "0");
122 return std::string(debuggable) == "1";
123}
124
Justin Yun4a1d1102017-11-27 17:04:14 +0900125static std::string vndk_version_str() {
126#ifdef __BIONIC__
127 std::string version = android::base::GetProperty("ro.vndk.version", "");
128 if (version != "" && version != "current") {
129 return "." + version;
130 }
131#endif
132 return "";
133}
134
135static void insert_vndk_version_str(std::string* file_name) {
136 CHECK(file_name != nullptr);
137 size_t insert_pos = file_name->find_last_of(".");
138 if (insert_pos == std::string::npos) {
139 insert_pos = file_name->length();
140 }
141 file_name->insert(insert_pos, vndk_version_str());
142}
143
Jiyong Parkd1006fe2017-11-08 18:44:09 +0900144static const std::function<bool(const std::string&, std::string*)> always_true =
145 [](const std::string&, std::string*) { return true; };
146
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800147class LibraryNamespaces {
148 public:
Dimitry Ivanov426799d2016-02-22 11:27:48 -0800149 LibraryNamespaces() : initialized_(false) { }
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800150
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800151 bool Create(JNIEnv* env,
Dimitry Ivanov9e253ce2017-05-08 22:24:24 -0700152 uint32_t target_sdk_version,
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800153 jobject class_loader,
154 bool is_shared,
Jiyong Parka07f3052017-08-22 10:26:10 +0900155 bool is_for_vendor,
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800156 jstring java_library_path,
157 jstring java_permitted_path,
158 NativeLoaderNamespace* ns,
159 std::string* error_msg) {
Dimitry Ivanovcf9892b2016-05-09 10:55:50 -0700160 std::string library_path; // empty string by default.
161
162 if (java_library_path != nullptr) {
163 ScopedUtfChars library_path_utf_chars(env, java_library_path);
164 library_path = library_path_utf_chars.c_str();
165 }
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800166
Dimitry Ivanovf334cbf2016-05-10 10:39:48 -0700167 // (http://b/27588281) This is a workaround for apps using custom
168 // classloaders and calling System.load() with an absolute path which
169 // is outside of the classloader library search path.
170 //
171 // This part effectively allows such a classloader to access anything
172 // under /data and /mnt/expand
173 std::string permitted_path = kWhitelistedDirectories;
174
Dimitry Ivanov0d6e5942015-12-08 11:16:56 -0800175 if (java_permitted_path != nullptr) {
176 ScopedUtfChars path(env, java_permitted_path);
Dimitry Ivanovd0b15312016-05-10 16:21:25 -0700177 if (path.c_str() != nullptr && path.size() > 0) {
178 permitted_path = permitted_path + ":" + path.c_str();
179 }
Dimitry Ivanov0d6e5942015-12-08 11:16:56 -0800180 }
181
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800182 if (!initialized_ && !InitPublicNamespace(library_path.c_str(), error_msg)) {
183 return false;
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800184 }
185
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800186 bool found = FindNamespaceByClassLoader(env, class_loader, nullptr);
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800187
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800188 LOG_ALWAYS_FATAL_IF(found,
Dimitry Ivanov4b0e9632016-03-15 13:51:26 -0700189 "There is already a namespace associated with this classloader");
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800190
Dimitry Ivanovd2a62202015-12-15 11:06:57 -0800191 uint64_t namespace_type = ANDROID_NAMESPACE_TYPE_ISOLATED;
192 if (is_shared) {
193 namespace_type |= ANDROID_NAMESPACE_TYPE_SHARED;
194 }
195
Dimitry Ivanov9e253ce2017-05-08 22:24:24 -0700196 if (target_sdk_version < 24) {
197 namespace_type |= ANDROID_NAMESPACE_TYPE_GREYLIST_ENABLED;
198 }
199
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800200 NativeLoaderNamespace parent_ns;
201 bool found_parent_namespace = FindParentNamespaceByClassLoader(env, class_loader, &parent_ns);
Dimitry Ivanov24db75c2016-05-12 15:34:41 -0700202
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800203 bool is_native_bridge = false;
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800204
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800205 if (found_parent_namespace) {
206 is_native_bridge = !parent_ns.is_android_namespace();
207 } else if (!library_path.empty()) {
208 is_native_bridge = NativeBridgeIsPathSupported(library_path.c_str());
Dimitry Ivanovd047c922016-02-23 14:23:51 -0800209 }
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800210
Jiyong Parka07f3052017-08-22 10:26:10 +0900211 std::string system_exposed_libraries = system_public_libraries_;
212 const char* namespace_name = kClassloaderNamespaceName;
213 android_namespace_t* vndk_ns = nullptr;
214 if (is_for_vendor && !is_shared) {
215 LOG_FATAL_IF(is_native_bridge, "Unbundled vendor apk must not use translated architecture");
216
217 // For vendor apks, give access to the vendor lib even though
218 // they are treated as unbundled; the libs and apks are still bundled
219 // together in the vendor partition.
220#if defined(__LP64__)
221 std::string vendor_lib_path = "/vendor/lib64";
222#else
223 std::string vendor_lib_path = "/vendor/lib";
224#endif
225 library_path = library_path + ":" + vendor_lib_path.c_str();
226 permitted_path = permitted_path + ":" + vendor_lib_path.c_str();
227
228 // Also give access to LLNDK libraries since they are available to vendors
229 system_exposed_libraries = system_exposed_libraries + ":" + system_llndk_libraries_.c_str();
230
231 // Give access to VNDK-SP libraries from the 'vndk' namespace.
232 vndk_ns = android_get_exported_namespace(kVndkNamespaceName);
233 LOG_ALWAYS_FATAL_IF(vndk_ns == nullptr,
234 "Cannot find \"%s\" namespace for vendor apks", kVndkNamespaceName);
235
236 // Different name is useful for debugging
237 namespace_name = kVendorClassloaderNamespaceName;
238 ALOGD("classloader namespace configured for unbundled vendor apk. library_path=%s", library_path.c_str());
239 }
240
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800241 NativeLoaderNamespace native_loader_ns;
242 if (!is_native_bridge) {
Jiyong Parka07f3052017-08-22 10:26:10 +0900243 android_namespace_t* ns = android_create_namespace(namespace_name,
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800244 nullptr,
245 library_path.c_str(),
246 namespace_type,
247 permitted_path.c_str(),
248 parent_ns.get_android_ns());
249 if (ns == nullptr) {
250 *error_msg = dlerror();
251 return false;
252 }
253
Dimitry Ivanov882cad22017-05-01 15:12:49 -0700254 // Note that when vendor_ns is not configured this function will return nullptr
255 // and it will result in linking vendor_public_libraries_ to the default namespace
256 // which is expected behavior in this case.
257 android_namespace_t* vendor_ns = android_get_exported_namespace(kVendorNamespaceName);
258
Jiyong Parka07f3052017-08-22 10:26:10 +0900259 if (!android_link_namespaces(ns, nullptr, system_exposed_libraries.c_str())) {
Dimitry Ivanov26e1a842017-02-03 14:11:27 -0800260 *error_msg = dlerror();
261 return false;
262 }
263
Jiyong Parka07f3052017-08-22 10:26:10 +0900264 if (vndk_ns != nullptr && !system_vndksp_libraries_.empty()) {
265 // vendor apks are allowed to use VNDK-SP libraries.
266 if (!android_link_namespaces(ns, vndk_ns, system_vndksp_libraries_.c_str())) {
267 *error_msg = dlerror();
268 return false;
269 }
270 }
271
Dimitry Ivanov882cad22017-05-01 15:12:49 -0700272 if (!vendor_public_libraries_.empty()) {
273 if (!android_link_namespaces(ns, vendor_ns, vendor_public_libraries_.c_str())) {
274 *error_msg = dlerror();
275 return false;
276 }
277 }
278
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800279 native_loader_ns = NativeLoaderNamespace(ns);
280 } else {
Jiyong Parka07f3052017-08-22 10:26:10 +0900281 native_bridge_namespace_t* ns = NativeBridgeCreateNamespace(namespace_name,
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800282 nullptr,
283 library_path.c_str(),
284 namespace_type,
285 permitted_path.c_str(),
286 parent_ns.get_native_bridge_ns());
Dimitry Ivanov882cad22017-05-01 15:12:49 -0700287
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800288 if (ns == nullptr) {
289 *error_msg = NativeBridgeGetError();
290 return false;
291 }
292
Dimitry Ivanov882cad22017-05-01 15:12:49 -0700293 native_bridge_namespace_t* vendor_ns = NativeBridgeGetVendorNamespace();
294
Jiyong Parka07f3052017-08-22 10:26:10 +0900295 if (!NativeBridgeLinkNamespaces(ns, nullptr, system_exposed_libraries.c_str())) {
Zhenhua WANGe8fb11d2017-02-27 10:14:45 +0800296 *error_msg = NativeBridgeGetError();
297 return false;
298 }
299
Dimitry Ivanov882cad22017-05-01 15:12:49 -0700300 if (!vendor_public_libraries_.empty()) {
301 if (!NativeBridgeLinkNamespaces(ns, vendor_ns, vendor_public_libraries_.c_str())) {
302 *error_msg = NativeBridgeGetError();
303 return false;
304 }
305 }
306
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800307 native_loader_ns = NativeLoaderNamespace(ns);
308 }
309
310 namespaces_.push_back(std::make_pair(env->NewWeakGlobalRef(class_loader), native_loader_ns));
311
312 *ns = native_loader_ns;
313 return true;
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800314 }
315
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800316 bool FindNamespaceByClassLoader(JNIEnv* env, jobject class_loader, NativeLoaderNamespace* ns) {
Dimitry Ivanovf44ecde2016-02-22 13:48:22 -0800317 auto it = std::find_if(namespaces_.begin(), namespaces_.end(),
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800318 [&](const std::pair<jweak, NativeLoaderNamespace>& value) {
Dimitry Ivanovf44ecde2016-02-22 13:48:22 -0800319 return env->IsSameObject(value.first, class_loader);
320 });
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800321 if (it != namespaces_.end()) {
322 if (ns != nullptr) {
323 *ns = it->second;
324 }
325
326 return true;
327 }
328
329 return false;
Dimitry Ivanovf44ecde2016-02-22 13:48:22 -0800330 }
331
Dimitry Ivanov4b0e9632016-03-15 13:51:26 -0700332 void Initialize() {
Dimitry Ivanov80ddb8f2016-05-09 18:12:00 -0700333 // Once public namespace is initialized there is no
334 // point in running this code - it will have no effect
335 // on the current list of public libraries.
336 if (initialized_) {
337 return;
338 }
339
Dimitry Ivanovb6140452016-04-06 18:24:08 -0700340 std::vector<std::string> sonames;
Dimitry Ivanov0b5651e2016-04-21 16:42:48 -0700341 const char* android_root_env = getenv("ANDROID_ROOT");
342 std::string root_dir = android_root_env != nullptr ? android_root_env : "/system";
343 std::string public_native_libraries_system_config =
344 root_dir + kPublicNativeLibrariesSystemConfigPathFromRoot;
Jiyong Parka07f3052017-08-22 10:26:10 +0900345 std::string llndk_native_libraries_system_config =
346 root_dir + kLlndkNativeLibrariesSystemConfigPathFromRoot;
347 std::string vndksp_native_libraries_system_config =
348 root_dir + kVndkspNativeLibrariesSystemConfigPathFromRoot;
Dimitry Ivanovb6140452016-04-06 18:24:08 -0700349
Christopher Ferris39da84b2016-06-21 16:11:23 -0700350 std::string error_msg;
Jiyong Parkd1006fe2017-11-08 18:44:09 +0900351 LOG_ALWAYS_FATAL_IF(
352 !ReadConfig(public_native_libraries_system_config, &sonames, always_true, &error_msg),
353 "Error reading public native library list from \"%s\": %s",
354 public_native_libraries_system_config.c_str(), error_msg.c_str());
355
356 // read /system/etc/public.libraries-<companyname>.txt which contain partner defined
357 // system libs that are exposed to apps. The libs in the txt files must be
358 // named as lib<name>.<companyname>.so.
359 std::string dirname = base::Dirname(public_native_libraries_system_config);
360 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(dirname.c_str()), closedir);
361 if (dir != nullptr) {
362 // Failing to opening the dir is not an error, which can happen in
363 // webview_zygote.
364 struct dirent* ent;
365 while ((ent = readdir(dir.get())) != nullptr) {
366 if (ent->d_type != DT_REG && ent->d_type != DT_LNK) {
367 continue;
368 }
369 const std::string filename(ent->d_name);
370 if (android::base::StartsWith(filename, kPublicNativeLibrariesExtensionConfigPrefix) &&
371 android::base::EndsWith(filename, kPublicNativeLibrariesExtensionConfigSuffix)) {
372 const size_t start = kPublicNativeLibrariesExtensionConfigPrefixLen;
373 const size_t end = filename.size() - kPublicNativeLibrariesExtensionConfigSuffixLen;
374 const std::string company_name = filename.substr(start, end - start);
375 const std::string config_file_path = dirname + "/" + filename;
376 LOG_ALWAYS_FATAL_IF(
377 company_name.empty(),
378 "Error extracting company name from public native library list file path \"%s\"",
379 config_file_path.c_str());
380 LOG_ALWAYS_FATAL_IF(
381 !ReadConfig(
382 config_file_path, &sonames,
383 [&company_name](const std::string& soname, std::string* error_msg) {
384 if (android::base::StartsWith(soname, "lib") &&
Elliott Hughes579e6822017-12-20 09:41:00 -0800385 android::base::EndsWith(soname, "." + company_name + ".so")) {
Jiyong Parkd1006fe2017-11-08 18:44:09 +0900386 return true;
387 } else {
388 *error_msg = "Library name \"" + soname +
389 "\" does not end with the company name: " + company_name + ".";
390 return false;
391 }
392 },
393 &error_msg),
394 "Error reading public native library list from \"%s\": %s", config_file_path.c_str(),
395 error_msg.c_str());
396 }
397 }
398 }
Dimitry Ivanov7d028292016-05-05 17:30:24 -0700399
Justin Yun4a1d1102017-11-27 17:04:14 +0900400 // Insert VNDK version to llndk and vndksp config file names.
401 insert_vndk_version_str(&llndk_native_libraries_system_config);
402 insert_vndk_version_str(&vndksp_native_libraries_system_config);
403
Dimitry Ivanov7d028292016-05-05 17:30:24 -0700404 // For debuggable platform builds use ANDROID_ADDITIONAL_PUBLIC_LIBRARIES environment
405 // variable to add libraries to the list. This is intended for platform tests only.
406 if (is_debuggable()) {
407 const char* additional_libs = getenv("ANDROID_ADDITIONAL_PUBLIC_LIBRARIES");
408 if (additional_libs != nullptr && additional_libs[0] != '\0') {
409 std::vector<std::string> additional_libs_vector = base::Split(additional_libs, ":");
410 std::copy(additional_libs_vector.begin(),
411 additional_libs_vector.end(),
412 std::back_inserter(sonames));
413 }
414 }
415
Dimitry Ivanovb6140452016-04-06 18:24:08 -0700416 // android_init_namespaces() expects all the public libraries
417 // to be loaded so that they can be found by soname alone.
418 //
419 // TODO(dimitry): this is a bit misleading since we do not know
420 // if the vendor public library is going to be opened from /vendor/lib
421 // we might as well end up loading them from /system/lib
422 // For now we rely on CTS test to catch things like this but
423 // it should probably be addressed in the future.
424 for (const auto& soname : sonames) {
Evan Ralston15a264e2017-02-03 17:09:46 -0800425 LOG_ALWAYS_FATAL_IF(dlopen(soname.c_str(), RTLD_NOW | RTLD_NODELETE) == nullptr,
426 "Error preloading public library %s: %s",
427 soname.c_str(), dlerror());
Dimitry Ivanovb6140452016-04-06 18:24:08 -0700428 }
429
Dimitry Ivanov882cad22017-05-01 15:12:49 -0700430 system_public_libraries_ = base::Join(sonames, ':');
431
432 sonames.clear();
Jiyong Parkd1006fe2017-11-08 18:44:09 +0900433 ReadConfig(llndk_native_libraries_system_config, &sonames, always_true);
Jiyong Parka07f3052017-08-22 10:26:10 +0900434 system_llndk_libraries_ = base::Join(sonames, ':');
435
436 sonames.clear();
Jiyong Parkd1006fe2017-11-08 18:44:09 +0900437 ReadConfig(vndksp_native_libraries_system_config, &sonames, always_true);
Jiyong Parka07f3052017-08-22 10:26:10 +0900438 system_vndksp_libraries_ = base::Join(sonames, ':');
439
440 sonames.clear();
Dimitry Ivanov882cad22017-05-01 15:12:49 -0700441 // This file is optional, quietly ignore if the file does not exist.
Jiyong Parkd1006fe2017-11-08 18:44:09 +0900442 ReadConfig(kPublicNativeLibrariesVendorConfig, &sonames, always_true, nullptr);
Dimitry Ivanov882cad22017-05-01 15:12:49 -0700443
444 vendor_public_libraries_ = base::Join(sonames, ':');
Dimitry Ivanovb6140452016-04-06 18:24:08 -0700445 }
446
Dimitry Ivanovbe4ca3a2016-05-02 10:43:16 -0700447 void Reset() {
448 namespaces_.clear();
449 }
450
Dimitry Ivanovb6140452016-04-06 18:24:08 -0700451 private:
Christopher Ferris39da84b2016-06-21 16:11:23 -0700452 bool ReadConfig(const std::string& configFile, std::vector<std::string>* sonames,
Jiyong Parkd1006fe2017-11-08 18:44:09 +0900453 const std::function<bool(const std::string& /* soname */,
454 std::string* /* error_msg */)>& check_soname,
Christopher Ferris39da84b2016-06-21 16:11:23 -0700455 std::string* error_msg = nullptr) {
Dimitry Ivanov4b0e9632016-03-15 13:51:26 -0700456 // Read list of public native libraries from the config file.
457 std::string file_content;
Dimitry Ivanovb6140452016-04-06 18:24:08 -0700458 if(!base::ReadFileToString(configFile, &file_content)) {
Christopher Ferris39da84b2016-06-21 16:11:23 -0700459 if (error_msg) *error_msg = strerror(errno);
Dimitry Ivanovb6140452016-04-06 18:24:08 -0700460 return false;
461 }
Dimitry Ivanov4b0e9632016-03-15 13:51:26 -0700462
463 std::vector<std::string> lines = base::Split(file_content, "\n");
464
Christopher Ferris39da84b2016-06-21 16:11:23 -0700465 for (auto& line : lines) {
Dimitry Ivanov4b0e9632016-03-15 13:51:26 -0700466 auto trimmed_line = base::Trim(line);
467 if (trimmed_line[0] == '#' || trimmed_line.empty()) {
468 continue;
469 }
Christopher Ferris39da84b2016-06-21 16:11:23 -0700470 size_t space_pos = trimmed_line.rfind(' ');
471 if (space_pos != std::string::npos) {
472 std::string type = trimmed_line.substr(space_pos + 1);
473 if (type != "32" && type != "64") {
474 if (error_msg) *error_msg = "Malformed line: " + line;
475 return false;
476 }
477#if defined(__LP64__)
478 // Skip 32 bit public library.
479 if (type == "32") {
480 continue;
481 }
482#else
483 // Skip 64 bit public library.
484 if (type == "64") {
485 continue;
486 }
487#endif
488 trimmed_line.resize(space_pos);
489 }
Dimitry Ivanov4b0e9632016-03-15 13:51:26 -0700490
Jiyong Parkd1006fe2017-11-08 18:44:09 +0900491 if (check_soname(trimmed_line, error_msg)) {
492 sonames->push_back(trimmed_line);
493 } else {
494 return false;
495 }
Dimitry Ivanov4b0e9632016-03-15 13:51:26 -0700496 }
497
Dimitry Ivanovb6140452016-04-06 18:24:08 -0700498 return true;
Dimitry Ivanovd68c8e92016-02-10 14:09:22 -0800499 }
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800500
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800501 bool InitPublicNamespace(const char* library_path, std::string* error_msg) {
502 // Ask native bride if this apps library path should be handled by it
503 bool is_native_bridge = NativeBridgeIsPathSupported(library_path);
504
Dimitry Ivanov4b0e9632016-03-15 13:51:26 -0700505 // (http://b/25844435) - Some apps call dlopen from generated code (mono jited
506 // code is one example) unknown to linker in which case linker uses anonymous
507 // namespace. The second argument specifies the search path for the anonymous
508 // namespace which is the library_path of the classloader.
Dimitry Ivanov882cad22017-05-01 15:12:49 -0700509 initialized_ = android_init_anonymous_namespace(system_public_libraries_.c_str(),
Dimitry Ivanov26e1a842017-02-03 14:11:27 -0800510 is_native_bridge ? nullptr : library_path);
Dimitry Ivanovd836ab02016-11-02 18:03:10 -0700511 if (!initialized_) {
512 *error_msg = dlerror();
513 return false;
514 }
515
516 // and now initialize native bridge namespaces if necessary.
517 if (NativeBridgeInitialized()) {
Dimitry Ivanov882cad22017-05-01 15:12:49 -0700518 initialized_ = NativeBridgeInitAnonymousNamespace(system_public_libraries_.c_str(),
Zhenhua WANGe8fb11d2017-02-27 10:14:45 +0800519 is_native_bridge ? library_path : nullptr);
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800520 if (!initialized_) {
521 *error_msg = NativeBridgeGetError();
522 }
523 }
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800524
525 return initialized_;
526 }
527
Dimitry Ivanov24db75c2016-05-12 15:34:41 -0700528 jobject GetParentClassLoader(JNIEnv* env, jobject class_loader) {
529 jclass class_loader_class = env->FindClass("java/lang/ClassLoader");
530 jmethodID get_parent = env->GetMethodID(class_loader_class,
531 "getParent",
532 "()Ljava/lang/ClassLoader;");
533
534 return env->CallObjectMethod(class_loader, get_parent);
535 }
536
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800537 bool FindParentNamespaceByClassLoader(JNIEnv* env,
538 jobject class_loader,
539 NativeLoaderNamespace* ns) {
Dimitry Ivanov24db75c2016-05-12 15:34:41 -0700540 jobject parent_class_loader = GetParentClassLoader(env, class_loader);
541
542 while (parent_class_loader != nullptr) {
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800543 if (FindNamespaceByClassLoader(env, parent_class_loader, ns)) {
544 return true;
Dimitry Ivanov24db75c2016-05-12 15:34:41 -0700545 }
546
547 parent_class_loader = GetParentClassLoader(env, parent_class_loader);
548 }
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800549
550 return false;
Dimitry Ivanov24db75c2016-05-12 15:34:41 -0700551 }
552
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800553 bool initialized_;
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800554 std::vector<std::pair<jweak, NativeLoaderNamespace>> namespaces_;
Dimitry Ivanov882cad22017-05-01 15:12:49 -0700555 std::string system_public_libraries_;
556 std::string vendor_public_libraries_;
Jiyong Parka07f3052017-08-22 10:26:10 +0900557 std::string system_llndk_libraries_;
558 std::string system_vndksp_libraries_;
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800559
560 DISALLOW_COPY_AND_ASSIGN(LibraryNamespaces);
561};
562
Dimitry Ivanov34d5a202016-02-29 13:21:43 -0800563static std::mutex g_namespaces_mutex;
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800564static LibraryNamespaces* g_namespaces = new LibraryNamespaces;
565#endif
566
Dimitry Ivanov4b0e9632016-03-15 13:51:26 -0700567void InitializeNativeLoader() {
Dimitry Ivanov426799d2016-02-22 11:27:48 -0800568#if defined(__ANDROID__)
Dimitry Ivanov34d5a202016-02-29 13:21:43 -0800569 std::lock_guard<std::mutex> guard(g_namespaces_mutex);
Dimitry Ivanov4b0e9632016-03-15 13:51:26 -0700570 g_namespaces->Initialize();
Dimitry Ivanov426799d2016-02-22 11:27:48 -0800571#endif
572}
573
Dimitry Ivanovbe4ca3a2016-05-02 10:43:16 -0700574void ResetNativeLoader() {
575#if defined(__ANDROID__)
576 std::lock_guard<std::mutex> guard(g_namespaces_mutex);
577 g_namespaces->Reset();
578#endif
579}
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800580
Dimitry Ivanovd047c922016-02-23 14:23:51 -0800581jstring CreateClassLoaderNamespace(JNIEnv* env,
582 int32_t target_sdk_version,
583 jobject class_loader,
584 bool is_shared,
Jiyong Parka07f3052017-08-22 10:26:10 +0900585 bool is_for_vendor,
Dimitry Ivanovd047c922016-02-23 14:23:51 -0800586 jstring library_path,
587 jstring permitted_path) {
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800588#if defined(__ANDROID__)
Dimitry Ivanov34d5a202016-02-29 13:21:43 -0800589 std::lock_guard<std::mutex> guard(g_namespaces_mutex);
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800590
591 std::string error_msg;
592 NativeLoaderNamespace ns;
593 bool success = g_namespaces->Create(env,
Dimitry Ivanov9e253ce2017-05-08 22:24:24 -0700594 target_sdk_version,
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800595 class_loader,
596 is_shared,
Jiyong Parka07f3052017-08-22 10:26:10 +0900597 is_for_vendor,
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800598 library_path,
599 permitted_path,
600 &ns,
601 &error_msg);
602 if (!success) {
603 return env->NewStringUTF(error_msg.c_str());
Dimitry Ivanovd047c922016-02-23 14:23:51 -0800604 }
605#else
Jiyong Parka07f3052017-08-22 10:26:10 +0900606 UNUSED(env, target_sdk_version, class_loader, is_shared, is_for_vendor,
Dimitry Ivanovd047c922016-02-23 14:23:51 -0800607 library_path, permitted_path);
608#endif
609 return nullptr;
610}
611
612void* OpenNativeLibrary(JNIEnv* env,
613 int32_t target_sdk_version,
614 const char* path,
615 jobject class_loader,
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800616 jstring library_path,
617 bool* needs_native_bridge,
618 std::string* error_msg) {
Dimitry Ivanovd047c922016-02-23 14:23:51 -0800619#if defined(__ANDROID__)
Dimitry Ivanov5539db02016-04-20 16:07:30 -0700620 UNUSED(target_sdk_version);
621 if (class_loader == nullptr) {
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800622 *needs_native_bridge = false;
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800623 return dlopen(path, RTLD_NOW);
624 }
625
Dimitry Ivanov34d5a202016-02-29 13:21:43 -0800626 std::lock_guard<std::mutex> guard(g_namespaces_mutex);
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800627 NativeLoaderNamespace ns;
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800628
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800629 if (!g_namespaces->FindNamespaceByClassLoader(env, class_loader, &ns)) {
Dimitry Ivanovd047c922016-02-23 14:23:51 -0800630 // This is the case where the classloader was not created by ApplicationLoaders
631 // In this case we create an isolated not-shared namespace for it.
Dimitry Ivanov9e253ce2017-05-08 22:24:24 -0700632 if (!g_namespaces->Create(env,
633 target_sdk_version,
634 class_loader,
Jiyong Parka07f3052017-08-22 10:26:10 +0900635 false /* is_shared */,
636 false /* is_for_vendor */,
Dimitry Ivanov9e253ce2017-05-08 22:24:24 -0700637 library_path,
638 nullptr,
639 &ns,
640 error_msg)) {
Dimitry Ivanovd047c922016-02-23 14:23:51 -0800641 return nullptr;
642 }
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800643 }
644
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800645 if (ns.is_android_namespace()) {
646 android_dlextinfo extinfo;
647 extinfo.flags = ANDROID_DLEXT_USE_NAMESPACE;
648 extinfo.library_namespace = ns.get_android_ns();
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800649
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800650 void* handle = android_dlopen_ext(path, RTLD_NOW, &extinfo);
651 if (handle == nullptr) {
652 *error_msg = dlerror();
653 }
654 *needs_native_bridge = false;
655 return handle;
656 } else {
657 void* handle = NativeBridgeLoadLibraryExt(path, RTLD_NOW, ns.get_native_bridge_ns());
658 if (handle == nullptr) {
659 *error_msg = NativeBridgeGetError();
660 }
661 *needs_native_bridge = true;
662 return handle;
663 }
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800664#else
Dimitry Ivanovd047c922016-02-23 14:23:51 -0800665 UNUSED(env, target_sdk_version, class_loader, library_path);
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800666 *needs_native_bridge = false;
667 void* handle = dlopen(path, RTLD_NOW);
668 if (handle == nullptr) {
669 if (NativeBridgeIsSupported(path)) {
670 *needs_native_bridge = true;
671 handle = NativeBridgeLoadLibrary(path, RTLD_NOW);
672 if (handle == nullptr) {
673 *error_msg = NativeBridgeGetError();
674 }
675 } else {
676 *needs_native_bridge = false;
677 *error_msg = dlerror();
678 }
679 }
680 return handle;
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800681#endif
682}
683
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800684bool CloseNativeLibrary(void* handle, const bool needs_native_bridge) {
685 return needs_native_bridge ? NativeBridgeUnloadLibrary(handle) :
686 dlclose(handle);
Dimitry Ivanov09a516b2016-05-03 14:55:25 -0700687}
688
Dimitry Ivanovf44ecde2016-02-22 13:48:22 -0800689#if defined(__ANDROID__)
Dimitry Ivanov800083d2016-11-01 14:17:00 -0700690// native_bridge_namespaces are not supported for callers of this function.
691// This function will return nullptr in the case when application is running
692// on native bridge.
Dimitry Ivanovf44ecde2016-02-22 13:48:22 -0800693android_namespace_t* FindNamespaceByClassLoader(JNIEnv* env, jobject class_loader) {
Dimitry Ivanov34d5a202016-02-29 13:21:43 -0800694 std::lock_guard<std::mutex> guard(g_namespaces_mutex);
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800695 NativeLoaderNamespace ns;
696 if (g_namespaces->FindNamespaceByClassLoader(env, class_loader, &ns)) {
Dimitry Ivanov800083d2016-11-01 14:17:00 -0700697 return ns.is_android_namespace() ? ns.get_android_ns() : nullptr;
Zhenhua WANGf2804e52016-05-30 11:16:08 +0800698 }
699
700 return nullptr;
Dimitry Ivanovf44ecde2016-02-22 13:48:22 -0800701}
702#endif
703
Dimitry Ivanovac1b1912015-12-01 13:56:44 -0800704}; // android namespace