Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 The Android Open Source Project |
Dimitry Ivanov | bcc4da9 | 2017-02-15 15:31:13 -0800 | [diff] [blame] | 3 | * All rights reserved. |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 4 | * |
Dimitry Ivanov | bcc4da9 | 2017-02-15 15:31:13 -0800 | [diff] [blame] | 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * * Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * * Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in |
| 12 | * the documentation and/or other materials provided with the |
| 13 | * distribution. |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 14 | * |
Dimitry Ivanov | bcc4da9 | 2017-02-15 15:31:13 -0800 | [diff] [blame] | 15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 16 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 17 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 18 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 19 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 20 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 21 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 22 | * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 23 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 24 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 25 | * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 26 | * SUCH DAMAGE. |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 27 | */ |
| 28 | |
Elliott Hughes | 5419b94 | 2012-10-16 15:54:46 -0700 | [diff] [blame] | 29 | #include "linker.h" |
Evgenii Stepanov | 0a3637d | 2016-07-06 13:20:59 -0700 | [diff] [blame] | 30 | #include "linker_cfi.h" |
Dimitry Ivanov | 48ec288 | 2016-08-04 11:50:36 -0700 | [diff] [blame] | 31 | #include "linker_globals.h" |
Dimitry Ivanov | 769b33f | 2016-07-21 11:33:40 -0700 | [diff] [blame] | 32 | #include "linker_dlwarning.h" |
Elliott Hughes | 5419b94 | 2012-10-16 15:54:46 -0700 | [diff] [blame] | 33 | |
Ryan Prichard | d9a4115 | 2019-10-14 16:58:53 -0700 | [diff] [blame] | 34 | #include <link.h> |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 35 | #include <pthread.h> |
| 36 | #include <stdio.h> |
Elliott Hughes | 5419b94 | 2012-10-16 15:54:46 -0700 | [diff] [blame] | 37 | #include <stdlib.h> |
Elliott Hughes | 05fc1d7 | 2015-01-28 18:02:33 -0800 | [diff] [blame] | 38 | #include <string.h> |
Dmitriy Ivanov | 1913352 | 2015-06-02 17:36:54 -0700 | [diff] [blame] | 39 | #include <android/api-level.h> |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 40 | |
Elliott Hughes | 5419b94 | 2012-10-16 15:54:46 -0700 | [diff] [blame] | 41 | #include <bionic/pthread_internal.h> |
Ryan Prichard | abf736a | 2018-11-22 02:40:17 -0800 | [diff] [blame] | 42 | #include "private/bionic_globals.h" |
Elliott Hughes | eb847bc | 2013-10-09 15:50:50 -0700 | [diff] [blame] | 43 | #include "private/bionic_tls.h" |
| 44 | #include "private/ScopedPthreadMutexLocker.h" |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 45 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 46 | #define __LINKER_PUBLIC__ __attribute__((visibility("default"))) |
| 47 | |
| 48 | extern "C" { |
| 49 | |
| 50 | android_namespace_t* __loader_android_create_namespace(const char* name, |
| 51 | const char* ld_library_path, |
| 52 | const char* default_library_path, |
| 53 | uint64_t type, |
| 54 | const char* permitted_when_isolated_path, |
| 55 | android_namespace_t* parent_namespace, |
| 56 | const void* caller_addr) __LINKER_PUBLIC__; |
| 57 | void* __loader_android_dlopen_ext(const char* filename, |
| 58 | int flags, |
| 59 | const android_dlextinfo* extinfo, |
| 60 | const void* caller_addr) __LINKER_PUBLIC__; |
| 61 | void __loader_android_dlwarning(void* obj, void (*f)(void*, const char*)) __LINKER_PUBLIC__; |
Elliott Hughes | ff1428a | 2018-11-12 16:01:37 -0800 | [diff] [blame] | 62 | int __loader_android_get_application_target_sdk_version() __LINKER_PUBLIC__; |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 63 | void __loader_android_get_LD_LIBRARY_PATH(char* buffer, size_t buffer_size) __LINKER_PUBLIC__; |
| 64 | android_namespace_t* __loader_android_get_exported_namespace(const char* name) __LINKER_PUBLIC__; |
| 65 | bool __loader_android_init_anonymous_namespace(const char* shared_libs_sonames, |
| 66 | const char* library_search_path) __LINKER_PUBLIC__; |
| 67 | bool __loader_android_link_namespaces(android_namespace_t* namespace_from, |
| 68 | android_namespace_t* namespace_to, |
| 69 | const char* shared_libs_sonames) __LINKER_PUBLIC__; |
Logan Chien | 9ee4591 | 2018-01-18 12:05:09 +0800 | [diff] [blame] | 70 | bool __loader_android_link_namespaces_all_libs(android_namespace_t* namespace_from, |
| 71 | android_namespace_t* namespace_to) __LINKER_PUBLIC__; |
Elliott Hughes | ff1428a | 2018-11-12 16:01:37 -0800 | [diff] [blame] | 72 | void __loader_android_set_application_target_sdk_version(int target) __LINKER_PUBLIC__; |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 73 | void __loader_android_update_LD_LIBRARY_PATH(const char* ld_library_path) __LINKER_PUBLIC__; |
| 74 | void __loader_cfi_fail(uint64_t CallSiteTypeId, |
| 75 | void* Ptr, |
| 76 | void *DiagData, |
| 77 | void *CallerPc) __LINKER_PUBLIC__; |
| 78 | int __loader_dl_iterate_phdr(int (*cb)(dl_phdr_info* info, size_t size, void* data), |
| 79 | void* data) __LINKER_PUBLIC__; |
| 80 | int __loader_dladdr(const void* addr, Dl_info* info) __LINKER_PUBLIC__; |
| 81 | int __loader_dlclose(void* handle) __LINKER_PUBLIC__; |
| 82 | char* __loader_dlerror() __LINKER_PUBLIC__; |
| 83 | void* __loader_dlopen(const char* filename, int flags, const void* caller_addr) __LINKER_PUBLIC__; |
| 84 | void* __loader_dlsym(void* handle, const char* symbol, const void* caller_addr) __LINKER_PUBLIC__; |
| 85 | void* __loader_dlvsym(void* handle, |
| 86 | const char* symbol, |
| 87 | const char* version, |
| 88 | const void* caller_addr) __LINKER_PUBLIC__; |
dimitry | 06016f2 | 2018-01-05 11:39:28 +0100 | [diff] [blame] | 89 | void __loader_add_thread_local_dtor(void* dso_handle) __LINKER_PUBLIC__; |
| 90 | void __loader_remove_thread_local_dtor(void* dso_handle) __LINKER_PUBLIC__; |
Ryan Prichard | abf736a | 2018-11-22 02:40:17 -0800 | [diff] [blame] | 91 | libc_shared_globals* __loader_shared_globals() __LINKER_PUBLIC__; |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 92 | #if defined(__arm__) |
| 93 | _Unwind_Ptr __loader_dl_unwind_find_exidx(_Unwind_Ptr pc, int* pcount) __LINKER_PUBLIC__; |
| 94 | #endif |
| 95 | } |
| 96 | |
Elliott Hughes | 212e0e3 | 2014-12-01 16:43:51 -0800 | [diff] [blame] | 97 | static pthread_mutex_t g_dl_mutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP; |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 98 | |
Elliott Hughes | 5e071a1 | 2016-08-11 15:02:45 -0700 | [diff] [blame] | 99 | static char* __bionic_set_dlerror(char* new_value) { |
Elliott Hughes | 34583c1 | 2018-11-13 15:30:07 -0800 | [diff] [blame] | 100 | char* old_value = __get_thread()->current_dlerror; |
| 101 | __get_thread()->current_dlerror = new_value; |
Elliott Hughes | 5419b94 | 2012-10-16 15:54:46 -0700 | [diff] [blame] | 102 | |
Elliott Hughes | 295082b | 2017-04-15 09:11:15 -0700 | [diff] [blame] | 103 | if (new_value != nullptr) LD_LOG(kLogErrors, "dlerror set to \"%s\"", new_value); |
Elliott Hughes | 5419b94 | 2012-10-16 15:54:46 -0700 | [diff] [blame] | 104 | return old_value; |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Elliott Hughes | 5419b94 | 2012-10-16 15:54:46 -0700 | [diff] [blame] | 107 | static void __bionic_format_dlerror(const char* msg, const char* detail) { |
| 108 | char* buffer = __get_thread()->dlerror_buffer; |
| 109 | strlcpy(buffer, msg, __BIONIC_DLERROR_BUFFER_SIZE); |
Dmitriy Ivanov | 851135b | 2014-08-29 12:02:36 -0700 | [diff] [blame] | 110 | if (detail != nullptr) { |
Elliott Hughes | 5419b94 | 2012-10-16 15:54:46 -0700 | [diff] [blame] | 111 | strlcat(buffer, ": ", __BIONIC_DLERROR_BUFFER_SIZE); |
| 112 | strlcat(buffer, detail, __BIONIC_DLERROR_BUFFER_SIZE); |
| 113 | } |
| 114 | |
| 115 | __bionic_set_dlerror(buffer); |
| 116 | } |
| 117 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 118 | char* __loader_dlerror() { |
Elliott Hughes | 5e071a1 | 2016-08-11 15:02:45 -0700 | [diff] [blame] | 119 | char* old_value = __bionic_set_dlerror(nullptr); |
Elliott Hughes | 5419b94 | 2012-10-16 15:54:46 -0700 | [diff] [blame] | 120 | return old_value; |
| 121 | } |
| 122 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 123 | void __loader_android_get_LD_LIBRARY_PATH(char* buffer, size_t buffer_size) { |
Elliott Hughes | 1728b23 | 2014-05-14 10:02:03 -0700 | [diff] [blame] | 124 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
Elliott Hughes | a4aafd1 | 2014-01-13 16:37:47 -0800 | [diff] [blame] | 125 | do_android_get_LD_LIBRARY_PATH(buffer, buffer_size); |
| 126 | } |
| 127 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 128 | void __loader_android_update_LD_LIBRARY_PATH(const char* ld_library_path) { |
Elliott Hughes | 1728b23 | 2014-05-14 10:02:03 -0700 | [diff] [blame] | 129 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
Elliott Hughes | cade4c3 | 2012-12-20 14:42:14 -0800 | [diff] [blame] | 130 | do_android_update_LD_LIBRARY_PATH(ld_library_path); |
| 131 | } |
| 132 | |
Dimitry Ivanov | d9e427c | 2016-11-22 16:55:25 -0800 | [diff] [blame] | 133 | static void* dlopen_ext(const char* filename, |
| 134 | int flags, |
| 135 | const android_dlextinfo* extinfo, |
| 136 | const void* caller_addr) { |
Elliott Hughes | 1728b23 | 2014-05-14 10:02:03 -0700 | [diff] [blame] | 137 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
Dimitry Ivanov | b996d60 | 2016-07-11 18:11:39 -0700 | [diff] [blame] | 138 | g_linker_logger.ResetState(); |
Dimitry Ivanov | d88e1f3 | 2016-03-24 15:30:30 -0700 | [diff] [blame] | 139 | void* result = do_dlopen(filename, flags, extinfo, caller_addr); |
Dmitriy Ivanov | 851135b | 2014-08-29 12:02:36 -0700 | [diff] [blame] | 140 | if (result == nullptr) { |
Elliott Hughes | 650be4e | 2013-03-05 18:47:58 -0800 | [diff] [blame] | 141 | __bionic_format_dlerror("dlopen failed", linker_get_error_buffer()); |
Dmitriy Ivanov | 851135b | 2014-08-29 12:02:36 -0700 | [diff] [blame] | 142 | return nullptr; |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 143 | } |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 144 | return result; |
| 145 | } |
| 146 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 147 | void* __loader_android_dlopen_ext(const char* filename, |
Dimitry Ivanov | d9e427c | 2016-11-22 16:55:25 -0800 | [diff] [blame] | 148 | int flags, |
| 149 | const android_dlextinfo* extinfo, |
| 150 | const void* caller_addr) { |
Dmitriy Ivanov | e5cfafe | 2015-07-17 10:36:10 -0700 | [diff] [blame] | 151 | return dlopen_ext(filename, flags, extinfo, caller_addr); |
Dmitriy Ivanov | b648a8a | 2014-05-19 15:06:58 -0700 | [diff] [blame] | 152 | } |
| 153 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 154 | void* __loader_dlopen(const char* filename, int flags, const void* caller_addr) { |
Dmitriy Ivanov | e5cfafe | 2015-07-17 10:36:10 -0700 | [diff] [blame] | 155 | return dlopen_ext(filename, flags, nullptr, caller_addr); |
Torne (Richard Coles) | 012cb45 | 2014-02-06 14:34:21 +0000 | [diff] [blame] | 156 | } |
| 157 | |
Dimitry Ivanov | d9e427c | 2016-11-22 16:55:25 -0800 | [diff] [blame] | 158 | void* dlsym_impl(void* handle, const char* symbol, const char* version, const void* caller_addr) { |
Dimitry Ivanov | 4a2c5aa | 2015-12-10 16:08:14 -0800 | [diff] [blame] | 159 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
Dimitry Ivanov | b996d60 | 2016-07-11 18:11:39 -0700 | [diff] [blame] | 160 | g_linker_logger.ResetState(); |
Dimitry Ivanov | 4a2c5aa | 2015-12-10 16:08:14 -0800 | [diff] [blame] | 161 | void* result; |
Dimitry Ivanov | 9cf99cb | 2015-12-11 14:22:24 -0800 | [diff] [blame] | 162 | if (!do_dlsym(handle, symbol, version, caller_addr, &result)) { |
Dimitry Ivanov | 4a2c5aa | 2015-12-10 16:08:14 -0800 | [diff] [blame] | 163 | __bionic_format_dlerror(linker_get_error_buffer(), nullptr); |
Dmitriy Ivanov | 851135b | 2014-08-29 12:02:36 -0700 | [diff] [blame] | 164 | return nullptr; |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 165 | } |
Dimitry Ivanov | 4a2c5aa | 2015-12-10 16:08:14 -0800 | [diff] [blame] | 166 | |
| 167 | return result; |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 168 | } |
| 169 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 170 | void* __loader_dlsym(void* handle, const char* symbol, const void* caller_addr) { |
Dimitry Ivanov | 9cf99cb | 2015-12-11 14:22:24 -0800 | [diff] [blame] | 171 | return dlsym_impl(handle, symbol, nullptr, caller_addr); |
| 172 | } |
| 173 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 174 | void* __loader_dlvsym(void* handle, const char* symbol, const char* version, const void* caller_addr) { |
Dimitry Ivanov | 9cf99cb | 2015-12-11 14:22:24 -0800 | [diff] [blame] | 175 | return dlsym_impl(handle, symbol, version, caller_addr); |
| 176 | } |
| 177 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 178 | int __loader_dladdr(const void* addr, Dl_info* info) { |
Elliott Hughes | 1728b23 | 2014-05-14 10:02:03 -0700 | [diff] [blame] | 179 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
Dimitry Ivanov | 4a2c5aa | 2015-12-10 16:08:14 -0800 | [diff] [blame] | 180 | return do_dladdr(addr, info); |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 181 | } |
| 182 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 183 | int __loader_dlclose(void* handle) { |
Elliott Hughes | 1728b23 | 2014-05-14 10:02:03 -0700 | [diff] [blame] | 184 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
Dimitry Ivanov | d88e1f3 | 2016-03-24 15:30:30 -0700 | [diff] [blame] | 185 | int result = do_dlclose(handle); |
| 186 | if (result != 0) { |
| 187 | __bionic_format_dlerror("dlclose failed", linker_get_error_buffer()); |
| 188 | } |
| 189 | return result; |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 190 | } |
| 191 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 192 | int __loader_dl_iterate_phdr(int (*cb)(dl_phdr_info* info, size_t size, void* data), void* data) { |
Dmitriy Ivanov | 7271caf | 2015-06-29 14:48:25 -0700 | [diff] [blame] | 193 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
| 194 | return do_dl_iterate_phdr(cb, data); |
| 195 | } |
| 196 | |
Dimitry Ivanov | d9e427c | 2016-11-22 16:55:25 -0800 | [diff] [blame] | 197 | #if defined(__arm__) |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 198 | _Unwind_Ptr __loader_dl_unwind_find_exidx(_Unwind_Ptr pc, int* pcount) { |
Dimitry Ivanov | d9e427c | 2016-11-22 16:55:25 -0800 | [diff] [blame] | 199 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
| 200 | return do_dl_unwind_find_exidx(pc, pcount); |
| 201 | } |
| 202 | #endif |
| 203 | |
Elliott Hughes | ff1428a | 2018-11-12 16:01:37 -0800 | [diff] [blame] | 204 | void __loader_android_set_application_target_sdk_version(int target) { |
Dmitriy Ivanov | d974e88 | 2015-05-27 18:29:41 -0700 | [diff] [blame] | 205 | // lock to avoid modification in the middle of dlopen. |
| 206 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
Dmitriy Ivanov | 79fd668 | 2015-05-21 17:43:49 -0700 | [diff] [blame] | 207 | set_application_target_sdk_version(target); |
| 208 | } |
| 209 | |
Elliott Hughes | ff1428a | 2018-11-12 16:01:37 -0800 | [diff] [blame] | 210 | int __loader_android_get_application_target_sdk_version() { |
Dmitriy Ivanov | 79fd668 | 2015-05-21 17:43:49 -0700 | [diff] [blame] | 211 | return get_application_target_sdk_version(); |
| 212 | } |
| 213 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 214 | void __loader_android_dlwarning(void* obj, void (*f)(void*, const char*)) { |
Dimitry Ivanov | 769b33f | 2016-07-21 11:33:40 -0700 | [diff] [blame] | 215 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
| 216 | get_dlwarning(obj, f); |
| 217 | } |
| 218 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 219 | bool __loader_android_init_anonymous_namespace(const char* shared_libs_sonames, |
| 220 | const char* library_search_path) { |
Dmitriy Ivanov | 42d5fcb | 2015-10-29 17:01:24 -0700 | [diff] [blame] | 221 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
Dimitry Ivanov | 7a34b9d | 2017-02-03 14:07:34 -0800 | [diff] [blame] | 222 | bool success = init_anonymous_namespace(shared_libs_sonames, library_search_path); |
Dmitriy Ivanov | 42d5fcb | 2015-10-29 17:01:24 -0700 | [diff] [blame] | 223 | if (!success) { |
Dimitry Ivanov | 7a34b9d | 2017-02-03 14:07:34 -0800 | [diff] [blame] | 224 | __bionic_format_dlerror("android_init_anonymous_namespace failed", linker_get_error_buffer()); |
Dmitriy Ivanov | 42d5fcb | 2015-10-29 17:01:24 -0700 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | return success; |
| 228 | } |
| 229 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 230 | android_namespace_t* __loader_android_create_namespace(const char* name, |
Dimitry Ivanov | d9e427c | 2016-11-22 16:55:25 -0800 | [diff] [blame] | 231 | const char* ld_library_path, |
| 232 | const char* default_library_path, |
| 233 | uint64_t type, |
| 234 | const char* permitted_when_isolated_path, |
| 235 | android_namespace_t* parent_namespace, |
| 236 | const void* caller_addr) { |
Dmitriy Ivanov | 42d5fcb | 2015-10-29 17:01:24 -0700 | [diff] [blame] | 237 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
| 238 | |
Dimitry Ivanov | fc2da53 | 2016-05-12 15:20:21 -0700 | [diff] [blame] | 239 | android_namespace_t* result = create_namespace(caller_addr, |
| 240 | name, |
| 241 | ld_library_path, |
| 242 | default_library_path, |
| 243 | type, |
| 244 | permitted_when_isolated_path, |
| 245 | parent_namespace); |
Dmitriy Ivanov | 42d5fcb | 2015-10-29 17:01:24 -0700 | [diff] [blame] | 246 | |
| 247 | if (result == nullptr) { |
| 248 | __bionic_format_dlerror("android_create_namespace failed", linker_get_error_buffer()); |
| 249 | } |
| 250 | |
| 251 | return result; |
| 252 | } |
| 253 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 254 | bool __loader_android_link_namespaces(android_namespace_t* namespace_from, |
| 255 | android_namespace_t* namespace_to, |
| 256 | const char* shared_libs_sonames) { |
Dimitry Ivanov | 7a34b9d | 2017-02-03 14:07:34 -0800 | [diff] [blame] | 257 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
| 258 | |
| 259 | bool success = link_namespaces(namespace_from, namespace_to, shared_libs_sonames); |
| 260 | |
| 261 | if (!success) { |
| 262 | __bionic_format_dlerror("android_link_namespaces failed", linker_get_error_buffer()); |
| 263 | } |
| 264 | |
| 265 | return success; |
| 266 | } |
| 267 | |
Logan Chien | 9ee4591 | 2018-01-18 12:05:09 +0800 | [diff] [blame] | 268 | bool __loader_android_link_namespaces_all_libs(android_namespace_t* namespace_from, |
| 269 | android_namespace_t* namespace_to) { |
| 270 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
| 271 | |
| 272 | bool success = link_namespaces_all_libs(namespace_from, namespace_to); |
| 273 | |
| 274 | if (!success) { |
| 275 | __bionic_format_dlerror("android_link_namespaces_all_libs failed", linker_get_error_buffer()); |
| 276 | } |
| 277 | |
| 278 | return success; |
| 279 | } |
| 280 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 281 | android_namespace_t* __loader_android_get_exported_namespace(const char* name) { |
Ryan Prichard | c2a9379 | 2020-04-20 17:59:18 -0700 | [diff] [blame] | 282 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
Jiyong Park | 01de74e | 2017-04-03 23:10:37 +0900 | [diff] [blame] | 283 | return get_exported_namespace(name); |
| 284 | } |
| 285 | |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 286 | void __loader_cfi_fail(uint64_t CallSiteTypeId, void* Ptr, void *DiagData, void *CallerPc) { |
Ryan Prichard | 172611f | 2020-04-20 18:01:00 -0700 | [diff] [blame] | 287 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
Evgenii Stepanov | 0a3637d | 2016-07-06 13:20:59 -0700 | [diff] [blame] | 288 | CFIShadowWriter::CfiFail(CallSiteTypeId, Ptr, DiagData, CallerPc); |
| 289 | } |
| 290 | |
dimitry | 06016f2 | 2018-01-05 11:39:28 +0100 | [diff] [blame] | 291 | void __loader_add_thread_local_dtor(void* dso_handle) { |
| 292 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
| 293 | increment_dso_handle_reference_counter(dso_handle); |
| 294 | } |
| 295 | |
| 296 | void __loader_remove_thread_local_dtor(void* dso_handle) { |
| 297 | ScopedPthreadMutexLocker locker(&g_dl_mutex); |
| 298 | decrement_dso_handle_reference_counter(dso_handle); |
| 299 | } |
| 300 | |
Ryan Prichard | abf736a | 2018-11-22 02:40:17 -0800 | [diff] [blame] | 301 | libc_shared_globals* __loader_shared_globals() { |
| 302 | return __libc_shared_globals(); |
| 303 | } |
| 304 | |
Dmitriy Ivanov | aae859c | 2015-03-31 11:14:03 -0700 | [diff] [blame] | 305 | static uint8_t __libdl_info_buf[sizeof(soinfo)] __attribute__((aligned(8))); |
| 306 | static soinfo* __libdl_info = nullptr; |
Dmitriy Ivanov | d59e500 | 2014-05-09 09:10:14 -0700 | [diff] [blame] | 307 | |
Elliott Hughes | 22d6292 | 2012-10-12 10:50:21 -0700 | [diff] [blame] | 308 | // This is used by the dynamic linker. Every process gets these symbols for free. |
Ryan Prichard | cf9ed12 | 2019-06-04 20:56:56 -0700 | [diff] [blame] | 309 | soinfo* get_libdl_info(const soinfo& linker_si) { |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 310 | CHECK((linker_si.flags_ & FLAG_GNU_HASH) != 0); |
| 311 | |
Dmitriy Ivanov | aae859c | 2015-03-31 11:14:03 -0700 | [diff] [blame] | 312 | if (__libdl_info == nullptr) { |
Ryan Prichard | cf9ed12 | 2019-06-04 20:56:56 -0700 | [diff] [blame] | 313 | __libdl_info = new (__libdl_info_buf) soinfo(&g_default_namespace, nullptr, nullptr, 0, 0); |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 314 | __libdl_info->flags_ |= (FLAG_LINKED | FLAG_GNU_HASH); |
| 315 | __libdl_info->strtab_ = linker_si.strtab_; |
| 316 | __libdl_info->symtab_ = linker_si.symtab_; |
| 317 | __libdl_info->load_bias = linker_si.load_bias; |
Ryan Prichard | 0489645 | 2018-08-20 17:44:42 -0700 | [diff] [blame] | 318 | __libdl_info->phdr = linker_si.phdr; |
| 319 | __libdl_info->phnum = linker_si.phnum; |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 320 | |
| 321 | __libdl_info->gnu_nbucket_ = linker_si.gnu_nbucket_; |
| 322 | __libdl_info->gnu_maskwords_ = linker_si.gnu_maskwords_; |
| 323 | __libdl_info->gnu_shift2_ = linker_si.gnu_shift2_; |
| 324 | __libdl_info->gnu_bloom_filter_ = linker_si.gnu_bloom_filter_; |
| 325 | __libdl_info->gnu_bucket_ = linker_si.gnu_bucket_; |
| 326 | __libdl_info->gnu_chain_ = linker_si.gnu_chain_; |
| 327 | |
Dmitriy Ivanov | aae859c | 2015-03-31 11:14:03 -0700 | [diff] [blame] | 328 | __libdl_info->ref_count_ = 1; |
dimitry | 7abea57 | 2017-08-29 18:14:49 +0200 | [diff] [blame] | 329 | __libdl_info->strtab_size_ = linker_si.strtab_size_; |
Dmitriy Ivanov | aae859c | 2015-03-31 11:14:03 -0700 | [diff] [blame] | 330 | __libdl_info->local_group_root_ = __libdl_info; |
Elliott Hughes | f9dd1a7 | 2021-01-11 09:04:58 -0800 | [diff] [blame] | 331 | __libdl_info->soname_ = linker_si.soname_.c_str(); |
Dmitriy Ivanov | 1913352 | 2015-06-02 17:36:54 -0700 | [diff] [blame] | 332 | __libdl_info->target_sdk_version_ = __ANDROID_API__; |
Dimitry Ivanov | d88e1f3 | 2016-03-24 15:30:30 -0700 | [diff] [blame] | 333 | __libdl_info->generate_handle(); |
Mike Frysinger | 747d30e | 2015-10-20 14:06:25 -0400 | [diff] [blame] | 334 | #if defined(__work_around_b_24465209__) |
Elliott Hughes | f9dd1a7 | 2021-01-11 09:04:58 -0800 | [diff] [blame] | 335 | strlcpy(__libdl_info->old_name_, __libdl_info->soname_.c_str(), |
| 336 | sizeof(__libdl_info->old_name_)); |
Dmitriy Ivanov | aae859c | 2015-03-31 11:14:03 -0700 | [diff] [blame] | 337 | #endif |
Dmitriy Ivanov | d59e500 | 2014-05-09 09:10:14 -0700 | [diff] [blame] | 338 | } |
Elliott Hughes | 3b297c4 | 2012-10-11 16:08:51 -0700 | [diff] [blame] | 339 | |
Dmitriy Ivanov | aae859c | 2015-03-31 11:14:03 -0700 | [diff] [blame] | 340 | return __libdl_info; |
Dmitriy Ivanov | d59e500 | 2014-05-09 09:10:14 -0700 | [diff] [blame] | 341 | } |