1993-10-17 00:54:08 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1993 Paul Kranenburg
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* 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
|
1994-01-29 04:54:01 +03:00
|
|
|
* derived from this software without specific prior written permission
|
1993-10-17 00:54:08 +03:00
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
1995-09-01 02:07:25 +04:00
|
|
|
* $Id: rtld.c,v 1.36 1995/08/31 22:07:25 pk Exp $
|
1993-10-17 00:54:08 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
1994-01-29 00:01:20 +03:00
|
|
|
#include <sys/errno.h>
|
1993-10-17 00:54:08 +03:00
|
|
|
#include <sys/mman.h>
|
1994-12-18 19:05:49 +03:00
|
|
|
#ifndef MAP_COPY
|
1993-10-17 00:54:08 +03:00
|
|
|
#define MAP_COPY MAP_PRIVATE
|
|
|
|
#endif
|
1994-06-10 19:16:32 +04:00
|
|
|
#include <err.h>
|
1995-06-05 04:08:38 +04:00
|
|
|
#include <dlfcn.h>
|
1993-10-17 00:54:08 +03:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <a.out.h>
|
|
|
|
#include <stab.h>
|
1994-06-10 19:16:32 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
1993-10-17 00:54:08 +03:00
|
|
|
#include <string.h>
|
1994-06-10 19:16:32 +04:00
|
|
|
#include <unistd.h>
|
1993-10-26 22:30:13 +03:00
|
|
|
#if __STDC__
|
|
|
|
#include <stdarg.h>
|
|
|
|
#else
|
|
|
|
#include <varargs.h>
|
|
|
|
#endif
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
#include "ld.h"
|
|
|
|
|
1994-12-18 19:05:49 +03:00
|
|
|
#ifndef MAP_ANON
|
|
|
|
#define MAP_ANON 0
|
|
|
|
#define anon_open() do { \
|
|
|
|
if ((anon_fd = open("/dev/zero", O_RDWR, 0)) == -1) \
|
|
|
|
err("open: %s", "/dev/zero"); \
|
|
|
|
} while (0)
|
|
|
|
#define anon_close() do { \
|
|
|
|
(void)close(anon_fd); \
|
|
|
|
anon_fd = -1; \
|
|
|
|
} while (0)
|
|
|
|
#else
|
|
|
|
#define anon_open()
|
|
|
|
#define anon_close()
|
1993-10-23 00:18:58 +03:00
|
|
|
#endif
|
|
|
|
|
1993-10-17 00:54:08 +03:00
|
|
|
/*
|
1994-01-29 00:01:20 +03:00
|
|
|
* Loader private data, hung off <so_map>->som_spd
|
1993-10-17 00:54:08 +03:00
|
|
|
*/
|
1994-01-29 00:01:20 +03:00
|
|
|
struct somap_private {
|
|
|
|
int spd_version;
|
|
|
|
struct so_map *spd_parent;
|
|
|
|
int spd_refcount;
|
|
|
|
int spd_flags;
|
|
|
|
#define RTLD_MAIN 1
|
|
|
|
#define RTLD_RTLD 2
|
|
|
|
#define RTLD_DL 4
|
|
|
|
|
1993-10-17 00:54:08 +03:00
|
|
|
#ifdef SUN_COMPAT
|
1994-01-29 00:01:20 +03:00
|
|
|
long spd_offset; /* Correction for Sun main programs */
|
1993-10-17 00:54:08 +03:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
#define LM_PRIVATE(smp) ((struct somap_private *)(smp)->som_spd)
|
|
|
|
|
1993-10-17 00:54:08 +03:00
|
|
|
#ifdef SUN_COMPAT
|
1994-01-29 00:01:20 +03:00
|
|
|
#define LM_OFFSET(smp) (LM_PRIVATE(smp)->spd_offset)
|
1993-10-17 00:54:08 +03:00
|
|
|
#else
|
1994-01-29 00:01:20 +03:00
|
|
|
#define LM_OFFSET(smp) (0)
|
1993-10-17 00:54:08 +03:00
|
|
|
#endif
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
/* Base address for section_dispatch_table entries */
|
|
|
|
#define LM_LDBASE(smp) (smp->som_addr + LM_OFFSET(smp))
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1993-10-21 03:00:09 +03:00
|
|
|
/* Start of text segment */
|
1994-01-29 00:01:20 +03:00
|
|
|
#define LM_TXTADDR(smp) (smp->som_addr == (caddr_t)0 ? PAGSIZ : 0)
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1993-10-21 03:00:09 +03:00
|
|
|
/* Start of run-time relocation_info */
|
1994-01-29 00:01:20 +03:00
|
|
|
#define LM_REL(smp) ((struct relocation_info *) \
|
|
|
|
(smp->som_addr + LM_OFFSET(smp) + LD_REL((smp)->som_dynamic)))
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1993-10-21 03:00:09 +03:00
|
|
|
/* Start of symbols */
|
1994-01-29 00:01:20 +03:00
|
|
|
#define LM_SYMBOL(smp, i) ((struct nzlist *) \
|
|
|
|
(smp->som_addr + LM_OFFSET(smp) + LD_SYMBOL((smp)->som_dynamic) + \
|
|
|
|
i * (LD_VERSION_NZLIST_P(smp->som_dynamic->d_version) ? \
|
|
|
|
sizeof(struct nzlist) : sizeof(struct nlist))))
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1993-10-21 03:00:09 +03:00
|
|
|
/* Start of hash table */
|
1994-01-29 00:01:20 +03:00
|
|
|
#define LM_HASH(smp) ((struct rrs_hash *) \
|
|
|
|
((smp)->som_addr + LM_OFFSET(smp) + LD_HASH((smp)->som_dynamic)))
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1993-10-21 03:00:09 +03:00
|
|
|
/* Start of strings */
|
1994-01-29 00:01:20 +03:00
|
|
|
#define LM_STRINGS(smp) ((char *) \
|
|
|
|
((smp)->som_addr + LM_OFFSET(smp) + LD_STRINGS((smp)->som_dynamic)))
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1995-06-05 01:56:22 +04:00
|
|
|
/* Start of search paths */
|
|
|
|
#define LM_PATHS(smp) ((char *) \
|
|
|
|
((smp)->som_addr + LM_OFFSET(smp) + LD_PATHS((smp)->som_dynamic)))
|
|
|
|
|
1993-10-21 03:00:09 +03:00
|
|
|
/* End of text */
|
1994-01-29 00:01:20 +03:00
|
|
|
#define LM_ETEXT(smp) ((char *) \
|
|
|
|
((smp)->som_addr + LM_TXTADDR(smp) + LD_TEXTSZ((smp)->som_dynamic)))
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
/* PLT is in data segment, so don't use LM_OFFSET here */
|
1994-01-29 00:01:20 +03:00
|
|
|
#define LM_PLT(smp) ((jmpslot_t *) \
|
|
|
|
((smp)->som_addr + LD_PLT((smp)->som_dynamic)))
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1993-10-23 00:18:58 +03:00
|
|
|
/* Parent of link map */
|
1994-01-29 00:01:20 +03:00
|
|
|
#define LM_PARENT(smp) (LM_PRIVATE(smp)->spd_parent)
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
char **environ;
|
1994-06-10 19:16:32 +04:00
|
|
|
char *__progname;
|
1993-10-17 18:40:11 +03:00
|
|
|
int errno;
|
1994-06-10 19:16:32 +04:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
static uid_t uid, euid;
|
|
|
|
static gid_t gid, egid;
|
|
|
|
static int careful;
|
1994-05-24 14:44:06 +04:00
|
|
|
static char __main_progname[] = "main";
|
|
|
|
static char *main_progname = __main_progname;
|
|
|
|
static char us[] = "/usr/libexec/ld.so";
|
1994-12-18 19:05:49 +03:00
|
|
|
static int anon_fd = -1;
|
1993-10-23 00:18:58 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
struct so_map *link_map_head, *main_map;
|
|
|
|
struct so_map **link_map_tail = &link_map_head;
|
1993-10-17 00:54:08 +03:00
|
|
|
struct rt_symbol *rt_symbol_head;
|
|
|
|
|
1995-06-05 01:56:22 +04:00
|
|
|
static char *ld_library_path;
|
|
|
|
static int no_intern_search;
|
1995-06-05 03:21:35 +04:00
|
|
|
static int ld_suppress_warnings;
|
|
|
|
static int ld_warn_non_pure_code;
|
1995-06-05 01:56:22 +04:00
|
|
|
|
1994-05-24 14:44:06 +04:00
|
|
|
static void *__dlopen __P((char *, int));
|
|
|
|
static int __dlclose __P((void *));
|
|
|
|
static void *__dlsym __P((void *, char *));
|
|
|
|
static int __dlctl __P((void *, int, void *));
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
static struct ld_entry ld_entry = {
|
1994-05-24 14:44:06 +04:00
|
|
|
__dlopen, __dlclose, __dlsym, __dlctl
|
1993-10-17 00:54:08 +03:00
|
|
|
};
|
|
|
|
|
1993-12-08 13:28:05 +03:00
|
|
|
void xprintf __P((char *, ...));
|
1995-06-05 04:08:38 +04:00
|
|
|
int rtld __P((int, struct crt_ldso *, struct _dynamic *));
|
|
|
|
void binder_entry __P((void));
|
|
|
|
long binder __P((jmpslot_t *));
|
1994-01-29 00:01:20 +03:00
|
|
|
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 *));
|
1994-06-10 19:16:32 +04:00
|
|
|
static inline void check_text_reloc __P(( struct relocation_info *,
|
1994-01-29 00:01:20 +03:00
|
|
|
struct so_map *,
|
1993-10-17 00:54:08 +03:00
|
|
|
caddr_t));
|
1994-01-29 00:01:20 +03:00
|
|
|
static void reloc_map __P((struct so_map *));
|
|
|
|
static void reloc_copy __P((struct so_map *));
|
|
|
|
static void init_map __P((struct so_map *, char *));
|
1995-06-05 01:56:22 +04:00
|
|
|
static char *rtfindlib __P((char *, int, int, int *, char *));
|
1994-01-29 00:01:20 +03:00
|
|
|
static struct nzlist *lookup __P((char *, struct so_map **, int));
|
|
|
|
static inline struct rt_symbol *lookup_rts __P((char *));
|
|
|
|
static struct rt_symbol *enter_rts __P((char *, long, int, caddr_t,
|
|
|
|
long, struct so_map *));
|
1994-10-26 23:21:42 +03:00
|
|
|
static void maphints __P((void));
|
|
|
|
static void unmaphints __P((void));
|
1994-01-29 00:01:20 +03:00
|
|
|
|
1995-03-06 23:51:24 +03:00
|
|
|
static int dl_cascade __P((struct so_map *));
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
static inline int
|
|
|
|
strcmp (register const char *s1, register const char *s2)
|
|
|
|
{
|
|
|
|
while (*s1 == *s2++)
|
|
|
|
if (*s1++ == 0)
|
|
|
|
return (0);
|
|
|
|
return (*(unsigned char *)s1 - *(unsigned char *)--s2);
|
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
#include "md-static-funcs.c"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called from assembler stub that has set up crtp (passed from crt0)
|
|
|
|
* and dp (our __DYNAMIC).
|
|
|
|
*/
|
1994-01-29 00:01:20 +03:00
|
|
|
int
|
1993-10-17 00:54:08 +03:00
|
|
|
rtld(version, crtp, dp)
|
1995-06-05 04:08:38 +04:00
|
|
|
int version;
|
|
|
|
struct crt_ldso *crtp;
|
|
|
|
struct _dynamic *dp;
|
1993-10-17 00:54:08 +03:00
|
|
|
{
|
|
|
|
int n;
|
|
|
|
int nreloc; /* # of ld.so relocations */
|
|
|
|
struct relocation_info *reloc;
|
1994-01-29 00:01:20 +03:00
|
|
|
struct so_debug *ddp;
|
|
|
|
struct so_map *smp;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
/* Check version */
|
1994-01-29 00:01:20 +03:00
|
|
|
if ( version != CRT_VERSION_BSD_2 &&
|
|
|
|
version != CRT_VERSION_BSD_3 &&
|
|
|
|
version != CRT_VERSION_SUN)
|
|
|
|
return -1;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
/* Fixup __DYNAMIC structure */
|
1994-01-29 00:01:20 +03:00
|
|
|
(long)dp->d_un.d_sdt += crtp->crt_ba;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
/* Divide by hand to avoid possible use of library division routine */
|
1993-10-17 00:54:08 +03:00
|
|
|
for ( nreloc = 0, n = LD_RELSZ(dp);
|
|
|
|
n > 0;
|
|
|
|
n -= sizeof(struct relocation_info) ) nreloc++;
|
|
|
|
|
|
|
|
|
|
|
|
/* Relocate ourselves */
|
1994-01-29 00:01:20 +03:00
|
|
|
for ( reloc = (struct relocation_info *)(LD_REL(dp) + crtp->crt_ba);
|
1993-10-17 00:54:08 +03:00
|
|
|
nreloc;
|
|
|
|
nreloc--, reloc++) {
|
|
|
|
|
|
|
|
register long addr = reloc->r_address + crtp->crt_ba;
|
|
|
|
|
|
|
|
md_relocate_simple(reloc, crtp->crt_ba, addr);
|
|
|
|
}
|
|
|
|
|
1994-06-10 19:16:32 +04:00
|
|
|
__progname = "ld.so";
|
1994-01-29 00:01:20 +03:00
|
|
|
if (version >= CRT_VERSION_BSD_3)
|
|
|
|
main_progname = crtp->crt_prog;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
/* Setup out (private) environ variable */
|
|
|
|
environ = crtp->crt_ep;
|
|
|
|
|
1993-10-23 00:18:58 +03:00
|
|
|
/* Get user and group identifiers */
|
|
|
|
uid = getuid(); euid = geteuid();
|
|
|
|
gid = getgid(); egid = getegid();
|
|
|
|
|
|
|
|
careful = (uid != euid) || (gid != egid);
|
|
|
|
|
|
|
|
if (careful) {
|
|
|
|
unsetenv("LD_LIBRARY_PATH");
|
|
|
|
unsetenv("LD_PRELOAD");
|
|
|
|
}
|
|
|
|
|
1993-10-17 00:54:08 +03:00
|
|
|
/* Setup directory search */
|
1995-06-05 01:56:22 +04:00
|
|
|
ld_library_path = getenv("LD_LIBRARY_PATH");
|
|
|
|
add_search_path(ld_library_path);
|
1994-06-10 19:16:32 +04:00
|
|
|
if (getenv("LD_NOSTD_PATH") == NULL)
|
|
|
|
std_search_path();
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1995-06-05 03:21:35 +04:00
|
|
|
ld_suppress_warnings = getenv("LD_SUPPRESS_WARNINGS") != NULL;
|
|
|
|
ld_warn_non_pure_code = getenv("LD_WARN_NON_PURE_CODE") != NULL;
|
|
|
|
|
1995-06-05 01:56:22 +04:00
|
|
|
no_intern_search = careful || getenv("LD_NO_INTERN_SEARCH") != 0;
|
|
|
|
|
1994-12-18 19:05:49 +03:00
|
|
|
anon_open();
|
1993-10-17 00:54:08 +03:00
|
|
|
/* Load required objects into the process address space */
|
1994-01-29 00:01:20 +03:00
|
|
|
load_objects(crtp, dp);
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
/* Relocate all loaded objects according to their RRS segments */
|
1994-01-29 00:01:20 +03:00
|
|
|
for (smp = link_map_head; smp; smp = smp->som_next) {
|
|
|
|
if (LM_PRIVATE(smp)->spd_flags & RTLD_RTLD)
|
|
|
|
continue;
|
|
|
|
reloc_map(smp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy any relocated initialized data. */
|
|
|
|
for (smp = link_map_head; smp; smp = smp->som_next) {
|
|
|
|
if (LM_PRIVATE(smp)->spd_flags & RTLD_RTLD)
|
|
|
|
continue;
|
|
|
|
reloc_copy(smp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Call any object initialization routines. */
|
|
|
|
for (smp = link_map_head; smp; smp = smp->som_next) {
|
|
|
|
if (LM_PRIVATE(smp)->spd_flags & RTLD_RTLD)
|
|
|
|
continue;
|
|
|
|
init_map(smp, ".init");
|
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
/* Fill in some field in main's __DYNAMIC structure */
|
1994-01-29 00:01:20 +03:00
|
|
|
crtp->crt_dp->d_entry = &ld_entry;
|
|
|
|
crtp->crt_dp->d_un.d_sdt->sdt_loaded = link_map_head->som_next;
|
1993-11-11 00:37:39 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
ddp = crtp->crt_dp->d_debug;
|
|
|
|
ddp->dd_cc = rt_symbol_head;
|
|
|
|
if (ddp->dd_in_debugger) {
|
1993-11-11 00:37:39 +03:00
|
|
|
caddr_t addr = (caddr_t)((long)crtp->crt_bp & (~(PAGSIZ - 1)));
|
|
|
|
|
|
|
|
/* Set breakpoint for the benefit of debuggers */
|
|
|
|
if (mprotect(addr, PAGSIZ,
|
|
|
|
PROT_READ|PROT_WRITE|PROT_EXEC) == -1) {
|
1994-06-10 19:16:32 +04:00
|
|
|
err(1, "Cannot set breakpoint (%s)", main_progname);
|
1993-11-11 00:37:39 +03:00
|
|
|
}
|
1994-06-10 19:16:32 +04:00
|
|
|
md_set_breakpoint((long)crtp->crt_bp, (long *)&ddp->dd_bpt_shadow);
|
1993-11-11 00:37:39 +03:00
|
|
|
if (mprotect(addr, PAGSIZ, PROT_READ|PROT_EXEC) == -1) {
|
1994-06-10 19:16:32 +04:00
|
|
|
err(1, "Cannot re-protect breakpoint (%s)",
|
|
|
|
main_progname);
|
1993-11-11 00:37:39 +03:00
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
ddp->dd_bpt_addr = crtp->crt_bp;
|
1993-11-11 00:37:39 +03:00
|
|
|
if (link_map_head)
|
1994-01-29 00:01:20 +03:00
|
|
|
ddp->dd_sym_loaded = 1;
|
1993-11-11 00:37:39 +03:00
|
|
|
}
|
1993-12-08 13:28:05 +03:00
|
|
|
|
1994-10-26 23:21:42 +03:00
|
|
|
/* Close the hints file */
|
|
|
|
unmaphints();
|
|
|
|
|
1993-12-08 13:28:05 +03:00
|
|
|
/* Close our file descriptor */
|
|
|
|
(void)close(crtp->crt_ldfd);
|
1994-12-18 19:05:49 +03:00
|
|
|
anon_close();
|
1994-01-29 00:01:20 +03:00
|
|
|
return 0;
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
1994-01-29 00:01:20 +03:00
|
|
|
load_objects(crtp, dp)
|
1995-06-05 04:08:38 +04:00
|
|
|
struct crt_ldso *crtp;
|
|
|
|
struct _dynamic *dp;
|
1993-10-17 00:54:08 +03:00
|
|
|
{
|
1994-01-29 00:01:20 +03:00
|
|
|
struct so_map *smp;
|
|
|
|
int tracing = (int)getenv("LD_TRACE_LOADED_OBJECTS");
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
/* Handle LD_PRELOAD's here */
|
|
|
|
|
|
|
|
/* Make an entry for the main program */
|
1994-01-29 00:01:20 +03:00
|
|
|
smp = alloc_link_map(main_progname, (struct sod *)0, (struct so_map *)0,
|
1993-10-17 00:54:08 +03:00
|
|
|
(caddr_t)0, crtp->crt_dp);
|
1994-01-29 00:01:20 +03:00
|
|
|
LM_PRIVATE(smp)->spd_refcount++;
|
|
|
|
LM_PRIVATE(smp)->spd_flags |= RTLD_MAIN;
|
|
|
|
|
|
|
|
/* Make an entry for ourselves */
|
1994-05-24 14:44:06 +04:00
|
|
|
smp = alloc_link_map(us, (struct sod *)0, (struct so_map *)0,
|
1994-01-29 00:01:20 +03:00
|
|
|
(caddr_t)crtp->crt_ba, dp);
|
|
|
|
LM_PRIVATE(smp)->spd_refcount++;
|
|
|
|
LM_PRIVATE(smp)->spd_flags |= RTLD_RTLD;
|
|
|
|
|
|
|
|
for (smp = link_map_head; smp; smp = smp->som_next) {
|
|
|
|
struct sod *sodp;
|
|
|
|
long next = 0;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if (LM_PRIVATE(smp)->spd_flags & RTLD_RTLD)
|
|
|
|
continue;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if (smp->som_dynamic)
|
|
|
|
next = LD_NEED(smp->som_dynamic);
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
while (next) {
|
1994-01-29 00:01:20 +03:00
|
|
|
struct so_map *newmap;
|
|
|
|
|
|
|
|
sodp = (struct sod *)(LM_LDBASE(smp) + next);
|
|
|
|
if ((newmap = map_object(sodp, smp)) == NULL) {
|
|
|
|
if (!tracing) {
|
|
|
|
char *name = (char *)
|
|
|
|
(sodp->sod_name + LM_LDBASE(smp));
|
|
|
|
char *fmt = sodp->sod_library ?
|
1994-06-10 19:16:32 +04:00
|
|
|
"%s: lib%s.so.%d.%d" :
|
|
|
|
"%s: %s";
|
|
|
|
err(1, fmt, main_progname, name,
|
1994-01-29 00:01:20 +03:00
|
|
|
sodp->sod_major,
|
1994-06-10 19:16:32 +04:00
|
|
|
sodp->sod_minor);
|
1994-01-29 00:01:20 +03:00
|
|
|
}
|
|
|
|
newmap = alloc_link_map(NULL, sodp, smp, 0, 0);
|
|
|
|
}
|
|
|
|
LM_PRIVATE(newmap)->spd_refcount++;
|
|
|
|
next = sodp->sod_next;
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! tracing)
|
|
|
|
return;
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
for (smp = link_map_head; smp; smp = smp->som_next) {
|
|
|
|
struct sod *sodp;
|
|
|
|
char *name, *path;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if ((sodp = smp->som_sod) == NULL)
|
1993-10-17 00:54:08 +03:00
|
|
|
continue;
|
1994-01-29 00:01:20 +03:00
|
|
|
name = sodp->sod_name + LM_LDBASE(LM_PARENT(smp));
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if ((path = smp->som_path) == NULL)
|
1993-10-17 00:54:08 +03:00
|
|
|
path = "not found";
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if (sodp->sod_library)
|
1994-06-10 19:16:32 +04:00
|
|
|
printf("\t-l%s.%d => %s (%p)\n", name,
|
1994-01-29 00:01:20 +03:00
|
|
|
sodp->sod_major, path, smp->som_addr);
|
1993-10-17 00:54:08 +03:00
|
|
|
else
|
1994-06-10 19:16:32 +04:00
|
|
|
printf("\t%s => %s (%p)\n", name, path, smp->som_addr);
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
|
1993-12-08 13:28:05 +03:00
|
|
|
exit(0);
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
|
1993-10-23 00:18:58 +03:00
|
|
|
/*
|
1994-05-24 14:44:06 +04:00
|
|
|
* Allocate a new link map for shared object NAME loaded at ADDR as a
|
1993-10-23 00:18:58 +03:00
|
|
|
* result of the presence of link object LOP in the link map PARENT.
|
|
|
|
*/
|
1994-01-29 00:01:20 +03:00
|
|
|
static struct so_map *
|
|
|
|
alloc_link_map(path, sodp, parent, addr, dp)
|
|
|
|
char *path;
|
|
|
|
struct sod *sodp;
|
|
|
|
struct so_map *parent;
|
|
|
|
caddr_t addr;
|
|
|
|
struct _dynamic *dp;
|
1993-10-17 00:54:08 +03:00
|
|
|
{
|
1994-01-29 00:01:20 +03:00
|
|
|
struct so_map *smp;
|
|
|
|
struct somap_private *smpp;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
smpp = (struct somap_private *)xmalloc(sizeof(struct somap_private));
|
|
|
|
smp = (struct so_map *)xmalloc(sizeof(struct so_map));
|
|
|
|
smp->som_next = NULL;
|
|
|
|
*link_map_tail = smp;
|
|
|
|
link_map_tail = &smp->som_next;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1995-06-21 03:07:03 +04:00
|
|
|
/*smp->som_sodbase = 0; NOT USED */
|
|
|
|
smp->som_write = 0;
|
1994-01-29 00:01:20 +03:00
|
|
|
smp->som_addr = addr;
|
1994-06-24 17:31:34 +04:00
|
|
|
smp->som_path = path?strdup(path):NULL;
|
1994-01-29 00:01:20 +03:00
|
|
|
smp->som_sod = sodp;
|
|
|
|
smp->som_dynamic = dp;
|
|
|
|
smp->som_spd = (caddr_t)smpp;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
/*XXX*/ if (addr == 0) main_map = smp;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
smpp->spd_refcount = 0;
|
|
|
|
smpp->spd_flags = 0;
|
|
|
|
smpp->spd_parent = parent;
|
1993-10-23 00:18:58 +03:00
|
|
|
|
1993-10-17 00:54:08 +03:00
|
|
|
#ifdef SUN_COMPAT
|
1994-01-29 00:01:20 +03:00
|
|
|
smpp->spd_offset =
|
|
|
|
(addr==0 && dp && dp->d_version==LD_VERSION_SUN) ? PAGSIZ : 0;
|
1993-10-17 00:54:08 +03:00
|
|
|
#endif
|
1994-01-29 00:01:20 +03:00
|
|
|
return smp;
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Map object identified by link object LOP which was found
|
|
|
|
* in link map LMP.
|
|
|
|
*/
|
1994-01-29 00:01:20 +03:00
|
|
|
static struct so_map *
|
|
|
|
map_object(sodp, smp)
|
|
|
|
struct sod *sodp;
|
|
|
|
struct so_map *smp;
|
1993-10-17 00:54:08 +03:00
|
|
|
{
|
1994-01-29 00:01:20 +03:00
|
|
|
struct _dynamic *dp;
|
1995-06-05 01:56:22 +04:00
|
|
|
char *path, *ipath,
|
|
|
|
*name = (char *)(sodp->sod_name + LM_LDBASE(smp));
|
1994-12-18 19:05:49 +03:00
|
|
|
int fd;
|
1993-10-17 00:54:08 +03:00
|
|
|
caddr_t addr;
|
|
|
|
struct exec hdr;
|
1993-10-23 00:18:58 +03:00
|
|
|
int usehints = 0;
|
1994-01-29 00:01:20 +03:00
|
|
|
struct so_map *p;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if (sodp->sod_library) {
|
1993-10-23 00:18:58 +03:00
|
|
|
usehints = 1;
|
|
|
|
again:
|
1995-06-05 01:56:22 +04:00
|
|
|
if (no_intern_search || LD_PATHS(smp->som_dynamic) == 0) {
|
|
|
|
ipath = NULL;
|
|
|
|
} else {
|
|
|
|
ipath = LM_PATHS(smp);
|
|
|
|
add_search_path(ipath);
|
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
path = rtfindlib(name, sodp->sod_major,
|
1995-06-05 01:56:22 +04:00
|
|
|
sodp->sod_minor, &usehints, ipath);
|
|
|
|
if (ipath)
|
|
|
|
remove_search_path(ipath);
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if (path == NULL) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return NULL;
|
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
} else {
|
1994-01-29 00:01:20 +03:00
|
|
|
if (careful && *name != '/') {
|
|
|
|
errno = EACCES;
|
|
|
|
return NULL;
|
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
path = name;
|
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
/* Check if already loaded */
|
|
|
|
for (p = link_map_head; p; p = p->som_next)
|
|
|
|
if (p->som_path && strcmp(p->som_path, path) == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (p != NULL)
|
|
|
|
return p;
|
|
|
|
|
|
|
|
if ((fd = open(path, O_RDONLY, 0)) == -1) {
|
1993-10-23 00:18:58 +03:00
|
|
|
if (usehints) {
|
|
|
|
usehints = 0;
|
|
|
|
goto again;
|
|
|
|
}
|
1994-01-29 00:01:20 +03:00
|
|
|
return NULL;
|
1993-10-23 00:18:58 +03:00
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
if (read(fd, &hdr, sizeof(hdr)) != sizeof(hdr)) {
|
1994-01-29 00:01:20 +03:00
|
|
|
(void)close(fd);
|
|
|
|
/*errno = x;*/
|
|
|
|
return NULL;
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if (N_BADMAG(hdr)) {
|
|
|
|
(void)close(fd);
|
|
|
|
errno = EFTYPE;
|
|
|
|
return NULL;
|
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-12-07 23:30:53 +03:00
|
|
|
if ((addr = mmap(0, hdr.a_text + hdr.a_data + hdr.a_bss,
|
1995-09-01 02:07:25 +04:00
|
|
|
PROT_READ|PROT_EXEC,
|
|
|
|
MAP_COPY, fd, 0)) == (caddr_t)-1) {
|
1994-01-29 00:01:20 +03:00
|
|
|
(void)close(fd);
|
|
|
|
return NULL;
|
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-12-19 15:21:21 +03:00
|
|
|
if (mprotect(addr + hdr.a_text, hdr.a_data,
|
1995-09-01 02:07:25 +04:00
|
|
|
PROT_READ|PROT_WRITE|PROT_EXEC) != 0) {
|
1994-06-10 19:16:32 +04:00
|
|
|
(void)close(fd);
|
|
|
|
return NULL;
|
|
|
|
}
|
1994-12-18 18:38:55 +03:00
|
|
|
|
1995-09-01 02:07:25 +04:00
|
|
|
if (hdr.a_bss && mmap(addr + hdr.a_text + hdr.a_data, hdr.a_bss,
|
|
|
|
PROT_READ|PROT_WRITE|PROT_EXEC,
|
|
|
|
MAP_ANON|MAP_COPY|MAP_FIXED,
|
|
|
|
anon_fd, 0) == (caddr_t)-1) {
|
1994-01-29 00:01:20 +03:00
|
|
|
(void)close(fd);
|
|
|
|
return NULL;
|
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
(void)close(fd);
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
/* Assume _DYNAMIC is the first data item */
|
1994-01-29 00:01:20 +03:00
|
|
|
dp = (struct _dynamic *)(addr+hdr.a_text);
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
/* Fixup __DYNAMIC structure */
|
1994-01-29 00:01:20 +03:00
|
|
|
(long)dp->d_un.d_sdt += (long)addr;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
return alloc_link_map(path, sodp, smp, addr, dp);
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
|
1994-06-10 19:16:32 +04:00
|
|
|
static inline void
|
1994-01-29 00:01:20 +03:00
|
|
|
check_text_reloc(r, smp, addr)
|
1995-06-05 04:08:38 +04:00
|
|
|
struct relocation_info *r;
|
|
|
|
struct so_map *smp;
|
|
|
|
caddr_t addr;
|
1993-10-17 00:54:08 +03:00
|
|
|
{
|
1994-01-29 00:01:20 +03:00
|
|
|
char *sym;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if (addr >= LM_ETEXT(smp))
|
|
|
|
return;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if (RELOC_EXTERN_P(r))
|
|
|
|
sym = LM_STRINGS(smp) +
|
|
|
|
LM_SYMBOL(smp, RELOC_SYMBOL(r))->nz_strx;
|
|
|
|
else
|
|
|
|
sym = "";
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1995-06-05 03:21:35 +04:00
|
|
|
if (ld_warn_non_pure_code && !ld_suppress_warnings)
|
1994-12-07 23:30:53 +03:00
|
|
|
warnx("warning: non pure code in %s at %x (%s)",
|
1994-01-29 00:01:20 +03:00
|
|
|
smp->som_path, r->r_address, sym);
|
1993-12-21 01:44:35 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if (smp->som_write == 0 &&
|
|
|
|
mprotect(smp->som_addr + LM_TXTADDR(smp),
|
|
|
|
LD_TEXTSZ(smp->som_dynamic),
|
|
|
|
PROT_READ|PROT_WRITE|PROT_EXEC) == -1) {
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-06-10 19:16:32 +04:00
|
|
|
err(1, "Cannot enable writes to %s:%s",
|
1994-01-29 00:01:20 +03:00
|
|
|
main_progname, smp->som_path);
|
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
smp->som_write = 1;
|
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
static void
|
|
|
|
reloc_map(smp)
|
|
|
|
struct so_map *smp;
|
|
|
|
{
|
|
|
|
struct _dynamic *dp = smp->som_dynamic;
|
|
|
|
struct relocation_info *r = LM_REL(smp);
|
|
|
|
struct relocation_info *rend = r + LD_RELSZ(dp)/sizeof(*r);
|
|
|
|
long symbolbase = (long)LM_SYMBOL(smp, 0);
|
|
|
|
char *stringbase = LM_STRINGS(smp);
|
|
|
|
int symsize = LD_VERSION_NZLIST_P(dp->d_version) ?
|
|
|
|
sizeof(struct nzlist) :
|
|
|
|
sizeof(struct nlist);
|
|
|
|
|
|
|
|
if (LD_PLTSZ(dp))
|
|
|
|
md_fix_jmpslot(LM_PLT(smp),
|
|
|
|
(long)LM_PLT(smp), (long)binder_entry);
|
|
|
|
|
|
|
|
for (; r < rend; r++) {
|
|
|
|
char *sym;
|
|
|
|
caddr_t addr = smp->som_addr + r->r_address;
|
|
|
|
|
|
|
|
check_text_reloc(r, smp, addr);
|
|
|
|
|
|
|
|
if (RELOC_EXTERN_P(r)) {
|
|
|
|
struct so_map *src_map = NULL;
|
|
|
|
struct nzlist *p, *np;
|
|
|
|
long relocation = md_get_addend(r, addr);
|
|
|
|
|
|
|
|
if (RELOC_LAZY_P(r))
|
|
|
|
continue;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
p = (struct nzlist *)
|
|
|
|
(symbolbase + symsize * RELOC_SYMBOL(r));
|
|
|
|
|
|
|
|
if (p->nz_type == (N_SETV + N_EXT))
|
|
|
|
src_map = smp;
|
|
|
|
|
|
|
|
sym = stringbase + p->nz_strx;
|
|
|
|
|
|
|
|
np = lookup(sym, &src_map, 0/*XXX-jumpslots!*/);
|
|
|
|
if (np == NULL)
|
1994-06-10 19:16:32 +04:00
|
|
|
errx(1, "Undefined symbol \"%s\" in %s:%s\n",
|
1994-01-29 00:01:20 +03:00
|
|
|
sym, main_progname, smp->som_path);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Found symbol definition.
|
|
|
|
* If it's in a link map, adjust value
|
|
|
|
* according to the load address of that map.
|
|
|
|
* Otherwise it's a run-time allocated common
|
|
|
|
* whose value is already up-to-date.
|
|
|
|
*/
|
|
|
|
relocation += np->nz_value;
|
|
|
|
if (src_map)
|
|
|
|
relocation += (long)src_map->som_addr;
|
|
|
|
|
|
|
|
if (RELOC_PCREL_P(r))
|
|
|
|
relocation -= (long)smp->som_addr;
|
|
|
|
|
|
|
|
if (RELOC_COPY_P(r) && src_map) {
|
|
|
|
(void)enter_rts(sym,
|
|
|
|
(long)addr,
|
|
|
|
N_DATA + N_EXT,
|
|
|
|
src_map->som_addr + np->nz_value,
|
|
|
|
np->nz_size, src_map);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
md_relocate(r, relocation, addr, 0);
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
} else {
|
|
|
|
md_relocate(r,
|
1993-10-17 00:54:08 +03:00
|
|
|
#ifdef SUN_COMPAT
|
1994-01-29 00:01:20 +03:00
|
|
|
md_get_rt_segment_addend(r, addr)
|
1993-10-17 00:54:08 +03:00
|
|
|
#else
|
1994-01-29 00:01:20 +03:00
|
|
|
md_get_addend(r, addr)
|
1993-10-17 00:54:08 +03:00
|
|
|
#endif
|
1994-01-29 00:01:20 +03:00
|
|
|
+ (long)smp->som_addr, addr, 0);
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (smp->som_write) {
|
|
|
|
if (mprotect(smp->som_addr + LM_TXTADDR(smp),
|
|
|
|
LD_TEXTSZ(smp->som_dynamic),
|
1993-11-11 00:37:39 +03:00
|
|
|
PROT_READ|PROT_EXEC) == -1) {
|
|
|
|
|
1994-06-10 19:16:32 +04:00
|
|
|
err(1, "Cannot disable writes to %s:%s\n",
|
1994-01-29 00:01:20 +03:00
|
|
|
main_progname, smp->som_path);
|
1993-11-11 00:37:39 +03:00
|
|
|
}
|
1994-01-29 00:01:20 +03:00
|
|
|
smp->som_write = 0;
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1993-10-23 00:18:58 +03:00
|
|
|
static void
|
1994-01-29 00:01:20 +03:00
|
|
|
reloc_copy(smp)
|
|
|
|
struct so_map *smp;
|
1993-10-23 00:18:58 +03:00
|
|
|
{
|
|
|
|
struct rt_symbol *rtsp;
|
|
|
|
|
|
|
|
for (rtsp = rt_symbol_head; rtsp; rtsp = rtsp->rt_next)
|
1994-01-29 00:01:20 +03:00
|
|
|
if ((rtsp->rt_smp == NULL || rtsp->rt_smp == smp) &&
|
|
|
|
rtsp->rt_sp->nz_type == N_DATA + N_EXT) {
|
1993-10-23 00:18:58 +03:00
|
|
|
bcopy(rtsp->rt_srcaddr, (caddr_t)rtsp->rt_sp->nz_value,
|
|
|
|
rtsp->rt_sp->nz_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1993-10-17 00:54:08 +03:00
|
|
|
static void
|
1994-01-29 00:01:20 +03:00
|
|
|
init_map(smp, sym)
|
|
|
|
struct so_map *smp;
|
|
|
|
char *sym;
|
1993-10-17 00:54:08 +03:00
|
|
|
{
|
1994-01-29 00:01:20 +03:00
|
|
|
struct so_map *src_map = smp;
|
|
|
|
struct nzlist *np;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
np = lookup(sym, &src_map, 1);
|
|
|
|
if (np)
|
1995-06-05 04:08:38 +04:00
|
|
|
(*(void (*) __P((void)))(src_map->som_addr + np->nz_value))();
|
1994-01-29 00:01:20 +03:00
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
/*
|
|
|
|
* Run-time common symbol table.
|
|
|
|
*/
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
#define RTC_TABSIZE 57
|
|
|
|
static struct rt_symbol *rt_symtab[RTC_TABSIZE];
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
/*
|
|
|
|
* Compute hash value for run-time symbol table
|
|
|
|
*/
|
1994-06-10 19:16:32 +04:00
|
|
|
static inline int
|
1994-01-29 00:01:20 +03:00
|
|
|
hash_string(key)
|
|
|
|
char *key;
|
|
|
|
{
|
|
|
|
register char *cp;
|
|
|
|
register int k;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
cp = key;
|
|
|
|
k = 0;
|
|
|
|
while (*cp)
|
|
|
|
k = (((k << 1) + (k >> 14)) ^ (*cp++)) & 0x3fff;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
return k;
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
/*
|
|
|
|
* Lookup KEY in the run-time common symbol table.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline struct rt_symbol *
|
|
|
|
lookup_rts(key)
|
|
|
|
char *key;
|
1993-12-21 01:44:35 +03:00
|
|
|
{
|
1994-01-29 00:01:20 +03:00
|
|
|
register int hashval;
|
|
|
|
register struct rt_symbol *rtsp;
|
1993-12-21 01:44:35 +03:00
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
/* Determine which bucket. */
|
|
|
|
|
|
|
|
hashval = hash_string(key) % RTC_TABSIZE;
|
|
|
|
|
|
|
|
/* Search the bucket. */
|
|
|
|
|
|
|
|
for (rtsp = rt_symtab[hashval]; rtsp; rtsp = rtsp->rt_link)
|
|
|
|
if (strcmp(key, rtsp->rt_sp->nz_name) == 0)
|
|
|
|
return rtsp;
|
|
|
|
|
|
|
|
return NULL;
|
1993-12-21 01:44:35 +03:00
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
static struct rt_symbol *
|
|
|
|
enter_rts(name, value, type, srcaddr, size, smp)
|
|
|
|
char *name;
|
|
|
|
long value;
|
|
|
|
int type;
|
|
|
|
caddr_t srcaddr;
|
|
|
|
long size;
|
|
|
|
struct so_map *smp;
|
|
|
|
{
|
|
|
|
register int hashval;
|
|
|
|
register struct rt_symbol *rtsp, **rpp;
|
|
|
|
|
|
|
|
/* Determine which bucket */
|
|
|
|
hashval = hash_string(name) % RTC_TABSIZE;
|
|
|
|
|
|
|
|
/* Find end of bucket */
|
|
|
|
for (rpp = &rt_symtab[hashval]; *rpp; rpp = &(*rpp)->rt_link)
|
|
|
|
;
|
|
|
|
|
|
|
|
/* Allocate new common symbol */
|
|
|
|
rtsp = (struct rt_symbol *)malloc(sizeof(struct rt_symbol));
|
|
|
|
rtsp->rt_sp = (struct nzlist *)malloc(sizeof(struct nzlist));
|
|
|
|
rtsp->rt_sp->nz_name = strdup(name);
|
|
|
|
rtsp->rt_sp->nz_value = value;
|
|
|
|
rtsp->rt_sp->nz_type = type;
|
|
|
|
rtsp->rt_sp->nz_size = size;
|
|
|
|
rtsp->rt_srcaddr = srcaddr;
|
|
|
|
rtsp->rt_smp = smp;
|
|
|
|
rtsp->rt_link = NULL;
|
|
|
|
|
|
|
|
/* Link onto linear list as well */
|
|
|
|
rtsp->rt_next = rt_symbol_head;
|
|
|
|
rt_symbol_head = rtsp;
|
|
|
|
|
|
|
|
*rpp = rtsp;
|
|
|
|
|
|
|
|
return rtsp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-11-11 00:37:39 +03:00
|
|
|
/*
|
|
|
|
* Lookup NAME in the link maps. The link map producing a definition
|
1993-12-21 01:44:35 +03:00
|
|
|
* is returned in SRC_MAP. If SRC_MAP is not NULL on entry the search is
|
|
|
|
* confined to that map. If STRONG is set, the symbol returned must
|
1993-11-11 00:37:39 +03:00
|
|
|
* have a proper type (used by binder()).
|
|
|
|
*/
|
1994-01-29 00:01:20 +03:00
|
|
|
static struct nzlist *
|
1993-11-11 00:37:39 +03:00
|
|
|
lookup(name, src_map, strong)
|
1994-01-29 00:01:20 +03:00
|
|
|
char *name;
|
|
|
|
struct so_map **src_map; /* IN/OUT */
|
|
|
|
int strong;
|
1993-10-17 00:54:08 +03:00
|
|
|
{
|
|
|
|
long common_size = 0;
|
1994-01-29 00:01:20 +03:00
|
|
|
struct so_map *smp;
|
1993-10-17 00:54:08 +03:00
|
|
|
struct rt_symbol *rtsp;
|
|
|
|
|
|
|
|
if ((rtsp = lookup_rts(name)) != NULL)
|
|
|
|
return rtsp->rt_sp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Search all maps for a definition of NAME
|
|
|
|
*/
|
1994-01-29 00:01:20 +03:00
|
|
|
for (smp = link_map_head; smp; smp = smp->som_next) {
|
1994-12-18 18:38:55 +03:00
|
|
|
int buckets;
|
1994-05-24 14:44:06 +04:00
|
|
|
long hashval;
|
1993-10-17 00:54:08 +03:00
|
|
|
struct rrs_hash *hp;
|
|
|
|
char *cp;
|
|
|
|
struct nzlist *np;
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
/* Some local caching */
|
|
|
|
long symbolbase;
|
|
|
|
struct rrs_hash *hashbase;
|
|
|
|
char *stringbase;
|
|
|
|
int symsize;
|
|
|
|
|
1994-12-18 18:38:55 +03:00
|
|
|
if (*src_map && smp != *src_map)
|
1994-01-29 00:01:20 +03:00
|
|
|
continue;
|
|
|
|
|
1994-12-18 18:38:55 +03:00
|
|
|
if ((buckets = LD_BUCKETS(smp->som_dynamic)) == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (LM_PRIVATE(smp)->spd_flags & RTLD_RTLD)
|
1993-12-21 01:44:35 +03:00
|
|
|
continue;
|
|
|
|
|
1994-05-24 14:44:06 +04:00
|
|
|
restart:
|
1993-10-17 00:54:08 +03:00
|
|
|
/*
|
|
|
|
* Compute bucket in which the symbol might be found.
|
|
|
|
*/
|
1994-05-24 14:44:06 +04:00
|
|
|
for (hashval = 0, cp = name; *cp; cp++)
|
1993-10-17 00:54:08 +03:00
|
|
|
hashval = (hashval << 1) + *cp;
|
|
|
|
|
|
|
|
hashval = (hashval & 0x7fffffff) % buckets;
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
hashbase = LM_HASH(smp);
|
|
|
|
hp = hashbase + hashval;
|
1993-10-17 00:54:08 +03:00
|
|
|
if (hp->rh_symbolnum == -1)
|
|
|
|
/* Nothing in this bucket */
|
|
|
|
continue;
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
symbolbase = (long)LM_SYMBOL(smp, 0);
|
|
|
|
stringbase = LM_STRINGS(smp);
|
|
|
|
symsize = LD_VERSION_NZLIST_P(smp->som_dynamic->d_version)?
|
|
|
|
sizeof(struct nzlist) :
|
|
|
|
sizeof(struct nlist);
|
1993-10-17 00:54:08 +03:00
|
|
|
while (hp) {
|
1994-01-29 00:01:20 +03:00
|
|
|
np = (struct nzlist *)
|
|
|
|
(symbolbase + hp->rh_symbolnum * symsize);
|
|
|
|
cp = stringbase + np->nz_strx;
|
1993-10-17 00:54:08 +03:00
|
|
|
if (strcmp(cp, name) == 0)
|
|
|
|
break;
|
|
|
|
if (hp->rh_next == 0)
|
|
|
|
hp = NULL;
|
|
|
|
else
|
1994-01-29 00:01:20 +03:00
|
|
|
hp = hashbase + hp->rh_next;
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
if (hp == NULL)
|
|
|
|
/* Nothing in this bucket */
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We have a symbol with the name we're looking for.
|
|
|
|
*/
|
1994-05-24 14:44:06 +04:00
|
|
|
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;
|
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
if (np->nz_value == 0)
|
|
|
|
/* It's not a definition */
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (np->nz_type == N_UNDF+N_EXT && np->nz_value != 0) {
|
1994-01-29 00:01:20 +03:00
|
|
|
if (np->nz_other == AUX_FUNC) {
|
1993-11-11 00:37:39 +03:00
|
|
|
/* It's a weak function definition */
|
|
|
|
if (strong)
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
/* It's a common, note value and continue search */
|
|
|
|
if (common_size < np->nz_value)
|
|
|
|
common_size = np->nz_value;
|
|
|
|
continue;
|
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
*src_map = smp;
|
1993-10-17 00:54:08 +03:00
|
|
|
return np;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (common_size == 0)
|
|
|
|
/* Not found */
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It's a common, enter into run-time common symbol table.
|
|
|
|
*/
|
|
|
|
rtsp = enter_rts(name, (long)calloc(1, common_size),
|
1994-01-29 00:01:20 +03:00
|
|
|
N_UNDF + N_EXT, 0, common_size, NULL);
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
xprintf("Allocating common: %s size %d at %#x\n", name, common_size, rtsp->rt_sp->nz_value);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return rtsp->rt_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This routine is called from the jumptable to resolve
|
|
|
|
* procedure calls to shared objects.
|
|
|
|
*/
|
1994-01-29 00:01:20 +03:00
|
|
|
long
|
1993-10-17 00:54:08 +03:00
|
|
|
binder(jsp)
|
1994-01-29 00:01:20 +03:00
|
|
|
jmpslot_t *jsp;
|
1993-10-17 00:54:08 +03:00
|
|
|
{
|
1994-01-29 00:01:20 +03:00
|
|
|
struct so_map *smp, *src_map = NULL;
|
1993-10-17 00:54:08 +03:00
|
|
|
long addr;
|
|
|
|
char *sym;
|
|
|
|
struct nzlist *np;
|
|
|
|
int index;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the PLT map that contains JSP.
|
|
|
|
*/
|
1994-01-29 00:01:20 +03:00
|
|
|
for (smp = link_map_head; smp; smp = smp->som_next) {
|
|
|
|
if (LM_PLT(smp) < jsp &&
|
|
|
|
jsp < LM_PLT(smp) + LD_PLTSZ(smp->som_dynamic)/sizeof(*jsp))
|
1993-10-17 00:54:08 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if (smp == NULL)
|
1994-06-10 19:16:32 +04:00
|
|
|
errx(1, "Call to binder from unknown location: %#x\n", jsp);
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
index = jsp->reloc_index & JMPSLOT_RELOC_MASK;
|
|
|
|
|
|
|
|
/* Get the local symbol this jmpslot refers to */
|
1994-01-29 00:01:20 +03:00
|
|
|
sym = LM_STRINGS(smp) +
|
|
|
|
LM_SYMBOL(smp,RELOC_SYMBOL(&LM_REL(smp)[index]))->nz_strx;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
1993-11-11 00:37:39 +03:00
|
|
|
np = lookup(sym, &src_map, 1);
|
1993-10-17 00:54:08 +03:00
|
|
|
if (np == NULL)
|
1994-06-10 19:16:32 +04:00
|
|
|
errx(1, "Undefined symbol \"%s\" called from %s:%s at %#x",
|
1994-01-29 00:01:20 +03:00
|
|
|
sym, main_progname, smp->som_path, jsp);
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
/* Fixup jmpslot so future calls transfer directly to target */
|
|
|
|
addr = np->nz_value;
|
|
|
|
if (src_map)
|
1994-01-29 00:01:20 +03:00
|
|
|
addr += (long)src_map->som_addr;
|
1993-10-17 00:54:08 +03:00
|
|
|
|
|
|
|
md_fix_jmpslot(jsp, (long)jsp, addr);
|
|
|
|
|
|
|
|
#if DEBUG
|
1994-01-29 00:01:20 +03:00
|
|
|
xprintf(" BINDER: %s located at = %#x in %s\n", sym, addr, src_map->som_path);
|
1993-10-17 00:54:08 +03:00
|
|
|
#endif
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-10-26 23:21:42 +03:00
|
|
|
static int hfd;
|
|
|
|
static long hsize;
|
1993-10-23 00:18:58 +03:00
|
|
|
static struct hints_header *hheader;
|
|
|
|
static struct hints_bucket *hbuckets;
|
|
|
|
static char *hstrtab;
|
|
|
|
|
|
|
|
#define HINTS_VALID (hheader != NULL && hheader != (struct hints_header *)-1)
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
static void
|
1993-10-23 00:18:58 +03:00
|
|
|
maphints()
|
|
|
|
{
|
|
|
|
caddr_t addr;
|
|
|
|
|
1994-10-26 23:21:42 +03:00
|
|
|
if ((hfd = open(_PATH_LD_HINTS, O_RDONLY, 0)) == -1) {
|
1993-10-23 00:18:58 +03:00
|
|
|
hheader = (struct hints_header *)-1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1994-10-26 23:21:42 +03:00
|
|
|
hsize = PAGSIZ;
|
|
|
|
addr = mmap(0, hsize, PROT_READ, MAP_COPY, hfd, 0);
|
1993-10-23 00:18:58 +03:00
|
|
|
|
|
|
|
if (addr == (caddr_t)-1) {
|
1994-10-26 23:21:42 +03:00
|
|
|
close(hfd);
|
1993-10-23 00:18:58 +03:00
|
|
|
hheader = (struct hints_header *)-1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
hheader = (struct hints_header *)addr;
|
|
|
|
if (HH_BADMAG(*hheader)) {
|
1994-10-26 23:21:42 +03:00
|
|
|
munmap(addr, hsize);
|
|
|
|
close(hfd);
|
1993-10-23 00:18:58 +03:00
|
|
|
hheader = (struct hints_header *)-1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hheader->hh_version != LD_HINTS_VERSION_1) {
|
1994-10-26 23:21:42 +03:00
|
|
|
munmap(addr, hsize);
|
|
|
|
close(hfd);
|
1993-10-23 00:18:58 +03:00
|
|
|
hheader = (struct hints_header *)-1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1994-10-26 23:21:42 +03:00
|
|
|
if (hheader->hh_ehints > hsize) {
|
|
|
|
if (mmap(addr+hsize, hheader->hh_ehints - hsize,
|
1994-03-28 06:07:04 +04:00
|
|
|
PROT_READ, MAP_COPY|MAP_FIXED,
|
1994-10-26 23:21:42 +03:00
|
|
|
hfd, hsize) != (caddr_t)(addr+hsize)) {
|
1993-10-23 00:18:58 +03:00
|
|
|
|
1994-10-26 23:21:42 +03:00
|
|
|
munmap((caddr_t)hheader, hsize);
|
|
|
|
close(hfd);
|
1993-10-23 00:18:58 +03:00
|
|
|
hheader = (struct hints_header *)-1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hbuckets = (struct hints_bucket *)(addr + hheader->hh_hashtab);
|
|
|
|
hstrtab = (char *)(addr + hheader->hh_strtab);
|
|
|
|
}
|
|
|
|
|
1994-10-26 23:21:42 +03:00
|
|
|
static void
|
|
|
|
unmaphints()
|
|
|
|
{
|
|
|
|
|
|
|
|
if (HINTS_VALID) {
|
|
|
|
munmap((caddr_t)hheader, hsize);
|
|
|
|
close(hfd);
|
|
|
|
hheader = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
int
|
1993-10-23 00:18:58 +03:00
|
|
|
hinthash(cp, vmajor, vminor)
|
1994-01-29 00:01:20 +03:00
|
|
|
char *cp;
|
|
|
|
int vmajor, vminor;
|
1993-10-23 00:18:58 +03:00
|
|
|
{
|
|
|
|
int k = 0;
|
|
|
|
|
|
|
|
while (*cp)
|
|
|
|
k = (((k << 1) + (k >> 14)) ^ (*cp++)) & 0x3fff;
|
|
|
|
|
|
|
|
k = (((k << 1) + (k >> 14)) ^ (vmajor*257)) & 0x3fff;
|
|
|
|
k = (((k << 1) + (k >> 14)) ^ (vminor*167)) & 0x3fff;
|
|
|
|
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
|
1993-10-17 00:54:08 +03:00
|
|
|
#undef major
|
|
|
|
#undef minor
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
static char *
|
1995-06-21 03:07:03 +04:00
|
|
|
findhint(name, major, minor, prefered_path)
|
1994-01-29 00:01:20 +03:00
|
|
|
char *name;
|
|
|
|
int major, minor;
|
1995-06-21 03:07:03 +04:00
|
|
|
char *prefered_path;
|
1993-10-17 00:54:08 +03:00
|
|
|
{
|
1993-10-23 00:18:58 +03:00
|
|
|
struct hints_bucket *bp;
|
|
|
|
|
|
|
|
bp = hbuckets + (hinthash(name, major, minor) % hheader->hh_nbucket);
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
/* Sanity check */
|
|
|
|
if (bp->hi_namex >= hheader->hh_strtab_sz) {
|
1995-03-06 23:51:24 +03:00
|
|
|
warnx("Bad name index: %#x\n", bp->hi_namex);
|
1993-10-23 00:18:58 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (bp->hi_pathx >= hheader->hh_strtab_sz) {
|
1995-03-06 23:51:24 +03:00
|
|
|
warnx("Bad path index: %#x\n", bp->hi_pathx);
|
1993-10-23 00:18:58 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(name, hstrtab + bp->hi_namex) == 0) {
|
|
|
|
/* It's `name', check version numbers */
|
|
|
|
if (bp->hi_major == major &&
|
|
|
|
(bp->hi_ndewey < 2 || bp->hi_minor == minor)) {
|
1995-06-21 03:07:03 +04:00
|
|
|
if (prefered_path == NULL ||
|
|
|
|
strncmp(prefered_path,
|
|
|
|
hstrtab + bp->hi_pathx,
|
|
|
|
strlen(prefered_path)) == 0) {
|
1993-10-23 00:18:58 +03:00
|
|
|
return hstrtab + bp->hi_pathx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bp->hi_next == -1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Move on to next in bucket */
|
|
|
|
bp = &hbuckets[bp->hi_next];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No hints available for name */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
static char *
|
1995-06-05 01:56:22 +04:00
|
|
|
rtfindlib(name, major, minor, usehints, ipath)
|
1994-01-29 00:01:20 +03:00
|
|
|
char *name;
|
|
|
|
int major, minor;
|
|
|
|
int *usehints;
|
1995-06-05 01:56:22 +04:00
|
|
|
char *ipath;
|
1993-10-23 00:18:58 +03:00
|
|
|
{
|
1995-06-05 01:56:22 +04:00
|
|
|
register char *cp;
|
|
|
|
int realminor;
|
1993-10-23 00:18:58 +03:00
|
|
|
|
|
|
|
if (hheader == NULL)
|
|
|
|
maphints();
|
|
|
|
|
1994-08-07 14:34:40 +04:00
|
|
|
if (!HINTS_VALID || !(*usehints))
|
|
|
|
goto lose;
|
1993-10-23 00:18:58 +03:00
|
|
|
|
1995-06-05 01:56:22 +04:00
|
|
|
/* NOTE: `ipath' may reside in a piece of read-only memory */
|
1993-10-23 00:18:58 +03:00
|
|
|
|
1995-06-05 01:56:22 +04:00
|
|
|
if (ld_library_path || ipath) {
|
|
|
|
/* Prefer paths from some explicit LD_LIBRARY_PATH */
|
|
|
|
register char *lpath;
|
|
|
|
char *dp;
|
1995-06-21 03:07:03 +04:00
|
|
|
|
|
|
|
dp = lpath = concat(ld_library_path ? ld_library_path : "",
|
|
|
|
(ld_library_path && ipath) ? ":" : "",
|
|
|
|
ipath ? ipath : "");
|
|
|
|
|
1995-06-05 01:56:22 +04:00
|
|
|
while ((cp = strsep(&dp, ":")) != NULL) {
|
1994-08-07 14:34:40 +04:00
|
|
|
cp = findhint(name, major, minor, cp);
|
1995-06-21 03:07:03 +04:00
|
|
|
if (cp) {
|
|
|
|
free(lpath);
|
1994-08-07 14:34:40 +04:00
|
|
|
return cp;
|
1995-06-21 03:07:03 +04:00
|
|
|
}
|
1993-10-23 00:18:58 +03:00
|
|
|
}
|
1995-06-05 01:56:22 +04:00
|
|
|
free(lpath);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Not found in hints; try directory search now, before
|
|
|
|
* we get a spurious hint match below (i.e. a match not
|
1995-06-21 03:07:03 +04:00
|
|
|
* on one of the paths we're supposed to search first.
|
1995-06-05 01:56:22 +04:00
|
|
|
*/
|
1994-08-07 14:34:40 +04:00
|
|
|
realminor = -1;
|
|
|
|
cp = (char *)findshlib(name, &major, &realminor, 0);
|
|
|
|
if (cp && realminor >= minor)
|
|
|
|
return cp;
|
1993-10-23 00:18:58 +03:00
|
|
|
}
|
|
|
|
|
1994-02-16 01:51:23 +03:00
|
|
|
/* No LD_LIBRARY_PATH or lib not found in there; check default */
|
1994-08-07 14:34:40 +04:00
|
|
|
cp = findhint(name, major, minor, NULL);
|
|
|
|
if (cp)
|
|
|
|
return cp;
|
1994-02-16 01:51:23 +03:00
|
|
|
|
1994-08-07 14:34:40 +04:00
|
|
|
lose:
|
1993-10-23 00:18:58 +03:00
|
|
|
/* No hints available for name */
|
|
|
|
*usehints = 0;
|
1994-08-07 14:34:40 +04:00
|
|
|
realminor = -1;
|
|
|
|
cp = (char *)findshlib(name, &major, &realminor, 0);
|
|
|
|
if (cp) {
|
1995-06-05 03:21:35 +04:00
|
|
|
if (realminor < minor && !ld_suppress_warnings)
|
1994-08-07 14:34:40 +04:00
|
|
|
warnx("warning: lib%s.so.%d.%d: "
|
|
|
|
"minor version >= %d expected, using it anyway",
|
|
|
|
name, major, realminor, minor);
|
|
|
|
return cp;
|
|
|
|
}
|
|
|
|
return NULL;
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
static struct somap_private dlmap_private = {
|
|
|
|
0,
|
|
|
|
(struct so_map *)0,
|
|
|
|
0,
|
|
|
|
#ifdef SUN_COMPAT
|
|
|
|
0,
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct so_map dlmap = {
|
|
|
|
(caddr_t)0,
|
|
|
|
"internal",
|
|
|
|
(struct so_map *)0,
|
|
|
|
(struct sod *)0,
|
|
|
|
(caddr_t)0,
|
|
|
|
(u_int)0,
|
|
|
|
(struct _dynamic *)0,
|
|
|
|
(caddr_t)&dlmap_private
|
|
|
|
};
|
|
|
|
static int dlerrno;
|
|
|
|
|
|
|
|
static void *
|
1994-05-24 14:44:06 +04:00
|
|
|
__dlopen(name, mode)
|
1994-01-29 00:01:20 +03:00
|
|
|
char *name;
|
|
|
|
int mode;
|
1993-10-17 00:54:08 +03:00
|
|
|
{
|
1994-01-29 00:01:20 +03:00
|
|
|
struct sod *sodp;
|
|
|
|
struct so_map *smp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A NULL argument returns the current set of mapped objects.
|
|
|
|
*/
|
|
|
|
if (name == NULL)
|
|
|
|
return link_map_head;
|
|
|
|
|
|
|
|
if ((sodp = (struct sod *)malloc(sizeof(struct sod))) == NULL) {
|
|
|
|
dlerrno = ENOMEM;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1994-04-07 23:46:30 +04:00
|
|
|
sodp->sod_name = (long)strdup(name);
|
1994-01-29 00:01:20 +03:00
|
|
|
sodp->sod_library = 0;
|
|
|
|
sodp->sod_major = sodp->sod_minor = 0;
|
|
|
|
|
|
|
|
if ((smp = map_object(sodp, &dlmap)) == NULL) {
|
|
|
|
#ifdef DEBUG
|
|
|
|
xprintf("%s: %s\n", name, strerror(errno));
|
|
|
|
#endif
|
|
|
|
dlerrno = errno;
|
|
|
|
return NULL;
|
|
|
|
}
|
1995-03-06 23:51:24 +03:00
|
|
|
|
|
|
|
if (dl_cascade(smp) == 0)
|
|
|
|
return NULL;
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
if (LM_PRIVATE(smp)->spd_refcount++ == 0) {
|
|
|
|
LM_PRIVATE(smp)->spd_flags |= RTLD_DL;
|
|
|
|
reloc_map(smp);
|
|
|
|
reloc_copy(smp);
|
|
|
|
init_map(smp, ".init");
|
|
|
|
init_map(smp, "_init");
|
|
|
|
}
|
|
|
|
|
|
|
|
return smp;
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
static int
|
1994-05-24 14:44:06 +04:00
|
|
|
__dlclose(fd)
|
1994-01-29 00:01:20 +03:00
|
|
|
void *fd;
|
1993-10-17 00:54:08 +03:00
|
|
|
{
|
1994-01-29 00:01:20 +03:00
|
|
|
struct so_map *smp = (struct so_map *)fd;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
xprintf("dlclose(%s): refcount = %d\n", smp->som_path, LM_PRIVATE(smp)->spd_refcount);
|
|
|
|
#endif
|
|
|
|
if (--LM_PRIVATE(smp)->spd_refcount != 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Dismantle shared object map and descriptor */
|
|
|
|
init_map(smp, "_fini");
|
|
|
|
#if 0
|
|
|
|
unmap_object(smp);
|
1994-04-07 23:46:30 +04:00
|
|
|
free(smp->som_sod->sod_name);
|
1994-01-29 00:01:20 +03:00
|
|
|
free(smp->som_sod);
|
|
|
|
free(smp);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
1993-10-17 00:54:08 +03:00
|
|
|
}
|
|
|
|
|
1994-01-29 00:01:20 +03:00
|
|
|
static void *
|
1994-05-24 14:44:06 +04:00
|
|
|
__dlsym(fd, sym)
|
1994-01-29 00:01:20 +03:00
|
|
|
void *fd;
|
|
|
|
char *sym;
|
1993-10-17 00:54:08 +03:00
|
|
|
{
|
1994-01-29 00:01:20 +03:00
|
|
|
struct so_map *smp = (struct so_map *)fd, *src_map = NULL;
|
|
|
|
struct nzlist *np;
|
|
|
|
long addr;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Restrict search to passed map if dlopen()ed.
|
|
|
|
*/
|
|
|
|
if (LM_PRIVATE(smp)->spd_flags & RTLD_DL)
|
|
|
|
src_map = smp;
|
|
|
|
|
|
|
|
np = lookup(sym, &src_map, 1);
|
|
|
|
if (np == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Fixup jmpslot so future calls transfer directly to target */
|
|
|
|
addr = np->nz_value;
|
|
|
|
if (src_map)
|
|
|
|
addr += (long)src_map->som_addr;
|
|
|
|
|
|
|
|
return (void *)addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1994-05-24 14:44:06 +04:00
|
|
|
__dlctl(fd, cmd, arg)
|
1994-01-29 00:01:20 +03:00
|
|
|
void *fd, *arg;
|
|
|
|
int cmd;
|
|
|
|
{
|
|
|
|
switch (cmd) {
|
|
|
|
case DL_GETERRNO:
|
|
|
|
*(int *)arg = dlerrno;
|
|
|
|
return 0;
|
|
|
|
default:
|
|
|
|
dlerrno = EOPNOTSUPP;
|
|
|
|
return -1;
|
|
|
|
}
|
1993-10-17 00:54:08 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1993-11-11 00:37:39 +03:00
|
|
|
void
|
|
|
|
#if __STDC__
|
|
|
|
xprintf(char *fmt, ...)
|
|
|
|
#else
|
|
|
|
xprintf(fmt, va_alist)
|
|
|
|
char *fmt;
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
va_list ap;
|
|
|
|
#if __STDC__
|
|
|
|
va_start(ap, fmt);
|
|
|
|
#else
|
|
|
|
va_start(ap);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
vsprintf(buf, fmt, ap);
|
|
|
|
(void)write(1, buf, strlen(buf));
|
|
|
|
va_end(ap);
|
|
|
|
}
|
1995-03-06 23:51:24 +03:00
|
|
|
|
|
|
|
static int
|
|
|
|
dl_cascade(smp)
|
|
|
|
struct so_map *smp;
|
|
|
|
{
|
|
|
|
struct sod *sodp;
|
|
|
|
struct so_map *smp2;
|
1995-04-02 00:56:55 +04:00
|
|
|
long next;
|
|
|
|
|
|
|
|
next = LD_NEED(smp->som_dynamic);
|
1995-03-06 23:51:24 +03:00
|
|
|
|
1995-04-02 00:56:55 +04:00
|
|
|
while (next) {
|
|
|
|
sodp = (struct sod *)(LM_LDBASE(smp) + next);
|
|
|
|
if ((smp2 = map_object(sodp, smp)) == NULL) {
|
1995-03-06 23:51:24 +03:00
|
|
|
#ifdef DEBUG
|
1995-04-02 00:56:55 +04:00
|
|
|
xprintf("ld.so: map_object failed on cascaded %s %s (%d.%d): %s\n",
|
|
|
|
smp->sod_library ? "library" : "file", smp->sod_name,
|
|
|
|
smp->sod_major, smp->sod_minor, strerror(errno));
|
1995-03-06 23:51:24 +03:00
|
|
|
#endif
|
1995-04-02 00:56:55 +04:00
|
|
|
dlerrno = errno;
|
|
|
|
return 0;
|
|
|
|
}
|
1995-03-06 23:51:24 +03:00
|
|
|
#if 0
|
1995-04-02 00:56:55 +04:00
|
|
|
/*
|
|
|
|
* XXX - this doesn't work for some reason. not
|
|
|
|
* at all sure why. -mrg
|
|
|
|
*/
|
|
|
|
if (dl_cascade(smp2) == 0)
|
|
|
|
return 0;
|
1995-03-06 23:51:24 +03:00
|
|
|
#endif
|
|
|
|
|
1995-04-02 00:56:55 +04:00
|
|
|
if (LM_PRIVATE(smp2)->spd_refcount++ == 0) {
|
|
|
|
LM_PRIVATE(smp2)->spd_flags |= RTLD_DL;
|
|
|
|
reloc_map(smp2);
|
|
|
|
reloc_copy(smp2);
|
|
|
|
init_map(smp2, ".init");
|
|
|
|
init_map(smp2, "_init");
|
1995-03-06 23:51:24 +03:00
|
|
|
}
|
1995-04-02 00:56:55 +04:00
|
|
|
|
|
|
|
next = sodp->sod_next;
|
1995-03-06 23:51:24 +03:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|