1998-08-24 08:25:26 +00:00
|
|
|
/*-
|
2000-04-24 17:08:04 +00:00
|
|
|
* Copyright (c) 1998-2000 Doug Rabson
|
1998-08-24 08:25:26 +00:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
|
|
|
|
*
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1998-08-24 08:25:26 +00:00
|
|
|
*/
|
|
|
|
|
2000-04-24 17:08:04 +00:00
|
|
|
#include "opt_ddb.h"
|
|
|
|
|
1998-08-24 08:25:26 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/namei.h>
|
|
|
|
#include <sys/fcntl.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/linker.h>
|
|
|
|
#include <machine/elf.h>
|
|
|
|
|
1998-09-11 08:46:15 +00:00
|
|
|
#include <vm/vm.h>
|
|
|
|
#include <vm/vm_param.h>
|
1999-12-15 23:02:35 +00:00
|
|
|
#include <vm/vm_zone.h>
|
1998-09-11 08:46:15 +00:00
|
|
|
#include <sys/lock.h>
|
1999-10-11 15:19:12 +00:00
|
|
|
#ifdef SPARSE_MAPPING
|
1998-09-11 08:46:15 +00:00
|
|
|
#include <vm/vm_object.h>
|
|
|
|
#include <vm/vm_kern.h>
|
|
|
|
#include <vm/vm_extern.h>
|
1999-10-11 15:19:12 +00:00
|
|
|
#endif
|
1998-09-11 08:46:15 +00:00
|
|
|
#include <vm/pmap.h>
|
|
|
|
#include <vm/vm_map.h>
|
2000-04-24 17:08:04 +00:00
|
|
|
#include <link.h>
|
1998-09-11 08:46:15 +00:00
|
|
|
|
2000-04-24 17:08:04 +00:00
|
|
|
#include "linker_if.h"
|
1998-08-24 08:25:26 +00:00
|
|
|
|
|
|
|
typedef struct elf_file {
|
2000-04-24 17:08:04 +00:00
|
|
|
struct linker_file lf; /* Common fields */
|
|
|
|
int preloaded; /* Was file pre-loaded */
|
1998-09-11 08:46:15 +00:00
|
|
|
caddr_t address; /* Relocation address */
|
|
|
|
#ifdef SPARSE_MAPPING
|
|
|
|
vm_object_t object; /* VM object to hold file pages */
|
|
|
|
#endif
|
2000-04-24 17:08:04 +00:00
|
|
|
Elf_Dyn* dynamic; /* Symbol table etc. */
|
1998-08-24 08:25:26 +00:00
|
|
|
Elf_Off nbuckets; /* DT_HASH info */
|
|
|
|
Elf_Off nchains;
|
|
|
|
const Elf_Off* buckets;
|
|
|
|
const Elf_Off* chains;
|
|
|
|
caddr_t hash;
|
|
|
|
caddr_t strtab; /* DT_STRTAB */
|
1998-10-12 09:13:50 +00:00
|
|
|
int strsz; /* DT_STRSZ */
|
1998-09-11 08:46:15 +00:00
|
|
|
const Elf_Sym* symtab; /* DT_SYMTAB */
|
|
|
|
Elf_Addr* got; /* DT_PLTGOT */
|
|
|
|
const Elf_Rel* pltrel; /* DT_JMPREL */
|
|
|
|
int pltrelsize; /* DT_PLTRELSZ */
|
|
|
|
const Elf_Rela* pltrela; /* DT_JMPREL */
|
|
|
|
int pltrelasize; /* DT_PLTRELSZ */
|
|
|
|
const Elf_Rel* rel; /* DT_REL */
|
|
|
|
int relsize; /* DT_RELSZ */
|
|
|
|
const Elf_Rela* rela; /* DT_RELA */
|
|
|
|
int relasize; /* DT_RELASZ */
|
1998-10-12 09:13:50 +00:00
|
|
|
caddr_t modptr;
|
|
|
|
const Elf_Sym* ddbsymtab; /* The symbol table we are using */
|
|
|
|
long ddbsymcnt; /* Number of symbols */
|
|
|
|
caddr_t ddbstrtab; /* String table */
|
|
|
|
long ddbstrcnt; /* number of bytes in string table */
|
1998-10-13 09:27:00 +00:00
|
|
|
caddr_t symbase; /* malloc'ed symbold base */
|
|
|
|
caddr_t strbase; /* malloc'ed string base */
|
2000-04-24 17:08:04 +00:00
|
|
|
#ifdef DDB
|
|
|
|
struct link_map gdb; /* hooks for gdb */
|
|
|
|
#endif
|
1998-08-24 08:25:26 +00:00
|
|
|
} *elf_file_t;
|
|
|
|
|
2000-04-24 17:08:04 +00:00
|
|
|
static int link_elf_load_module(linker_class_t cls,
|
|
|
|
const char*, linker_file_t*);
|
|
|
|
static int link_elf_load_file(const char*, linker_file_t*);
|
|
|
|
static int link_elf_lookup_symbol(linker_file_t, const char*,
|
|
|
|
c_linker_sym_t*);
|
|
|
|
static int link_elf_symbol_values(linker_file_t, c_linker_sym_t, linker_symval_t*);
|
|
|
|
static int link_elf_search_symbol(linker_file_t, caddr_t value,
|
|
|
|
c_linker_sym_t* sym, long* diffp);
|
|
|
|
|
|
|
|
static void link_elf_unload_file(linker_file_t);
|
|
|
|
static void link_elf_unload_module(linker_file_t);
|
|
|
|
|
|
|
|
static kobj_method_t link_elf_methods[] = {
|
|
|
|
KOBJMETHOD(linker_lookup_symbol, link_elf_lookup_symbol),
|
|
|
|
KOBJMETHOD(linker_symbol_values, link_elf_symbol_values),
|
|
|
|
KOBJMETHOD(linker_search_symbol, link_elf_search_symbol),
|
|
|
|
KOBJMETHOD(linker_unload, link_elf_unload_file),
|
|
|
|
KOBJMETHOD(linker_load_file, link_elf_load_module),
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct linker_class link_elf_class = {
|
|
|
|
#if ELF_TARG_CLASS == ELFCLASS32
|
|
|
|
"elf32",
|
|
|
|
#else
|
|
|
|
"elf64",
|
|
|
|
#endif
|
|
|
|
link_elf_methods, sizeof(struct elf_file)
|
|
|
|
};
|
|
|
|
|
|
|
|
static int parse_dynamic(elf_file_t ef);
|
|
|
|
static int load_dependancies(elf_file_t ef);
|
|
|
|
static int relocate_file(elf_file_t ef);
|
|
|
|
static int parse_module_symbols(elf_file_t ef);
|
|
|
|
|
|
|
|
#ifdef DDB
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A list of loaded modules for GDB to use for loading symbols.
|
|
|
|
*/
|
|
|
|
struct r_debug r_debug;
|
|
|
|
|
|
|
|
#define GDB_STATE(s) r_debug.r_state = s; r_debug_state();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function for the debugger to set a breakpoint on to gain control.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
r_debug_state(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
1998-08-24 08:25:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The kernel symbol table starts here.
|
|
|
|
*/
|
|
|
|
extern struct _dynamic _DYNAMIC;
|
|
|
|
|
|
|
|
static void
|
|
|
|
link_elf_init(void* arg)
|
|
|
|
{
|
1998-10-09 23:55:31 +00:00
|
|
|
#ifdef __ELF__
|
|
|
|
Elf_Dyn *dp;
|
|
|
|
caddr_t modptr, baseptr, sizeptr;
|
|
|
|
elf_file_t ef;
|
|
|
|
char *modname;
|
|
|
|
#endif
|
1998-08-24 08:25:26 +00:00
|
|
|
|
2000-04-24 17:08:04 +00:00
|
|
|
linker_add_class(&link_elf_class);
|
1998-08-24 08:25:26 +00:00
|
|
|
|
1998-10-09 23:55:31 +00:00
|
|
|
#ifdef __ELF__
|
|
|
|
dp = (Elf_Dyn*) &_DYNAMIC;
|
1998-08-24 08:25:26 +00:00
|
|
|
if (dp) {
|
1998-10-09 23:55:31 +00:00
|
|
|
modname = NULL;
|
|
|
|
modptr = preload_search_by_type("elf kernel");
|
|
|
|
if (modptr)
|
|
|
|
modname = (char *)preload_search_info(modptr, MODINFO_NAME);
|
|
|
|
if (modname == NULL)
|
|
|
|
modname = "kernel";
|
2000-04-24 17:08:04 +00:00
|
|
|
linker_kernel_file = linker_make_file(modname, &link_elf_class);
|
1998-08-24 08:25:26 +00:00
|
|
|
if (linker_kernel_file == NULL)
|
|
|
|
panic("link_elf_init: Can't create linker structures for kernel");
|
2000-04-24 17:08:04 +00:00
|
|
|
|
|
|
|
ef = (elf_file_t) linker_kernel_file;
|
|
|
|
ef->address = 0;
|
|
|
|
#ifdef SPARSE_MAPPING
|
|
|
|
ef->object = 0;
|
|
|
|
#endif
|
|
|
|
ef->dynamic = dp;
|
|
|
|
|
|
|
|
parse_dynamic(ef);
|
1999-05-08 13:03:49 +00:00
|
|
|
linker_kernel_file->address = (caddr_t) KERNBASE;
|
1999-08-24 00:56:50 +00:00
|
|
|
linker_kernel_file->size = -(intptr_t)linker_kernel_file->address;
|
1998-10-09 23:55:31 +00:00
|
|
|
|
|
|
|
if (modptr) {
|
1998-10-12 09:13:50 +00:00
|
|
|
ef->modptr = modptr;
|
1998-10-09 23:55:31 +00:00
|
|
|
baseptr = preload_search_info(modptr, MODINFO_ADDR);
|
|
|
|
if (baseptr)
|
|
|
|
linker_kernel_file->address = *(caddr_t *)baseptr;
|
|
|
|
sizeptr = preload_search_info(modptr, MODINFO_SIZE);
|
|
|
|
if (sizeptr)
|
|
|
|
linker_kernel_file->size = *(size_t *)sizeptr;
|
|
|
|
}
|
2000-04-24 17:08:04 +00:00
|
|
|
(void)parse_module_symbols(ef);
|
1998-08-24 08:25:26 +00:00
|
|
|
linker_current_file = linker_kernel_file;
|
1999-01-25 08:42:24 +00:00
|
|
|
linker_kernel_file->flags |= LINKER_FILE_LINKED;
|
2000-04-24 17:08:04 +00:00
|
|
|
|
|
|
|
#ifdef DDB
|
|
|
|
ef->gdb.l_addr = linker_kernel_file->address;
|
|
|
|
ef->gdb.l_name = modname;
|
|
|
|
ef->gdb.l_ld = dp;
|
|
|
|
ef->gdb.l_prev = 0;
|
|
|
|
ef->gdb.l_next = 0;
|
|
|
|
|
|
|
|
r_debug.r_map = &ef->gdb;
|
|
|
|
r_debug.r_brk = r_debug_state;
|
|
|
|
r_debug.r_state = RT_CONSISTENT;
|
|
|
|
|
|
|
|
r_debug_state(); /* say hello to gdb! */
|
|
|
|
#endif
|
|
|
|
|
1998-08-24 08:25:26 +00:00
|
|
|
}
|
1998-10-09 23:55:31 +00:00
|
|
|
#endif
|
1998-08-24 08:25:26 +00:00
|
|
|
}
|
|
|
|
|
1998-10-09 23:55:31 +00:00
|
|
|
SYSINIT(link_elf, SI_SUB_KLD, SI_ORDER_SECOND, link_elf_init, 0);
|
1998-08-24 08:25:26 +00:00
|
|
|
|
1998-10-12 09:13:50 +00:00
|
|
|
static int
|
2000-04-24 17:08:04 +00:00
|
|
|
parse_module_symbols(elf_file_t ef)
|
1998-10-12 09:13:50 +00:00
|
|
|
{
|
|
|
|
caddr_t pointer;
|
|
|
|
caddr_t ssym, esym, base;
|
|
|
|
caddr_t strtab;
|
|
|
|
int strcnt;
|
|
|
|
Elf_Sym* symtab;
|
|
|
|
int symcnt;
|
|
|
|
|
1998-10-13 09:27:00 +00:00
|
|
|
if (ef->modptr == NULL)
|
|
|
|
return 0;
|
1998-10-12 09:13:50 +00:00
|
|
|
pointer = preload_search_info(ef->modptr, MODINFO_METADATA|MODINFOMD_SSYM);
|
|
|
|
if (pointer == NULL)
|
|
|
|
return 0;
|
|
|
|
ssym = *(caddr_t *)pointer;
|
|
|
|
pointer = preload_search_info(ef->modptr, MODINFO_METADATA|MODINFOMD_ESYM);
|
|
|
|
if (pointer == NULL)
|
|
|
|
return 0;
|
|
|
|
esym = *(caddr_t *)pointer;
|
|
|
|
|
|
|
|
base = ssym;
|
|
|
|
|
|
|
|
symcnt = *(long *)base;
|
|
|
|
base += sizeof(long);
|
|
|
|
symtab = (Elf_Sym *)base;
|
|
|
|
base += roundup(symcnt, sizeof(long));
|
|
|
|
|
|
|
|
if (base > esym || base < ssym) {
|
|
|
|
printf("Symbols are corrupt!\n");
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
strcnt = *(long *)base;
|
|
|
|
base += sizeof(long);
|
|
|
|
strtab = base;
|
|
|
|
base += roundup(strcnt, sizeof(long));
|
|
|
|
|
|
|
|
if (base > esym || base < ssym) {
|
|
|
|
printf("Symbols are corrupt!\n");
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ef->ddbsymtab = symtab;
|
|
|
|
ef->ddbsymcnt = symcnt / sizeof(Elf_Sym);
|
|
|
|
ef->ddbstrtab = strtab;
|
|
|
|
ef->ddbstrcnt = strcnt;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1998-08-24 08:25:26 +00:00
|
|
|
static int
|
2000-04-24 17:08:04 +00:00
|
|
|
parse_dynamic(elf_file_t ef)
|
1998-08-24 08:25:26 +00:00
|
|
|
{
|
2000-04-24 17:08:04 +00:00
|
|
|
Elf_Dyn *dp;
|
1998-09-11 08:46:15 +00:00
|
|
|
int plttype = DT_REL;
|
1998-08-24 08:25:26 +00:00
|
|
|
|
|
|
|
for (dp = ef->dynamic; dp->d_tag != DT_NULL; dp++) {
|
|
|
|
switch (dp->d_tag) {
|
|
|
|
case DT_HASH:
|
|
|
|
{
|
|
|
|
/* From src/libexec/rtld-elf/rtld.c */
|
|
|
|
const Elf_Off *hashtab = (const Elf_Off *)
|
|
|
|
(ef->address + dp->d_un.d_ptr);
|
|
|
|
ef->nbuckets = hashtab[0];
|
|
|
|
ef->nchains = hashtab[1];
|
|
|
|
ef->buckets = hashtab + 2;
|
|
|
|
ef->chains = ef->buckets + ef->nbuckets;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DT_STRTAB:
|
1998-09-11 08:46:15 +00:00
|
|
|
ef->strtab = (caddr_t) (ef->address + dp->d_un.d_ptr);
|
1998-08-24 08:25:26 +00:00
|
|
|
break;
|
1998-10-12 09:13:50 +00:00
|
|
|
case DT_STRSZ:
|
|
|
|
ef->strsz = dp->d_un.d_val;
|
|
|
|
break;
|
1998-08-24 08:25:26 +00:00
|
|
|
case DT_SYMTAB:
|
1998-09-11 08:46:15 +00:00
|
|
|
ef->symtab = (Elf_Sym*) (ef->address + dp->d_un.d_ptr);
|
1998-08-24 08:25:26 +00:00
|
|
|
break;
|
|
|
|
case DT_SYMENT:
|
|
|
|
if (dp->d_un.d_val != sizeof(Elf_Sym))
|
|
|
|
return ENOEXEC;
|
1998-09-11 08:46:15 +00:00
|
|
|
break;
|
|
|
|
case DT_PLTGOT:
|
|
|
|
ef->got = (Elf_Addr *) (ef->address + dp->d_un.d_ptr);
|
|
|
|
break;
|
|
|
|
case DT_REL:
|
|
|
|
ef->rel = (const Elf_Rel *) (ef->address + dp->d_un.d_ptr);
|
|
|
|
break;
|
|
|
|
case DT_RELSZ:
|
|
|
|
ef->relsize = dp->d_un.d_val;
|
|
|
|
break;
|
|
|
|
case DT_RELENT:
|
|
|
|
if (dp->d_un.d_val != sizeof(Elf_Rel))
|
|
|
|
return ENOEXEC;
|
|
|
|
break;
|
|
|
|
case DT_JMPREL:
|
|
|
|
ef->pltrel = (const Elf_Rel *) (ef->address + dp->d_un.d_ptr);
|
|
|
|
break;
|
|
|
|
case DT_PLTRELSZ:
|
|
|
|
ef->pltrelsize = dp->d_un.d_val;
|
|
|
|
break;
|
|
|
|
case DT_RELA:
|
|
|
|
ef->rela = (const Elf_Rela *) (ef->address + dp->d_un.d_ptr);
|
|
|
|
break;
|
|
|
|
case DT_RELASZ:
|
|
|
|
ef->relasize = dp->d_un.d_val;
|
|
|
|
break;
|
|
|
|
case DT_RELAENT:
|
|
|
|
if (dp->d_un.d_val != sizeof(Elf_Rela))
|
|
|
|
return ENOEXEC;
|
|
|
|
break;
|
|
|
|
case DT_PLTREL:
|
|
|
|
plttype = dp->d_un.d_val;
|
|
|
|
if (plttype != DT_REL && plttype != DT_RELA)
|
|
|
|
return ENOEXEC;
|
|
|
|
break;
|
2000-04-24 17:08:04 +00:00
|
|
|
#ifdef DDB
|
|
|
|
case DT_DEBUG:
|
|
|
|
dp->d_un.d_ptr = (Elf_Addr) &r_debug;
|
|
|
|
break;
|
|
|
|
#endif
|
1998-08-24 08:25:26 +00:00
|
|
|
}
|
|
|
|
}
|
1998-09-11 08:46:15 +00:00
|
|
|
|
|
|
|
if (plttype == DT_RELA) {
|
|
|
|
ef->pltrela = (const Elf_Rela *) ef->pltrel;
|
|
|
|
ef->pltrel = NULL;
|
|
|
|
ef->pltrelasize = ef->pltrelsize;
|
|
|
|
ef->pltrelsize = 0;
|
|
|
|
}
|
|
|
|
|
1998-10-12 09:13:50 +00:00
|
|
|
ef->ddbsymtab = ef->symtab;
|
|
|
|
ef->ddbsymcnt = ef->nchains;
|
|
|
|
ef->ddbstrtab = ef->strtab;
|
|
|
|
ef->ddbstrcnt = ef->strsz;
|
|
|
|
|
1998-08-24 08:25:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1998-09-11 08:46:15 +00:00
|
|
|
static void
|
|
|
|
link_elf_error(const char *s)
|
|
|
|
{
|
|
|
|
printf("kldload: %s\n", s);
|
|
|
|
}
|
|
|
|
|
2000-04-24 17:08:04 +00:00
|
|
|
#ifdef DDB
|
|
|
|
|
|
|
|
static void
|
|
|
|
link_elf_add_gdb(struct link_map *l)
|
|
|
|
{
|
|
|
|
struct link_map *prev;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan to the end of the list.
|
|
|
|
*/
|
|
|
|
for (prev = r_debug.r_map; prev->l_next != NULL; prev = prev->l_next)
|
|
|
|
;
|
|
|
|
|
|
|
|
/* Link in the new entry. */
|
|
|
|
l->l_prev = prev;
|
|
|
|
l->l_next = prev->l_next;
|
|
|
|
prev->l_next = l;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
link_elf_delete_gdb(struct link_map *l)
|
|
|
|
{
|
|
|
|
if (l->l_prev == NULL) {
|
|
|
|
if ((r_debug.r_map = l->l_next) != NULL)
|
|
|
|
l->l_next->l_prev = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((l->l_prev->l_next = l->l_next) != NULL)
|
|
|
|
l->l_next->l_prev = l->l_prev;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* DDB */
|
|
|
|
|
1998-10-09 23:55:31 +00:00
|
|
|
static int
|
2000-04-24 17:08:04 +00:00
|
|
|
link_elf_load_module(linker_class_t cls,
|
|
|
|
const char *filename, linker_file_t *result)
|
1998-10-09 23:55:31 +00:00
|
|
|
{
|
|
|
|
caddr_t modptr, baseptr, sizeptr, dynptr;
|
|
|
|
char *type;
|
|
|
|
elf_file_t ef;
|
|
|
|
linker_file_t lf;
|
|
|
|
int error;
|
|
|
|
vm_offset_t dp;
|
|
|
|
|
|
|
|
/* Look to see if we have the module preloaded */
|
|
|
|
modptr = preload_search_by_name(filename);
|
|
|
|
if (modptr == NULL)
|
|
|
|
return (link_elf_load_file(filename, result));
|
|
|
|
|
|
|
|
/* It's preloaded, check we can handle it and collect information */
|
|
|
|
type = (char *)preload_search_info(modptr, MODINFO_TYPE);
|
|
|
|
baseptr = preload_search_info(modptr, MODINFO_ADDR);
|
|
|
|
sizeptr = preload_search_info(modptr, MODINFO_SIZE);
|
|
|
|
dynptr = preload_search_info(modptr, MODINFO_METADATA|MODINFOMD_DYNAMIC);
|
|
|
|
if (type == NULL || strcmp(type, "elf module") != 0)
|
|
|
|
return (EFTYPE);
|
|
|
|
if (baseptr == NULL || sizeptr == NULL || dynptr == NULL)
|
|
|
|
return (EINVAL);
|
|
|
|
|
2000-04-24 17:08:04 +00:00
|
|
|
lf = linker_make_file(filename, &link_elf_class);
|
|
|
|
if (lf == NULL) {
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
ef = (elf_file_t) lf;
|
|
|
|
ef->preloaded = 1;
|
1998-10-13 09:27:00 +00:00
|
|
|
ef->modptr = modptr;
|
1998-10-09 23:55:31 +00:00
|
|
|
ef->address = *(caddr_t *)baseptr;
|
|
|
|
#ifdef SPARSE_MAPPING
|
|
|
|
ef->object = 0;
|
|
|
|
#endif
|
|
|
|
dp = (vm_offset_t)ef->address + *(vm_offset_t *)dynptr;
|
|
|
|
ef->dynamic = (Elf_Dyn *)dp;
|
2000-04-24 17:08:04 +00:00
|
|
|
|
1998-10-09 23:55:31 +00:00
|
|
|
lf->address = ef->address;
|
|
|
|
lf->size = *(size_t *)sizeptr;
|
|
|
|
|
2000-04-24 17:08:04 +00:00
|
|
|
error = parse_dynamic(ef);
|
1998-10-09 23:55:31 +00:00
|
|
|
if (error) {
|
|
|
|
linker_file_unload(lf);
|
|
|
|
return error;
|
|
|
|
}
|
2000-04-24 17:08:04 +00:00
|
|
|
error = load_dependancies(ef);
|
1998-10-09 23:55:31 +00:00
|
|
|
if (error) {
|
|
|
|
linker_file_unload(lf);
|
|
|
|
return error;
|
|
|
|
}
|
2000-04-24 17:08:04 +00:00
|
|
|
error = relocate_file(ef);
|
1998-10-09 23:55:31 +00:00
|
|
|
if (error) {
|
|
|
|
linker_file_unload(lf);
|
|
|
|
return error;
|
|
|
|
}
|
2000-04-24 17:08:04 +00:00
|
|
|
(void)parse_module_symbols(ef);
|
1999-01-25 08:42:24 +00:00
|
|
|
lf->flags |= LINKER_FILE_LINKED;
|
2000-04-24 17:08:04 +00:00
|
|
|
|
|
|
|
#ifdef DDB
|
|
|
|
GDB_STATE(RT_ADD);
|
|
|
|
ef->gdb.l_addr = lf->address;
|
|
|
|
ef->gdb.l_name = filename;
|
|
|
|
ef->gdb.l_ld = ef->dynamic;
|
|
|
|
link_elf_add_gdb(&ef->gdb);
|
|
|
|
GDB_STATE(RT_CONSISTENT);
|
|
|
|
#endif
|
|
|
|
|
1998-10-09 23:55:31 +00:00
|
|
|
*result = lf;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1998-08-24 08:25:26 +00:00
|
|
|
static int
|
|
|
|
link_elf_load_file(const char* filename, linker_file_t* result)
|
|
|
|
{
|
|
|
|
struct nameidata nd;
|
|
|
|
struct proc* p = curproc; /* XXX */
|
1998-11-06 15:16:07 +00:00
|
|
|
Elf_Ehdr *hdr;
|
|
|
|
caddr_t firstpage;
|
1998-09-11 08:46:15 +00:00
|
|
|
int nbytes, i;
|
|
|
|
Elf_Phdr *phdr;
|
|
|
|
Elf_Phdr *phlimit;
|
|
|
|
Elf_Phdr *segs[2];
|
|
|
|
int nsegs;
|
|
|
|
Elf_Phdr *phdyn;
|
|
|
|
Elf_Phdr *phphdr;
|
|
|
|
caddr_t mapbase;
|
|
|
|
size_t mapsize;
|
|
|
|
Elf_Off base_offset;
|
|
|
|
Elf_Addr base_vaddr;
|
|
|
|
Elf_Addr base_vlimit;
|
1998-08-24 08:25:26 +00:00
|
|
|
int error = 0;
|
|
|
|
int resid;
|
|
|
|
elf_file_t ef;
|
|
|
|
linker_file_t lf;
|
1998-10-09 23:55:31 +00:00
|
|
|
char *pathname;
|
1998-10-13 09:27:00 +00:00
|
|
|
Elf_Shdr *shdr;
|
|
|
|
int symtabindex;
|
|
|
|
int symstrindex;
|
|
|
|
int symcnt;
|
|
|
|
int strcnt;
|
|
|
|
|
|
|
|
shdr = NULL;
|
|
|
|
lf = NULL;
|
1998-08-24 08:25:26 +00:00
|
|
|
|
1998-10-09 23:55:31 +00:00
|
|
|
pathname = linker_search_path(filename);
|
|
|
|
if (pathname == NULL)
|
|
|
|
return ENOENT;
|
1998-11-06 15:16:07 +00:00
|
|
|
|
1998-10-09 23:55:31 +00:00
|
|
|
NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, pathname, p);
|
1998-08-24 08:25:26 +00:00
|
|
|
error = vn_open(&nd, FREAD, 0);
|
1998-10-09 23:55:31 +00:00
|
|
|
free(pathname, M_LINKER);
|
1998-08-24 08:25:26 +00:00
|
|
|
if (error)
|
|
|
|
return error;
|
1999-12-15 23:02:35 +00:00
|
|
|
NDFREE(&nd, NDF_ONLY_PNBUF);
|
1998-08-24 08:25:26 +00:00
|
|
|
|
|
|
|
/*
|
1998-09-11 08:46:15 +00:00
|
|
|
* Read the elf header from the file.
|
1998-08-24 08:25:26 +00:00
|
|
|
*/
|
1998-11-06 15:16:07 +00:00
|
|
|
firstpage = malloc(PAGE_SIZE, M_LINKER, M_WAITOK);
|
|
|
|
if (firstpage == NULL) {
|
|
|
|
error = ENOMEM;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
hdr = (Elf_Ehdr *)firstpage;
|
|
|
|
error = vn_rdwr(UIO_READ, nd.ni_vp, firstpage, PAGE_SIZE, 0,
|
1998-08-24 08:25:26 +00:00
|
|
|
UIO_SYSSPACE, IO_NODELOCKED, p->p_ucred, &resid, p);
|
1998-11-06 15:16:07 +00:00
|
|
|
nbytes = PAGE_SIZE - resid;
|
1998-08-24 08:25:26 +00:00
|
|
|
if (error)
|
|
|
|
goto out;
|
|
|
|
|
1998-11-06 15:16:07 +00:00
|
|
|
if (!IS_ELF(*hdr)) {
|
1998-09-11 08:46:15 +00:00
|
|
|
error = ENOEXEC;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
1998-11-06 15:16:07 +00:00
|
|
|
if (hdr->e_ident[EI_CLASS] != ELF_TARG_CLASS
|
|
|
|
|| hdr->e_ident[EI_DATA] != ELF_TARG_DATA) {
|
1998-09-11 08:46:15 +00:00
|
|
|
link_elf_error("Unsupported file layout");
|
|
|
|
error = ENOEXEC;
|
|
|
|
goto out;
|
|
|
|
}
|
1998-11-06 15:16:07 +00:00
|
|
|
if (hdr->e_ident[EI_VERSION] != EV_CURRENT
|
|
|
|
|| hdr->e_version != EV_CURRENT) {
|
1998-09-11 08:46:15 +00:00
|
|
|
link_elf_error("Unsupported file version");
|
|
|
|
error = ENOEXEC;
|
|
|
|
goto out;
|
|
|
|
}
|
1998-11-06 15:16:07 +00:00
|
|
|
if (hdr->e_type != ET_EXEC && hdr->e_type != ET_DYN) {
|
1998-09-11 08:46:15 +00:00
|
|
|
link_elf_error("Unsupported file type");
|
|
|
|
error = ENOEXEC;
|
|
|
|
goto out;
|
|
|
|
}
|
1998-11-06 15:16:07 +00:00
|
|
|
if (hdr->e_machine != ELF_TARG_MACH) {
|
1998-09-11 08:46:15 +00:00
|
|
|
link_elf_error("Unsupported machine");
|
|
|
|
error = ENOEXEC;
|
|
|
|
goto out;
|
|
|
|
}
|
1998-08-24 08:25:26 +00:00
|
|
|
|
|
|
|
/*
|
1998-09-11 08:46:15 +00:00
|
|
|
* We rely on the program header being in the first page. This is
|
|
|
|
* not strictly required by the ABI specification, but it seems to
|
|
|
|
* always true in practice. And, it simplifies things considerably.
|
1998-08-24 08:25:26 +00:00
|
|
|
*/
|
1998-11-06 15:16:07 +00:00
|
|
|
if (!((hdr->e_phentsize == sizeof(Elf_Phdr)) &&
|
|
|
|
(hdr->e_phoff + hdr->e_phnum*sizeof(Elf_Phdr) <= PAGE_SIZE) &&
|
|
|
|
(hdr->e_phoff + hdr->e_phnum*sizeof(Elf_Phdr) <= nbytes)))
|
1998-09-11 08:46:15 +00:00
|
|
|
link_elf_error("Unreadable program headers");
|
|
|
|
|
1998-08-24 08:25:26 +00:00
|
|
|
/*
|
1998-09-11 08:46:15 +00:00
|
|
|
* Scan the program header entries, and save key information.
|
|
|
|
*
|
|
|
|
* We rely on there being exactly two load segments, text and data,
|
|
|
|
* in that order.
|
1998-08-24 08:25:26 +00:00
|
|
|
*/
|
1998-11-06 15:16:07 +00:00
|
|
|
phdr = (Elf_Phdr *) (firstpage + hdr->e_phoff);
|
|
|
|
phlimit = phdr + hdr->e_phnum;
|
1998-09-11 08:46:15 +00:00
|
|
|
nsegs = 0;
|
|
|
|
phdyn = NULL;
|
|
|
|
phphdr = NULL;
|
|
|
|
while (phdr < phlimit) {
|
|
|
|
switch (phdr->p_type) {
|
|
|
|
|
|
|
|
case PT_LOAD:
|
|
|
|
if (nsegs == 2) {
|
|
|
|
link_elf_error("Too many sections");
|
|
|
|
error = ENOEXEC;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
segs[nsegs] = phdr;
|
|
|
|
++nsegs;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PT_PHDR:
|
|
|
|
phphdr = phdr;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PT_DYNAMIC:
|
|
|
|
phdyn = phdr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
++phdr;
|
|
|
|
}
|
|
|
|
if (phdyn == NULL) {
|
|
|
|
link_elf_error("Object is not dynamically-linked");
|
|
|
|
error = ENOEXEC;
|
1998-08-24 08:25:26 +00:00
|
|
|
goto out;
|
1998-09-11 08:46:15 +00:00
|
|
|
}
|
1998-08-24 08:25:26 +00:00
|
|
|
|
|
|
|
/*
|
1998-09-11 08:46:15 +00:00
|
|
|
* Allocate the entire address space of the object, to stake out our
|
|
|
|
* contiguous region, and to establish the base address for relocation.
|
1998-08-24 08:25:26 +00:00
|
|
|
*/
|
1998-09-11 08:46:15 +00:00
|
|
|
base_offset = trunc_page(segs[0]->p_offset);
|
|
|
|
base_vaddr = trunc_page(segs[0]->p_vaddr);
|
|
|
|
base_vlimit = round_page(segs[1]->p_vaddr + segs[1]->p_memsz);
|
|
|
|
mapsize = base_vlimit - base_vaddr;
|
|
|
|
|
2000-04-24 17:08:04 +00:00
|
|
|
lf = linker_make_file(filename, &link_elf_class);
|
|
|
|
if (!lf) {
|
|
|
|
error = ENOMEM;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
ef = (elf_file_t) lf;
|
1998-09-11 08:46:15 +00:00
|
|
|
#ifdef SPARSE_MAPPING
|
|
|
|
ef->object = vm_object_allocate(OBJT_DEFAULT, mapsize >> PAGE_SHIFT);
|
|
|
|
if (ef->object == NULL) {
|
1998-08-24 08:25:26 +00:00
|
|
|
free(ef, M_LINKER);
|
1998-09-11 08:46:15 +00:00
|
|
|
error = ENOMEM;
|
1998-08-24 08:25:26 +00:00
|
|
|
goto out;
|
|
|
|
}
|
1998-09-11 08:46:15 +00:00
|
|
|
vm_object_reference(ef->object);
|
|
|
|
ef->address = (caddr_t) vm_map_min(kernel_map);
|
|
|
|
error = vm_map_find(kernel_map, ef->object, 0,
|
|
|
|
(vm_offset_t *) &ef->address,
|
|
|
|
mapsize, 1,
|
|
|
|
VM_PROT_ALL, VM_PROT_ALL, 0);
|
|
|
|
if (error) {
|
|
|
|
vm_object_deallocate(ef->object);
|
2000-04-24 17:08:04 +00:00
|
|
|
ef->object = 0;
|
1998-09-11 08:46:15 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
ef->address = malloc(mapsize, M_LINKER, M_WAITOK);
|
2000-04-24 17:08:04 +00:00
|
|
|
if (!ef->address) {
|
|
|
|
error = ENOMEM;
|
|
|
|
goto out;
|
|
|
|
}
|
1998-09-11 08:46:15 +00:00
|
|
|
#endif
|
|
|
|
mapbase = ef->address;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read the text and data sections and zero the bss.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
caddr_t segbase = mapbase + segs[i]->p_vaddr - base_vaddr;
|
|
|
|
error = vn_rdwr(UIO_READ, nd.ni_vp,
|
|
|
|
segbase, segs[i]->p_filesz, segs[i]->p_offset,
|
|
|
|
UIO_SYSSPACE, IO_NODELOCKED, p->p_ucred, &resid, p);
|
|
|
|
if (error) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
bzero(segbase + segs[i]->p_filesz,
|
|
|
|
segs[i]->p_memsz - segs[i]->p_filesz);
|
|
|
|
|
|
|
|
#ifdef SPARSE_MAPPING
|
|
|
|
/*
|
|
|
|
* Wire down the pages
|
|
|
|
*/
|
|
|
|
vm_map_pageable(kernel_map,
|
|
|
|
(vm_offset_t) segbase,
|
|
|
|
(vm_offset_t) segbase + segs[i]->p_memsz,
|
|
|
|
FALSE);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-04-24 17:08:04 +00:00
|
|
|
ef->dynamic = (Elf_Dyn *) (mapbase + phdyn->p_vaddr - base_vaddr);
|
1998-08-24 08:25:26 +00:00
|
|
|
|
|
|
|
lf->address = ef->address;
|
1998-09-11 08:46:15 +00:00
|
|
|
lf->size = mapsize;
|
1998-08-24 08:25:26 +00:00
|
|
|
|
2000-04-24 17:08:04 +00:00
|
|
|
error = parse_dynamic(ef);
|
1998-10-13 09:27:00 +00:00
|
|
|
if (error)
|
1998-10-09 23:55:31 +00:00
|
|
|
goto out;
|
2000-04-24 17:08:04 +00:00
|
|
|
error = load_dependancies(ef);
|
1998-10-13 09:27:00 +00:00
|
|
|
if (error)
|
1998-10-09 23:55:31 +00:00
|
|
|
goto out;
|
2000-04-24 17:08:04 +00:00
|
|
|
error = relocate_file(ef);
|
1998-10-13 09:27:00 +00:00
|
|
|
if (error)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* Try and load the symbol table if it's present. (you can strip it!) */
|
1998-11-06 15:16:07 +00:00
|
|
|
nbytes = hdr->e_shnum * hdr->e_shentsize;
|
|
|
|
if (nbytes == 0 || hdr->e_shoff == 0)
|
1998-10-13 09:27:00 +00:00
|
|
|
goto nosyms;
|
|
|
|
shdr = malloc(nbytes, M_LINKER, M_WAITOK);
|
|
|
|
if (shdr == NULL) {
|
|
|
|
error = ENOMEM;
|
1998-08-24 08:25:26 +00:00
|
|
|
goto out;
|
|
|
|
}
|
1998-10-15 17:16:24 +00:00
|
|
|
bzero(shdr, nbytes);
|
1998-10-13 09:27:00 +00:00
|
|
|
error = vn_rdwr(UIO_READ, nd.ni_vp,
|
1998-11-06 15:16:07 +00:00
|
|
|
(caddr_t)shdr, nbytes, hdr->e_shoff,
|
1998-10-13 09:27:00 +00:00
|
|
|
UIO_SYSSPACE, IO_NODELOCKED, p->p_ucred, &resid, p);
|
|
|
|
if (error)
|
|
|
|
goto out;
|
|
|
|
symtabindex = -1;
|
|
|
|
symstrindex = -1;
|
1998-11-06 15:16:07 +00:00
|
|
|
for (i = 0; i < hdr->e_shnum; i++) {
|
1998-10-13 09:27:00 +00:00
|
|
|
if (shdr[i].sh_type == SHT_SYMTAB) {
|
|
|
|
symtabindex = i;
|
|
|
|
symstrindex = shdr[i].sh_link;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (symtabindex < 0 || symstrindex < 0)
|
|
|
|
goto nosyms;
|
|
|
|
|
|
|
|
symcnt = shdr[symtabindex].sh_size;
|
|
|
|
ef->symbase = malloc(symcnt, M_LINKER, M_WAITOK);
|
|
|
|
strcnt = shdr[symstrindex].sh_size;
|
|
|
|
ef->strbase = malloc(strcnt, M_LINKER, M_WAITOK);
|
|
|
|
|
|
|
|
if (ef->symbase == NULL || ef->strbase == NULL) {
|
|
|
|
error = ENOMEM;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
error = vn_rdwr(UIO_READ, nd.ni_vp,
|
|
|
|
ef->symbase, symcnt, shdr[symtabindex].sh_offset,
|
|
|
|
UIO_SYSSPACE, IO_NODELOCKED, p->p_ucred, &resid, p);
|
|
|
|
if (error)
|
|
|
|
goto out;
|
|
|
|
error = vn_rdwr(UIO_READ, nd.ni_vp,
|
|
|
|
ef->strbase, strcnt, shdr[symstrindex].sh_offset,
|
|
|
|
UIO_SYSSPACE, IO_NODELOCKED, p->p_ucred, &resid, p);
|
|
|
|
if (error)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ef->ddbsymcnt = symcnt / sizeof(Elf_Sym);
|
|
|
|
ef->ddbsymtab = (const Elf_Sym *)ef->symbase;
|
|
|
|
ef->ddbstrcnt = strcnt;
|
|
|
|
ef->ddbstrtab = ef->strbase;
|
|
|
|
|
1999-01-25 08:42:24 +00:00
|
|
|
lf->flags |= LINKER_FILE_LINKED;
|
|
|
|
|
2000-04-24 17:08:04 +00:00
|
|
|
#ifdef DDB
|
|
|
|
GDB_STATE(RT_ADD);
|
|
|
|
ef->gdb.l_addr = lf->address;
|
|
|
|
ef->gdb.l_name = linker_search_path(filename);
|
|
|
|
ef->gdb.l_ld = ef->dynamic;
|
|
|
|
link_elf_add_gdb(&ef->gdb);
|
|
|
|
GDB_STATE(RT_CONSISTENT);
|
|
|
|
#endif
|
|
|
|
|
1998-10-13 09:27:00 +00:00
|
|
|
nosyms:
|
1998-08-24 08:25:26 +00:00
|
|
|
|
|
|
|
*result = lf;
|
|
|
|
|
|
|
|
out:
|
1998-10-13 09:27:00 +00:00
|
|
|
if (error && lf)
|
|
|
|
linker_file_unload(lf);
|
|
|
|
if (shdr)
|
|
|
|
free(shdr, M_LINKER);
|
1998-11-06 15:16:07 +00:00
|
|
|
if (firstpage)
|
|
|
|
free(firstpage, M_LINKER);
|
1998-08-24 08:25:26 +00:00
|
|
|
VOP_UNLOCK(nd.ni_vp, 0, p);
|
|
|
|
vn_close(nd.ni_vp, FREAD, p->p_ucred, p);
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-10-09 23:55:31 +00:00
|
|
|
link_elf_unload_file(linker_file_t file)
|
1998-08-24 08:25:26 +00:00
|
|
|
{
|
2000-04-24 17:08:04 +00:00
|
|
|
elf_file_t ef = (elf_file_t) file;
|
|
|
|
|
|
|
|
#ifdef DDB
|
|
|
|
if (ef->gdb.l_ld) {
|
|
|
|
GDB_STATE(RT_DELETE);
|
|
|
|
link_elf_delete_gdb(&ef->gdb);
|
|
|
|
GDB_STATE(RT_CONSISTENT);
|
|
|
|
/* The strange cast is to quieten a 'discarding const' warning. */
|
|
|
|
free((caddr_t) (uintptr_t) ef->gdb.l_name, M_LINKER);
|
|
|
|
}
|
|
|
|
#endif
|
1998-08-24 08:25:26 +00:00
|
|
|
|
2000-04-24 17:08:04 +00:00
|
|
|
if (ef->preloaded) {
|
|
|
|
link_elf_unload_module(file);
|
|
|
|
return;
|
|
|
|
}
|
1998-09-11 08:46:15 +00:00
|
|
|
#ifdef SPARSE_MAPPING
|
2000-04-24 17:08:04 +00:00
|
|
|
if (ef->object) {
|
|
|
|
vm_map_remove(kernel_map, (vm_offset_t) ef->address,
|
|
|
|
(vm_offset_t) ef->address
|
|
|
|
+ (ef->object->size << PAGE_SHIFT));
|
|
|
|
vm_object_deallocate(ef->object);
|
|
|
|
}
|
1998-09-11 08:46:15 +00:00
|
|
|
#else
|
2000-04-24 17:08:04 +00:00
|
|
|
if (ef->address)
|
|
|
|
free(ef->address, M_LINKER);
|
1998-09-11 08:46:15 +00:00
|
|
|
#endif
|
2000-04-24 17:08:04 +00:00
|
|
|
if (ef->symbase)
|
|
|
|
free(ef->symbase, M_LINKER);
|
|
|
|
if (ef->strbase)
|
|
|
|
free(ef->strbase, M_LINKER);
|
1998-08-24 08:25:26 +00:00
|
|
|
}
|
|
|
|
|
1998-10-09 23:55:31 +00:00
|
|
|
static void
|
|
|
|
link_elf_unload_module(linker_file_t file)
|
|
|
|
{
|
|
|
|
if (file->filename)
|
|
|
|
preload_delete_name(file->filename);
|
|
|
|
}
|
|
|
|
|
1998-08-24 08:25:26 +00:00
|
|
|
static int
|
2000-04-24 17:08:04 +00:00
|
|
|
load_dependancies(elf_file_t ef)
|
1998-08-24 08:25:26 +00:00
|
|
|
{
|
|
|
|
linker_file_t lfdep;
|
|
|
|
char* name;
|
1998-09-11 08:46:15 +00:00
|
|
|
const Elf_Dyn *dp;
|
1998-08-24 08:25:26 +00:00
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* All files are dependant on /kernel.
|
|
|
|
*/
|
1998-11-04 15:20:58 +00:00
|
|
|
if (linker_kernel_file) {
|
|
|
|
linker_kernel_file->refs++;
|
2000-04-24 17:08:04 +00:00
|
|
|
linker_file_add_dependancy(&ef->lf, linker_kernel_file);
|
1998-11-04 15:20:58 +00:00
|
|
|
}
|
1998-08-24 08:25:26 +00:00
|
|
|
|
1998-09-11 08:46:15 +00:00
|
|
|
for (dp = ef->dynamic; dp->d_tag != DT_NULL; dp++) {
|
|
|
|
if (dp->d_tag == DT_NEEDED) {
|
|
|
|
name = ef->strtab + dp->d_un.d_val;
|
|
|
|
|
|
|
|
error = linker_load_file(name, &lfdep);
|
|
|
|
if (error)
|
|
|
|
goto out;
|
2000-04-24 17:08:04 +00:00
|
|
|
error = linker_file_add_dependancy(&ef->lf, lfdep);
|
1998-09-11 08:46:15 +00:00
|
|
|
if (error)
|
|
|
|
goto out;
|
1998-08-24 08:25:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
1998-09-11 08:46:15 +00:00
|
|
|
static const char *
|
1998-10-16 03:55:01 +00:00
|
|
|
symbol_name(elf_file_t ef, Elf_Word r_info)
|
1998-08-24 08:25:26 +00:00
|
|
|
{
|
1998-09-11 08:46:15 +00:00
|
|
|
const Elf_Sym *ref;
|
1998-08-24 08:25:26 +00:00
|
|
|
|
1998-10-16 03:55:01 +00:00
|
|
|
if (ELF_R_SYM(r_info)) {
|
|
|
|
ref = ef->symtab + ELF_R_SYM(r_info);
|
1998-10-15 17:16:24 +00:00
|
|
|
return ef->strtab + ref->st_name;
|
1998-09-11 08:46:15 +00:00
|
|
|
} else
|
|
|
|
return NULL;
|
1998-08-24 08:25:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2000-04-24 17:08:04 +00:00
|
|
|
relocate_file(elf_file_t ef)
|
1998-08-24 08:25:26 +00:00
|
|
|
{
|
1998-09-11 08:46:15 +00:00
|
|
|
const Elf_Rel *rellim;
|
|
|
|
const Elf_Rel *rel;
|
|
|
|
const Elf_Rela *relalim;
|
|
|
|
const Elf_Rela *rela;
|
1998-10-16 03:55:01 +00:00
|
|
|
const char *symname;
|
1998-09-11 08:46:15 +00:00
|
|
|
|
|
|
|
/* Perform relocations without addend if there are any: */
|
1998-10-16 03:55:01 +00:00
|
|
|
rel = ef->rel;
|
|
|
|
if (rel) {
|
1999-01-29 09:04:27 +00:00
|
|
|
rellim = (const Elf_Rel *)((const char *)ef->rel + ef->relsize);
|
1998-10-16 03:55:01 +00:00
|
|
|
while (rel < rellim) {
|
|
|
|
symname = symbol_name(ef, rel->r_info);
|
2000-04-24 17:08:04 +00:00
|
|
|
if (elf_reloc(&ef->lf, rel, ELF_RELOC_REL, symname)) {
|
2000-04-29 11:21:44 +00:00
|
|
|
printf("link_elf: symbol %s undefined\n", symname);
|
1998-10-16 03:55:01 +00:00
|
|
|
return ENOENT;
|
1998-12-31 09:17:20 +00:00
|
|
|
}
|
1998-10-16 03:55:01 +00:00
|
|
|
rel++;
|
|
|
|
}
|
1998-09-11 08:46:15 +00:00
|
|
|
}
|
1998-08-24 08:25:26 +00:00
|
|
|
|
1998-09-11 08:46:15 +00:00
|
|
|
/* Perform relocations with addend if there are any: */
|
1998-10-16 03:55:01 +00:00
|
|
|
rela = ef->rela;
|
|
|
|
if (rela) {
|
1999-01-29 09:04:27 +00:00
|
|
|
relalim = (const Elf_Rela *)((const char *)ef->rela + ef->relasize);
|
1998-10-16 03:55:01 +00:00
|
|
|
while (rela < relalim) {
|
|
|
|
symname = symbol_name(ef, rela->r_info);
|
2000-04-24 17:08:04 +00:00
|
|
|
if (elf_reloc(&ef->lf, rela, ELF_RELOC_RELA, symname)) {
|
2000-04-29 11:21:44 +00:00
|
|
|
printf("link_elf: symbol %s undefined\n", symname);
|
1998-10-16 03:55:01 +00:00
|
|
|
return ENOENT;
|
1998-12-31 09:17:20 +00:00
|
|
|
}
|
1998-10-16 03:55:01 +00:00
|
|
|
rela++;
|
|
|
|
}
|
1998-09-11 08:46:15 +00:00
|
|
|
}
|
1998-08-24 08:25:26 +00:00
|
|
|
|
1998-09-11 08:46:15 +00:00
|
|
|
/* Perform PLT relocations without addend if there are any: */
|
1998-10-16 03:55:01 +00:00
|
|
|
rel = ef->pltrel;
|
|
|
|
if (rel) {
|
1999-01-29 09:04:27 +00:00
|
|
|
rellim = (const Elf_Rel *)((const char *)ef->pltrel + ef->pltrelsize);
|
1998-10-16 03:55:01 +00:00
|
|
|
while (rel < rellim) {
|
|
|
|
symname = symbol_name(ef, rel->r_info);
|
2000-04-24 17:08:04 +00:00
|
|
|
if (elf_reloc(&ef->lf, rel, ELF_RELOC_REL, symname)) {
|
2000-04-29 11:21:44 +00:00
|
|
|
printf("link_elf: symbol %s undefined\n", symname);
|
1998-10-16 03:55:01 +00:00
|
|
|
return ENOENT;
|
1998-12-31 09:17:20 +00:00
|
|
|
}
|
1998-10-16 03:55:01 +00:00
|
|
|
rel++;
|
|
|
|
}
|
1998-09-11 08:46:15 +00:00
|
|
|
}
|
1998-08-24 08:25:26 +00:00
|
|
|
|
1998-09-11 08:46:15 +00:00
|
|
|
/* Perform relocations with addend if there are any: */
|
1998-10-16 03:55:01 +00:00
|
|
|
rela = ef->pltrela;
|
|
|
|
if (rela) {
|
1999-01-29 09:04:27 +00:00
|
|
|
relalim = (const Elf_Rela *)((const char *)ef->pltrela + ef->pltrelasize);
|
1998-10-16 03:55:01 +00:00
|
|
|
while (rela < relalim) {
|
|
|
|
symname = symbol_name(ef, rela->r_info);
|
2000-04-24 17:08:04 +00:00
|
|
|
if (elf_reloc(&ef->lf, rela, ELF_RELOC_RELA, symname)) {
|
2000-04-29 11:21:44 +00:00
|
|
|
printf("link_elf: symbol %s undefined\n", symname);
|
1998-10-16 03:55:01 +00:00
|
|
|
return ENOENT;
|
1998-12-31 09:17:20 +00:00
|
|
|
}
|
1998-10-16 03:55:01 +00:00
|
|
|
rela++;
|
|
|
|
}
|
1998-08-24 08:25:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1998-09-11 08:46:15 +00:00
|
|
|
/*
|
|
|
|
* Hash function for symbol table lookup. Don't even think about changing
|
|
|
|
* this. It is specified by the System V ABI.
|
|
|
|
*/
|
|
|
|
static unsigned long
|
|
|
|
elf_hash(const char *name)
|
1998-08-24 08:25:26 +00:00
|
|
|
{
|
1998-09-11 08:46:15 +00:00
|
|
|
const unsigned char *p = (const unsigned char *) name;
|
|
|
|
unsigned long h = 0;
|
|
|
|
unsigned long g;
|
|
|
|
|
|
|
|
while (*p != '\0') {
|
|
|
|
h = (h << 4) + *p++;
|
|
|
|
if ((g = h & 0xf0000000) != 0)
|
|
|
|
h ^= g >> 24;
|
|
|
|
h &= ~g;
|
|
|
|
}
|
|
|
|
return h;
|
1998-08-24 08:25:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1999-01-27 21:50:00 +00:00
|
|
|
link_elf_lookup_symbol(linker_file_t lf, const char* name, c_linker_sym_t* sym)
|
1998-08-24 08:25:26 +00:00
|
|
|
{
|
2000-04-24 17:08:04 +00:00
|
|
|
elf_file_t ef = (elf_file_t) lf;
|
1998-09-11 08:46:15 +00:00
|
|
|
unsigned long symnum;
|
1998-10-12 09:13:50 +00:00
|
|
|
const Elf_Sym* symp;
|
|
|
|
const char *strp;
|
1998-09-11 08:46:15 +00:00
|
|
|
unsigned long hash;
|
|
|
|
int i;
|
1998-08-24 08:25:26 +00:00
|
|
|
|
1998-10-12 09:13:50 +00:00
|
|
|
/* First, search hashed global symbols */
|
1998-09-11 08:46:15 +00:00
|
|
|
hash = elf_hash(name);
|
|
|
|
symnum = ef->buckets[hash % ef->nbuckets];
|
|
|
|
|
|
|
|
while (symnum != STN_UNDEF) {
|
|
|
|
if (symnum >= ef->nchains) {
|
|
|
|
printf("link_elf_lookup_symbol: corrupt symbol table\n");
|
|
|
|
return ENOENT;
|
1998-08-24 08:25:26 +00:00
|
|
|
}
|
|
|
|
|
1998-09-11 08:46:15 +00:00
|
|
|
symp = ef->symtab + symnum;
|
|
|
|
if (symp->st_name == 0) {
|
|
|
|
printf("link_elf_lookup_symbol: corrupt symbol table\n");
|
|
|
|
return ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
strp = ef->strtab + symp->st_name;
|
|
|
|
|
|
|
|
if (strcmp(name, strp) == 0) {
|
|
|
|
if (symp->st_shndx != SHN_UNDEF ||
|
|
|
|
(symp->st_value != 0 &&
|
|
|
|
ELF_ST_TYPE(symp->st_info) == STT_FUNC)) {
|
1999-01-27 21:50:00 +00:00
|
|
|
*sym = (c_linker_sym_t) symp;
|
1998-09-11 08:46:15 +00:00
|
|
|
return 0;
|
|
|
|
} else
|
|
|
|
return ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
symnum = ef->chains[symnum];
|
|
|
|
}
|
|
|
|
|
1998-10-12 09:13:50 +00:00
|
|
|
/* If we have not found it, look at the full table (if loaded) */
|
|
|
|
if (ef->symtab == ef->ddbsymtab)
|
|
|
|
return ENOENT;
|
|
|
|
|
|
|
|
/* Exhaustive search */
|
|
|
|
for (i = 0, symp = ef->ddbsymtab; i < ef->ddbsymcnt; i++, symp++) {
|
|
|
|
strp = ef->ddbstrtab + symp->st_name;
|
|
|
|
if (strcmp(name, strp) == 0) {
|
|
|
|
if (symp->st_shndx != SHN_UNDEF ||
|
|
|
|
(symp->st_value != 0 &&
|
|
|
|
ELF_ST_TYPE(symp->st_info) == STT_FUNC)) {
|
1999-01-27 21:50:00 +00:00
|
|
|
*sym = (c_linker_sym_t) symp;
|
1998-10-12 09:13:50 +00:00
|
|
|
return 0;
|
|
|
|
} else
|
|
|
|
return ENOENT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-09-11 08:46:15 +00:00
|
|
|
return ENOENT;
|
1998-08-24 08:25:26 +00:00
|
|
|
}
|
|
|
|
|
1998-10-09 23:55:31 +00:00
|
|
|
static int
|
1999-01-27 23:45:44 +00:00
|
|
|
link_elf_symbol_values(linker_file_t lf, c_linker_sym_t sym, linker_symval_t* symval)
|
1998-08-24 08:25:26 +00:00
|
|
|
{
|
2000-04-24 17:08:04 +00:00
|
|
|
elf_file_t ef = (elf_file_t) lf;
|
1999-01-28 00:57:57 +00:00
|
|
|
const Elf_Sym* es = (const Elf_Sym*) sym;
|
1998-08-24 08:25:26 +00:00
|
|
|
|
1998-10-12 09:13:50 +00:00
|
|
|
if (es >= ef->symtab && ((es - ef->symtab) < ef->nchains)) {
|
|
|
|
symval->name = ef->strtab + es->st_name;
|
|
|
|
symval->value = (caddr_t) ef->address + es->st_value;
|
|
|
|
symval->size = es->st_size;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (ef->symtab == ef->ddbsymtab)
|
|
|
|
return ENOENT;
|
|
|
|
if (es >= ef->ddbsymtab && ((es - ef->ddbsymtab) < ef->ddbsymcnt)) {
|
|
|
|
symval->name = ef->ddbstrtab + es->st_name;
|
|
|
|
symval->value = (caddr_t) ef->address + es->st_value;
|
|
|
|
symval->size = es->st_size;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ENOENT;
|
1998-08-24 08:25:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
link_elf_search_symbol(linker_file_t lf, caddr_t value,
|
1999-01-27 21:50:00 +00:00
|
|
|
c_linker_sym_t* sym, long* diffp)
|
1998-08-24 08:25:26 +00:00
|
|
|
{
|
2000-04-24 17:08:04 +00:00
|
|
|
elf_file_t ef = (elf_file_t) lf;
|
1999-12-24 15:33:36 +00:00
|
|
|
u_long off = (uintptr_t) (void *) value;
|
1998-08-24 08:25:26 +00:00
|
|
|
u_long diff = off;
|
1999-12-24 15:33:36 +00:00
|
|
|
u_long st_value;
|
1998-09-11 08:46:15 +00:00
|
|
|
const Elf_Sym* es;
|
|
|
|
const Elf_Sym* best = 0;
|
1998-08-24 08:25:26 +00:00
|
|
|
int i;
|
|
|
|
|
1998-10-12 09:13:50 +00:00
|
|
|
for (i = 0, es = ef->ddbsymtab; i < ef->ddbsymcnt; i++, es++) {
|
1998-08-24 08:25:26 +00:00
|
|
|
if (es->st_name == 0)
|
|
|
|
continue;
|
1999-12-24 15:33:36 +00:00
|
|
|
st_value = es->st_value + (uintptr_t) (void *) ef->address;
|
1999-11-28 11:59:18 +00:00
|
|
|
if (off >= st_value) {
|
|
|
|
if (off - st_value < diff) {
|
|
|
|
diff = off - st_value;
|
1998-08-24 08:25:26 +00:00
|
|
|
best = es;
|
|
|
|
if (diff == 0)
|
|
|
|
break;
|
1999-11-28 11:59:18 +00:00
|
|
|
} else if (off - st_value == diff) {
|
1998-08-24 08:25:26 +00:00
|
|
|
best = es;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (best == 0)
|
|
|
|
*diffp = off;
|
|
|
|
else
|
|
|
|
*diffp = diff;
|
1999-01-27 21:50:00 +00:00
|
|
|
*sym = (c_linker_sym_t) best;
|
1998-08-24 08:25:26 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|