blob: 10ecb132f6f3f75f641313d53b8057e50d7cd957 [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
2 * Copyright (C) 2007 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#include <dlfcn.h>
17#include <pthread.h>
Dima Zavin2e855792009-05-20 18:28:09 -070018#include <stdio.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080019#include "linker.h"
David 'Digit' Turner5c734642010-01-20 12:36:51 -080020#include "linker_format.h"
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080021
22/* This file hijacks the symbols stubbed out in libdl.so. */
23
24#define DL_SUCCESS 0
Dima Zavin2e855792009-05-20 18:28:09 -070025#define DL_ERR_CANNOT_LOAD_LIBRARY 1
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080026#define DL_ERR_INVALID_LIBRARY_HANDLE 2
27#define DL_ERR_BAD_SYMBOL_NAME 3
28#define DL_ERR_SYMBOL_NOT_FOUND 4
29#define DL_ERR_SYMBOL_NOT_GLOBAL 5
30
Dima Zavin2e855792009-05-20 18:28:09 -070031static char dl_err_buf[1024];
32static const char *dl_err_str;
33
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080034static const char *dl_errors[] = {
Dima Zavin2e855792009-05-20 18:28:09 -070035 [DL_ERR_CANNOT_LOAD_LIBRARY] = "Cannot load library",
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080036 [DL_ERR_INVALID_LIBRARY_HANDLE] = "Invalid library handle",
37 [DL_ERR_BAD_SYMBOL_NAME] = "Invalid symbol name",
38 [DL_ERR_SYMBOL_NOT_FOUND] = "Symbol not found",
39 [DL_ERR_SYMBOL_NOT_GLOBAL] = "Symbol is not global",
40};
41
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080042#define likely(expr) __builtin_expect (expr, 1)
43#define unlikely(expr) __builtin_expect (expr, 0)
44
45static pthread_mutex_t dl_lock = PTHREAD_MUTEX_INITIALIZER;
46
Dima Zavin2e855792009-05-20 18:28:09 -070047static void set_dlerror(int err)
48{
David 'Digit' Turner5c734642010-01-20 12:36:51 -080049 format_buffer(dl_err_buf, sizeof(dl_err_buf), "%s: %s", dl_errors[err],
Dima Zavin2e855792009-05-20 18:28:09 -070050 linker_get_error());
51 dl_err_str = (const char *)&dl_err_buf[0];
52};
53
54void *dlopen(const char *filename, int flag)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080055{
56 soinfo *ret;
57
58 pthread_mutex_lock(&dl_lock);
59 ret = find_library(filename);
60 if (unlikely(ret == NULL)) {
Dima Zavin2e855792009-05-20 18:28:09 -070061 set_dlerror(DL_ERR_CANNOT_LOAD_LIBRARY);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080062 } else {
63 ret->refcount++;
64 }
65 pthread_mutex_unlock(&dl_lock);
66 return ret;
67}
68
69const char *dlerror(void)
70{
Dima Zavin2e855792009-05-20 18:28:09 -070071 const char *tmp = dl_err_str;
72 dl_err_str = NULL;
73 return (const char *)tmp;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080074}
75
76void *dlsym(void *handle, const char *symbol)
77{
Iliyan Malchev9ea64da2009-09-28 18:21:30 -070078 soinfo *found;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080079 Elf32_Sym *sym;
80 unsigned bind;
81
82 pthread_mutex_lock(&dl_lock);
Dima Zavin2e855792009-05-20 18:28:09 -070083
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080084 if(unlikely(handle == 0)) {
Dima Zavin2e855792009-05-20 18:28:09 -070085 set_dlerror(DL_ERR_INVALID_LIBRARY_HANDLE);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080086 goto err;
87 }
88 if(unlikely(symbol == 0)) {
Dima Zavin2e855792009-05-20 18:28:09 -070089 set_dlerror(DL_ERR_BAD_SYMBOL_NAME);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080090 goto err;
91 }
Dima Zavin2e855792009-05-20 18:28:09 -070092
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080093 if(handle == RTLD_DEFAULT) {
Iliyan Malchev9ea64da2009-09-28 18:21:30 -070094 sym = lookup(symbol, &found);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080095 } else if(handle == RTLD_NEXT) {
Iliyan Malchev9ea64da2009-09-28 18:21:30 -070096 sym = lookup(symbol, &found);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080097 } else {
Iliyan Malchev9ea64da2009-09-28 18:21:30 -070098 found = (soinfo*)handle;
99 sym = lookup_in_library(found, symbol);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800100 }
101
102 if(likely(sym != 0)) {
103 bind = ELF32_ST_BIND(sym->st_info);
Dima Zavin2e855792009-05-20 18:28:09 -0700104
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800105 if(likely((bind == STB_GLOBAL) && (sym->st_shndx != 0))) {
Iliyan Malchev9ea64da2009-09-28 18:21:30 -0700106 unsigned ret = sym->st_value + found->base;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800107 pthread_mutex_unlock(&dl_lock);
108 return (void*)ret;
109 }
110
Dima Zavin2e855792009-05-20 18:28:09 -0700111 set_dlerror(DL_ERR_SYMBOL_NOT_GLOBAL);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800112 }
Dima Zavin2e855792009-05-20 18:28:09 -0700113 else
114 set_dlerror(DL_ERR_SYMBOL_NOT_FOUND);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800115
116err:
117 pthread_mutex_unlock(&dl_lock);
118 return 0;
119}
120
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600121int dladdr(void *addr, Dl_info *info)
122{
123 int ret = 0;
124
125 pthread_mutex_lock(&dl_lock);
126
127 /* Determine if this address can be found in any library currently mapped */
128 soinfo *si = find_containing_library(addr);
129
130 if(si) {
131 memset(info, 0, sizeof(Dl_info));
132
133 info->dli_fname = si->name;
134 info->dli_fbase = (void*)si->base;
135
136 /* Determine if any symbol in the library contains the specified address */
137 Elf32_Sym *sym = find_containing_symbol(addr, si);
138
139 if(sym != NULL) {
140 info->dli_sname = si->strtab + sym->st_name;
141 info->dli_saddr = (void*)(si->base + sym->st_value);
142 }
143
144 ret = 1;
145 }
146
147 pthread_mutex_unlock(&dl_lock);
148
149 return ret;
150}
151
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800152int dlclose(void *handle)
153{
154 pthread_mutex_lock(&dl_lock);
155 (void)unload_library((soinfo*)handle);
156 pthread_mutex_unlock(&dl_lock);
157 return 0;
158}
159
160#if defined(ANDROID_ARM_LINKER)
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600161// 0000000 00011111 111112 22222222 2333333 333344444444445555555
162// 0123456 78901234 567890 12345678 9012345 678901234567890123456
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800163#define ANDROID_LIBDL_STRTAB \
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600164 "dlopen\0dlclose\0dlsym\0dlerror\0dladdr\0dl_unwind_find_exidx\0"
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800165
166#elif defined(ANDROID_X86_LINKER)
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600167// 0000000 00011111 111112 22222222 2333333 3333444444444455
168// 0123456 78901234 567890 12345678 9012345 6789012345678901
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800169#define ANDROID_LIBDL_STRTAB \
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600170 "dlopen\0dlclose\0dlsym\0dlerror\0dladdr\0dl_iterate_phdr\0"
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800171
Shin-ichiro KAWASAKIad13c572009-11-06 10:36:37 +0900172#elif defined(ANDROID_SH_LINKER)
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600173// 0000000 00011111 111112 22222222 2333333 3333444444444455
174// 0123456 78901234 567890 12345678 9012345 6789012345678901
Shin-ichiro KAWASAKIad13c572009-11-06 10:36:37 +0900175#define ANDROID_LIBDL_STRTAB \
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600176 "dlopen\0dlclose\0dlsym\0dlerror\0dladdr\0dl_iterate_phdr\0"
Shin-ichiro KAWASAKIad13c572009-11-06 10:36:37 +0900177
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800178#else /* !defined(ANDROID_ARM_LINKER) && !defined(ANDROID_X86_LINKER) */
179#error Unsupported architecture. Only ARM and x86 are presently supported.
180#endif
181
182
183static Elf32_Sym libdl_symtab[] = {
184 // total length of libdl_info.strtab, including trailing 0
185 // This is actually the the STH_UNDEF entry. Technically, it's
186 // supposed to have st_name == 0, but instead, it points to an index
187 // in the strtab with a \0 to make iterating through the symtab easier.
188 { st_name: sizeof(ANDROID_LIBDL_STRTAB) - 1,
189 },
190 { st_name: 0, // starting index of the name in libdl_info.strtab
191 st_value: (Elf32_Addr) &dlopen,
192 st_info: STB_GLOBAL << 4,
193 st_shndx: 1,
194 },
195 { st_name: 7,
196 st_value: (Elf32_Addr) &dlclose,
197 st_info: STB_GLOBAL << 4,
198 st_shndx: 1,
199 },
200 { st_name: 15,
201 st_value: (Elf32_Addr) &dlsym,
202 st_info: STB_GLOBAL << 4,
203 st_shndx: 1,
204 },
205 { st_name: 21,
206 st_value: (Elf32_Addr) &dlerror,
207 st_info: STB_GLOBAL << 4,
208 st_shndx: 1,
209 },
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800210 { st_name: 29,
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600211 st_value: (Elf32_Addr) &dladdr,
212 st_info: STB_GLOBAL << 4,
213 st_shndx: 1,
214 },
215#ifdef ANDROID_ARM_LINKER
216 { st_name: 36,
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800217 st_value: (Elf32_Addr) &dl_unwind_find_exidx,
218 st_info: STB_GLOBAL << 4,
219 st_shndx: 1,
220 },
221#elif defined(ANDROID_X86_LINKER)
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600222 { st_name: 36,
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800223 st_value: (Elf32_Addr) &dl_iterate_phdr,
224 st_info: STB_GLOBAL << 4,
225 st_shndx: 1,
226 },
Shin-ichiro KAWASAKIad13c572009-11-06 10:36:37 +0900227#elif defined(ANDROID_SH_LINKER)
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600228 { st_name: 36,
Shin-ichiro KAWASAKIad13c572009-11-06 10:36:37 +0900229 st_value: (Elf32_Addr) &dl_iterate_phdr,
230 st_info: STB_GLOBAL << 4,
231 st_shndx: 1,
232 },
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800233#endif
234};
235
236/* Fake out a hash table with a single bucket.
237 * A search of the hash table will look through
238 * libdl_symtab starting with index [1], then
239 * use libdl_chains to find the next index to
240 * look at. libdl_chains should be set up to
241 * walk through every element in libdl_symtab,
242 * and then end with 0 (sentinel value).
243 *
244 * I.e., libdl_chains should look like
245 * { 0, 2, 3, ... N, 0 } where N is the number
246 * of actual symbols, or nelems(libdl_symtab)-1
247 * (since the first element of libdl_symtab is not
248 * a real symbol).
249 *
250 * (see _elf_lookup())
251 *
252 * Note that adding any new symbols here requires
253 * stubbing them out in libdl.
254 */
255static unsigned libdl_buckets[1] = { 1 };
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600256static unsigned libdl_chains[7] = { 0, 2, 3, 4, 5, 6, 0 };
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800257
258soinfo libdl_info = {
259 name: "libdl.so",
260 flags: FLAG_LINKED,
261
262 strtab: ANDROID_LIBDL_STRTAB,
263 symtab: libdl_symtab,
264
265 nbucket: 1,
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600266 nchain: 7,
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800267 bucket: libdl_buckets,
268 chain: libdl_chains,
269};
270