提交 623753ad 编写于 作者: R Rich Felker

RTLD_NEXT support

the asm wrapper is needed to get the return address without
compiler-specific extensions.
上级 2719cc86
#include <dlfcn.h>
void *__dlsym(void *, const char *, void *);
void *dlsym(void *p, const char *s)
{
return __dlsym(p, s, 0);
}
......@@ -638,11 +638,16 @@ end:
return p;
}
static void *do_dlsym(struct dso *p, const char *s)
static void *do_dlsym(struct dso *p, const char *s, void *ra)
{
size_t i;
uint32_t h;
Sym *sym;
if (p == RTLD_NEXT) {
for (p=head; p && (unsigned char *)ra-p->map>p->map_len; p=p->next);
if (!p) p=head;
p=p->next;
}
if (p == head || p == RTLD_DEFAULT)
return find_sym(head, s, 0);
h = hash(s);
......@@ -658,11 +663,11 @@ static void *do_dlsym(struct dso *p, const char *s)
return 0;
}
void *dlsym(void *p, const char *s)
void *__dlsym(void *p, const char *s, void *ra)
{
void *res;
pthread_rwlock_rdlock(&lock);
res = do_dlsym(p, s);
res = do_dlsym(p, s, ra);
pthread_rwlock_unlock(&lock);
return res;
}
......
.text
.global dlsym
.type dlsym,@function
dlsym:
push (%esp)
push 12(%esp)
push 12(%esp)
call __dlsym
add $12,%esp
ret
.text
.global dlsym
.type dlsym,@function
dlsym:
mov (%rsp),%edx
jmp __dlsym
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册