cmd: Do not reset errorlevel during SET.
[wine.git] / loader / preloader.c
blob4344a166ec4da6225e771853661db53f30938f86
1 /*
2 * Preloader for ld.so
4 * Copyright (C) 1995,96,97,98,99,2000,2001,2002 Free Software Foundation, Inc.
5 * Copyright (C) 2004 Mike McCormack for CodeWeavers
6 * Copyright (C) 2004 Alexandre Julliard
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 * Design notes
26 * The goal of this program is to be a workaround for exec-shield, as used
27 * by the Linux kernel distributed with Fedora Core and other distros.
29 * To do this, we implement our own shared object loader that reserves memory
30 * that is important to Wine, and then loads the main binary and its ELF
31 * interpreter.
33 * We will try to set up the stack and memory area so that the program that
34 * loads after us (eg. the wine binary) never knows we were here, except that
35 * areas of memory it needs are already magically reserved.
37 * The following memory areas are important to Wine:
38 * 0x00000000 - 0x00110000 the DOS area
39 * 0x80000000 - 0x81000000 the shared heap
40 * ??? - ??? the PE binary load address (usually starting at 0x00400000)
42 * If this program is used as the shared object loader, the only difference
43 * that the loaded programs should see is that this loader will be mapped
44 * into memory when it starts.
48 * References (things I consulted to understand how ELF loading works):
50 * glibc 2.3.2 elf/dl-load.c
51 * http://www.gnu.org/directory/glibc.html
53 * Linux 2.6.4 fs/binfmt_elf.c
54 * ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.4.tar.bz2
56 * Userland exec, by <grugq@hcunix.net>
57 * http://cert.uni-stuttgart.de/archive/bugtraq/2004/01/msg00002.html
59 * The ELF specification:
60 * http://www.linuxbase.org/spec/booksets/LSB-Embedded/LSB-Embedded/book387.html
63 #include "config.h"
64 #include "wine/port.h"
66 #include <stdarg.h>
67 #include <stdio.h>
68 #include <stdlib.h>
69 #include <string.h>
70 #include <sys/types.h>
71 #ifdef HAVE_SYS_STAT_H
72 # include <sys/stat.h>
73 #endif
74 #include <fcntl.h>
75 #ifdef HAVE_SYS_MMAN_H
76 # include <sys/mman.h>
77 #endif
78 #ifdef HAVE_SYS_SYSCALL_H
79 # include <sys/syscall.h>
80 #endif
81 #ifdef HAVE_UNISTD_H
82 # include <unistd.h>
83 #endif
84 #ifdef HAVE_ELF_H
85 # include <elf.h>
86 #endif
87 #ifdef HAVE_LINK_H
88 # include <link.h>
89 #endif
90 #ifdef HAVE_SYS_LINK_H
91 # include <sys/link.h>
92 #endif
94 #include "main.h"
96 /* ELF definitions */
97 #define ELF_PREFERRED_ADDRESS(loader, maplength, mapstartpref) (mapstartpref)
98 #define ELF_FIXED_ADDRESS(loader, mapstart) ((void) 0)
100 #define MAP_BASE_ADDR(l) 0
102 #ifndef MAP_COPY
103 #define MAP_COPY MAP_PRIVATE
104 #endif
105 #ifndef MAP_NORESERVE
106 #define MAP_NORESERVE 0
107 #endif
109 static struct wine_preload_info preload_info[] =
111 #ifdef __i386__
112 { (void *)0x00000000, 0x00010000 }, /* low 64k */
113 { (void *)0x00010000, 0x00100000 }, /* DOS area */
114 { (void *)0x00110000, 0x67ef0000 }, /* low memory area */
115 { (void *)0x7f000000, 0x03000000 }, /* top-down allocations + shared heap + virtual heap */
116 #else
117 { (void *)0x000000010000, 0x00100000 }, /* DOS area */
118 { (void *)0x000000110000, 0x67ef0000 }, /* low memory area */
119 { (void *)0x00007ff00000, 0x000f0000 }, /* shared user data */
120 { (void *)0x7ffffe000000, 0x01ff0000 }, /* top-down allocations + virtual heap */
121 #endif
122 { 0, 0 }, /* PE exe range set with WINEPRELOADRESERVE */
123 { 0, 0 } /* end of list */
126 /* debugging */
127 #undef DUMP_SEGMENTS
128 #undef DUMP_AUX_INFO
129 #undef DUMP_SYMS
131 /* older systems may not define these */
132 #ifndef PT_TLS
133 #define PT_TLS 7
134 #endif
136 #ifndef AT_SYSINFO
137 #define AT_SYSINFO 32
138 #endif
139 #ifndef AT_SYSINFO_EHDR
140 #define AT_SYSINFO_EHDR 33
141 #endif
143 #ifndef DT_GNU_HASH
144 #define DT_GNU_HASH 0x6ffffef5
145 #endif
147 static size_t page_size, page_mask;
148 static char *preloader_start, *preloader_end;
150 struct wld_link_map {
151 ElfW(Addr) l_addr;
152 ElfW(Dyn) *l_ld;
153 ElfW(Phdr)*l_phdr;
154 ElfW(Addr) l_entry;
155 ElfW(Half) l_ldnum;
156 ElfW(Half) l_phnum;
157 ElfW(Addr) l_map_start, l_map_end;
158 ElfW(Addr) l_interp;
163 * The __bb_init_func is an empty function only called when file is
164 * compiled with gcc flags "-fprofile-arcs -ftest-coverage". This
165 * function is normally provided by libc's startup files, but since we
166 * build the preloader with "-nostartfiles -nodefaultlibs", we have to
167 * provide our own (empty) version, otherwise linker fails.
169 void __bb_init_func(void) { return; }
171 /* similar to the above but for -fstack-protector */
172 void *__stack_chk_guard = 0;
173 void __stack_chk_fail_local(void) { return; }
174 void __stack_chk_fail(void) { return; }
176 #ifdef __i386__
178 /* data for setting up the glibc-style thread-local storage in %gs */
180 static int thread_data[256];
182 struct
184 /* this is the kernel modify_ldt struct */
185 unsigned int entry_number;
186 unsigned long base_addr;
187 unsigned int limit;
188 unsigned int seg_32bit : 1;
189 unsigned int contents : 2;
190 unsigned int read_exec_only : 1;
191 unsigned int limit_in_pages : 1;
192 unsigned int seg_not_present : 1;
193 unsigned int usable : 1;
194 unsigned int garbage : 25;
195 } thread_ldt = { -1, (unsigned long)thread_data, 0xfffff, 1, 0, 0, 1, 0, 1, 0 };
199 * The _start function is the entry and exit point of this program
201 * It calls wld_start, passing a pointer to the args it receives
202 * then jumps to the address wld_start returns.
204 void _start(void);
205 extern char _end[];
206 __ASM_GLOBAL_FUNC(_start,
207 "\tmovl $243,%eax\n" /* SYS_set_thread_area */
208 "\tmovl $thread_ldt,%ebx\n"
209 "\tint $0x80\n" /* allocate gs segment */
210 "\torl %eax,%eax\n"
211 "\tjl 1f\n"
212 "\tmovl thread_ldt,%eax\n" /* thread_ldt.entry_number */
213 "\tshl $3,%eax\n"
214 "\torl $3,%eax\n"
215 "\tmov %ax,%gs\n"
216 "\tmov %ax,%fs\n" /* set %fs too so libwine can retrieve it later on */
217 "1:\tmovl %esp,%eax\n"
218 "\tleal -136(%esp),%esp\n" /* allocate some space for extra aux values */
219 "\tpushl %eax\n" /* orig stack pointer */
220 "\tpushl %esp\n" /* ptr to orig stack pointer */
221 "\tcall wld_start\n"
222 "\tpopl %ecx\n" /* remove ptr to stack pointer */
223 "\tpopl %esp\n" /* new stack pointer */
224 "\tpush %eax\n" /* ELF interpreter entry point */
225 "\txor %eax,%eax\n"
226 "\txor %ecx,%ecx\n"
227 "\txor %edx,%edx\n"
228 "\tmov %ax,%gs\n" /* clear %gs again */
229 "\tret\n")
231 /* wrappers for Linux system calls */
233 #define SYSCALL_RET(ret) (((ret) < 0 && (ret) > -4096) ? -1 : (ret))
235 static inline __attribute__((noreturn)) void wld_exit( int code )
237 for (;;) /* avoid warning */
238 __asm__ __volatile__( "pushl %%ebx; movl %1,%%ebx; int $0x80; popl %%ebx"
239 : : "a" (SYS_exit), "r" (code) );
242 static inline int wld_open( const char *name, int flags )
244 int ret;
245 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
246 : "=a" (ret) : "0" (SYS_open), "r" (name), "c" (flags) );
247 return SYSCALL_RET(ret);
250 static inline int wld_close( int fd )
252 int ret;
253 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
254 : "=a" (ret) : "0" (SYS_close), "r" (fd) );
255 return SYSCALL_RET(ret);
258 static inline ssize_t wld_read( int fd, void *buffer, size_t len )
260 int ret;
261 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
262 : "=a" (ret)
263 : "0" (SYS_read), "r" (fd), "c" (buffer), "d" (len)
264 : "memory" );
265 return SYSCALL_RET(ret);
268 static inline ssize_t wld_write( int fd, const void *buffer, size_t len )
270 int ret;
271 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
272 : "=a" (ret) : "0" (SYS_write), "r" (fd), "c" (buffer), "d" (len) );
273 return SYSCALL_RET(ret);
276 static inline int wld_mprotect( const void *addr, size_t len, int prot )
278 int ret;
279 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
280 : "=a" (ret) : "0" (SYS_mprotect), "r" (addr), "c" (len), "d" (prot) );
281 return SYSCALL_RET(ret);
284 static void *wld_mmap( void *start, size_t len, int prot, int flags, int fd, off_t offset )
286 int ret;
288 struct
290 void *addr;
291 unsigned int length;
292 unsigned int prot;
293 unsigned int flags;
294 unsigned int fd;
295 unsigned int offset;
296 } args;
298 args.addr = start;
299 args.length = len;
300 args.prot = prot;
301 args.flags = flags;
302 args.fd = fd;
303 args.offset = offset;
304 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
305 : "=a" (ret) : "0" (SYS_mmap), "q" (&args) : "memory" );
306 return (void *)SYSCALL_RET(ret);
309 static inline uid_t wld_getuid(void)
311 uid_t ret;
312 __asm__( "int $0x80" : "=a" (ret) : "0" (SYS_getuid) );
313 return ret;
316 static inline uid_t wld_geteuid(void)
318 uid_t ret;
319 __asm__( "int $0x80" : "=a" (ret) : "0" (SYS_geteuid) );
320 return ret;
323 static inline gid_t wld_getgid(void)
325 gid_t ret;
326 __asm__( "int $0x80" : "=a" (ret) : "0" (SYS_getgid) );
327 return ret;
330 static inline gid_t wld_getegid(void)
332 gid_t ret;
333 __asm__( "int $0x80" : "=a" (ret) : "0" (SYS_getegid) );
334 return ret;
337 static inline int wld_prctl( int code, long arg )
339 int ret;
340 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
341 : "=a" (ret) : "0" (SYS_prctl), "r" (code), "c" (arg) );
342 return SYSCALL_RET(ret);
345 #elif defined(__x86_64__)
348 * The _start function is the entry and exit point of this program
350 * It calls wld_start, passing a pointer to the args it receives
351 * then jumps to the address wld_start returns.
353 void _start(void);
354 extern char _end[];
355 __ASM_GLOBAL_FUNC(_start,
356 "movq %rsp,%rax\n\t"
357 "leaq -144(%rsp),%rsp\n\t" /* allocate some space for extra aux values */
358 "movq %rsp,%rdi\n\t" /* ptr to orig stack pointer */
359 "movq %rax,(%rdi)\n\t" /* orig stack pointer */
360 "call wld_start\n\t"
361 "movq (%rsp),%rsp\n\t" /* new stack pointer */
362 "pushq %rax\n\t" /* ELF interpreter entry point */
363 "xorq %rax,%rax\n\t"
364 "xorq %rcx,%rcx\n\t"
365 "xorq %rdx,%rdx\n\t"
366 "xorq %rsi,%rsi\n\t"
367 "xorq %rdi,%rdi\n\t"
368 "xorq %r8,%r8\n\t"
369 "xorq %r9,%r9\n\t"
370 "xorq %r10,%r10\n\t"
371 "xorq %r11,%r11\n\t"
372 "ret")
374 #define SYSCALL_FUNC( name, nr ) \
375 __ASM_GLOBAL_FUNC( name, \
376 "movq $" #nr ",%rax\n\t" \
377 "movq %rcx,%r10\n\t" \
378 "syscall\n\t" \
379 "leaq 4096(%rax),%rcx\n\t" \
380 "movq $-1,%rdx\n\t" \
381 "cmp $4096,%rcx\n\t" \
382 "cmovb %rdx,%rax\n\t" \
383 "ret" )
385 #define SYSCALL_NOERR( name, nr ) \
386 __ASM_GLOBAL_FUNC( name, \
387 "movq $" #nr ",%rax\n\t" \
388 "syscall\n\t" \
389 "ret" )
391 void wld_exit( int code ) __attribute__((noreturn));
392 SYSCALL_NOERR( wld_exit, 60 /* SYS_exit */ );
394 ssize_t wld_read( int fd, void *buffer, size_t len );
395 SYSCALL_FUNC( wld_read, 0 /* SYS_read */ );
397 ssize_t wld_write( int fd, const void *buffer, size_t len );
398 SYSCALL_FUNC( wld_write, 1 /* SYS_write */ );
400 int wld_open( const char *name, int flags );
401 SYSCALL_FUNC( wld_open, 2 /* SYS_open */ );
403 int wld_close( int fd );
404 SYSCALL_FUNC( wld_close, 3 /* SYS_close */ );
406 void *wld_mmap( void *start, size_t len, int prot, int flags, int fd, off_t offset );
407 SYSCALL_FUNC( wld_mmap, 9 /* SYS_mmap */ );
409 int wld_mprotect( const void *addr, size_t len, int prot );
410 SYSCALL_FUNC( wld_mprotect, 10 /* SYS_mprotect */ );
412 int wld_prctl( int code, int arg );
413 SYSCALL_FUNC( wld_prctl, 157 /* SYS_prctl */ );
415 uid_t wld_getuid(void);
416 SYSCALL_NOERR( wld_getuid, 102 /* SYS_getuid */ );
418 gid_t wld_getgid(void);
419 SYSCALL_NOERR( wld_getgid, 104 /* SYS_getgid */ );
421 uid_t wld_geteuid(void);
422 SYSCALL_NOERR( wld_geteuid, 107 /* SYS_geteuid */ );
424 gid_t wld_getegid(void);
425 SYSCALL_NOERR( wld_getegid, 108 /* SYS_getegid */ );
427 #else
428 #error preloader not implemented for this CPU
429 #endif
431 /* replacement for libc functions */
433 static int wld_strcmp( const char *str1, const char *str2 )
435 while (*str1 && (*str1 == *str2)) { str1++; str2++; }
436 return *str1 - *str2;
439 static int wld_strncmp( const char *str1, const char *str2, size_t len )
441 if (len <= 0) return 0;
442 while ((--len > 0) && *str1 && (*str1 == *str2)) { str1++; str2++; }
443 return *str1 - *str2;
446 static inline void *wld_memset( void *dest, int val, size_t len )
448 char *dst = dest;
449 while (len--) *dst++ = val;
450 return dest;
454 * wld_printf - just the basics
456 * %x prints a hex number
457 * %s prints a string
458 * %p prints a pointer
460 static int wld_vsprintf(char *buffer, const char *fmt, va_list args )
462 static const char hex_chars[16] = "0123456789abcdef";
463 const char *p = fmt;
464 char *str = buffer;
465 int i;
467 while( *p )
469 if( *p == '%' )
471 p++;
472 if( *p == 'x' )
474 unsigned int x = va_arg( args, unsigned int );
475 for (i = 2*sizeof(x) - 1; i >= 0; i--)
476 *str++ = hex_chars[(x>>(i*4))&0xf];
478 else if (p[0] == 'l' && p[1] == 'x')
480 unsigned long x = va_arg( args, unsigned long );
481 for (i = 2*sizeof(x) - 1; i >= 0; i--)
482 *str++ = hex_chars[(x>>(i*4))&0xf];
483 p++;
485 else if( *p == 'p' )
487 unsigned long x = (unsigned long)va_arg( args, void * );
488 for (i = 2*sizeof(x) - 1; i >= 0; i--)
489 *str++ = hex_chars[(x>>(i*4))&0xf];
491 else if( *p == 's' )
493 char *s = va_arg( args, char * );
494 while(*s)
495 *str++ = *s++;
497 else if( *p == 0 )
498 break;
499 p++;
501 *str++ = *p++;
503 *str = 0;
504 return str - buffer;
507 static __attribute__((format(printf,1,2))) void wld_printf(const char *fmt, ... )
509 va_list args;
510 char buffer[256];
511 int len;
513 va_start( args, fmt );
514 len = wld_vsprintf(buffer, fmt, args );
515 va_end( args );
516 wld_write(2, buffer, len);
519 static __attribute__((noreturn,format(printf,1,2))) void fatal_error(const char *fmt, ... )
521 va_list args;
522 char buffer[256];
523 int len;
525 va_start( args, fmt );
526 len = wld_vsprintf(buffer, fmt, args );
527 va_end( args );
528 wld_write(2, buffer, len);
529 wld_exit(1);
532 #ifdef DUMP_AUX_INFO
534 * Dump interesting bits of the ELF auxv_t structure that is passed
535 * as the 4th parameter to the _start function
537 static void dump_auxiliary( ElfW(auxv_t) *av )
539 #define NAME(at) { at, #at }
540 static const struct { int val; const char *name; } names[] =
542 NAME(AT_BASE),
543 NAME(AT_CLKTCK),
544 NAME(AT_EGID),
545 NAME(AT_ENTRY),
546 NAME(AT_EUID),
547 NAME(AT_FLAGS),
548 NAME(AT_GID),
549 NAME(AT_HWCAP),
550 NAME(AT_PAGESZ),
551 NAME(AT_PHDR),
552 NAME(AT_PHENT),
553 NAME(AT_PHNUM),
554 NAME(AT_PLATFORM),
555 NAME(AT_SYSINFO),
556 NAME(AT_SYSINFO_EHDR),
557 NAME(AT_UID),
558 { 0, NULL }
560 #undef NAME
562 int i;
564 for ( ; av->a_type != AT_NULL; av++)
566 for (i = 0; names[i].name; i++) if (names[i].val == av->a_type) break;
567 if (names[i].name) wld_printf("%s = %lx\n", names[i].name, (unsigned long)av->a_un.a_val);
568 else wld_printf( "%lx = %lx\n", (unsigned long)av->a_type, (unsigned long)av->a_un.a_val );
571 #endif
574 * set_auxiliary_values
576 * Set the new auxiliary values
578 static void set_auxiliary_values( ElfW(auxv_t) *av, const ElfW(auxv_t) *new_av,
579 const ElfW(auxv_t) *delete_av, void **stack )
581 int i, j, av_count = 0, new_count = 0, delete_count = 0;
582 char *src, *dst;
584 /* count how many aux values we have already */
585 while (av[av_count].a_type != AT_NULL) av_count++;
587 /* delete unwanted values */
588 for (j = 0; delete_av[j].a_type != AT_NULL; j++)
590 for (i = 0; i < av_count; i++) if (av[i].a_type == delete_av[j].a_type)
592 av[i].a_type = av[av_count-1].a_type;
593 av[i].a_un.a_val = av[av_count-1].a_un.a_val;
594 av[--av_count].a_type = AT_NULL;
595 delete_count++;
596 break;
600 /* count how many values we have in new_av that aren't in av */
601 for (j = 0; new_av[j].a_type != AT_NULL; j++)
603 for (i = 0; i < av_count; i++) if (av[i].a_type == new_av[j].a_type) break;
604 if (i == av_count) new_count++;
607 src = (char *)*stack;
608 dst = src - (new_count - delete_count) * sizeof(*av);
609 dst = (char *)((unsigned long)dst & ~15);
610 if (dst < src) /* need to make room for the extra values */
612 int len = (char *)(av + av_count + 1) - src;
613 for (i = 0; i < len; i++) dst[i] = src[i];
615 else if (dst > src) /* get rid of unused values */
617 int len = (char *)(av + av_count + 1) - src;
618 for (i = len - 1; i >= 0; i--) dst[i] = src[i];
620 *stack = dst;
621 av = (ElfW(auxv_t) *)((char *)av + (dst - src));
623 /* now set the values */
624 for (j = 0; new_av[j].a_type != AT_NULL; j++)
626 for (i = 0; i < av_count; i++) if (av[i].a_type == new_av[j].a_type) break;
627 if (i < av_count) av[i].a_un.a_val = new_av[j].a_un.a_val;
628 else
630 av[av_count].a_type = new_av[j].a_type;
631 av[av_count].a_un.a_val = new_av[j].a_un.a_val;
632 av_count++;
636 #ifdef DUMP_AUX_INFO
637 wld_printf("New auxiliary info:\n");
638 dump_auxiliary( av );
639 #endif
643 * get_auxiliary
645 * Get a field of the auxiliary structure
647 static int get_auxiliary( ElfW(auxv_t) *av, int type, int def_val )
649 for ( ; av->a_type != AT_NULL; av++)
650 if( av->a_type == type ) return av->a_un.a_val;
651 return def_val;
655 * map_so_lib
657 * modelled after _dl_map_object_from_fd() from glibc-2.3.1/elf/dl-load.c
659 * This function maps the segments from an ELF object, and optionally
660 * stores information about the mapping into the auxv_t structure.
662 static void map_so_lib( const char *name, struct wld_link_map *l)
664 int fd;
665 unsigned char buf[0x800];
666 ElfW(Ehdr) *header = (ElfW(Ehdr)*)buf;
667 ElfW(Phdr) *phdr, *ph;
668 /* Scan the program header table, collecting its load commands. */
669 struct loadcmd
671 ElfW(Addr) mapstart, mapend, dataend, allocend;
672 off_t mapoff;
673 int prot;
674 } loadcmds[16], *c;
675 size_t nloadcmds = 0, maplength;
677 fd = wld_open( name, O_RDONLY );
678 if (fd == -1) fatal_error("%s: could not open\n", name );
680 if (wld_read( fd, buf, sizeof(buf) ) != sizeof(buf))
681 fatal_error("%s: failed to read ELF header\n", name);
683 phdr = (void*) (((unsigned char*)buf) + header->e_phoff);
685 if( ( header->e_ident[0] != 0x7f ) ||
686 ( header->e_ident[1] != 'E' ) ||
687 ( header->e_ident[2] != 'L' ) ||
688 ( header->e_ident[3] != 'F' ) )
689 fatal_error( "%s: not an ELF binary... don't know how to load it\n", name );
691 #ifdef __i386__
692 if( header->e_machine != EM_386 )
693 fatal_error("%s: not an i386 ELF binary... don't know how to load it\n", name );
694 #elif defined(__x86_64__)
695 if( header->e_machine != EM_X86_64 )
696 fatal_error("%s: not an x86-64 ELF binary... don't know how to load it\n", name );
697 #endif
699 if (header->e_phnum > sizeof(loadcmds)/sizeof(loadcmds[0]))
700 fatal_error( "%s: oops... not enough space for load commands\n", name );
702 maplength = header->e_phnum * sizeof (ElfW(Phdr));
703 if (header->e_phoff + maplength > sizeof(buf))
704 fatal_error( "%s: oops... not enough space for ELF headers\n", name );
706 l->l_ld = 0;
707 l->l_addr = 0;
708 l->l_phdr = 0;
709 l->l_phnum = header->e_phnum;
710 l->l_entry = header->e_entry;
711 l->l_interp = 0;
713 for (ph = phdr; ph < &phdr[l->l_phnum]; ++ph)
716 #ifdef DUMP_SEGMENTS
717 wld_printf( "ph = %p\n", ph );
718 wld_printf( " p_type = %lx\n", (unsigned long)ph->p_type );
719 wld_printf( " p_flags = %lx\n", (unsigned long)ph->p_flags );
720 wld_printf( " p_offset = %lx\n", (unsigned long)ph->p_offset );
721 wld_printf( " p_vaddr = %lx\n", (unsigned long)ph->p_vaddr );
722 wld_printf( " p_paddr = %lx\n", (unsigned long)ph->p_paddr );
723 wld_printf( " p_filesz = %lx\n", (unsigned long)ph->p_filesz );
724 wld_printf( " p_memsz = %lx\n", (unsigned long)ph->p_memsz );
725 wld_printf( " p_align = %lx\n", (unsigned long)ph->p_align );
726 #endif
728 switch (ph->p_type)
730 /* These entries tell us where to find things once the file's
731 segments are mapped in. We record the addresses it says
732 verbatim, and later correct for the run-time load address. */
733 case PT_DYNAMIC:
734 l->l_ld = (void *) ph->p_vaddr;
735 l->l_ldnum = ph->p_memsz / sizeof (Elf32_Dyn);
736 break;
738 case PT_PHDR:
739 l->l_phdr = (void *) ph->p_vaddr;
740 break;
742 case PT_LOAD:
744 if ((ph->p_align & page_mask) != 0)
745 fatal_error( "%s: ELF load command alignment not page-aligned\n", name );
747 if (((ph->p_vaddr - ph->p_offset) & (ph->p_align - 1)) != 0)
748 fatal_error( "%s: ELF load command address/offset not properly aligned\n", name );
750 c = &loadcmds[nloadcmds++];
751 c->mapstart = ph->p_vaddr & ~(ph->p_align - 1);
752 c->mapend = ((ph->p_vaddr + ph->p_filesz + page_mask) & ~page_mask);
753 c->dataend = ph->p_vaddr + ph->p_filesz;
754 c->allocend = ph->p_vaddr + ph->p_memsz;
755 c->mapoff = ph->p_offset & ~(ph->p_align - 1);
757 c->prot = 0;
758 if (ph->p_flags & PF_R)
759 c->prot |= PROT_READ;
760 if (ph->p_flags & PF_W)
761 c->prot |= PROT_WRITE;
762 if (ph->p_flags & PF_X)
763 c->prot |= PROT_EXEC;
765 break;
767 case PT_INTERP:
768 l->l_interp = ph->p_vaddr;
769 break;
771 case PT_TLS:
773 * We don't need to set anything up because we're
774 * emulating the kernel, not ld-linux.so.2
775 * The ELF loader will set up the TLS data itself.
777 case PT_SHLIB:
778 case PT_NOTE:
779 default:
780 break;
784 /* Now process the load commands and map segments into memory. */
785 c = loadcmds;
787 /* Length of the sections to be loaded. */
788 maplength = loadcmds[nloadcmds - 1].allocend - c->mapstart;
790 if( header->e_type == ET_DYN )
792 ElfW(Addr) mappref;
793 mappref = (ELF_PREFERRED_ADDRESS (loader, maplength, c->mapstart)
794 - MAP_BASE_ADDR (l));
796 /* Remember which part of the address space this object uses. */
797 l->l_map_start = (ElfW(Addr)) wld_mmap ((void *) mappref, maplength,
798 c->prot, MAP_COPY | MAP_FILE,
799 fd, c->mapoff);
800 /* wld_printf("set : offset = %x\n", c->mapoff); */
801 /* wld_printf("l->l_map_start = %x\n", l->l_map_start); */
803 l->l_map_end = l->l_map_start + maplength;
804 l->l_addr = l->l_map_start - c->mapstart;
806 wld_mprotect ((caddr_t) (l->l_addr + c->mapend),
807 loadcmds[nloadcmds - 1].allocend - c->mapend,
808 PROT_NONE);
809 goto postmap;
811 else
813 /* sanity check */
814 if ((char *)c->mapstart + maplength > preloader_start &&
815 (char *)c->mapstart <= preloader_end)
816 fatal_error( "%s: binary overlaps preloader (%p-%p)\n",
817 name, (char *)c->mapstart, (char *)c->mapstart + maplength );
819 ELF_FIXED_ADDRESS (loader, c->mapstart);
822 /* Remember which part of the address space this object uses. */
823 l->l_map_start = c->mapstart + l->l_addr;
824 l->l_map_end = l->l_map_start + maplength;
826 while (c < &loadcmds[nloadcmds])
828 if (c->mapend > c->mapstart)
829 /* Map the segment contents from the file. */
830 wld_mmap ((void *) (l->l_addr + c->mapstart),
831 c->mapend - c->mapstart, c->prot,
832 MAP_FIXED | MAP_COPY | MAP_FILE, fd, c->mapoff);
834 postmap:
835 if (l->l_phdr == 0
836 && (ElfW(Off)) c->mapoff <= header->e_phoff
837 && ((size_t) (c->mapend - c->mapstart + c->mapoff)
838 >= header->e_phoff + header->e_phnum * sizeof (ElfW(Phdr))))
839 /* Found the program header in this segment. */
840 l->l_phdr = (void *)(unsigned long)(c->mapstart + header->e_phoff - c->mapoff);
842 if (c->allocend > c->dataend)
844 /* Extra zero pages should appear at the end of this segment,
845 after the data mapped from the file. */
846 ElfW(Addr) zero, zeroend, zeropage;
848 zero = l->l_addr + c->dataend;
849 zeroend = l->l_addr + c->allocend;
850 zeropage = (zero + page_mask) & ~page_mask;
853 * This is different from the dl-load load...
854 * ld-linux.so.2 relies on the whole page being zero'ed
856 zeroend = (zeroend + page_mask) & ~page_mask;
858 if (zeroend < zeropage)
860 /* All the extra data is in the last page of the segment.
861 We can just zero it. */
862 zeropage = zeroend;
865 if (zeropage > zero)
867 /* Zero the final part of the last page of the segment. */
868 if ((c->prot & PROT_WRITE) == 0)
870 /* Dag nab it. */
871 wld_mprotect ((caddr_t) (zero & ~page_mask), page_size, c->prot|PROT_WRITE);
873 wld_memset ((void *) zero, '\0', zeropage - zero);
874 if ((c->prot & PROT_WRITE) == 0)
875 wld_mprotect ((caddr_t) (zero & ~page_mask), page_size, c->prot);
878 if (zeroend > zeropage)
880 /* Map the remaining zero pages in from the zero fill FD. */
881 wld_mmap ((caddr_t) zeropage, zeroend - zeropage,
882 c->prot, MAP_ANON|MAP_PRIVATE|MAP_FIXED,
883 -1, 0);
887 ++c;
890 if (l->l_phdr == NULL) fatal_error("no program header\n");
892 l->l_phdr = (void *)((ElfW(Addr))l->l_phdr + l->l_addr);
893 l->l_entry += l->l_addr;
895 wld_close( fd );
899 static unsigned int elf_hash( const char *name )
901 unsigned int hi, hash = 0;
902 while (*name)
904 hash = (hash << 4) + (unsigned char)*name++;
905 hi = hash & 0xf0000000;
906 hash ^= hi;
907 hash ^= hi >> 24;
909 return hash;
912 static unsigned int gnu_hash( const char *name )
914 unsigned int h = 5381;
915 while (*name) h = h * 33 + (unsigned char)*name++;
916 return h;
920 * Find a symbol in the symbol table of the executable loaded
922 static void *find_symbol( const ElfW(Phdr) *phdr, int num, const char *var, int type )
924 const ElfW(Dyn) *dyn = NULL;
925 const ElfW(Phdr) *ph;
926 const ElfW(Sym) *symtab = NULL;
927 const Elf_Symndx *hashtab = NULL;
928 const Elf32_Word *gnu_hashtab = NULL;
929 const char *strings = NULL;
930 Elf_Symndx idx;
932 /* check the values */
933 #ifdef DUMP_SYMS
934 wld_printf("%p %x\n", phdr, num );
935 #endif
936 if( ( phdr == NULL ) || ( num == 0 ) )
938 wld_printf("could not find PT_DYNAMIC header entry\n");
939 return NULL;
942 /* parse the (already loaded) ELF executable's header */
943 for (ph = phdr; ph < &phdr[num]; ++ph)
945 if( PT_DYNAMIC == ph->p_type )
947 dyn = (void *) ph->p_vaddr;
948 num = ph->p_memsz / sizeof (*dyn);
949 break;
952 if( !dyn ) return NULL;
954 while( dyn->d_tag )
956 if( dyn->d_tag == DT_STRTAB )
957 strings = (const char*) dyn->d_un.d_ptr;
958 if( dyn->d_tag == DT_SYMTAB )
959 symtab = (const ElfW(Sym) *)dyn->d_un.d_ptr;
960 if( dyn->d_tag == DT_HASH )
961 hashtab = (const Elf_Symndx *)dyn->d_un.d_ptr;
962 if( dyn->d_tag == DT_GNU_HASH )
963 gnu_hashtab = (const Elf32_Word *)dyn->d_un.d_ptr;
964 #ifdef DUMP_SYMS
965 wld_printf("%lx %p\n", (unsigned long)dyn->d_tag, (void *)dyn->d_un.d_ptr );
966 #endif
967 dyn++;
970 if( (!symtab) || (!strings) ) return NULL;
972 if (gnu_hashtab) /* new style hash table */
974 const unsigned int hash = gnu_hash(var);
975 const Elf32_Word nbuckets = gnu_hashtab[0];
976 const Elf32_Word symbias = gnu_hashtab[1];
977 const Elf32_Word nwords = gnu_hashtab[2];
978 const ElfW(Addr) *bitmask = (const ElfW(Addr) *)(gnu_hashtab + 4);
979 const Elf32_Word *buckets = (const Elf32_Word *)(bitmask + nwords);
980 const Elf32_Word *chains = buckets + nbuckets - symbias;
982 if (!(idx = buckets[hash % nbuckets])) return NULL;
985 if ((chains[idx] & ~1u) == (hash & ~1u) &&
986 symtab[idx].st_info == ELF32_ST_INFO( STB_GLOBAL, type ) &&
987 !wld_strcmp( strings + symtab[idx].st_name, var ))
988 goto found;
989 } while (!(chains[idx++] & 1u));
991 else if (hashtab) /* old style hash table */
993 const unsigned int hash = elf_hash(var);
994 const Elf_Symndx nbuckets = hashtab[0];
995 const Elf_Symndx *buckets = hashtab + 2;
996 const Elf_Symndx *chains = buckets + nbuckets;
998 for (idx = buckets[hash % nbuckets]; idx != STN_UNDEF; idx = chains[idx])
1000 if (symtab[idx].st_info == ELF32_ST_INFO( STB_GLOBAL, type ) &&
1001 !wld_strcmp( strings + symtab[idx].st_name, var ))
1002 goto found;
1005 return NULL;
1007 found:
1008 #ifdef DUMP_SYMS
1009 wld_printf("Found %s -> %p\n", strings + symtab[idx].st_name, (void *)symtab[idx].st_value );
1010 #endif
1011 return (void *)symtab[idx].st_value;
1015 * preload_reserve
1017 * Reserve a range specified in string format
1019 static void preload_reserve( const char *str )
1021 const char *p;
1022 unsigned long result = 0;
1023 void *start = NULL, *end = NULL;
1024 int i, first = 1;
1026 for (p = str; *p; p++)
1028 if (*p >= '0' && *p <= '9') result = result * 16 + *p - '0';
1029 else if (*p >= 'a' && *p <= 'f') result = result * 16 + *p - 'a' + 10;
1030 else if (*p >= 'A' && *p <= 'F') result = result * 16 + *p - 'A' + 10;
1031 else if (*p == '-')
1033 if (!first) goto error;
1034 start = (void *)(result & ~page_mask);
1035 result = 0;
1036 first = 0;
1038 else goto error;
1040 if (!first) end = (void *)((result + page_mask) & ~page_mask);
1041 else if (result) goto error; /* single value '0' is allowed */
1043 /* sanity checks */
1044 if (end <= start) start = end = NULL;
1045 else if ((char *)end > preloader_start &&
1046 (char *)start <= preloader_end)
1048 wld_printf( "WINEPRELOADRESERVE range %p-%p overlaps preloader %p-%p\n",
1049 start, end, preloader_start, preloader_end );
1050 start = end = NULL;
1053 /* check for overlap with low memory areas */
1054 for (i = 0; preload_info[i].size; i++)
1056 if ((char *)preload_info[i].addr > (char *)0x00110000) break;
1057 if ((char *)end <= (char *)preload_info[i].addr + preload_info[i].size)
1059 start = end = NULL;
1060 break;
1062 if ((char *)start < (char *)preload_info[i].addr + preload_info[i].size)
1063 start = (char *)preload_info[i].addr + preload_info[i].size;
1066 while (preload_info[i].size) i++;
1067 preload_info[i].addr = start;
1068 preload_info[i].size = (char *)end - (char *)start;
1069 return;
1071 error:
1072 fatal_error( "invalid WINEPRELOADRESERVE value '%s'\n", str );
1075 /* check if address is in one of the reserved ranges */
1076 static int is_addr_reserved( const void *addr )
1078 int i;
1080 for (i = 0; preload_info[i].size; i++)
1082 if ((const char *)addr >= (const char *)preload_info[i].addr &&
1083 (const char *)addr < (const char *)preload_info[i].addr + preload_info[i].size)
1084 return 1;
1086 return 0;
1089 /* remove a range from the preload list */
1090 static void remove_preload_range( int i )
1092 while (preload_info[i].size)
1094 preload_info[i].addr = preload_info[i+1].addr;
1095 preload_info[i].size = preload_info[i+1].size;
1096 i++;
1101 * is_in_preload_range
1103 * Check if address of the given aux value is in one of the reserved ranges
1105 static int is_in_preload_range( const ElfW(auxv_t) *av, int type )
1107 while (av->a_type != AT_NULL)
1109 if (av->a_type == type) return is_addr_reserved( (const void *)av->a_un.a_val );
1110 av++;
1112 return 0;
1115 /* set the process name if supported */
1116 static void set_process_name( int argc, char *argv[] )
1118 int i;
1119 unsigned int off;
1120 char *p, *name, *end;
1122 /* set the process short name */
1123 for (p = name = argv[1]; *p; p++) if (p[0] == '/' && p[1]) name = p + 1;
1124 if (wld_prctl( 15 /* PR_SET_NAME */, (long)name ) == -1) return;
1126 /* find the end of the argv array and move everything down */
1127 end = argv[argc - 1];
1128 while (*end) end++;
1129 off = argv[1] - argv[0];
1130 for (p = argv[1]; p <= end; p++) *(p - off) = *p;
1131 wld_memset( end - off, 0, off );
1132 for (i = 1; i < argc; i++) argv[i] -= off;
1137 * wld_start
1139 * Repeat the actions the kernel would do when loading a dynamically linked .so
1140 * Load the binary and then its ELF interpreter.
1141 * Note, we assume that the binary is a dynamically linked ELF shared object.
1143 void* wld_start( void **stack )
1145 long i, *pargc;
1146 char **argv, **p;
1147 char *interp, *reserve = NULL;
1148 ElfW(auxv_t) new_av[12], delete_av[3], *av;
1149 struct wld_link_map main_binary_map, ld_so_map;
1150 struct wine_preload_info **wine_main_preload_info;
1152 pargc = *stack;
1153 argv = (char **)pargc + 1;
1154 if (*pargc < 2) fatal_error( "Usage: %s wine_binary [args]\n", argv[0] );
1156 /* skip over the parameters */
1157 p = argv + *pargc + 1;
1159 /* skip over the environment */
1160 while (*p)
1162 static const char res[] = "WINEPRELOADRESERVE=";
1163 if (!wld_strncmp( *p, res, sizeof(res)-1 )) reserve = *p + sizeof(res) - 1;
1164 p++;
1167 av = (ElfW(auxv_t)*) (p+1);
1168 page_size = get_auxiliary( av, AT_PAGESZ, 4096 );
1169 page_mask = page_size - 1;
1171 preloader_start = (char *)_start - ((unsigned long)_start & page_mask);
1172 preloader_end = (char *)((unsigned long)(_end + page_mask) & ~page_mask);
1174 #ifdef DUMP_AUX_INFO
1175 wld_printf( "stack = %p\n", *stack );
1176 for( i = 0; i < *pargc; i++ ) wld_printf("argv[%lx] = %s\n", i, argv[i]);
1177 dump_auxiliary( av );
1178 #endif
1180 /* reserve memory that Wine needs */
1181 if (reserve) preload_reserve( reserve );
1182 for (i = 0; preload_info[i].size; i++)
1184 if ((char *)av >= (char *)preload_info[i].addr &&
1185 (char *)pargc <= (char *)preload_info[i].addr + preload_info[i].size)
1187 remove_preload_range( i );
1188 i--;
1190 else if (wld_mmap( preload_info[i].addr, preload_info[i].size, PROT_NONE,
1191 MAP_FIXED | MAP_PRIVATE | MAP_ANON | MAP_NORESERVE, -1, 0 ) == (void *)-1)
1193 /* don't warn for low 64k */
1194 if (preload_info[i].addr >= (void *)0x10000)
1195 wld_printf( "preloader: Warning: failed to reserve range %p-%p\n",
1196 preload_info[i].addr, (char *)preload_info[i].addr + preload_info[i].size );
1197 remove_preload_range( i );
1198 i--;
1202 /* add an executable page at the top of the address space to defeat
1203 * broken no-exec protections that play with the code selector limit */
1204 if (is_addr_reserved( (char *)0x80000000 - page_size ))
1205 wld_mprotect( (char *)0x80000000 - page_size, page_size, PROT_EXEC | PROT_READ );
1207 /* load the main binary */
1208 map_so_lib( argv[1], &main_binary_map );
1210 /* load the ELF interpreter */
1211 interp = (char *)main_binary_map.l_addr + main_binary_map.l_interp;
1212 map_so_lib( interp, &ld_so_map );
1214 /* store pointer to the preload info into the appropriate main binary variable */
1215 wine_main_preload_info = find_symbol( main_binary_map.l_phdr, main_binary_map.l_phnum,
1216 "wine_main_preload_info", STT_OBJECT );
1217 if (wine_main_preload_info) *wine_main_preload_info = preload_info;
1218 else wld_printf( "wine_main_preload_info not found\n" );
1220 #define SET_NEW_AV(n,type,val) new_av[n].a_type = (type); new_av[n].a_un.a_val = (val);
1221 SET_NEW_AV( 0, AT_PHDR, (unsigned long)main_binary_map.l_phdr );
1222 SET_NEW_AV( 1, AT_PHENT, sizeof(ElfW(Phdr)) );
1223 SET_NEW_AV( 2, AT_PHNUM, main_binary_map.l_phnum );
1224 SET_NEW_AV( 3, AT_PAGESZ, page_size );
1225 SET_NEW_AV( 4, AT_BASE, ld_so_map.l_addr );
1226 SET_NEW_AV( 5, AT_FLAGS, get_auxiliary( av, AT_FLAGS, 0 ) );
1227 SET_NEW_AV( 6, AT_ENTRY, main_binary_map.l_entry );
1228 SET_NEW_AV( 7, AT_UID, get_auxiliary( av, AT_UID, wld_getuid() ) );
1229 SET_NEW_AV( 8, AT_EUID, get_auxiliary( av, AT_EUID, wld_geteuid() ) );
1230 SET_NEW_AV( 9, AT_GID, get_auxiliary( av, AT_GID, wld_getgid() ) );
1231 SET_NEW_AV(10, AT_EGID, get_auxiliary( av, AT_EGID, wld_getegid() ) );
1232 SET_NEW_AV(11, AT_NULL, 0 );
1233 #undef SET_NEW_AV
1235 i = 0;
1236 /* delete sysinfo values if addresses conflict */
1237 if (is_in_preload_range( av, AT_SYSINFO ) || is_in_preload_range( av, AT_SYSINFO_EHDR ))
1239 delete_av[i++].a_type = AT_SYSINFO;
1240 delete_av[i++].a_type = AT_SYSINFO_EHDR;
1242 delete_av[i].a_type = AT_NULL;
1244 /* get rid of first argument */
1245 set_process_name( *pargc, argv );
1246 pargc[1] = pargc[0] - 1;
1247 *stack = pargc + 1;
1249 set_auxiliary_values( av, new_av, delete_av, stack );
1251 #ifdef DUMP_AUX_INFO
1252 wld_printf("new stack = %p\n", *stack);
1253 wld_printf("jumping to %p\n", (void *)ld_so_map.l_entry);
1254 #endif
1256 return (void *)ld_so_map.l_entry;