2004-05-28 22:59:22 +02:00
|
|
|
/*
|
|
|
|
* Preloader for ld.so
|
|
|
|
*
|
|
|
|
* Copyright (C) 1995,96,97,98,99,2000,2001,2002 Free Software Foundation, Inc.
|
2004-06-15 22:31:06 +02:00
|
|
|
* Copyright (C) 2004 Mike McCormack for CodeWeavers
|
2004-05-28 22:59:22 +02:00
|
|
|
* Copyright (C) 2004 Alexandre Julliard
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-05-28 22:59:22 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Design notes
|
|
|
|
*
|
|
|
|
* The goal of this program is to be a workaround for exec-shield, as used
|
|
|
|
* by the Linux kernel distributed with Fedora Core and other distros.
|
|
|
|
*
|
|
|
|
* To do this, we implement our own shared object loader that reserves memory
|
|
|
|
* that is important to Wine, and then loads the main binary and its ELF
|
|
|
|
* interpreter.
|
|
|
|
*
|
|
|
|
* We will try to set up the stack and memory area so that the program that
|
|
|
|
* loads after us (eg. the wine binary) never knows we were here, except that
|
|
|
|
* areas of memory it needs are already magically reserved.
|
|
|
|
*
|
|
|
|
* The following memory areas are important to Wine:
|
|
|
|
* 0x00000000 - 0x00110000 the DOS area
|
|
|
|
* 0x80000000 - 0x81000000 the shared heap
|
|
|
|
* ??? - ??? the PE binary load address (usually starting at 0x00400000)
|
|
|
|
*
|
|
|
|
* If this program is used as the shared object loader, the only difference
|
|
|
|
* that the loaded programs should see is that this loader will be mapped
|
|
|
|
* into memory when it starts.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* References (things I consulted to understand how ELF loading works):
|
|
|
|
*
|
|
|
|
* glibc 2.3.2 elf/dl-load.c
|
|
|
|
* http://www.gnu.org/directory/glibc.html
|
|
|
|
*
|
|
|
|
* Linux 2.6.4 fs/binfmt_elf.c
|
|
|
|
* ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.4.tar.bz2
|
|
|
|
*
|
|
|
|
* Userland exec, by <grugq@hcunix.net>
|
|
|
|
* http://cert.uni-stuttgart.de/archive/bugtraq/2004/01/msg00002.html
|
|
|
|
*
|
|
|
|
* The ELF specification:
|
|
|
|
* http://www.linuxbase.org/spec/booksets/LSB-Embedded/LSB-Embedded/book387.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
2005-05-06 18:22:54 +02:00
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
|
|
# include <sys/stat.h>
|
|
|
|
#endif
|
2004-05-28 22:59:22 +02:00
|
|
|
#include <fcntl.h>
|
|
|
|
#ifdef HAVE_SYS_MMAN_H
|
|
|
|
# include <sys/mman.h>
|
|
|
|
#endif
|
2004-06-22 04:42:05 +02:00
|
|
|
#ifdef HAVE_SYS_SYSCALL_H
|
|
|
|
# include <sys/syscall.h>
|
|
|
|
#endif
|
2004-05-28 22:59:22 +02:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ELF_H
|
|
|
|
# include <elf.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LINK_H
|
|
|
|
# include <link.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_LINK_H
|
|
|
|
# include <sys/link.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
/* ELF definitions */
|
|
|
|
#define ELF_PREFERRED_ADDRESS(loader, maplength, mapstartpref) (mapstartpref)
|
|
|
|
#define ELF_FIXED_ADDRESS(loader, mapstart) ((void) 0)
|
|
|
|
|
|
|
|
#define MAP_BASE_ADDR(l) 0
|
|
|
|
|
|
|
|
#ifndef MAP_COPY
|
|
|
|
#define MAP_COPY MAP_PRIVATE
|
|
|
|
#endif
|
|
|
|
#ifndef MAP_NORESERVE
|
|
|
|
#define MAP_NORESERVE 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static struct wine_preload_info preload_info[] =
|
|
|
|
{
|
2008-04-14 20:38:17 +02:00
|
|
|
{ (void *)0x00000000, 0x00010000 }, /* low 64k */
|
|
|
|
{ (void *)0x00010000, 0x00100000 }, /* DOS area */
|
2009-07-01 16:02:55 +02:00
|
|
|
{ (void *)0x00110000, 0x67ef0000 }, /* low memory area */
|
2008-11-07 11:05:38 +01:00
|
|
|
{ (void *)0x7f000000, 0x03000000 }, /* top-down allocations + shared heap + virtual heap */
|
2006-07-24 15:25:39 +02:00
|
|
|
{ 0, 0 }, /* PE exe range set with WINEPRELOADRESERVE */
|
2004-05-28 22:59:22 +02:00
|
|
|
{ 0, 0 } /* end of list */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* debugging */
|
|
|
|
#undef DUMP_SEGMENTS
|
|
|
|
#undef DUMP_AUX_INFO
|
|
|
|
#undef DUMP_SYMS
|
|
|
|
|
|
|
|
/* older systems may not define these */
|
|
|
|
#ifndef PT_TLS
|
|
|
|
#define PT_TLS 7
|
|
|
|
#endif
|
|
|
|
|
2004-06-28 22:28:05 +02:00
|
|
|
#ifndef AT_SYSINFO
|
|
|
|
#define AT_SYSINFO 32
|
|
|
|
#endif
|
|
|
|
#ifndef AT_SYSINFO_EHDR
|
|
|
|
#define AT_SYSINFO_EHDR 33
|
|
|
|
#endif
|
|
|
|
|
2006-07-31 21:02:38 +02:00
|
|
|
#ifndef DT_GNU_HASH
|
|
|
|
#define DT_GNU_HASH 0x6ffffef5
|
|
|
|
#endif
|
|
|
|
|
2004-05-28 22:59:22 +02:00
|
|
|
static unsigned int page_size, page_mask;
|
2004-06-02 23:40:00 +02:00
|
|
|
static char *preloader_start, *preloader_end;
|
2004-05-28 22:59:22 +02:00
|
|
|
|
|
|
|
struct wld_link_map {
|
|
|
|
ElfW(Addr) l_addr;
|
|
|
|
ElfW(Dyn) *l_ld;
|
2004-06-04 01:36:01 +02:00
|
|
|
ElfW(Phdr)*l_phdr;
|
2004-05-28 22:59:22 +02:00
|
|
|
ElfW(Addr) l_entry;
|
|
|
|
ElfW(Half) l_ldnum;
|
|
|
|
ElfW(Half) l_phnum;
|
|
|
|
ElfW(Addr) l_map_start, l_map_end;
|
|
|
|
ElfW(Addr) l_interp;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-04-15 18:13:49 +02:00
|
|
|
/*
|
|
|
|
* The __bb_init_func is an empty function only called when file is
|
|
|
|
* compiled with gcc flags "-fprofile-arcs -ftest-coverage". This
|
|
|
|
* function is normally provided by libc's startup files, but since we
|
|
|
|
* build the preloader with "-nostartfiles -nodefaultlibs", we have to
|
|
|
|
* provide our own (empty) version, otherwise linker fails.
|
|
|
|
*/
|
2006-02-06 13:13:28 +01:00
|
|
|
void __bb_init_func(void) { return; }
|
2005-04-15 18:13:49 +02:00
|
|
|
|
2006-01-26 13:21:54 +01:00
|
|
|
/* similar to the above but for -fstack-protector */
|
|
|
|
void *__stack_chk_guard = 0;
|
2009-01-02 18:40:17 +01:00
|
|
|
void __stack_chk_fail_local(void) { return; }
|
2006-01-26 13:21:54 +01:00
|
|
|
void __stack_chk_fail(void) { return; }
|
2005-04-15 18:13:49 +02:00
|
|
|
|
2006-11-03 13:55:41 +01:00
|
|
|
/* data for setting up the glibc-style thread-local storage in %gs */
|
|
|
|
|
|
|
|
static int thread_data[256];
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
/* this is the kernel modify_ldt struct */
|
|
|
|
unsigned int entry_number;
|
|
|
|
unsigned long base_addr;
|
|
|
|
unsigned int limit;
|
|
|
|
unsigned int seg_32bit : 1;
|
|
|
|
unsigned int contents : 2;
|
|
|
|
unsigned int read_exec_only : 1;
|
|
|
|
unsigned int limit_in_pages : 1;
|
|
|
|
unsigned int seg_not_present : 1;
|
2008-04-14 01:03:24 +02:00
|
|
|
unsigned int usable : 1;
|
2006-11-03 13:55:41 +01:00
|
|
|
unsigned int garbage : 25;
|
|
|
|
} thread_ldt = { -1, (unsigned long)thread_data, 0xfffff, 1, 0, 0, 1, 0, 1, 0 };
|
|
|
|
|
|
|
|
|
2004-05-28 22:59:22 +02:00
|
|
|
/*
|
|
|
|
* The _start function is the entry and exit point of this program
|
|
|
|
*
|
|
|
|
* It calls wld_start, passing a pointer to the args it receives
|
2004-06-04 01:36:01 +02:00
|
|
|
* then jumps to the address wld_start returns.
|
2004-05-28 22:59:22 +02:00
|
|
|
*/
|
2009-10-07 12:24:53 +02:00
|
|
|
void _start(void);
|
2004-05-28 22:59:22 +02:00
|
|
|
extern char _end[];
|
|
|
|
__ASM_GLOBAL_FUNC(_start,
|
2006-11-03 13:55:41 +01:00
|
|
|
"\tmovl $243,%eax\n" /* SYS_set_thread_area */
|
|
|
|
"\tmovl $thread_ldt,%ebx\n"
|
|
|
|
"\tint $0x80\n" /* allocate gs segment */
|
|
|
|
"\torl %eax,%eax\n"
|
|
|
|
"\tjl 1f\n"
|
|
|
|
"\tmovl thread_ldt,%eax\n" /* thread_ldt.entry_number */
|
|
|
|
"\tshl $3,%eax\n"
|
|
|
|
"\torl $3,%eax\n"
|
|
|
|
"\tmov %ax,%gs\n"
|
|
|
|
"\tmov %ax,%fs\n" /* set %fs too so libwine can retrieve it later on */
|
|
|
|
"1:\tmovl %esp,%eax\n"
|
2005-11-23 19:55:06 +01:00
|
|
|
"\tleal -136(%esp),%esp\n" /* allocate some space for extra aux values */
|
2004-06-04 01:36:01 +02:00
|
|
|
"\tpushl %eax\n" /* orig stack pointer */
|
|
|
|
"\tpushl %esp\n" /* ptr to orig stack pointer */
|
2004-05-28 22:59:22 +02:00
|
|
|
"\tcall wld_start\n"
|
2004-06-04 01:36:01 +02:00
|
|
|
"\tpopl %ecx\n" /* remove ptr to stack pointer */
|
|
|
|
"\tpopl %esp\n" /* new stack pointer */
|
|
|
|
"\tpush %eax\n" /* ELF interpreter entry point */
|
2004-05-28 22:59:22 +02:00
|
|
|
"\txor %eax,%eax\n"
|
|
|
|
"\txor %ecx,%ecx\n"
|
|
|
|
"\txor %edx,%edx\n"
|
2006-11-04 20:25:06 +01:00
|
|
|
"\tmov %ax,%gs\n" /* clear %gs again */
|
2004-05-28 22:59:22 +02:00
|
|
|
"\tret\n")
|
|
|
|
|
2004-06-22 04:42:05 +02:00
|
|
|
/* wrappers for Linux system calls */
|
|
|
|
|
|
|
|
#define SYSCALL_RET(ret) (((ret) < 0 && (ret) > -4096) ? -1 : (ret))
|
|
|
|
|
|
|
|
static inline __attribute__((noreturn)) void wld_exit( int code )
|
|
|
|
{
|
|
|
|
for (;;) /* avoid warning */
|
2004-09-24 02:25:32 +02:00
|
|
|
__asm__ __volatile__( "pushl %%ebx; movl %1,%%ebx; int $0x80; popl %%ebx"
|
2004-12-02 19:19:25 +01:00
|
|
|
: : "a" (SYS_exit), "r" (code) );
|
2004-06-22 04:42:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int wld_open( const char *name, int flags )
|
|
|
|
{
|
|
|
|
int ret;
|
2004-09-24 02:25:32 +02:00
|
|
|
__asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
|
2004-12-02 19:19:25 +01:00
|
|
|
: "=a" (ret) : "0" (SYS_open), "r" (name), "c" (flags) );
|
2004-06-22 04:42:05 +02:00
|
|
|
return SYSCALL_RET(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int wld_close( int fd )
|
|
|
|
{
|
|
|
|
int ret;
|
2004-09-24 02:25:32 +02:00
|
|
|
__asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
|
2004-12-02 19:19:25 +01:00
|
|
|
: "=a" (ret) : "0" (SYS_close), "r" (fd) );
|
2004-06-22 04:42:05 +02:00
|
|
|
return SYSCALL_RET(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline ssize_t wld_read( int fd, void *buffer, size_t len )
|
|
|
|
{
|
|
|
|
int ret;
|
2004-09-24 02:25:32 +02:00
|
|
|
__asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
|
|
|
|
: "=a" (ret)
|
2004-12-02 19:19:25 +01:00
|
|
|
: "0" (SYS_read), "r" (fd), "c" (buffer), "d" (len)
|
2004-06-22 04:42:05 +02:00
|
|
|
: "memory" );
|
|
|
|
return SYSCALL_RET(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline ssize_t wld_write( int fd, const void *buffer, size_t len )
|
|
|
|
{
|
|
|
|
int ret;
|
2004-09-24 02:25:32 +02:00
|
|
|
__asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
|
2004-12-02 19:19:25 +01:00
|
|
|
: "=a" (ret) : "0" (SYS_write), "r" (fd), "c" (buffer), "d" (len) );
|
2004-06-22 04:42:05 +02:00
|
|
|
return SYSCALL_RET(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int wld_mprotect( const void *addr, size_t len, int prot )
|
|
|
|
{
|
|
|
|
int ret;
|
2004-09-24 02:25:32 +02:00
|
|
|
__asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
|
2004-12-02 19:19:25 +01:00
|
|
|
: "=a" (ret) : "0" (SYS_mprotect), "r" (addr), "c" (len), "d" (prot) );
|
2004-06-22 04:42:05 +02:00
|
|
|
return SYSCALL_RET(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *wld_mmap( void *start, size_t len, int prot, int flags, int fd, off_t offset )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
void *addr;
|
|
|
|
unsigned int length;
|
|
|
|
unsigned int prot;
|
|
|
|
unsigned int flags;
|
|
|
|
unsigned int fd;
|
|
|
|
unsigned int offset;
|
|
|
|
} args;
|
|
|
|
|
|
|
|
args.addr = start;
|
|
|
|
args.length = len;
|
|
|
|
args.prot = prot;
|
|
|
|
args.flags = flags;
|
|
|
|
args.fd = fd;
|
|
|
|
args.offset = offset;
|
2004-09-24 02:25:32 +02:00
|
|
|
__asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
|
2004-12-02 19:19:25 +01:00
|
|
|
: "=a" (ret) : "0" (SYS_mmap), "q" (&args) : "memory" );
|
2004-06-22 04:42:05 +02:00
|
|
|
return (void *)SYSCALL_RET(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uid_t wld_getuid(void)
|
|
|
|
{
|
|
|
|
uid_t ret;
|
|
|
|
__asm__( "int $0x80" : "=a" (ret) : "0" (SYS_getuid) );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uid_t wld_geteuid(void)
|
|
|
|
{
|
|
|
|
uid_t ret;
|
|
|
|
__asm__( "int $0x80" : "=a" (ret) : "0" (SYS_geteuid) );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline gid_t wld_getgid(void)
|
|
|
|
{
|
|
|
|
gid_t ret;
|
|
|
|
__asm__( "int $0x80" : "=a" (ret) : "0" (SYS_getgid) );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline gid_t wld_getegid(void)
|
|
|
|
{
|
|
|
|
gid_t ret;
|
|
|
|
__asm__( "int $0x80" : "=a" (ret) : "0" (SYS_getegid) );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-03-31 19:16:22 +02:00
|
|
|
static inline int wld_prctl( int code, int arg )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
__asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
|
|
|
|
: "=a" (ret) : "0" (SYS_prctl), "r" (code), "c" (arg) );
|
|
|
|
return SYSCALL_RET(ret);
|
|
|
|
}
|
|
|
|
|
2004-06-22 04:42:05 +02:00
|
|
|
|
|
|
|
/* replacement for libc functions */
|
|
|
|
|
|
|
|
static int wld_strcmp( const char *str1, const char *str2 )
|
|
|
|
{
|
|
|
|
while (*str1 && (*str1 == *str2)) { str1++; str2++; }
|
|
|
|
return *str1 - *str2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int wld_strncmp( const char *str1, const char *str2, size_t len )
|
|
|
|
{
|
|
|
|
if (len <= 0) return 0;
|
|
|
|
while ((--len > 0) && *str1 && (*str1 == *str2)) { str1++; str2++; }
|
|
|
|
return *str1 - *str2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *wld_memset( void *dest, int val, size_t len )
|
|
|
|
{
|
|
|
|
char *dst = dest;
|
|
|
|
while (len--) *dst++ = val;
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2004-05-28 22:59:22 +02:00
|
|
|
/*
|
|
|
|
* wld_printf - just the basics
|
|
|
|
*
|
|
|
|
* %x prints a hex number
|
|
|
|
* %s prints a string
|
2007-01-11 12:46:06 +01:00
|
|
|
* %p prints a pointer
|
2004-05-28 22:59:22 +02:00
|
|
|
*/
|
2004-07-06 20:46:05 +02:00
|
|
|
static int wld_vsprintf(char *buffer, const char *fmt, va_list args )
|
2004-05-28 22:59:22 +02:00
|
|
|
{
|
2004-06-01 21:47:11 +02:00
|
|
|
static const char hex_chars[16] = "0123456789abcdef";
|
|
|
|
const char *p = fmt;
|
2004-07-06 20:46:05 +02:00
|
|
|
char *str = buffer;
|
2007-01-11 12:46:06 +01:00
|
|
|
int i;
|
2004-05-28 22:59:22 +02:00
|
|
|
|
|
|
|
while( *p )
|
|
|
|
{
|
|
|
|
if( *p == '%' )
|
|
|
|
{
|
|
|
|
p++;
|
|
|
|
if( *p == 'x' )
|
|
|
|
{
|
2004-06-01 21:47:11 +02:00
|
|
|
unsigned int x = va_arg( args, unsigned int );
|
2004-05-28 22:59:22 +02:00
|
|
|
for(i=7; i>=0; i--)
|
2004-06-01 21:47:11 +02:00
|
|
|
*str++ = hex_chars[(x>>(i*4))&0xf];
|
2004-05-28 22:59:22 +02:00
|
|
|
}
|
2007-01-11 12:46:06 +01:00
|
|
|
else if (p[0] == 'l' && p[1] == 'x')
|
|
|
|
{
|
|
|
|
unsigned long x = va_arg( args, unsigned long );
|
|
|
|
for(i=7; i>=0; i--)
|
|
|
|
*str++ = hex_chars[(x>>(i*4))&0xf];
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
else if( *p == 'p' )
|
|
|
|
{
|
|
|
|
unsigned long x = (unsigned long)va_arg( args, void * );
|
|
|
|
for(i=7; i>=0; i--)
|
|
|
|
*str++ = hex_chars[(x>>(i*4))&0xf];
|
|
|
|
}
|
2004-05-28 22:59:22 +02:00
|
|
|
else if( *p == 's' )
|
|
|
|
{
|
|
|
|
char *s = va_arg( args, char * );
|
|
|
|
while(*s)
|
|
|
|
*str++ = *s++;
|
|
|
|
}
|
|
|
|
else if( *p == 0 )
|
|
|
|
break;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
*str++ = *p++;
|
|
|
|
}
|
|
|
|
*str = 0;
|
2004-07-06 20:46:05 +02:00
|
|
|
return str - buffer;
|
2004-05-28 22:59:22 +02:00
|
|
|
}
|
|
|
|
|
2007-01-11 12:46:06 +01:00
|
|
|
static __attribute__((format(printf,1,2))) void wld_printf(const char *fmt, ... )
|
2004-05-28 22:59:22 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char buffer[256];
|
2004-07-06 20:46:05 +02:00
|
|
|
int len;
|
2004-05-28 22:59:22 +02:00
|
|
|
|
|
|
|
va_start( args, fmt );
|
2004-07-06 20:46:05 +02:00
|
|
|
len = wld_vsprintf(buffer, fmt, args );
|
2004-05-28 22:59:22 +02:00
|
|
|
va_end( args );
|
2004-07-06 20:46:05 +02:00
|
|
|
wld_write(2, buffer, len);
|
2004-05-28 22:59:22 +02:00
|
|
|
}
|
|
|
|
|
2007-01-11 12:46:06 +01:00
|
|
|
static __attribute__((noreturn,format(printf,1,2))) void fatal_error(const char *fmt, ... )
|
2004-05-28 22:59:22 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char buffer[256];
|
2004-07-06 20:46:05 +02:00
|
|
|
int len;
|
2004-05-28 22:59:22 +02:00
|
|
|
|
|
|
|
va_start( args, fmt );
|
2004-07-06 20:46:05 +02:00
|
|
|
len = wld_vsprintf(buffer, fmt, args );
|
2004-05-28 22:59:22 +02:00
|
|
|
va_end( args );
|
2004-07-06 20:46:05 +02:00
|
|
|
wld_write(2, buffer, len);
|
2004-06-22 04:42:05 +02:00
|
|
|
wld_exit(1);
|
2004-05-28 22:59:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DUMP_AUX_INFO
|
|
|
|
/*
|
|
|
|
* Dump interesting bits of the ELF auxv_t structure that is passed
|
|
|
|
* as the 4th parameter to the _start function
|
|
|
|
*/
|
|
|
|
static void dump_auxiliary( ElfW(auxv_t) *av )
|
|
|
|
{
|
2004-06-04 01:36:01 +02:00
|
|
|
#define NAME(at) { at, #at }
|
|
|
|
static const struct { int val; const char *name; } names[] =
|
|
|
|
{
|
|
|
|
NAME(AT_BASE),
|
|
|
|
NAME(AT_CLKTCK),
|
|
|
|
NAME(AT_EGID),
|
|
|
|
NAME(AT_ENTRY),
|
|
|
|
NAME(AT_EUID),
|
|
|
|
NAME(AT_FLAGS),
|
|
|
|
NAME(AT_GID),
|
|
|
|
NAME(AT_HWCAP),
|
|
|
|
NAME(AT_PAGESZ),
|
|
|
|
NAME(AT_PHDR),
|
|
|
|
NAME(AT_PHENT),
|
|
|
|
NAME(AT_PHNUM),
|
|
|
|
NAME(AT_PLATFORM),
|
2004-06-26 02:12:20 +02:00
|
|
|
NAME(AT_SYSINFO),
|
|
|
|
NAME(AT_SYSINFO_EHDR),
|
2004-06-04 01:36:01 +02:00
|
|
|
NAME(AT_UID),
|
|
|
|
{ 0, NULL }
|
|
|
|
};
|
|
|
|
#undef NAME
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for ( ; av->a_type != AT_NULL; av++)
|
|
|
|
{
|
|
|
|
for (i = 0; names[i].name; i++) if (names[i].val == av->a_type) break;
|
2007-01-11 12:46:06 +01:00
|
|
|
if (names[i].name) wld_printf("%s = %lx\n", names[i].name, av->a_un.a_val);
|
|
|
|
else wld_printf( "%x = %lx\n", av->a_type, av->a_un.a_val );
|
2004-06-04 01:36:01 +02:00
|
|
|
}
|
2004-05-28 22:59:22 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
2004-06-04 01:36:01 +02:00
|
|
|
* set_auxiliary_values
|
2004-05-28 22:59:22 +02:00
|
|
|
*
|
2004-06-04 01:36:01 +02:00
|
|
|
* Set the new auxiliary values
|
2004-05-28 22:59:22 +02:00
|
|
|
*/
|
2004-06-26 02:12:20 +02:00
|
|
|
static void set_auxiliary_values( ElfW(auxv_t) *av, const ElfW(auxv_t) *new_av,
|
|
|
|
const ElfW(auxv_t) *delete_av, void **stack )
|
2004-05-28 22:59:22 +02:00
|
|
|
{
|
2004-06-26 02:12:20 +02:00
|
|
|
int i, j, av_count = 0, new_count = 0, delete_count = 0;
|
|
|
|
char *src, *dst;
|
2004-06-04 01:36:01 +02:00
|
|
|
|
|
|
|
/* count how many aux values we have already */
|
|
|
|
while (av[av_count].a_type != AT_NULL) av_count++;
|
|
|
|
|
2004-06-26 02:12:20 +02:00
|
|
|
/* delete unwanted values */
|
|
|
|
for (j = 0; delete_av[j].a_type != AT_NULL; j++)
|
|
|
|
{
|
|
|
|
for (i = 0; i < av_count; i++) if (av[i].a_type == delete_av[j].a_type)
|
|
|
|
{
|
|
|
|
av[i].a_type = av[av_count-1].a_type;
|
|
|
|
av[i].a_un.a_val = av[av_count-1].a_un.a_val;
|
|
|
|
av[--av_count].a_type = AT_NULL;
|
|
|
|
delete_count++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-04 01:36:01 +02:00
|
|
|
/* count how many values we have in new_av that aren't in av */
|
|
|
|
for (j = 0; new_av[j].a_type != AT_NULL; j++)
|
2004-06-01 21:47:11 +02:00
|
|
|
{
|
2004-06-04 01:36:01 +02:00
|
|
|
for (i = 0; i < av_count; i++) if (av[i].a_type == new_av[j].a_type) break;
|
|
|
|
if (i == av_count) new_count++;
|
2004-06-01 21:47:11 +02:00
|
|
|
}
|
2004-06-04 01:36:01 +02:00
|
|
|
|
2004-06-26 02:12:20 +02:00
|
|
|
src = (char *)*stack;
|
|
|
|
dst = src - (new_count - delete_count) * sizeof(*av);
|
|
|
|
if (new_count > delete_count) /* need to make room for the extra values */
|
|
|
|
{
|
|
|
|
int len = (char *)(av + av_count + 1) - src;
|
|
|
|
for (i = 0; i < len; i++) dst[i] = src[i];
|
|
|
|
}
|
|
|
|
else if (new_count < delete_count) /* get rid of unused values */
|
2004-06-04 01:36:01 +02:00
|
|
|
{
|
2004-06-26 02:12:20 +02:00
|
|
|
int len = (char *)(av + av_count + 1) - dst;
|
|
|
|
for (i = len - 1; i >= 0; i--) dst[i] = src[i];
|
2004-06-04 01:36:01 +02:00
|
|
|
}
|
2004-06-26 02:12:20 +02:00
|
|
|
*stack = dst;
|
|
|
|
av -= (new_count - delete_count);
|
2004-06-04 01:36:01 +02:00
|
|
|
|
|
|
|
/* now set the values */
|
|
|
|
for (j = 0; new_av[j].a_type != AT_NULL; j++)
|
|
|
|
{
|
|
|
|
for (i = 0; i < av_count; i++) if (av[i].a_type == new_av[j].a_type) break;
|
|
|
|
if (i < av_count) av[i].a_un.a_val = new_av[j].a_un.a_val;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
av[av_count].a_type = new_av[j].a_type;
|
|
|
|
av[av_count].a_un.a_val = new_av[j].a_un.a_val;
|
|
|
|
av_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DUMP_AUX_INFO
|
|
|
|
wld_printf("New auxiliary info:\n");
|
|
|
|
dump_auxiliary( av );
|
|
|
|
#endif
|
2004-05-28 22:59:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get_auxiliary
|
|
|
|
*
|
|
|
|
* Get a field of the auxiliary structure
|
|
|
|
*/
|
2004-06-04 01:36:01 +02:00
|
|
|
static int get_auxiliary( ElfW(auxv_t) *av, int type, int def_val )
|
2004-05-28 22:59:22 +02:00
|
|
|
{
|
|
|
|
for ( ; av->a_type != AT_NULL; av++)
|
2004-06-04 01:36:01 +02:00
|
|
|
if( av->a_type == type ) return av->a_un.a_val;
|
|
|
|
return def_val;
|
2004-05-28 22:59:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* map_so_lib
|
|
|
|
*
|
|
|
|
* modelled after _dl_map_object_from_fd() from glibc-2.3.1/elf/dl-load.c
|
|
|
|
*
|
|
|
|
* This function maps the segments from an ELF object, and optionally
|
|
|
|
* stores information about the mapping into the auxv_t structure.
|
|
|
|
*/
|
|
|
|
static void map_so_lib( const char *name, struct wld_link_map *l)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
unsigned char buf[0x800];
|
|
|
|
ElfW(Ehdr) *header = (ElfW(Ehdr)*)buf;
|
|
|
|
ElfW(Phdr) *phdr, *ph;
|
|
|
|
/* Scan the program header table, collecting its load commands. */
|
|
|
|
struct loadcmd
|
|
|
|
{
|
|
|
|
ElfW(Addr) mapstart, mapend, dataend, allocend;
|
|
|
|
off_t mapoff;
|
|
|
|
int prot;
|
|
|
|
} loadcmds[16], *c;
|
|
|
|
size_t nloadcmds = 0, maplength;
|
|
|
|
|
2004-06-22 04:42:05 +02:00
|
|
|
fd = wld_open( name, O_RDONLY );
|
2004-05-28 22:59:22 +02:00
|
|
|
if (fd == -1) fatal_error("%s: could not open\n", name );
|
|
|
|
|
2004-06-22 04:42:05 +02:00
|
|
|
if (wld_read( fd, buf, sizeof(buf) ) != sizeof(buf))
|
2004-05-28 22:59:22 +02:00
|
|
|
fatal_error("%s: failed to read ELF header\n", name);
|
|
|
|
|
|
|
|
phdr = (void*) (((unsigned char*)buf) + header->e_phoff);
|
|
|
|
|
|
|
|
if( ( header->e_ident[0] != 0x7f ) ||
|
|
|
|
( header->e_ident[1] != 'E' ) ||
|
|
|
|
( header->e_ident[2] != 'L' ) ||
|
|
|
|
( header->e_ident[3] != 'F' ) )
|
|
|
|
fatal_error( "%s: not an ELF binary... don't know how to load it\n", name );
|
|
|
|
|
|
|
|
if( header->e_machine != EM_386 )
|
|
|
|
fatal_error("%s: not an i386 ELF binary... don't know how to load it\n", name );
|
|
|
|
|
|
|
|
if (header->e_phnum > sizeof(loadcmds)/sizeof(loadcmds[0]))
|
|
|
|
fatal_error( "%s: oops... not enough space for load commands\n", name );
|
|
|
|
|
|
|
|
maplength = header->e_phnum * sizeof (ElfW(Phdr));
|
|
|
|
if (header->e_phoff + maplength > sizeof(buf))
|
|
|
|
fatal_error( "%s: oops... not enough space for ELF headers\n", name );
|
|
|
|
|
|
|
|
l->l_ld = 0;
|
|
|
|
l->l_addr = 0;
|
|
|
|
l->l_phdr = 0;
|
|
|
|
l->l_phnum = header->e_phnum;
|
|
|
|
l->l_entry = header->e_entry;
|
|
|
|
l->l_interp = 0;
|
|
|
|
|
|
|
|
for (ph = phdr; ph < &phdr[l->l_phnum]; ++ph)
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef DUMP_SEGMENTS
|
2007-01-11 12:46:06 +01:00
|
|
|
wld_printf( "ph = %p\n", ph );
|
2004-05-28 22:59:22 +02:00
|
|
|
wld_printf( " p_type = %x\n", ph->p_type );
|
|
|
|
wld_printf( " p_flags = %x\n", ph->p_flags );
|
|
|
|
wld_printf( " p_offset = %x\n", ph->p_offset );
|
|
|
|
wld_printf( " p_vaddr = %x\n", ph->p_vaddr );
|
|
|
|
wld_printf( " p_paddr = %x\n", ph->p_paddr );
|
|
|
|
wld_printf( " p_filesz = %x\n", ph->p_filesz );
|
|
|
|
wld_printf( " p_memsz = %x\n", ph->p_memsz );
|
|
|
|
wld_printf( " p_align = %x\n", ph->p_align );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
switch (ph->p_type)
|
|
|
|
{
|
|
|
|
/* These entries tell us where to find things once the file's
|
|
|
|
segments are mapped in. We record the addresses it says
|
|
|
|
verbatim, and later correct for the run-time load address. */
|
|
|
|
case PT_DYNAMIC:
|
|
|
|
l->l_ld = (void *) ph->p_vaddr;
|
|
|
|
l->l_ldnum = ph->p_memsz / sizeof (Elf32_Dyn);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PT_PHDR:
|
|
|
|
l->l_phdr = (void *) ph->p_vaddr;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PT_LOAD:
|
|
|
|
{
|
|
|
|
if ((ph->p_align & page_mask) != 0)
|
|
|
|
fatal_error( "%s: ELF load command alignment not page-aligned\n", name );
|
|
|
|
|
|
|
|
if (((ph->p_vaddr - ph->p_offset) & (ph->p_align - 1)) != 0)
|
|
|
|
fatal_error( "%s: ELF load command address/offset not properly aligned\n", name );
|
|
|
|
|
|
|
|
c = &loadcmds[nloadcmds++];
|
|
|
|
c->mapstart = ph->p_vaddr & ~(ph->p_align - 1);
|
|
|
|
c->mapend = ((ph->p_vaddr + ph->p_filesz + page_mask) & ~page_mask);
|
|
|
|
c->dataend = ph->p_vaddr + ph->p_filesz;
|
|
|
|
c->allocend = ph->p_vaddr + ph->p_memsz;
|
|
|
|
c->mapoff = ph->p_offset & ~(ph->p_align - 1);
|
|
|
|
|
|
|
|
c->prot = 0;
|
|
|
|
if (ph->p_flags & PF_R)
|
|
|
|
c->prot |= PROT_READ;
|
|
|
|
if (ph->p_flags & PF_W)
|
|
|
|
c->prot |= PROT_WRITE;
|
|
|
|
if (ph->p_flags & PF_X)
|
|
|
|
c->prot |= PROT_EXEC;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PT_INTERP:
|
|
|
|
l->l_interp = ph->p_vaddr;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PT_TLS:
|
|
|
|
/*
|
|
|
|
* We don't need to set anything up because we're
|
|
|
|
* emulating the kernel, not ld-linux.so.2
|
|
|
|
* The ELF loader will set up the TLS data itself.
|
|
|
|
*/
|
|
|
|
case PT_SHLIB:
|
|
|
|
case PT_NOTE:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now process the load commands and map segments into memory. */
|
|
|
|
c = loadcmds;
|
|
|
|
|
|
|
|
/* Length of the sections to be loaded. */
|
|
|
|
maplength = loadcmds[nloadcmds - 1].allocend - c->mapstart;
|
|
|
|
|
|
|
|
if( header->e_type == ET_DYN )
|
|
|
|
{
|
|
|
|
ElfW(Addr) mappref;
|
|
|
|
mappref = (ELF_PREFERRED_ADDRESS (loader, maplength, c->mapstart)
|
|
|
|
- MAP_BASE_ADDR (l));
|
|
|
|
|
|
|
|
/* Remember which part of the address space this object uses. */
|
2004-06-22 04:42:05 +02:00
|
|
|
l->l_map_start = (ElfW(Addr)) wld_mmap ((void *) mappref, maplength,
|
2004-05-28 22:59:22 +02:00
|
|
|
c->prot, MAP_COPY | MAP_FILE,
|
|
|
|
fd, c->mapoff);
|
|
|
|
/* wld_printf("set : offset = %x\n", c->mapoff); */
|
|
|
|
/* wld_printf("l->l_map_start = %x\n", l->l_map_start); */
|
|
|
|
|
|
|
|
l->l_map_end = l->l_map_start + maplength;
|
|
|
|
l->l_addr = l->l_map_start - c->mapstart;
|
|
|
|
|
2004-06-22 04:42:05 +02:00
|
|
|
wld_mprotect ((caddr_t) (l->l_addr + c->mapend),
|
2004-05-28 22:59:22 +02:00
|
|
|
loadcmds[nloadcmds - 1].allocend - c->mapend,
|
|
|
|
PROT_NONE);
|
|
|
|
goto postmap;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* sanity check */
|
|
|
|
if ((char *)c->mapstart + maplength > preloader_start &&
|
|
|
|
(char *)c->mapstart <= preloader_end)
|
2007-01-11 12:46:06 +01:00
|
|
|
fatal_error( "%s: binary overlaps preloader (%p-%p)\n",
|
|
|
|
name, (char *)c->mapstart, (char *)c->mapstart + maplength );
|
2004-05-28 22:59:22 +02:00
|
|
|
|
|
|
|
ELF_FIXED_ADDRESS (loader, c->mapstart);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remember which part of the address space this object uses. */
|
|
|
|
l->l_map_start = c->mapstart + l->l_addr;
|
|
|
|
l->l_map_end = l->l_map_start + maplength;
|
|
|
|
|
|
|
|
while (c < &loadcmds[nloadcmds])
|
|
|
|
{
|
|
|
|
if (c->mapend > c->mapstart)
|
|
|
|
/* Map the segment contents from the file. */
|
2004-06-22 04:42:05 +02:00
|
|
|
wld_mmap ((void *) (l->l_addr + c->mapstart),
|
2004-05-28 22:59:22 +02:00
|
|
|
c->mapend - c->mapstart, c->prot,
|
|
|
|
MAP_FIXED | MAP_COPY | MAP_FILE, fd, c->mapoff);
|
|
|
|
|
|
|
|
postmap:
|
|
|
|
if (l->l_phdr == 0
|
|
|
|
&& (ElfW(Off)) c->mapoff <= header->e_phoff
|
|
|
|
&& ((size_t) (c->mapend - c->mapstart + c->mapoff)
|
|
|
|
>= header->e_phoff + header->e_phnum * sizeof (ElfW(Phdr))))
|
|
|
|
/* Found the program header in this segment. */
|
|
|
|
l->l_phdr = (void *)(unsigned int) (c->mapstart + header->e_phoff - c->mapoff);
|
|
|
|
|
|
|
|
if (c->allocend > c->dataend)
|
|
|
|
{
|
|
|
|
/* Extra zero pages should appear at the end of this segment,
|
|
|
|
after the data mapped from the file. */
|
|
|
|
ElfW(Addr) zero, zeroend, zeropage;
|
|
|
|
|
|
|
|
zero = l->l_addr + c->dataend;
|
|
|
|
zeroend = l->l_addr + c->allocend;
|
|
|
|
zeropage = (zero + page_mask) & ~page_mask;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is different from the dl-load load...
|
|
|
|
* ld-linux.so.2 relies on the whole page being zero'ed
|
|
|
|
*/
|
|
|
|
zeroend = (zeroend + page_mask) & ~page_mask;
|
|
|
|
|
|
|
|
if (zeroend < zeropage)
|
|
|
|
{
|
|
|
|
/* All the extra data is in the last page of the segment.
|
|
|
|
We can just zero it. */
|
|
|
|
zeropage = zeroend;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (zeropage > zero)
|
|
|
|
{
|
|
|
|
/* Zero the final part of the last page of the segment. */
|
|
|
|
if ((c->prot & PROT_WRITE) == 0)
|
|
|
|
{
|
|
|
|
/* Dag nab it. */
|
2004-06-22 04:42:05 +02:00
|
|
|
wld_mprotect ((caddr_t) (zero & ~page_mask), page_size, c->prot|PROT_WRITE);
|
2004-05-28 22:59:22 +02:00
|
|
|
}
|
2004-06-22 04:42:05 +02:00
|
|
|
wld_memset ((void *) zero, '\0', zeropage - zero);
|
2004-05-28 22:59:22 +02:00
|
|
|
if ((c->prot & PROT_WRITE) == 0)
|
2004-06-22 04:42:05 +02:00
|
|
|
wld_mprotect ((caddr_t) (zero & ~page_mask), page_size, c->prot);
|
2004-05-28 22:59:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (zeroend > zeropage)
|
|
|
|
{
|
|
|
|
/* Map the remaining zero pages in from the zero fill FD. */
|
|
|
|
caddr_t mapat;
|
2004-06-22 04:42:05 +02:00
|
|
|
mapat = wld_mmap ((caddr_t) zeropage, zeroend - zeropage,
|
2004-05-28 22:59:22 +02:00
|
|
|
c->prot, MAP_ANON|MAP_PRIVATE|MAP_FIXED,
|
|
|
|
-1, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
++c;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l->l_phdr == NULL) fatal_error("no program header\n");
|
|
|
|
|
|
|
|
l->l_phdr = (void *)((ElfW(Addr))l->l_phdr + l->l_addr);
|
|
|
|
l->l_entry += l->l_addr;
|
|
|
|
|
2004-06-22 04:42:05 +02:00
|
|
|
wld_close( fd );
|
2004-05-28 22:59:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-31 15:48:32 +02:00
|
|
|
static unsigned int elf_hash( const char *name )
|
|
|
|
{
|
|
|
|
unsigned int hi, hash = 0;
|
|
|
|
while (*name)
|
|
|
|
{
|
|
|
|
hash = (hash << 4) + (unsigned char)*name++;
|
|
|
|
hi = hash & 0xf0000000;
|
|
|
|
hash ^= hi;
|
|
|
|
hash ^= hi >> 24;
|
|
|
|
}
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
2006-07-31 21:02:38 +02:00
|
|
|
static unsigned int gnu_hash( const char *name )
|
|
|
|
{
|
|
|
|
unsigned int h = 5381;
|
|
|
|
while (*name) h = h * 33 + (unsigned char)*name++;
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
2004-05-28 22:59:22 +02:00
|
|
|
/*
|
|
|
|
* Find a symbol in the symbol table of the executable loaded
|
|
|
|
*/
|
2006-07-31 16:44:40 +02:00
|
|
|
static void *find_symbol( const ElfW(Phdr) *phdr, int num, const char *var, int type )
|
2004-05-28 22:59:22 +02:00
|
|
|
{
|
|
|
|
const ElfW(Dyn) *dyn = NULL;
|
|
|
|
const ElfW(Phdr) *ph;
|
|
|
|
const ElfW(Sym) *symtab = NULL;
|
2006-07-31 15:48:32 +02:00
|
|
|
const Elf_Symndx *hashtab = NULL;
|
2006-07-31 21:02:38 +02:00
|
|
|
const Elf32_Word *gnu_hashtab = NULL;
|
2004-05-28 22:59:22 +02:00
|
|
|
const char *strings = NULL;
|
2006-07-31 21:02:38 +02:00
|
|
|
Elf_Symndx idx;
|
2004-05-28 22:59:22 +02:00
|
|
|
|
|
|
|
/* check the values */
|
|
|
|
#ifdef DUMP_SYMS
|
2007-01-11 12:46:06 +01:00
|
|
|
wld_printf("%p %x\n", phdr, num );
|
2004-05-28 22:59:22 +02:00
|
|
|
#endif
|
|
|
|
if( ( phdr == NULL ) || ( num == 0 ) )
|
|
|
|
{
|
|
|
|
wld_printf("could not find PT_DYNAMIC header entry\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* parse the (already loaded) ELF executable's header */
|
|
|
|
for (ph = phdr; ph < &phdr[num]; ++ph)
|
|
|
|
{
|
|
|
|
if( PT_DYNAMIC == ph->p_type )
|
|
|
|
{
|
|
|
|
dyn = (void *) ph->p_vaddr;
|
|
|
|
num = ph->p_memsz / sizeof (Elf32_Dyn);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( !dyn ) return NULL;
|
|
|
|
|
|
|
|
while( dyn->d_tag )
|
|
|
|
{
|
|
|
|
if( dyn->d_tag == DT_STRTAB )
|
|
|
|
strings = (const char*) dyn->d_un.d_ptr;
|
|
|
|
if( dyn->d_tag == DT_SYMTAB )
|
|
|
|
symtab = (const ElfW(Sym) *)dyn->d_un.d_ptr;
|
|
|
|
if( dyn->d_tag == DT_HASH )
|
2006-07-31 15:48:32 +02:00
|
|
|
hashtab = (const Elf_Symndx *)dyn->d_un.d_ptr;
|
2006-07-31 21:02:38 +02:00
|
|
|
if( dyn->d_tag == DT_GNU_HASH )
|
|
|
|
gnu_hashtab = (const Elf32_Word *)dyn->d_un.d_ptr;
|
2004-05-28 22:59:22 +02:00
|
|
|
#ifdef DUMP_SYMS
|
|
|
|
wld_printf("%x %x\n", dyn->d_tag, dyn->d_un.d_ptr );
|
|
|
|
#endif
|
|
|
|
dyn++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( (!symtab) || (!strings) ) return NULL;
|
|
|
|
|
2006-07-31 21:02:38 +02:00
|
|
|
if (gnu_hashtab) /* new style hash table */
|
|
|
|
{
|
|
|
|
const unsigned int hash = gnu_hash(var);
|
|
|
|
const Elf32_Word nbuckets = gnu_hashtab[0];
|
|
|
|
const Elf32_Word symbias = gnu_hashtab[1];
|
|
|
|
const Elf32_Word nwords = gnu_hashtab[2];
|
|
|
|
const ElfW(Addr) *bitmask = (const ElfW(Addr) *)(gnu_hashtab + 4);
|
|
|
|
const Elf32_Word *buckets = (const Elf32_Word *)(bitmask + nwords);
|
|
|
|
const Elf32_Word *chains = buckets + nbuckets - symbias;
|
|
|
|
|
|
|
|
if (!(idx = buckets[hash % nbuckets])) return NULL;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if ((chains[idx] & ~1u) == (hash & ~1u) &&
|
|
|
|
symtab[idx].st_info == ELF32_ST_INFO( STB_GLOBAL, type ) &&
|
|
|
|
!wld_strcmp( strings + symtab[idx].st_name, var ))
|
|
|
|
goto found;
|
|
|
|
} while (!(chains[idx++] & 1u));
|
|
|
|
}
|
|
|
|
else if (hashtab) /* old style hash table */
|
2004-05-28 22:59:22 +02:00
|
|
|
{
|
2006-07-31 21:02:38 +02:00
|
|
|
const unsigned int hash = elf_hash(var);
|
|
|
|
const Elf_Symndx nbuckets = hashtab[0];
|
2006-07-31 15:48:32 +02:00
|
|
|
const Elf_Symndx *buckets = hashtab + 2;
|
2006-07-31 21:02:38 +02:00
|
|
|
const Elf_Symndx *chains = buckets + nbuckets;
|
2006-07-31 15:48:32 +02:00
|
|
|
|
2006-07-31 21:02:38 +02:00
|
|
|
for (idx = buckets[hash % nbuckets]; idx != STN_UNDEF; idx = chains[idx])
|
2004-05-28 22:59:22 +02:00
|
|
|
{
|
2006-07-31 16:44:40 +02:00
|
|
|
if (symtab[idx].st_info == ELF32_ST_INFO( STB_GLOBAL, type ) &&
|
2006-07-31 15:48:32 +02:00
|
|
|
!wld_strcmp( strings + symtab[idx].st_name, var ))
|
2006-07-31 21:02:38 +02:00
|
|
|
goto found;
|
2004-05-28 22:59:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
2006-07-31 21:02:38 +02:00
|
|
|
|
|
|
|
found:
|
|
|
|
#ifdef DUMP_SYMS
|
|
|
|
wld_printf("Found %s -> %x\n", strings + symtab[idx].st_name, symtab[idx].st_value );
|
|
|
|
#endif
|
|
|
|
return (void *)symtab[idx].st_value;
|
2004-05-28 22:59:22 +02:00
|
|
|
}
|
|
|
|
|
2004-06-02 23:40:00 +02:00
|
|
|
/*
|
|
|
|
* preload_reserve
|
|
|
|
*
|
|
|
|
* Reserve a range specified in string format
|
|
|
|
*/
|
|
|
|
static void preload_reserve( const char *str )
|
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
unsigned long result = 0;
|
|
|
|
void *start = NULL, *end = NULL;
|
2008-04-14 20:38:17 +02:00
|
|
|
int i, first = 1;
|
2004-06-02 23:40:00 +02:00
|
|
|
|
|
|
|
for (p = str; *p; p++)
|
|
|
|
{
|
|
|
|
if (*p >= '0' && *p <= '9') result = result * 16 + *p - '0';
|
|
|
|
else if (*p >= 'a' && *p <= 'f') result = result * 16 + *p - 'a' + 10;
|
|
|
|
else if (*p >= 'A' && *p <= 'F') result = result * 16 + *p - 'A' + 10;
|
|
|
|
else if (*p == '-')
|
|
|
|
{
|
|
|
|
if (!first) goto error;
|
|
|
|
start = (void *)(result & ~page_mask);
|
|
|
|
result = 0;
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
else goto error;
|
|
|
|
}
|
|
|
|
if (!first) end = (void *)((result + page_mask) & ~page_mask);
|
|
|
|
else if (result) goto error; /* single value '0' is allowed */
|
|
|
|
|
|
|
|
/* sanity checks */
|
|
|
|
if (end <= start) start = end = NULL;
|
|
|
|
else if ((char *)end > preloader_start &&
|
|
|
|
(char *)start <= preloader_end)
|
|
|
|
{
|
2007-01-11 12:46:06 +01:00
|
|
|
wld_printf( "WINEPRELOADRESERVE range %p-%p overlaps preloader %p-%p\n",
|
2004-06-02 23:40:00 +02:00
|
|
|
start, end, preloader_start, preloader_end );
|
|
|
|
start = end = NULL;
|
|
|
|
}
|
|
|
|
|
2008-04-14 20:38:17 +02:00
|
|
|
/* check for overlap with low memory areas */
|
|
|
|
for (i = 0; preload_info[i].size; i++)
|
|
|
|
{
|
|
|
|
if ((char *)preload_info[i].addr > (char *)0x00110000) break;
|
|
|
|
if ((char *)end <= (char *)preload_info[i].addr + preload_info[i].size)
|
|
|
|
{
|
|
|
|
start = end = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ((char *)start < (char *)preload_info[i].addr + preload_info[i].size)
|
|
|
|
start = (char *)preload_info[i].addr + preload_info[i].size;
|
|
|
|
}
|
2006-07-19 15:06:16 +02:00
|
|
|
|
2008-04-14 20:38:17 +02:00
|
|
|
while (preload_info[i].size) i++;
|
|
|
|
preload_info[i].addr = start;
|
|
|
|
preload_info[i].size = (char *)end - (char *)start;
|
2004-06-02 23:40:00 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
fatal_error( "invalid WINEPRELOADRESERVE value '%s'\n", str );
|
|
|
|
}
|
|
|
|
|
2007-01-11 12:35:42 +01:00
|
|
|
/* check if address is in one of the reserved ranges */
|
|
|
|
static int is_addr_reserved( const void *addr )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; preload_info[i].size; i++)
|
|
|
|
{
|
|
|
|
if ((const char *)addr >= (const char *)preload_info[i].addr &&
|
|
|
|
(const char *)addr < (const char *)preload_info[i].addr + preload_info[i].size)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* remove a range from the preload list */
|
|
|
|
static void remove_preload_range( int i )
|
|
|
|
{
|
|
|
|
while (preload_info[i].size)
|
|
|
|
{
|
|
|
|
preload_info[i].addr = preload_info[i+1].addr;
|
|
|
|
preload_info[i].size = preload_info[i+1].size;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-26 02:12:20 +02:00
|
|
|
/*
|
|
|
|
* is_in_preload_range
|
|
|
|
*
|
|
|
|
* Check if address of the given aux value is in one of the reserved ranges
|
|
|
|
*/
|
|
|
|
static int is_in_preload_range( const ElfW(auxv_t) *av, int type )
|
|
|
|
{
|
2007-01-11 12:35:42 +01:00
|
|
|
while (av->a_type != AT_NULL)
|
2004-06-26 02:12:20 +02:00
|
|
|
{
|
2007-01-11 12:35:42 +01:00
|
|
|
if (av->a_type == type) return is_addr_reserved( (const void *)av->a_un.a_val );
|
|
|
|
av++;
|
2004-06-26 02:12:20 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2004-06-02 23:40:00 +02:00
|
|
|
|
2006-03-31 19:16:22 +02:00
|
|
|
/* set the process name if supported */
|
|
|
|
static void set_process_name( int argc, char *argv[] )
|
|
|
|
{
|
2007-03-03 14:30:55 +01:00
|
|
|
int i;
|
|
|
|
unsigned int off;
|
2006-03-31 19:16:22 +02:00
|
|
|
char *p, *name, *end;
|
|
|
|
|
|
|
|
/* set the process short name */
|
|
|
|
for (p = name = argv[1]; *p; p++) if (p[0] == '/' && p[1]) name = p + 1;
|
|
|
|
if (wld_prctl( 15 /* PR_SET_NAME */, (int)name ) == -1) return;
|
|
|
|
|
|
|
|
/* find the end of the argv array and move everything down */
|
|
|
|
end = argv[argc - 1];
|
|
|
|
while (*end) end++;
|
|
|
|
off = argv[1] - argv[0];
|
|
|
|
for (p = argv[1]; p <= end; p++) *(p - off) = *p;
|
|
|
|
wld_memset( end - off, 0, off );
|
|
|
|
for (i = 1; i < argc; i++) argv[i] -= off;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-28 22:59:22 +02:00
|
|
|
/*
|
|
|
|
* wld_start
|
|
|
|
*
|
|
|
|
* Repeat the actions the kernel would do when loading a dynamically linked .so
|
|
|
|
* Load the binary and then its ELF interpreter.
|
|
|
|
* Note, we assume that the binary is a dynamically linked ELF shared object.
|
|
|
|
*/
|
2004-06-04 01:36:01 +02:00
|
|
|
void* wld_start( void **stack )
|
2004-05-28 22:59:22 +02:00
|
|
|
{
|
2004-06-04 01:36:01 +02:00
|
|
|
int i, *pargc;
|
2004-05-28 22:59:22 +02:00
|
|
|
char **argv, **p;
|
2004-06-02 23:40:00 +02:00
|
|
|
char *interp, *reserve = NULL;
|
2004-06-26 02:12:20 +02:00
|
|
|
ElfW(auxv_t) new_av[12], delete_av[3], *av;
|
2004-05-28 22:59:22 +02:00
|
|
|
struct wld_link_map main_binary_map, ld_so_map;
|
|
|
|
struct wine_preload_info **wine_main_preload_info;
|
|
|
|
|
2004-06-04 01:36:01 +02:00
|
|
|
pargc = *stack;
|
|
|
|
argv = (char **)pargc + 1;
|
2004-06-15 22:31:06 +02:00
|
|
|
if (*pargc < 2) fatal_error( "Usage: %s wine_binary [args]\n", argv[0] );
|
2004-05-28 22:59:22 +02:00
|
|
|
|
|
|
|
/* skip over the parameters */
|
2004-06-04 01:36:01 +02:00
|
|
|
p = argv + *pargc + 1;
|
2004-05-28 22:59:22 +02:00
|
|
|
|
|
|
|
/* skip over the environment */
|
2004-06-02 23:40:00 +02:00
|
|
|
while (*p)
|
|
|
|
{
|
|
|
|
static const char res[] = "WINEPRELOADRESERVE=";
|
2004-06-22 04:42:05 +02:00
|
|
|
if (!wld_strncmp( *p, res, sizeof(res)-1 )) reserve = *p + sizeof(res) - 1;
|
2004-06-02 23:40:00 +02:00
|
|
|
p++;
|
|
|
|
}
|
2004-05-28 22:59:22 +02:00
|
|
|
|
|
|
|
av = (ElfW(auxv_t)*) (p+1);
|
2004-06-04 01:36:01 +02:00
|
|
|
page_size = get_auxiliary( av, AT_PAGESZ, 4096 );
|
2004-05-28 22:59:22 +02:00
|
|
|
page_mask = page_size - 1;
|
|
|
|
|
2004-06-02 23:40:00 +02:00
|
|
|
preloader_start = (char *)_start - ((unsigned int)_start & page_mask);
|
|
|
|
preloader_end = (char *)((unsigned int)(_end + page_mask) & ~page_mask);
|
|
|
|
|
2004-05-28 22:59:22 +02:00
|
|
|
#ifdef DUMP_AUX_INFO
|
2007-01-11 12:46:06 +01:00
|
|
|
wld_printf( "stack = %p\n", *stack );
|
2004-06-04 01:36:01 +02:00
|
|
|
for( i = 0; i < *pargc; i++ ) wld_printf("argv[%x] = %s\n", i, argv[i]);
|
2004-05-28 22:59:22 +02:00
|
|
|
dump_auxiliary( av );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* reserve memory that Wine needs */
|
2004-06-02 23:40:00 +02:00
|
|
|
if (reserve) preload_reserve( reserve );
|
2004-05-28 22:59:22 +02:00
|
|
|
for (i = 0; preload_info[i].size; i++)
|
2007-01-11 12:35:42 +01:00
|
|
|
{
|
|
|
|
if (wld_mmap( preload_info[i].addr, preload_info[i].size, PROT_NONE,
|
|
|
|
MAP_FIXED | MAP_PRIVATE | MAP_ANON | MAP_NORESERVE, -1, 0 ) == (void *)-1)
|
|
|
|
{
|
2008-05-05 17:19:24 +02:00
|
|
|
/* don't warn for low 64k */
|
|
|
|
if (preload_info[i].addr >= (void *)0x10000)
|
|
|
|
wld_printf( "preloader: Warning: failed to reserve range %p-%p\n",
|
|
|
|
preload_info[i].addr, (char *)preload_info[i].addr + preload_info[i].size );
|
2007-01-11 12:35:42 +01:00
|
|
|
remove_preload_range( i );
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
2004-05-28 22:59:22 +02:00
|
|
|
|
2006-04-12 19:53:16 +02:00
|
|
|
/* add an executable page at the top of the address space to defeat
|
|
|
|
* broken no-exec protections that play with the code selector limit */
|
2007-01-11 12:35:42 +01:00
|
|
|
if (is_addr_reserved( (char *)0x80000000 - page_size ))
|
|
|
|
wld_mprotect( (char *)0x80000000 - page_size, page_size, PROT_EXEC | PROT_READ );
|
2006-04-12 19:53:16 +02:00
|
|
|
|
2004-05-28 22:59:22 +02:00
|
|
|
/* load the main binary */
|
2004-06-15 22:31:06 +02:00
|
|
|
map_so_lib( argv[1], &main_binary_map );
|
2004-05-28 22:59:22 +02:00
|
|
|
|
|
|
|
/* load the ELF interpreter */
|
|
|
|
interp = (char *)main_binary_map.l_addr + main_binary_map.l_interp;
|
|
|
|
map_so_lib( interp, &ld_so_map );
|
|
|
|
|
|
|
|
/* store pointer to the preload info into the appropriate main binary variable */
|
|
|
|
wine_main_preload_info = find_symbol( main_binary_map.l_phdr, main_binary_map.l_phnum,
|
2006-07-31 16:44:40 +02:00
|
|
|
"wine_main_preload_info", STT_OBJECT );
|
2004-05-28 22:59:22 +02:00
|
|
|
if (wine_main_preload_info) *wine_main_preload_info = preload_info;
|
|
|
|
else wld_printf( "wine_main_preload_info not found\n" );
|
|
|
|
|
2004-06-04 01:36:01 +02:00
|
|
|
#define SET_NEW_AV(n,type,val) new_av[n].a_type = (type); new_av[n].a_un.a_val = (val);
|
|
|
|
SET_NEW_AV( 0, AT_PHDR, (unsigned long)main_binary_map.l_phdr );
|
|
|
|
SET_NEW_AV( 1, AT_PHENT, sizeof(ElfW(Phdr)) );
|
|
|
|
SET_NEW_AV( 2, AT_PHNUM, main_binary_map.l_phnum );
|
|
|
|
SET_NEW_AV( 3, AT_PAGESZ, page_size );
|
|
|
|
SET_NEW_AV( 4, AT_BASE, ld_so_map.l_addr );
|
|
|
|
SET_NEW_AV( 5, AT_FLAGS, get_auxiliary( av, AT_FLAGS, 0 ) );
|
|
|
|
SET_NEW_AV( 6, AT_ENTRY, main_binary_map.l_entry );
|
2004-06-22 04:42:05 +02:00
|
|
|
SET_NEW_AV( 7, AT_UID, get_auxiliary( av, AT_UID, wld_getuid() ) );
|
|
|
|
SET_NEW_AV( 8, AT_EUID, get_auxiliary( av, AT_EUID, wld_geteuid() ) );
|
|
|
|
SET_NEW_AV( 9, AT_GID, get_auxiliary( av, AT_GID, wld_getgid() ) );
|
|
|
|
SET_NEW_AV(10, AT_EGID, get_auxiliary( av, AT_EGID, wld_getegid() ) );
|
2004-06-26 02:12:20 +02:00
|
|
|
SET_NEW_AV(11, AT_NULL, 0 );
|
2004-06-04 01:36:01 +02:00
|
|
|
#undef SET_NEW_AV
|
|
|
|
|
2004-06-26 02:12:20 +02:00
|
|
|
i = 0;
|
|
|
|
/* delete sysinfo values if addresses conflict */
|
2007-01-02 12:21:45 +01:00
|
|
|
if (is_in_preload_range( av, AT_SYSINFO ) || is_in_preload_range( av, AT_SYSINFO_EHDR ))
|
|
|
|
{
|
|
|
|
delete_av[i++].a_type = AT_SYSINFO;
|
|
|
|
delete_av[i++].a_type = AT_SYSINFO_EHDR;
|
|
|
|
}
|
2004-06-26 02:12:20 +02:00
|
|
|
delete_av[i].a_type = AT_NULL;
|
|
|
|
|
2004-06-15 22:31:06 +02:00
|
|
|
/* get rid of first argument */
|
2006-03-31 19:16:22 +02:00
|
|
|
set_process_name( *pargc, argv );
|
2004-06-15 22:31:06 +02:00
|
|
|
pargc[1] = pargc[0] - 1;
|
|
|
|
*stack = pargc + 1;
|
|
|
|
|
2004-06-26 02:12:20 +02:00
|
|
|
set_auxiliary_values( av, new_av, delete_av, stack );
|
2004-05-28 22:59:22 +02:00
|
|
|
|
|
|
|
#ifdef DUMP_AUX_INFO
|
2007-01-11 12:46:06 +01:00
|
|
|
wld_printf("new stack = %p\n", *stack);
|
2004-05-28 22:59:22 +02:00
|
|
|
wld_printf("jumping to %x\n", ld_so_map.l_entry);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return (void *)ld_so_map.l_entry;
|
|
|
|
}
|