X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fldso%2Fdynlink.c;h=49ea5e9cb2d0d36620e042a03e62c4cd50ce130a;hp=0533bbb2c3811aca2126ac1d336aca34309d03e7;hb=f7d15dcc543c3b65c751064a5e51a0ec462f3cdb;hpb=a5d10eb1f587a13a513504ffb5d8e6a8738eee6f diff --git a/src/ldso/dynlink.c b/src/ldso/dynlink.c index 0533bbb2..49ea5e9c 100644 --- a/src/ldso/dynlink.c +++ b/src/ldso/dynlink.c @@ -38,15 +38,24 @@ typedef Elf64_Sym Sym; #define R_SYM(x) ((x)>>32) #endif -struct dso -{ +struct debug { + int ver; + void *head; + void (*bp)(void); + int state; + void *base; +}; + +struct dso { + unsigned char *base; + char *name; + size_t *dynv; struct dso *next, *prev; + int refcnt; - size_t *dynv; Sym *syms; uint32_t *hashtab; char *strings; - unsigned char *base; unsigned char *map; size_t map_len; dev_t dev; @@ -55,16 +64,23 @@ struct dso char relocated; char constructed; struct dso **deps; - char *name; + char *shortname; char buf[]; }; +void __init_ssp(size_t *); + static struct dso *head, *tail, *libc; static char *env_path, *sys_path, *r_path; static int rtld_used; +static int ssp_used; static int runtime; +static int ldd_mode; static jmp_buf rtld_fail; static pthread_rwlock_t lock; +static struct debug debug; + +struct debug *_dl_debug_addr = &debug; #define AUX_CNT 24 #define DYN_CNT 34 @@ -108,6 +124,7 @@ static void *find_sym(struct dso *dso, const char *s, int need_def) void *def = 0; if (h==0x6b366be && !strcmp(s, "dlopen")) rtld_used = 1; if (h==0x6b3afd && !strcmp(s, "dlsym")) rtld_used = 1; + if (h==0x595a4cc && !strcmp(s, "__stack_chk_fail")) ssp_used = 1; for (; dso; dso=dso->next) { Sym *sym; if (!dso->global) continue; @@ -251,23 +268,20 @@ static void *map_library(int fd, size_t *lenp, unsigned char **basep, size_t *dy prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | ((ph->p_flags&PF_W) ? PROT_WRITE: 0) | ((ph->p_flags&PF_X) ? PROT_EXEC : 0)); - if (mmap(base+this_min, this_max-this_min, prot, MAP_PRIVATE|MAP_FIXED, fd, off_start) == MAP_FAILED) { - munmap(map, map_len); - return 0; - } + if (mmap(base+this_min, this_max-this_min, prot, MAP_PRIVATE|MAP_FIXED, fd, off_start) == MAP_FAILED) + goto error; if (ph->p_memsz > ph->p_filesz) { size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz; size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE; memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1); - if (pgbrk-(size_t)base < this_max && mmap((void *)pgbrk, (size_t)base+this_max-pgbrk, prot, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) == MAP_FAILED) { - munmap(map, map_len); - return 0; - } + if (pgbrk-(size_t)base < this_max && mmap((void *)pgbrk, (size_t)base+this_max-pgbrk, prot, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) == MAP_FAILED) + goto error; } } for (i=0; ((size_t *)(base+dyn))[i]; i+=2) if (((size_t *)(base+dyn))[i]==DT_TEXTREL) { - mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC); + if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC) < 0) + goto error; break; } if (!runtime) reclaim_gaps(base, (void *)((char *)buf + eh->e_phoff), @@ -276,11 +290,13 @@ static void *map_library(int fd, size_t *lenp, unsigned char **basep, size_t *dy *basep = base; *dynp = dyn; return map; +error: + munmap(map, map_len); + return 0; } -static int path_open(const char *name, const char *search) +static int path_open(const char *name, const char *search, char *buf, size_t buf_size) { - char buf[2*NAME_MAX+2]; const char *s=search, *z; int l, fd; for (;;) { @@ -288,7 +304,7 @@ static int path_open(const char *name, const char *search) if (!*s) return -1; z = strchr(s, ':'); l = z ? z-s : strlen(s); - snprintf(buf, sizeof buf, "%.*s/%s", l, s, name); + snprintf(buf, buf_size, "%.*s/%s", l, s, name); if ((fd = open(buf, O_RDONLY))>=0) return fd; s += l; } @@ -305,6 +321,7 @@ static void decode_dyn(struct dso *p) static struct dso *load_library(const char *name) { + char buf[2*NAME_MAX+2]; unsigned char *base, *map; size_t dyno, map_len; struct dso *p; @@ -331,7 +348,7 @@ static struct dso *load_library(const char *name) } /* Search for the name to see if it's already loaded */ for (p=head->next; p; p=p->next) { - if (!strcmp(p->name, name)) { + if (!strcmp(p->shortname, name)) { p->refcnt++; return p; } @@ -341,8 +358,8 @@ static struct dso *load_library(const char *name) } else { if (strlen(name) > NAME_MAX) return 0; fd = -1; - if (r_path) fd = path_open(name, r_path); - if (fd < 0 && env_path) fd = path_open(name, env_path); + if (r_path) fd = path_open(name, r_path, buf, sizeof buf); + if (fd < 0 && env_path) fd = path_open(name, env_path, buf, sizeof buf); if (fd < 0) { if (!sys_path) { FILE *f = fopen(ETC_LDSO_PATH, "r"); @@ -352,8 +369,8 @@ static struct dso *load_library(const char *name) fclose(f); } } - if (sys_path) fd = path_open(name, sys_path); - else fd = path_open(name, "/lib:/usr/local/lib:/usr/lib"); + if (sys_path) fd = path_open(name, sys_path, buf, sizeof buf); + else fd = path_open(name, "/lib:/usr/local/lib:/usr/lib", buf, sizeof buf); } } if (fd < 0) return 0; @@ -371,7 +388,7 @@ static struct dso *load_library(const char *name) map = map_library(fd, &map_len, &base, &dyno); close(fd); if (!map) return 0; - p = calloc(1, sizeof *p + strlen(name) + 1); + p = calloc(1, sizeof *p + strlen(buf) + 1); if (!p) { munmap(map, map_len); return 0; @@ -387,12 +404,16 @@ static struct dso *load_library(const char *name) p->ino = st.st_ino; p->refcnt = 1; p->name = p->buf; - strcpy(p->name, name); + strcpy(p->name, buf); + if (!strchr(name, '/')) p->shortname = strrchr(p->name, '/'); + if (!p->shortname) p->shortname = p->name; tail->next = p; p->prev = tail; tail = p; + if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, buf, base); + return p; } @@ -495,6 +516,10 @@ static void do_init_fini(struct dso *p) } } +void _dl_debug_state(void) +{ +} + void *__dynlink(int argc, char **argv) { size_t *auxv, aux[AUX_CNT] = {0}; @@ -524,10 +549,19 @@ void *__dynlink(int argc, char **argv) env_preload = 0; } + /* If the dynamic linker was invoked as a program itself, AT_BASE + * will not be set. In that case, we assume the base address is + * the start of the page containing the PHDRs; I don't know any + * better approach... */ + if (!aux[AT_BASE]) { + aux[AT_BASE] = aux[AT_PHDR] & -PAGE_SIZE; + aux[AT_PHDR] = aux[AT_PHENT] = aux[AT_PHNUM] = 0; + } + /* The dynamic linker load address is passed by the kernel * in the AUX vector, so this is easy. */ lib->base = (void *)aux[AT_BASE]; - lib->name = "libc.so"; + lib->name = lib->shortname = "libc.so"; lib->global = 1; ehdr = (void *)lib->base; lib->dynv = (void *)(lib->base + find_dyn( @@ -535,18 +569,48 @@ void *__dynlink(int argc, char **argv) ehdr->e_phnum, ehdr->e_phentsize)); decode_dyn(lib); - /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */ - app->base = 0; - phdr = (void *)aux[AT_PHDR]; - for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) { - if (phdr->p_type == PT_PHDR) - app->base = (void *)(aux[AT_PHDR] - phdr->p_vaddr); + if (aux[AT_PHDR]) { + /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */ + phdr = (void *)aux[AT_PHDR]; + for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) { + if (phdr->p_type == PT_PHDR) + app->base = (void *)(aux[AT_PHDR] - phdr->p_vaddr); + } + app->name = app->shortname = argv[0]; + app->dynv = (void *)(app->base + find_dyn( + (void *)aux[AT_PHDR], aux[AT_PHNUM], aux[AT_PHENT])); + } else { + int fd; + char *ldname = argv[0]; + size_t dyno, l = strlen(ldname); + if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1; + *argv++ = (void *)-1; + if (argv[0] && !strcmp(argv[0], "--")) *argv++ = (void *)-1; + if (!argv[0]) { + dprintf(2, "musl libc/dynamic program loader\n"); + dprintf(2, "usage: %s pathname%s\n", ldname, + ldd_mode ? "" : " [args]"); + _exit(1); + } + fd = open(argv[0], O_RDONLY); + if (fd < 0) { + dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno)); + _exit(1); + } + runtime = 1; + ehdr = (void *)map_library(fd, &app->map_len, &app->base, &dyno); + if (!ehdr) { + dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]); + _exit(1); + } + runtime = 0; + close(fd); + app->name = app->shortname = argv[0]; + app->dynv = (void *)(app->base + dyno); + aux[AT_ENTRY] = ehdr->e_entry; } - app->name = argv[0]; app->global = 1; app->constructed = 1; - app->dynv = (void *)(app->base + find_dyn( - (void *)aux[AT_PHDR], aux[AT_PHNUM], aux[AT_PHENT])); decode_dyn(app); /* Attach to vdso, if provided by the kernel */ @@ -561,7 +625,7 @@ void *__dynlink(int argc, char **argv) if (phdr->p_type == PT_LOAD) vdso->base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset); } - vdso->name = "linux-gate.so.1"; + vdso->name = vdso->shortname = "linux-gate.so.1"; vdso->global = 1; decode_dyn(vdso); vdso->prev = lib; @@ -597,12 +661,26 @@ void *__dynlink(int argc, char **argv) reloc_all(app->next); reloc_all(app); + if (ldd_mode) _exit(0); + /* Switch to runtime mode: any further failures in the dynamic * linker are a reportable failure rather than a fatal startup * error. If the dynamic loader (dlopen) will not be used, free * all memory used by the dynamic linker. */ runtime = 1; + for (i=0; app->dynv[i]; i+=2) + if (app->dynv[i]==DT_DEBUG) + app->dynv[i+1] = (size_t)&debug; + debug.ver = 1; + debug.bp = _dl_debug_state; + debug.head = head; + debug.base = lib->base; + debug.state = 0; + _dl_debug_state(); + + if (ssp_used) __init_ssp(auxv); + do_init_fini(tail); if (!rtld_used) { @@ -671,6 +749,8 @@ void *dlopen(const char *file, int mode) p->global = 1; } + _dl_debug_state(); + do_init_fini(tail); end: pthread_rwlock_unlock(&lock); @@ -690,7 +770,7 @@ static void *do_dlsym(struct dso *p, const char *s, void *ra) } if (p == head || p == RTLD_DEFAULT) { void *res = find_sym(head, s, 0); - if (!res) errflag = 1; + if (!res) goto failed; return res; } h = hash(s); @@ -703,6 +783,7 @@ static void *do_dlsym(struct dso *p, const char *s, void *ra) if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES)) return p->deps[i]->base + sym->st_value; } +failed: errflag = 1; snprintf(errbuf, sizeof errbuf, "Symbol not found: %s", s); return 0;