diff options
author | rich <rich@FreeBSD.org> | 1994-06-15 22:41:19 +0000 |
---|---|---|
committer | rich <rich@FreeBSD.org> | 1994-06-15 22:41:19 +0000 |
commit | c2b2b846578d61b4bd2deae514c6669ba71a6b5d (patch) | |
tree | fc74fe81900a764f41153f6c45e592474d9cb257 /libexec/rtld-aout | |
parent | 24f89c1469242434ab6ab918657aa2085fad5ddc (diff) | |
download | FreeBSD-src-c2b2b846578d61b4bd2deae514c6669ba71a6b5d.zip FreeBSD-src-c2b2b846578d61b4bd2deae514c6669ba71a6b5d.tar.gz |
Changes from Paul Kranenburg which bring us into sync with his sources:
handling of errors through the standard err() and warn()
more fixes for Geoff Rehmet's NULL pointer bug.
fixes NULL pointer bugs when linking mono and nested X servers.
supports a `-nostdlib' option.
accept object files without a symbol table
don't attempt dynamic linking when `-A' is given
a few variable names have chaged (desc -> fd), and the formatting has
changed which should make it much easier to track his sources.
I tested 'make world' for /usr/src and X twice with these changes.
Diffstat (limited to 'libexec/rtld-aout')
-rw-r--r-- | libexec/rtld-aout/i386/md.c | 20 | ||||
-rw-r--r-- | libexec/rtld-aout/i386/md.h | 4 | ||||
-rw-r--r-- | libexec/rtld-aout/i386/mdprologue.S | 4 | ||||
-rw-r--r-- | libexec/rtld-aout/rtld.c | 134 | ||||
-rw-r--r-- | libexec/rtld-aout/shlib.c | 39 |
5 files changed, 118 insertions, 83 deletions
diff --git a/libexec/rtld-aout/i386/md.c b/libexec/rtld-aout/i386/md.c index 311a5f6..ce61355 100644 --- a/libexec/rtld-aout/i386/md.c +++ b/libexec/rtld-aout/i386/md.c @@ -14,7 +14,7 @@ * must display the following acknowledgement: * This product includes software developed by Paul Kranenburg. * 4. The name of the author may not be used to endorse or promote products - * derived from this software withough specific prior written permission + * derived from this software without specific prior written permission * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES @@ -27,13 +27,14 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: md.c,v 1.8 1994/01/19 15:00:37 davidg Exp $ + * $Id: md.c,v 1.9 1994/02/13 20:42:09 jkh Exp $ */ #include <sys/param.h> #include <stdio.h> #include <stdlib.h> #include <sys/types.h> +#include <err.h> #include <fcntl.h> #include <a.out.h> #include <stab.h> @@ -53,14 +54,13 @@ unsigned char *addr; switch (RELOC_TARGET_SIZE(rp)) { case 0: return get_byte(addr); - break; case 1: return get_short(addr); - break; case 2: return get_long(addr); - break; } + errx(1, "Unsupported relocation size: %x", RELOC_TARGET_SIZE(rp)); + return 0; } /* @@ -71,20 +71,20 @@ md_relocate(rp, relocation, addr, relocatable_output) struct relocation_info *rp; long relocation; unsigned char *addr; +int relocatable_output; { switch (RELOC_TARGET_SIZE(rp)) { case 0: put_byte(addr, relocation); - break; + return; case 1: put_short(addr, relocation); - break; + return; case 2: put_long(addr, relocation); - break; - default: - fatal("Unsupported relocation size: %x", RELOC_TARGET_SIZE(rp)); + return; } + errx(1, "Unsupported relocation size: %x", RELOC_TARGET_SIZE(rp)); } /* diff --git a/libexec/rtld-aout/i386/md.h b/libexec/rtld-aout/i386/md.h index bbb28f2..1209aee 100644 --- a/libexec/rtld-aout/i386/md.h +++ b/libexec/rtld-aout/i386/md.h @@ -14,7 +14,7 @@ * must display the following acknowledgement: * This product includes software developed by Paul Kranenburg. * 4. The name of the author may not be used to endorse or promote products - * derived from this software withough specific prior written permission + * derived from this software without specific prior written permission * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: md.h,v 1.8 1994/01/19 15:00:37 davidg Exp $ + * $Id: md.h,v 1.9 1994/02/13 20:42:11 jkh Exp $ */ diff --git a/libexec/rtld-aout/i386/mdprologue.S b/libexec/rtld-aout/i386/mdprologue.S index 23bcb03..6a582be 100644 --- a/libexec/rtld-aout/i386/mdprologue.S +++ b/libexec/rtld-aout/i386/mdprologue.S @@ -14,7 +14,7 @@ * must display the following acknowledgement: * This product includes software developed by Paul Kranenburg. * 4. The name of the author may not be used to endorse or promote products - * derived from this software withough specific prior written permission + * derived from this software without specific prior written permission * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: mdprologue.S,v 1.2 1993/11/09 04:19:18 paul Exp $ + * $Id: mdprologue.S,v 1.3 1993/12/10 10:16:00 jkh Exp $ */ /* diff --git a/libexec/rtld-aout/rtld.c b/libexec/rtld-aout/rtld.c index de86819..96dd0fe 100644 --- a/libexec/rtld-aout/rtld.c +++ b/libexec/rtld-aout/rtld.c @@ -27,13 +27,10 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: rtld.c,v 1.15 1994/02/13 20:42:53 jkh Exp $ + * $Id: rtld.c,v 1.16 1994/04/13 20:52:40 ats Exp $ */ -#include <machine/vmparam.h> #include <sys/param.h> -#include <stdio.h> -#include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/file.h> @@ -43,13 +40,16 @@ #include <sys/mman.h> #ifndef BSD #define MAP_COPY MAP_PRIVATE -#define MAP_FILE 0 #define MAP_ANON 0 #endif +#include <err.h> #include <fcntl.h> #include <a.out.h> #include <stab.h> +#include <stdio.h> +#include <stdlib.h> #include <string.h> +#include <unistd.h> #if __STDC__ #include <stdarg.h> #else @@ -123,34 +123,37 @@ struct somap_private { #define LM_PARENT(smp) (LM_PRIVATE(smp)->spd_parent) char **environ; +char *__progname; int errno; + static uid_t uid, euid; static gid_t gid, egid; static int careful; -static char *main_progname = "main"; +static char __main_progname[] = "main"; +static char *main_progname = __main_progname; +static char us[] = "/usr/libexec/ld.so"; struct so_map *link_map_head, *main_map; struct so_map **link_map_tail = &link_map_head; struct rt_symbol *rt_symbol_head; -void *dlopen __P((char *, int)); -int dlclose __P((void *)); -void *dlsym __P((void *, char *)); -int dlctl __P((void *, int, void *)); +static void *__dlopen __P((char *, int)); +static int __dlclose __P((void *)); +static void *__dlsym __P((void *, char *)); +static int __dlctl __P((void *, int, void *)); -struct ld_entry ld_entry = { - dlopen, dlclose, dlsym, dlctl +static struct ld_entry ld_entry = { + __dlopen, __dlclose, __dlsym, __dlctl }; void xprintf __P((char *, ...)); -static void init_brk __P((void)); static void load_objects __P(( struct crt_ldso *, struct _dynamic *)); static struct so_map *map_object __P((struct sod *, struct so_map *)); static struct so_map *alloc_link_map __P(( char *, struct sod *, struct so_map *, caddr_t, struct _dynamic *)); -static void inline check_text_reloc __P(( struct relocation_info *, +static inline void check_text_reloc __P(( struct relocation_info *, struct so_map *, caddr_t)); static void reloc_map __P((struct so_map *)); @@ -188,7 +191,6 @@ struct _dynamic *dp; int n; int nreloc; /* # of ld.so relocations */ struct relocation_info *reloc; - char **envp; struct so_debug *ddp; struct so_map *smp; @@ -217,7 +219,7 @@ struct _dynamic *dp; md_relocate_simple(reloc, crtp->crt_ba, addr); } - progname = "ld.so"; + __progname = "ld.so"; if (version >= CRT_VERSION_BSD_3) main_progname = crtp->crt_prog; @@ -237,7 +239,10 @@ struct _dynamic *dp; } /* Setup directory search */ - std_search_dirs(getenv("LD_LIBRARY_PATH")); + add_search_path(getenv("LD_RUN_PATH")); + add_search_path(getenv("LD_LIBRARY_PATH")); + if (getenv("LD_NOSTD_PATH") == NULL) + std_search_path(); /* Load required objects into the process address space */ load_objects(crtp, dp); @@ -275,12 +280,12 @@ struct _dynamic *dp; /* Set breakpoint for the benefit of debuggers */ if (mprotect(addr, PAGSIZ, PROT_READ|PROT_WRITE|PROT_EXEC) == -1) { - perror("mprotect"), - fatal("Cannot set breakpoint (%s)\n", main_progname); + err(1, "Cannot set breakpoint (%s)", main_progname); } - md_set_breakpoint(crtp->crt_bp, &ddp->dd_bpt_shadow); + md_set_breakpoint((long)crtp->crt_bp, (long *)&ddp->dd_bpt_shadow); if (mprotect(addr, PAGSIZ, PROT_READ|PROT_EXEC) == -1) { - perror("mprotect"); + err(1, "Cannot re-protect breakpoint (%s)", + main_progname); } ddp->dd_bpt_addr = crtp->crt_bp; @@ -311,7 +316,7 @@ struct _dynamic *dp; LM_PRIVATE(smp)->spd_flags |= RTLD_MAIN; /* Make an entry for ourselves */ - smp = alloc_link_map("/usr/libexec/ld.so", (struct sod *)0, (struct so_map *)0, + smp = alloc_link_map(us, (struct sod *)0, (struct so_map *)0, (caddr_t)crtp->crt_ba, dp); LM_PRIVATE(smp)->spd_refcount++; LM_PRIVATE(smp)->spd_flags |= RTLD_RTLD; @@ -335,12 +340,11 @@ struct _dynamic *dp; char *name = (char *) (sodp->sod_name + LM_LDBASE(smp)); char *fmt = sodp->sod_library ? - "%s: lib%s.so.%d.%d: %s\n" : - "%s: %s: %s\n"; - fatal(fmt, main_progname, name, + "%s: lib%s.so.%d.%d" : + "%s: %s"; + err(1, fmt, main_progname, name, sodp->sod_major, - sodp->sod_minor, - strerror(errno)); + sodp->sod_minor); } newmap = alloc_link_map(NULL, sodp, smp, 0, 0); } @@ -364,17 +368,17 @@ struct _dynamic *dp; path = "not found"; if (sodp->sod_library) - printf("\t-l%s.%d => %s (%#x)\n", name, + printf("\t-l%s.%d => %s (%p)\n", name, sodp->sod_major, path, smp->som_addr); else - printf("\t%s => %s (%#x)\n", name, path, smp->som_addr); + printf("\t%s => %s (%p)\n", name, path, smp->som_addr); } exit(0); } /* - * Allocate a new link map for an shared object NAME loaded at ADDR as a + * Allocate a new link map for shared object NAME loaded at ADDR as a * result of the presence of link object LOP in the link map PARENT. */ static struct so_map * @@ -395,7 +399,7 @@ alloc_link_map(path, sodp, parent, addr, dp) link_map_tail = &smp->som_next; smp->som_addr = addr; - smp->som_path = path; + smp->som_path = strdup(path); smp->som_sod = sodp; smp->som_dynamic = dp; smp->som_spd = (caddr_t)smpp; @@ -482,6 +486,7 @@ again: return NULL; } +#if 0 if (mmap(addr + hdr.a_text, hdr.a_data, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_FILE|MAP_FIXED|MAP_COPY, @@ -489,13 +494,19 @@ again: (void)close(fd); return NULL; } +#endif + if (mprotect(addr + hdr.a_text, hdr.a_data, + PROT_READ|PROT_WRITE|PROT_EXEC) != 0) { + (void)close(fd); + return NULL; + } (void)close(fd); fd = -1; #ifdef NEED_DEV_ZERO if ((fd = open("/dev/zero", O_RDWR, 0)) == -1) - perror("/dev/zero"); + warn("open: %s", "/dev/zero"); #endif if (hdr.a_bss && mmap(addr + hdr.a_text + hdr.a_data, hdr.a_bss, PROT_READ|PROT_WRITE|PROT_EXEC, @@ -516,7 +527,7 @@ again: return alloc_link_map(path, sodp, smp, addr, dp); } -static void inline +static inline void check_text_reloc(r, smp, addr) struct relocation_info *r; struct so_map *smp; @@ -543,8 +554,7 @@ caddr_t addr; LD_TEXTSZ(smp->som_dynamic), PROT_READ|PROT_WRITE|PROT_EXEC) == -1) { - perror("mprotect"), - fatal("Cannot enable writes to %s:%s\n", + err(1, "Cannot enable writes to %s:%s", main_progname, smp->som_path); } @@ -592,7 +602,7 @@ reloc_map(smp) np = lookup(sym, &src_map, 0/*XXX-jumpslots!*/); if (np == NULL) - fatal("Undefined symbol \"%s\" in %s:%s\n", + errx(1, "Undefined symbol \"%s\" in %s:%s\n", sym, main_progname, smp->som_path); /* @@ -636,8 +646,7 @@ reloc_map(smp) LD_TEXTSZ(smp->som_dynamic), PROT_READ|PROT_EXEC) == -1) { - perror("mprotect"), - fatal("Cannot disable writes to %s:%s\n", + err(1, "Cannot disable writes to %s:%s\n", main_progname, smp->som_path); } smp->som_write = 0; @@ -681,7 +690,7 @@ static struct rt_symbol *rt_symtab[RTC_TABSIZE]; /* * Compute hash value for run-time symbol table */ - static int inline + static inline int hash_string(key) char *key; { @@ -784,7 +793,7 @@ lookup(name, src_map, strong) */ for (smp = link_map_head; smp; smp = smp->som_next) { int buckets = LD_BUCKETS(smp->som_dynamic); - long hashval = 0; + long hashval; struct rrs_hash *hp; char *cp; struct nzlist *np; @@ -801,10 +810,11 @@ lookup(name, src_map, strong) if (*src_map && smp != *src_map) continue; +restart: /* * Compute bucket in which the symbol might be found. */ - for (cp = name; *cp; cp++) + for (hashval = 0, cp = name; *cp; cp++) hashval = (hashval << 1) + *cp; hashval = (hashval & 0x7fffffff) % buckets; @@ -838,6 +848,15 @@ lookup(name, src_map, strong) /* * We have a symbol with the name we're looking for. */ + if (np->nz_type == N_INDR+N_EXT) { + /* + * Next symbol gives the aliased name. Restart + * search with new name and confine to this map. + */ + name = stringbase + (++np)->nz_strx; + *src_map = smp; + goto restart; + } if (np->nz_value == 0) /* It's not a definition */ @@ -902,7 +921,7 @@ binder(jsp) } if (smp == NULL) - fatal("Call to binder from unknown location: %#x\n", jsp); + errx(1, "Call to binder from unknown location: %#x\n", jsp); index = jsp->reloc_index & JMPSLOT_RELOC_MASK; @@ -912,7 +931,7 @@ binder(jsp) np = lookup(sym, &src_map, 1); if (np == NULL) - fatal("Undefined symbol \"%s\" called from %s:%s at %#x", + errx(1, "Undefined symbol \"%s\" called from %s:%s at %#x", sym, main_progname, smp->som_path, jsp); /* Fixup jmpslot so future calls transfer directly to target */ @@ -1074,13 +1093,17 @@ rtfindlib(name, major, minor, usehints) if (hint) return hint; } - } else { - /* No LD_LIBRARY_PATH, check default */ - hint = findhint(name, major, minor, NULL); + /* Not found in hints, try directory search */ + hint = (char *)findshlib(name, &major, &minor, 0); if (hint) return hint; } + /* No LD_LIBRARY_PATH or lib not found in there; check default */ + hint = findhint(name, major, minor, NULL); + if (hint) + return hint; + /* No hints available for name */ *usehints = 0; return (char *)findshlib(name, &major, &minor, 0); @@ -1107,8 +1130,8 @@ static struct so_map dlmap = { }; static int dlerrno; - void * -dlopen(name, mode) + static void * +__dlopen(name, mode) char *name; int mode; { @@ -1126,7 +1149,7 @@ dlopen(name, mode) return NULL; } - sodp->sod_name = (long)name; + sodp->sod_name = (long)strdup(name); sodp->sod_library = 0; sodp->sod_major = sodp->sod_minor = 0; @@ -1148,8 +1171,8 @@ xprintf("%s: %s\n", name, strerror(errno)); return smp; } - int -dlclose(fd) + static int +__dlclose(fd) void *fd; { struct so_map *smp = (struct so_map *)fd; @@ -1164,6 +1187,7 @@ xprintf("dlclose(%s): refcount = %d\n", smp->som_path, LM_PRIVATE(smp)->spd_refc init_map(smp, "_fini"); #if 0 unmap_object(smp); + free(smp->som_sod->sod_name); free(smp->som_sod); free(smp); #endif @@ -1171,8 +1195,8 @@ xprintf("dlclose(%s): refcount = %d\n", smp->som_path, LM_PRIVATE(smp)->spd_refc return 0; } - void * -dlsym(fd, sym) + static void * +__dlsym(fd, sym) void *fd; char *sym; { @@ -1198,8 +1222,8 @@ dlsym(fd, sym) return (void *)addr; } - int -dlctl(fd, cmd, arg) + static int +__dlctl(fd, cmd, arg) void *fd, *arg; int cmd; { diff --git a/libexec/rtld-aout/shlib.c b/libexec/rtld-aout/shlib.c index 38ec051..2e8dfe9 100644 --- a/libexec/rtld-aout/shlib.c +++ b/libexec/rtld-aout/shlib.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: shlib.c,v 1.9 1994/01/29 02:03:15 jtc Exp $ + * $Id: shlib.c,v 1.8 1994/02/13 20:41:43 jkh Exp $ */ #include <sys/param.h> @@ -37,6 +37,7 @@ #include <sys/stat.h> #include <sys/file.h> #include <sys/time.h> +#include <err.h> #include <fcntl.h> #include <string.h> #include <ctype.h> @@ -53,7 +54,7 @@ char *strsep(); * Standard directories to search for files specified by -l. */ #ifndef STANDARD_SEARCH_DIRS -#define STANDARD_SEARCH_DIRS "/usr/lib", "/usr/X386/lib", "/usr/local/lib" +#define STANDARD_SEARCH_DIRS "/usr/lib", "/usr/X11R6/lib", "/usr/X386/lib", "/usr/local/lib" #endif /* @@ -73,25 +74,32 @@ add_search_dir(name) char *name; { n_search_dirs++; - search_dirs = (char **)xrealloc(search_dirs, - n_search_dirs * sizeof(char *)); + search_dirs = (char **) + xrealloc(search_dirs, n_search_dirs * sizeof(char *)); search_dirs[n_search_dirs - 1] = strdup(name); } void -std_search_dirs(paths) -char *paths; +add_search_path(path) +char *path; { - char *cp; - int i, n; + register char *cp; + + if (path == NULL) + return; - if (paths != NULL) /* Add search directories from `paths' */ - while ((cp = strsep(&paths, ":")) != NULL) { + while ((cp = strsep(&path, ":")) != NULL) { add_search_dir(cp); - if (paths) - *(paths-1) = ':'; + if (path) + *(path-1) = ':'; } +} + +void +std_search_path() +{ + int i, n; /* Append standard search directories */ n = sizeof standard_search_dirs / sizeof standard_search_dirs[0]; @@ -137,7 +145,7 @@ cmpndewey(d1, n1, d2, n2) int d1[], d2[]; int n1, n2; { - int i; + register int i; for (i = 0; i < n1 && i < n2; i++) { if (d1[i] < d2[i]) @@ -154,6 +162,9 @@ int n1, n2; if (i == n2) return 1; + + errx(1, "cmpndewey: cant happen"); + return 0; } /* @@ -200,7 +211,7 @@ int do_dot_a; continue; while ((dp = readdir(dd)) != NULL) { - int n, j, might_take_it = 0; + int n, might_take_it = 0; if (do_dot_a && path == NULL && dp->d_namlen == len + 2 && |