po: Update Norwegian translation.
[wine.git] / loader / preloader.c
blob644244bc30f5aeaec75e0ebb9b3ba58e382bc8aa
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
130 #undef DUMP_MAPS
132 /* older systems may not define these */
133 #ifndef PT_TLS
134 #define PT_TLS 7
135 #endif
137 #ifndef AT_SYSINFO
138 #define AT_SYSINFO 32
139 #endif
140 #ifndef AT_SYSINFO_EHDR
141 #define AT_SYSINFO_EHDR 33
142 #endif
144 #ifndef DT_GNU_HASH
145 #define DT_GNU_HASH 0x6ffffef5
146 #endif
148 static size_t page_size, page_mask;
149 static char *preloader_start, *preloader_end;
151 struct wld_link_map {
152 ElfW(Addr) l_addr;
153 ElfW(Dyn) *l_ld;
154 ElfW(Phdr)*l_phdr;
155 ElfW(Addr) l_entry;
156 ElfW(Half) l_ldnum;
157 ElfW(Half) l_phnum;
158 ElfW(Addr) l_map_start, l_map_end;
159 ElfW(Addr) l_interp;
162 struct wld_auxv
164 ElfW(Addr) a_type;
165 union
167 ElfW(Addr) a_val;
168 } a_un;
172 * The __bb_init_func is an empty function only called when file is
173 * compiled with gcc flags "-fprofile-arcs -ftest-coverage". This
174 * function is normally provided by libc's startup files, but since we
175 * build the preloader with "-nostartfiles -nodefaultlibs", we have to
176 * provide our own (empty) version, otherwise linker fails.
178 void __bb_init_func(void) { return; }
180 /* similar to the above but for -fstack-protector */
181 void *__stack_chk_guard = 0;
182 void __stack_chk_fail_local(void) { return; }
183 void __stack_chk_fail(void) { return; }
185 #ifdef __i386__
187 /* data for setting up the glibc-style thread-local storage in %gs */
189 static int thread_data[256];
191 struct
193 /* this is the kernel modify_ldt struct */
194 unsigned int entry_number;
195 unsigned long base_addr;
196 unsigned int limit;
197 unsigned int seg_32bit : 1;
198 unsigned int contents : 2;
199 unsigned int read_exec_only : 1;
200 unsigned int limit_in_pages : 1;
201 unsigned int seg_not_present : 1;
202 unsigned int usable : 1;
203 unsigned int garbage : 25;
204 } thread_ldt = { -1, (unsigned long)thread_data, 0xfffff, 1, 0, 0, 1, 0, 1, 0 };
208 * The _start function is the entry and exit point of this program
210 * It calls wld_start, passing a pointer to the args it receives
211 * then jumps to the address wld_start returns.
213 void _start(void);
214 extern char _end[];
215 __ASM_GLOBAL_FUNC(_start,
216 __ASM_CFI("\t.cfi_undefined %eip\n")
217 "\tmovl $243,%eax\n" /* SYS_set_thread_area */
218 "\tmovl $thread_ldt,%ebx\n"
219 "\tint $0x80\n" /* allocate gs segment */
220 "\torl %eax,%eax\n"
221 "\tjl 1f\n"
222 "\tmovl thread_ldt,%eax\n" /* thread_ldt.entry_number */
223 "\tshl $3,%eax\n"
224 "\torl $3,%eax\n"
225 "\tmov %ax,%gs\n"
226 "\tmov %ax,%fs\n" /* set %fs too so libwine can retrieve it later on */
227 "1:\tmovl %esp,%eax\n"
228 "\tleal -136(%esp),%esp\n" /* allocate some space for extra aux values */
229 "\tpushl %eax\n" /* orig stack pointer */
230 "\tpushl %esp\n" /* ptr to orig stack pointer */
231 "\tcall wld_start\n"
232 "\tpopl %ecx\n" /* remove ptr to stack pointer */
233 "\tpopl %esp\n" /* new stack pointer */
234 "\tpush %eax\n" /* ELF interpreter entry point */
235 "\txor %eax,%eax\n"
236 "\txor %ecx,%ecx\n"
237 "\txor %edx,%edx\n"
238 "\tmov %ax,%gs\n" /* clear %gs again */
239 "\tret\n")
241 /* wrappers for Linux system calls */
243 #define SYSCALL_RET(ret) (((ret) < 0 && (ret) > -4096) ? -1 : (ret))
245 static inline __attribute__((noreturn)) void wld_exit( int code )
247 for (;;) /* avoid warning */
248 __asm__ __volatile__( "pushl %%ebx; movl %1,%%ebx; int $0x80; popl %%ebx"
249 : : "a" (1 /* SYS_exit */), "r" (code) );
252 static inline int wld_open( const char *name, int flags )
254 int ret;
255 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
256 : "=a" (ret) : "0" (5 /* SYS_open */), "r" (name), "c" (flags) );
257 return SYSCALL_RET(ret);
260 static inline int wld_close( int fd )
262 int ret;
263 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
264 : "=a" (ret) : "0" (6 /* SYS_close */), "r" (fd) );
265 return SYSCALL_RET(ret);
268 static inline ssize_t wld_read( int fd, void *buffer, size_t len )
270 int ret;
271 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
272 : "=a" (ret)
273 : "0" (3 /* SYS_read */), "r" (fd), "c" (buffer), "d" (len)
274 : "memory" );
275 return SYSCALL_RET(ret);
278 static inline ssize_t wld_write( int fd, const void *buffer, size_t len )
280 int ret;
281 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
282 : "=a" (ret) : "0" (4 /* SYS_write */), "r" (fd), "c" (buffer), "d" (len) );
283 return SYSCALL_RET(ret);
286 static inline int wld_mprotect( const void *addr, size_t len, int prot )
288 int ret;
289 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
290 : "=a" (ret) : "0" (125 /* SYS_mprotect */), "r" (addr), "c" (len), "d" (prot) );
291 return SYSCALL_RET(ret);
294 void *wld_mmap( void *start, size_t len, int prot, int flags, int fd, unsigned int offset );
295 __ASM_GLOBAL_FUNC(wld_mmap,
296 "\tpushl %ebp\n"
297 __ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
298 "\tpushl %ebx\n"
299 __ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
300 "\tpushl %esi\n"
301 __ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
302 "\tpushl %edi\n"
303 __ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
304 "\tmovl $192,%eax\n" /* SYS_mmap2 */
305 "\tmovl 20(%esp),%ebx\n" /* start */
306 "\tmovl 24(%esp),%ecx\n" /* len */
307 "\tmovl 28(%esp),%edx\n" /* prot */
308 "\tmovl 32(%esp),%esi\n" /* flags */
309 "\tmovl 36(%esp),%edi\n" /* fd */
310 "\tmovl 40(%esp),%ebp\n" /* offset */
311 "\tshrl $12,%ebp\n"
312 "\tint $0x80\n"
313 "\tcmpl $-4096,%eax\n"
314 "\tjbe 2f\n"
315 "\tcmpl $-38,%eax\n" /* ENOSYS */
316 "\tjne 1f\n"
317 "\tmovl $90,%eax\n" /* SYS_mmap */
318 "\tleal 20(%esp),%ebx\n"
319 "\tint $0x80\n"
320 "\tcmpl $-4096,%eax\n"
321 "\tjbe 2f\n"
322 "1:\tmovl $-1,%eax\n"
323 "2:\tpopl %edi\n"
324 __ASM_CFI(".cfi_adjust_cfa_offset -4\n\t")
325 "\tpopl %esi\n"
326 __ASM_CFI(".cfi_adjust_cfa_offset -4\n\t")
327 "\tpopl %ebx\n"
328 __ASM_CFI(".cfi_adjust_cfa_offset -4\n\t")
329 "\tpopl %ebp\n"
330 __ASM_CFI(".cfi_adjust_cfa_offset -4\n\t")
331 "\tret\n" )
333 static inline int wld_prctl( int code, long arg )
335 int ret;
336 __asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
337 : "=a" (ret) : "0" (172 /* SYS_prctl */), "r" (code), "c" (arg) );
338 return SYSCALL_RET(ret);
341 #elif defined(__x86_64__)
343 void *thread_data[256];
346 * The _start function is the entry and exit point of this program
348 * It calls wld_start, passing a pointer to the args it receives
349 * then jumps to the address wld_start returns.
351 void _start(void);
352 extern char _end[];
353 __ASM_GLOBAL_FUNC(_start,
354 __ASM_CFI(".cfi_undefined %rip\n\t")
355 "movq %rsp,%rax\n\t"
356 "leaq -144(%rsp),%rsp\n\t" /* allocate some space for extra aux values */
357 "movq %rax,(%rsp)\n\t" /* orig stack pointer */
358 "movq $thread_data,%rsi\n\t"
359 "movq $0x1002,%rdi\n\t" /* ARCH_SET_FS */
360 "movq $158,%rax\n\t" /* SYS_arch_prctl */
361 "syscall\n\t"
362 "movq %rsp,%rdi\n\t" /* ptr to orig stack pointer */
363 "call wld_start\n\t"
364 "movq (%rsp),%rsp\n\t" /* new stack pointer */
365 "pushq %rax\n\t" /* ELF interpreter entry point */
366 "xorq %rax,%rax\n\t"
367 "xorq %rcx,%rcx\n\t"
368 "xorq %rdx,%rdx\n\t"
369 "xorq %rsi,%rsi\n\t"
370 "xorq %rdi,%rdi\n\t"
371 "xorq %r8,%r8\n\t"
372 "xorq %r9,%r9\n\t"
373 "xorq %r10,%r10\n\t"
374 "xorq %r11,%r11\n\t"
375 "ret")
377 #define SYSCALL_FUNC( name, nr ) \
378 __ASM_GLOBAL_FUNC( name, \
379 "movq $" #nr ",%rax\n\t" \
380 "movq %rcx,%r10\n\t" \
381 "syscall\n\t" \
382 "leaq 4096(%rax),%rcx\n\t" \
383 "movq $-1,%rdx\n\t" \
384 "cmp $4096,%rcx\n\t" \
385 "cmovb %rdx,%rax\n\t" \
386 "ret" )
388 #define SYSCALL_NOERR( name, nr ) \
389 __ASM_GLOBAL_FUNC( name, \
390 "movq $" #nr ",%rax\n\t" \
391 "syscall\n\t" \
392 "ret" )
394 void wld_exit( int code ) __attribute__((noreturn));
395 SYSCALL_NOERR( wld_exit, 60 /* SYS_exit */ );
397 ssize_t wld_read( int fd, void *buffer, size_t len );
398 SYSCALL_FUNC( wld_read, 0 /* SYS_read */ );
400 ssize_t wld_write( int fd, const void *buffer, size_t len );
401 SYSCALL_FUNC( wld_write, 1 /* SYS_write */ );
403 int wld_open( const char *name, int flags );
404 SYSCALL_FUNC( wld_open, 2 /* SYS_open */ );
406 int wld_close( int fd );
407 SYSCALL_FUNC( wld_close, 3 /* SYS_close */ );
409 void *wld_mmap( void *start, size_t len, int prot, int flags, int fd, off_t offset );
410 SYSCALL_FUNC( wld_mmap, 9 /* SYS_mmap */ );
412 int wld_mprotect( const void *addr, size_t len, int prot );
413 SYSCALL_FUNC( wld_mprotect, 10 /* SYS_mprotect */ );
415 int wld_prctl( int code, long arg );
416 SYSCALL_FUNC( wld_prctl, 157 /* SYS_prctl */ );
418 uid_t wld_getuid(void);
419 SYSCALL_NOERR( wld_getuid, 102 /* SYS_getuid */ );
421 gid_t wld_getgid(void);
422 SYSCALL_NOERR( wld_getgid, 104 /* SYS_getgid */ );
424 uid_t wld_geteuid(void);
425 SYSCALL_NOERR( wld_geteuid, 107 /* SYS_geteuid */ );
427 gid_t wld_getegid(void);
428 SYSCALL_NOERR( wld_getegid, 108 /* SYS_getegid */ );
430 #elif defined(__aarch64__)
432 void *thread_data[256];
435 * The _start function is the entry and exit point of this program
437 * It calls wld_start, passing a pointer to the args it receives
438 * then jumps to the address wld_start returns.
440 void _start(void);
441 extern char _end[];
442 __ASM_GLOBAL_FUNC(_start,
443 "mov x0, SP\n\t"
444 "sub SP, SP, #144\n\t" /* allocate some space for extra aux values */
445 "str x0, [SP]\n\t" /* orig stack pointer */
446 "ldr x0, =thread_data\n\t"
447 "msr tpidr_el0, x0\n\t"
448 "mov x0, SP\n\t" /* ptr to orig stack pointer */
449 "bl wld_start\n\t"
450 "ldr x1, [SP]\n\t" /* new stack pointer */
451 "mov SP, x1\n\t"
452 "mov x30, x0\n\t"
453 "mov x0, #0\n\t"
454 "mov x1, #0\n\t"
455 "mov x2, #0\n\t"
456 "mov x3, #0\n\t"
457 "mov x4, #0\n\t"
458 "mov x5, #0\n\t"
459 "mov x6, #0\n\t"
460 "mov x7, #0\n\t"
461 "mov x8, #0\n\t"
462 "mov x9, #0\n\t"
463 "mov x10, #0\n\t"
464 "mov x11, #0\n\t"
465 "mov x12, #0\n\t"
466 "mov x13, #0\n\t"
467 "mov x14, #0\n\t"
468 "mov x15, #0\n\t"
469 "mov x16, #0\n\t"
470 "mov x17, #0\n\t"
471 "mov x18, #0\n\t"
472 "ret")
474 #define SYSCALL_FUNC( name, nr ) \
475 __ASM_GLOBAL_FUNC( name, \
476 "stp x8, x9, [SP, #-16]!\n\t" \
477 "mov x8, #" #nr "\n\t" \
478 "svc #0\n\t" \
479 "ldp x8, x9, [SP], #16\n\t" \
480 "cmn x0, #1, lsl#12\n\t" \
481 "cinv x0, x0, hi\n\t" \
482 "b.hi 1f\n\t" \
483 "ret\n\t" \
484 "1: mov x0, #-1\n\t" \
485 "ret" )
487 #define SYSCALL_NOERR( name, nr ) \
488 __ASM_GLOBAL_FUNC( name, \
489 "stp x8, x9, [SP, #-16]!\n\t" \
490 "mov x8, #" #nr "\n\t" \
491 "svc #0\n\t" \
492 "ldp x8, x9, [SP], #16\n\t" \
493 "ret" )
495 void wld_exit( int code ) __attribute__((noreturn));
496 SYSCALL_NOERR( wld_exit, 93 /* SYS_exit */ );
498 ssize_t wld_read( int fd, void *buffer, size_t len );
499 SYSCALL_FUNC( wld_read, 63 /* SYS_read */ );
501 ssize_t wld_write( int fd, const void *buffer, size_t len );
502 SYSCALL_FUNC( wld_write, 64 /* SYS_write */ );
504 int wld_openat( int dirfd, const char *name, int flags );
505 SYSCALL_FUNC( wld_openat, 56 /* SYS_openat */ );
507 int wld_open( const char *name, int flags )
509 return wld_openat(-100 /* AT_FDCWD */, name, flags);
512 int wld_close( int fd );
513 SYSCALL_FUNC( wld_close, 57 /* SYS_close */ );
515 void *wld_mmap( void *start, size_t len, int prot, int flags, int fd, off_t offset );
516 SYSCALL_FUNC( wld_mmap, 222 /* SYS_mmap */ );
518 int wld_mprotect( const void *addr, size_t len, int prot );
519 SYSCALL_FUNC( wld_mprotect, 226 /* SYS_mprotect */ );
521 int wld_prctl( int code, long arg );
522 SYSCALL_FUNC( wld_prctl, 167 /* SYS_prctl */ );
524 uid_t wld_getuid(void);
525 SYSCALL_NOERR( wld_getuid, 174 /* SYS_getuid */ );
527 gid_t wld_getgid(void);
528 SYSCALL_NOERR( wld_getgid, 176 /* SYS_getgid */ );
530 uid_t wld_geteuid(void);
531 SYSCALL_NOERR( wld_geteuid, 175 /* SYS_geteuid */ );
533 gid_t wld_getegid(void);
534 SYSCALL_NOERR( wld_getegid, 177 /* SYS_getegid */ );
536 #else
537 #error preloader not implemented for this CPU
538 #endif
540 /* replacement for libc functions */
542 static int wld_strcmp( const char *str1, const char *str2 )
544 while (*str1 && (*str1 == *str2)) { str1++; str2++; }
545 return *str1 - *str2;
548 static int wld_strncmp( const char *str1, const char *str2, size_t len )
550 if (len <= 0) return 0;
551 while ((--len > 0) && *str1 && (*str1 == *str2)) { str1++; str2++; }
552 return *str1 - *str2;
555 static inline void *wld_memset( void *dest, int val, size_t len )
557 char *dst = dest;
558 while (len--) *dst++ = val;
559 return dest;
563 * wld_printf - just the basics
565 * %x prints a hex number
566 * %s prints a string
567 * %p prints a pointer
569 static int wld_vsprintf(char *buffer, const char *fmt, va_list args )
571 static const char hex_chars[16] = "0123456789abcdef";
572 const char *p = fmt;
573 char *str = buffer;
574 int i;
576 while( *p )
578 if( *p == '%' )
580 p++;
581 if( *p == 'x' )
583 unsigned int x = va_arg( args, unsigned int );
584 for (i = 2*sizeof(x) - 1; i >= 0; i--)
585 *str++ = hex_chars[(x>>(i*4))&0xf];
587 else if (p[0] == 'l' && p[1] == 'x')
589 unsigned long x = va_arg( args, unsigned long );
590 for (i = 2*sizeof(x) - 1; i >= 0; i--)
591 *str++ = hex_chars[(x>>(i*4))&0xf];
592 p++;
594 else if( *p == 'p' )
596 unsigned long x = (unsigned long)va_arg( args, void * );
597 for (i = 2*sizeof(x) - 1; i >= 0; i--)
598 *str++ = hex_chars[(x>>(i*4))&0xf];
600 else if( *p == 's' )
602 char *s = va_arg( args, char * );
603 while(*s)
604 *str++ = *s++;
606 else if( *p == 0 )
607 break;
608 p++;
610 *str++ = *p++;
612 *str = 0;
613 return str - buffer;
616 static __attribute__((format(printf,1,2))) void wld_printf(const char *fmt, ... )
618 va_list args;
619 char buffer[256];
620 int len;
622 va_start( args, fmt );
623 len = wld_vsprintf(buffer, fmt, args );
624 va_end( args );
625 wld_write(2, buffer, len);
628 static __attribute__((noreturn,format(printf,1,2))) void fatal_error(const char *fmt, ... )
630 va_list args;
631 char buffer[256];
632 int len;
634 va_start( args, fmt );
635 len = wld_vsprintf(buffer, fmt, args );
636 va_end( args );
637 wld_write(2, buffer, len);
638 wld_exit(1);
641 #ifdef DUMP_AUX_INFO
643 * Dump interesting bits of the ELF auxv_t structure that is passed
644 * as the 4th parameter to the _start function
646 static void dump_auxiliary( struct wld_auxv *av )
648 #define NAME(at) { at, #at }
649 static const struct { int val; const char *name; } names[] =
651 NAME(AT_BASE),
652 NAME(AT_CLKTCK),
653 NAME(AT_EGID),
654 NAME(AT_ENTRY),
655 NAME(AT_EUID),
656 NAME(AT_FLAGS),
657 NAME(AT_GID),
658 NAME(AT_HWCAP),
659 NAME(AT_PAGESZ),
660 NAME(AT_PHDR),
661 NAME(AT_PHENT),
662 NAME(AT_PHNUM),
663 NAME(AT_PLATFORM),
664 NAME(AT_SYSINFO),
665 NAME(AT_SYSINFO_EHDR),
666 NAME(AT_UID),
667 { 0, NULL }
669 #undef NAME
671 int i;
673 for ( ; av->a_type != AT_NULL; av++)
675 for (i = 0; names[i].name; i++) if (names[i].val == av->a_type) break;
676 if (names[i].name) wld_printf("%s = %lx\n", names[i].name, (unsigned long)av->a_un.a_val);
677 else wld_printf( "%lx = %lx\n", (unsigned long)av->a_type, (unsigned long)av->a_un.a_val );
680 #endif
683 * set_auxiliary_values
685 * Set the new auxiliary values
687 static void set_auxiliary_values( struct wld_auxv *av, const struct wld_auxv *new_av,
688 const struct wld_auxv *delete_av, void **stack )
690 int i, j, av_count = 0, new_count = 0, delete_count = 0;
691 char *src, *dst;
693 /* count how many aux values we have already */
694 while (av[av_count].a_type != AT_NULL) av_count++;
696 /* delete unwanted values */
697 for (j = 0; delete_av[j].a_type != AT_NULL; j++)
699 for (i = 0; i < av_count; i++) if (av[i].a_type == delete_av[j].a_type)
701 av[i].a_type = av[av_count-1].a_type;
702 av[i].a_un.a_val = av[av_count-1].a_un.a_val;
703 av[--av_count].a_type = AT_NULL;
704 delete_count++;
705 break;
709 /* count how many values we have in new_av that aren't in av */
710 for (j = 0; new_av[j].a_type != AT_NULL; j++)
712 for (i = 0; i < av_count; i++) if (av[i].a_type == new_av[j].a_type) break;
713 if (i == av_count) new_count++;
716 src = (char *)*stack;
717 dst = src - (new_count - delete_count) * sizeof(*av);
718 dst = (char *)((unsigned long)dst & ~15);
719 if (dst < src) /* need to make room for the extra values */
721 int len = (char *)(av + av_count + 1) - src;
722 for (i = 0; i < len; i++) dst[i] = src[i];
724 else if (dst > src) /* get rid of unused values */
726 int len = (char *)(av + av_count + 1) - src;
727 for (i = len - 1; i >= 0; i--) dst[i] = src[i];
729 *stack = dst;
730 av = (struct wld_auxv *)((char *)av + (dst - src));
732 /* now set the values */
733 for (j = 0; new_av[j].a_type != AT_NULL; j++)
735 for (i = 0; i < av_count; i++) if (av[i].a_type == new_av[j].a_type) break;
736 if (i < av_count) av[i].a_un.a_val = new_av[j].a_un.a_val;
737 else
739 av[av_count].a_type = new_av[j].a_type;
740 av[av_count].a_un.a_val = new_av[j].a_un.a_val;
741 av_count++;
745 #ifdef DUMP_AUX_INFO
746 wld_printf("New auxiliary info:\n");
747 dump_auxiliary( av );
748 #endif
752 * get_auxiliary
754 * Get a field of the auxiliary structure
756 static int get_auxiliary( struct wld_auxv *av, int type, int def_val )
758 for ( ; av->a_type != AT_NULL; av++)
759 if( av->a_type == type ) return av->a_un.a_val;
760 return def_val;
764 * map_so_lib
766 * modelled after _dl_map_object_from_fd() from glibc-2.3.1/elf/dl-load.c
768 * This function maps the segments from an ELF object, and optionally
769 * stores information about the mapping into the auxv_t structure.
771 static void map_so_lib( const char *name, struct wld_link_map *l)
773 int fd;
774 unsigned char buf[0x800];
775 ElfW(Ehdr) *header = (ElfW(Ehdr)*)buf;
776 ElfW(Phdr) *phdr, *ph;
777 /* Scan the program header table, collecting its load commands. */
778 struct loadcmd
780 ElfW(Addr) mapstart, mapend, dataend, allocend;
781 off_t mapoff;
782 int prot;
783 } loadcmds[16], *c;
784 size_t nloadcmds = 0, maplength;
786 fd = wld_open( name, O_RDONLY );
787 if (fd == -1) fatal_error("%s: could not open\n", name );
789 if (wld_read( fd, buf, sizeof(buf) ) != sizeof(buf))
790 fatal_error("%s: failed to read ELF header\n", name);
792 phdr = (void*) (((unsigned char*)buf) + header->e_phoff);
794 if( ( header->e_ident[0] != 0x7f ) ||
795 ( header->e_ident[1] != 'E' ) ||
796 ( header->e_ident[2] != 'L' ) ||
797 ( header->e_ident[3] != 'F' ) )
798 fatal_error( "%s: not an ELF binary... don't know how to load it\n", name );
800 #ifdef __i386__
801 if( header->e_machine != EM_386 )
802 fatal_error("%s: not an i386 ELF binary... don't know how to load it\n", name );
803 #elif defined(__x86_64__)
804 if( header->e_machine != EM_X86_64 )
805 fatal_error("%s: not an x86-64 ELF binary... don't know how to load it\n", name );
806 #elif defined(__aarch64__)
807 if( header->e_machine != EM_AARCH64 )
808 fatal_error("%s: not an aarch64 ELF binary... don't know how to load it\n", name );
809 #endif
811 if (header->e_phnum > sizeof(loadcmds)/sizeof(loadcmds[0]))
812 fatal_error( "%s: oops... not enough space for load commands\n", name );
814 maplength = header->e_phnum * sizeof (ElfW(Phdr));
815 if (header->e_phoff + maplength > sizeof(buf))
816 fatal_error( "%s: oops... not enough space for ELF headers\n", name );
818 l->l_ld = 0;
819 l->l_addr = 0;
820 l->l_phdr = 0;
821 l->l_phnum = header->e_phnum;
822 l->l_entry = header->e_entry;
823 l->l_interp = 0;
825 for (ph = phdr; ph < &phdr[l->l_phnum]; ++ph)
828 #ifdef DUMP_SEGMENTS
829 wld_printf( "ph = %p\n", ph );
830 wld_printf( " p_type = %lx\n", (unsigned long)ph->p_type );
831 wld_printf( " p_flags = %lx\n", (unsigned long)ph->p_flags );
832 wld_printf( " p_offset = %lx\n", (unsigned long)ph->p_offset );
833 wld_printf( " p_vaddr = %lx\n", (unsigned long)ph->p_vaddr );
834 wld_printf( " p_paddr = %lx\n", (unsigned long)ph->p_paddr );
835 wld_printf( " p_filesz = %lx\n", (unsigned long)ph->p_filesz );
836 wld_printf( " p_memsz = %lx\n", (unsigned long)ph->p_memsz );
837 wld_printf( " p_align = %lx\n", (unsigned long)ph->p_align );
838 #endif
840 switch (ph->p_type)
842 /* These entries tell us where to find things once the file's
843 segments are mapped in. We record the addresses it says
844 verbatim, and later correct for the run-time load address. */
845 case PT_DYNAMIC:
846 l->l_ld = (void *) ph->p_vaddr;
847 l->l_ldnum = ph->p_memsz / sizeof (Elf32_Dyn);
848 break;
850 case PT_PHDR:
851 l->l_phdr = (void *) ph->p_vaddr;
852 break;
854 case PT_LOAD:
856 if ((ph->p_align & page_mask) != 0)
857 fatal_error( "%s: ELF load command alignment not page-aligned\n", name );
859 if (((ph->p_vaddr - ph->p_offset) & (ph->p_align - 1)) != 0)
860 fatal_error( "%s: ELF load command address/offset not properly aligned\n", name );
862 c = &loadcmds[nloadcmds++];
863 c->mapstart = ph->p_vaddr & ~(ph->p_align - 1);
864 c->mapend = ((ph->p_vaddr + ph->p_filesz + page_mask) & ~page_mask);
865 c->dataend = ph->p_vaddr + ph->p_filesz;
866 c->allocend = ph->p_vaddr + ph->p_memsz;
867 c->mapoff = ph->p_offset & ~(ph->p_align - 1);
869 c->prot = 0;
870 if (ph->p_flags & PF_R)
871 c->prot |= PROT_READ;
872 if (ph->p_flags & PF_W)
873 c->prot |= PROT_WRITE;
874 if (ph->p_flags & PF_X)
875 c->prot |= PROT_EXEC;
877 break;
879 case PT_INTERP:
880 l->l_interp = ph->p_vaddr;
881 break;
883 case PT_TLS:
885 * We don't need to set anything up because we're
886 * emulating the kernel, not ld-linux.so.2
887 * The ELF loader will set up the TLS data itself.
889 case PT_SHLIB:
890 case PT_NOTE:
891 default:
892 break;
896 /* Now process the load commands and map segments into memory. */
897 if (!nloadcmds)
898 fatal_error( "%s: no segments to load\n", name );
899 c = loadcmds;
901 /* Length of the sections to be loaded. */
902 maplength = loadcmds[nloadcmds - 1].allocend - c->mapstart;
904 if( header->e_type == ET_DYN )
906 ElfW(Addr) mappref;
907 mappref = (ELF_PREFERRED_ADDRESS (loader, maplength, c->mapstart)
908 - MAP_BASE_ADDR (l));
910 /* Remember which part of the address space this object uses. */
911 l->l_map_start = (ElfW(Addr)) wld_mmap ((void *) mappref, maplength,
912 c->prot, MAP_COPY | MAP_FILE,
913 fd, c->mapoff);
914 /* wld_printf("set : offset = %x\n", c->mapoff); */
915 /* wld_printf("l->l_map_start = %x\n", l->l_map_start); */
917 l->l_map_end = l->l_map_start + maplength;
918 l->l_addr = l->l_map_start - c->mapstart;
920 wld_mprotect ((caddr_t) (l->l_addr + c->mapend),
921 loadcmds[nloadcmds - 1].allocend - c->mapend,
922 PROT_NONE);
923 goto postmap;
925 else
927 /* sanity check */
928 if ((char *)c->mapstart + maplength > preloader_start &&
929 (char *)c->mapstart <= preloader_end)
930 fatal_error( "%s: binary overlaps preloader (%p-%p)\n",
931 name, (char *)c->mapstart, (char *)c->mapstart + maplength );
933 ELF_FIXED_ADDRESS (loader, c->mapstart);
936 /* Remember which part of the address space this object uses. */
937 l->l_map_start = c->mapstart + l->l_addr;
938 l->l_map_end = l->l_map_start + maplength;
940 while (c < &loadcmds[nloadcmds])
942 if (c->mapend > c->mapstart)
943 /* Map the segment contents from the file. */
944 wld_mmap ((void *) (l->l_addr + c->mapstart),
945 c->mapend - c->mapstart, c->prot,
946 MAP_FIXED | MAP_COPY | MAP_FILE, fd, c->mapoff);
948 postmap:
949 if (l->l_phdr == 0
950 && (ElfW(Off)) c->mapoff <= header->e_phoff
951 && ((size_t) (c->mapend - c->mapstart + c->mapoff)
952 >= header->e_phoff + header->e_phnum * sizeof (ElfW(Phdr))))
953 /* Found the program header in this segment. */
954 l->l_phdr = (void *)(unsigned long)(c->mapstart + header->e_phoff - c->mapoff);
956 if (c->allocend > c->dataend)
958 /* Extra zero pages should appear at the end of this segment,
959 after the data mapped from the file. */
960 ElfW(Addr) zero, zeroend, zeropage;
962 zero = l->l_addr + c->dataend;
963 zeroend = l->l_addr + c->allocend;
964 zeropage = (zero + page_mask) & ~page_mask;
967 * This is different from the dl-load load...
968 * ld-linux.so.2 relies on the whole page being zero'ed
970 zeroend = (zeroend + page_mask) & ~page_mask;
972 if (zeroend < zeropage)
974 /* All the extra data is in the last page of the segment.
975 We can just zero it. */
976 zeropage = zeroend;
979 if (zeropage > zero)
981 /* Zero the final part of the last page of the segment. */
982 if ((c->prot & PROT_WRITE) == 0)
984 /* Dag nab it. */
985 wld_mprotect ((caddr_t) (zero & ~page_mask), page_size, c->prot|PROT_WRITE);
987 wld_memset ((void *) zero, '\0', zeropage - zero);
988 if ((c->prot & PROT_WRITE) == 0)
989 wld_mprotect ((caddr_t) (zero & ~page_mask), page_size, c->prot);
992 if (zeroend > zeropage)
994 /* Map the remaining zero pages in from the zero fill FD. */
995 wld_mmap ((caddr_t) zeropage, zeroend - zeropage,
996 c->prot, MAP_ANON|MAP_PRIVATE|MAP_FIXED,
997 -1, 0);
1001 ++c;
1004 if (l->l_phdr == NULL) fatal_error("no program header\n");
1006 l->l_phdr = (void *)((ElfW(Addr))l->l_phdr + l->l_addr);
1007 l->l_entry += l->l_addr;
1009 wld_close( fd );
1013 static unsigned int wld_elf_hash( const char *name )
1015 unsigned int hi, hash = 0;
1016 while (*name)
1018 hash = (hash << 4) + (unsigned char)*name++;
1019 hi = hash & 0xf0000000;
1020 hash ^= hi;
1021 hash ^= hi >> 24;
1023 return hash;
1026 static unsigned int gnu_hash( const char *name )
1028 unsigned int h = 5381;
1029 while (*name) h = h * 33 + (unsigned char)*name++;
1030 return h;
1034 * Find a symbol in the symbol table of the executable loaded
1036 static void *find_symbol( const struct wld_link_map *map, const char *var, int type )
1038 const ElfW(Dyn) *dyn = NULL;
1039 const ElfW(Phdr) *ph;
1040 const ElfW(Sym) *symtab = NULL;
1041 const Elf32_Word *hashtab = NULL;
1042 const Elf32_Word *gnu_hashtab = NULL;
1043 const char *strings = NULL;
1044 Elf32_Word idx;
1046 /* check the values */
1047 #ifdef DUMP_SYMS
1048 wld_printf("%p %x\n", map->l_phdr, map->l_phnum );
1049 #endif
1050 /* parse the (already loaded) ELF executable's header */
1051 for (ph = map->l_phdr; ph < &map->l_phdr[map->l_phnum]; ++ph)
1053 if( PT_DYNAMIC == ph->p_type )
1055 dyn = (void *)(ph->p_vaddr + map->l_addr);
1056 break;
1059 if( !dyn ) return NULL;
1061 while( dyn->d_tag )
1063 if( dyn->d_tag == DT_STRTAB )
1064 strings = (const char*)(dyn->d_un.d_ptr + map->l_addr);
1065 if( dyn->d_tag == DT_SYMTAB )
1066 symtab = (const ElfW(Sym) *)(dyn->d_un.d_ptr + map->l_addr);
1067 if( dyn->d_tag == DT_HASH )
1068 hashtab = (const Elf32_Word *)(dyn->d_un.d_ptr + map->l_addr);
1069 if( dyn->d_tag == DT_GNU_HASH )
1070 gnu_hashtab = (const Elf32_Word *)(dyn->d_un.d_ptr + map->l_addr);
1071 #ifdef DUMP_SYMS
1072 wld_printf("%lx %p\n", (unsigned long)dyn->d_tag, (void *)dyn->d_un.d_ptr );
1073 #endif
1074 dyn++;
1077 if( (!symtab) || (!strings) ) return NULL;
1079 if (gnu_hashtab) /* new style hash table */
1081 const unsigned int hash = gnu_hash(var);
1082 const Elf32_Word nbuckets = gnu_hashtab[0];
1083 const Elf32_Word symbias = gnu_hashtab[1];
1084 const Elf32_Word nwords = gnu_hashtab[2];
1085 const ElfW(Addr) *bitmask = (const ElfW(Addr) *)(gnu_hashtab + 4);
1086 const Elf32_Word *buckets = (const Elf32_Word *)(bitmask + nwords);
1087 const Elf32_Word *chains = buckets + nbuckets - symbias;
1089 if (!(idx = buckets[hash % nbuckets])) return NULL;
1092 if ((chains[idx] & ~1u) == (hash & ~1u) &&
1093 ELF32_ST_BIND(symtab[idx].st_info) == STB_GLOBAL &&
1094 ELF32_ST_TYPE(symtab[idx].st_info) == type &&
1095 !wld_strcmp( strings + symtab[idx].st_name, var ))
1096 goto found;
1097 } while (!(chains[idx++] & 1u));
1099 else if (hashtab) /* old style hash table */
1101 const unsigned int hash = wld_elf_hash(var);
1102 const Elf32_Word nbuckets = hashtab[0];
1103 const Elf32_Word *buckets = hashtab + 2;
1104 const Elf32_Word *chains = buckets + nbuckets;
1106 for (idx = buckets[hash % nbuckets]; idx; idx = chains[idx])
1108 if (ELF32_ST_BIND(symtab[idx].st_info) == STB_GLOBAL &&
1109 ELF32_ST_TYPE(symtab[idx].st_info) == type &&
1110 !wld_strcmp( strings + symtab[idx].st_name, var ))
1111 goto found;
1114 return NULL;
1116 found:
1117 #ifdef DUMP_SYMS
1118 wld_printf("Found %s -> %p\n", strings + symtab[idx].st_name, (void *)symtab[idx].st_value );
1119 #endif
1120 return (void *)(symtab[idx].st_value + map->l_addr);
1124 * preload_reserve
1126 * Reserve a range specified in string format
1128 static void preload_reserve( const char *str )
1130 const char *p;
1131 unsigned long result = 0;
1132 void *start = NULL, *end = NULL;
1133 int i, first = 1;
1135 for (p = str; *p; p++)
1137 if (*p >= '0' && *p <= '9') result = result * 16 + *p - '0';
1138 else if (*p >= 'a' && *p <= 'f') result = result * 16 + *p - 'a' + 10;
1139 else if (*p >= 'A' && *p <= 'F') result = result * 16 + *p - 'A' + 10;
1140 else if (*p == '-')
1142 if (!first) goto error;
1143 start = (void *)(result & ~page_mask);
1144 result = 0;
1145 first = 0;
1147 else goto error;
1149 if (!first) end = (void *)((result + page_mask) & ~page_mask);
1150 else if (result) goto error; /* single value '0' is allowed */
1152 /* sanity checks */
1153 if (end <= start) start = end = NULL;
1154 else if ((char *)end > preloader_start &&
1155 (char *)start <= preloader_end)
1157 wld_printf( "WINEPRELOADRESERVE range %p-%p overlaps preloader %p-%p\n",
1158 start, end, preloader_start, preloader_end );
1159 start = end = NULL;
1162 /* check for overlap with low memory areas */
1163 for (i = 0; preload_info[i].size; i++)
1165 if ((char *)preload_info[i].addr > (char *)0x00110000) break;
1166 if ((char *)end <= (char *)preload_info[i].addr + preload_info[i].size)
1168 start = end = NULL;
1169 break;
1171 if ((char *)start < (char *)preload_info[i].addr + preload_info[i].size)
1172 start = (char *)preload_info[i].addr + preload_info[i].size;
1175 while (preload_info[i].size) i++;
1176 preload_info[i].addr = start;
1177 preload_info[i].size = (char *)end - (char *)start;
1178 return;
1180 error:
1181 fatal_error( "invalid WINEPRELOADRESERVE value '%s'\n", str );
1184 /* check if address is in one of the reserved ranges */
1185 static int is_addr_reserved( const void *addr )
1187 int i;
1189 for (i = 0; preload_info[i].size; i++)
1191 if ((const char *)addr >= (const char *)preload_info[i].addr &&
1192 (const char *)addr < (const char *)preload_info[i].addr + preload_info[i].size)
1193 return 1;
1195 return 0;
1198 /* remove a range from the preload list */
1199 static void remove_preload_range( int i )
1201 while (preload_info[i].size)
1203 preload_info[i].addr = preload_info[i+1].addr;
1204 preload_info[i].size = preload_info[i+1].size;
1205 i++;
1210 * is_in_preload_range
1212 * Check if address of the given aux value is in one of the reserved ranges
1214 static int is_in_preload_range( const struct wld_auxv *av, int type )
1216 while (av->a_type != AT_NULL)
1218 if (av->a_type == type) return is_addr_reserved( (const void *)av->a_un.a_val );
1219 av++;
1221 return 0;
1224 /* set the process name if supported */
1225 static void set_process_name( int argc, char *argv[] )
1227 int i;
1228 unsigned int off;
1229 char *p, *name, *end;
1231 /* set the process short name */
1232 for (p = name = argv[1]; *p; p++) if (p[0] == '/' && p[1]) name = p + 1;
1233 if (wld_prctl( 15 /* PR_SET_NAME */, (long)name ) == -1) return;
1235 /* find the end of the argv array and move everything down */
1236 end = argv[argc - 1];
1237 while (*end) end++;
1238 off = argv[1] - argv[0];
1239 for (p = argv[1]; p <= end; p++) *(p - off) = *p;
1240 wld_memset( end - off, 0, off );
1241 for (i = 1; i < argc; i++) argv[i] -= off;
1246 * wld_start
1248 * Repeat the actions the kernel would do when loading a dynamically linked .so
1249 * Load the binary and then its ELF interpreter.
1250 * Note, we assume that the binary is a dynamically linked ELF shared object.
1252 void* wld_start( void **stack )
1254 long i, *pargc;
1255 char **argv, **p;
1256 char *interp, *reserve = NULL;
1257 struct wld_auxv new_av[8], delete_av[3], *av;
1258 struct wld_link_map main_binary_map, ld_so_map;
1259 struct wine_preload_info **wine_main_preload_info;
1261 pargc = *stack;
1262 argv = (char **)pargc + 1;
1263 if (*pargc < 2) fatal_error( "Usage: %s wine_binary [args]\n", argv[0] );
1265 /* skip over the parameters */
1266 p = argv + *pargc + 1;
1268 /* skip over the environment */
1269 while (*p)
1271 static const char res[] = "WINEPRELOADRESERVE=";
1272 if (!wld_strncmp( *p, res, sizeof(res)-1 )) reserve = *p + sizeof(res) - 1;
1273 p++;
1276 av = (struct wld_auxv *)(p+1);
1277 page_size = get_auxiliary( av, AT_PAGESZ, 4096 );
1278 page_mask = page_size - 1;
1280 preloader_start = (char *)_start - ((unsigned long)_start & page_mask);
1281 preloader_end = (char *)((unsigned long)(_end + page_mask) & ~page_mask);
1283 #ifdef DUMP_AUX_INFO
1284 wld_printf( "stack = %p\n", *stack );
1285 for( i = 0; i < *pargc; i++ ) wld_printf("argv[%lx] = %s\n", i, argv[i]);
1286 dump_auxiliary( av );
1287 #endif
1289 /* reserve memory that Wine needs */
1290 if (reserve) preload_reserve( reserve );
1291 for (i = 0; preload_info[i].size; i++)
1293 if ((char *)av >= (char *)preload_info[i].addr &&
1294 (char *)pargc <= (char *)preload_info[i].addr + preload_info[i].size)
1296 remove_preload_range( i );
1297 i--;
1299 else if (wld_mmap( preload_info[i].addr, preload_info[i].size, PROT_NONE,
1300 MAP_FIXED | MAP_PRIVATE | MAP_ANON | MAP_NORESERVE, -1, 0 ) == (void *)-1)
1302 /* don't warn for low 64k */
1303 if (preload_info[i].addr >= (void *)0x10000
1304 #ifdef __aarch64__
1305 && preload_info[i].addr < (void *)0x7fffffffff /* ARM64 address space might end here*/
1306 #endif
1308 wld_printf( "preloader: Warning: failed to reserve range %p-%p\n",
1309 preload_info[i].addr, (char *)preload_info[i].addr + preload_info[i].size );
1310 remove_preload_range( i );
1311 i--;
1315 /* add an executable page at the top of the address space to defeat
1316 * broken no-exec protections that play with the code selector limit */
1317 if (is_addr_reserved( (char *)0x80000000 - page_size ))
1318 wld_mprotect( (char *)0x80000000 - page_size, page_size, PROT_EXEC | PROT_READ );
1320 /* load the main binary */
1321 map_so_lib( argv[1], &main_binary_map );
1323 /* load the ELF interpreter */
1324 interp = (char *)main_binary_map.l_addr + main_binary_map.l_interp;
1325 map_so_lib( interp, &ld_so_map );
1327 /* store pointer to the preload info into the appropriate main binary variable */
1328 wine_main_preload_info = find_symbol( &main_binary_map, "wine_main_preload_info", STT_OBJECT );
1329 if (wine_main_preload_info) *wine_main_preload_info = preload_info;
1330 else wld_printf( "wine_main_preload_info not found\n" );
1332 #define SET_NEW_AV(n,type,val) new_av[n].a_type = (type); new_av[n].a_un.a_val = (val);
1333 SET_NEW_AV( 0, AT_PHDR, (unsigned long)main_binary_map.l_phdr );
1334 SET_NEW_AV( 1, AT_PHENT, sizeof(ElfW(Phdr)) );
1335 SET_NEW_AV( 2, AT_PHNUM, main_binary_map.l_phnum );
1336 SET_NEW_AV( 3, AT_PAGESZ, page_size );
1337 SET_NEW_AV( 4, AT_BASE, ld_so_map.l_addr );
1338 SET_NEW_AV( 5, AT_FLAGS, get_auxiliary( av, AT_FLAGS, 0 ) );
1339 SET_NEW_AV( 6, AT_ENTRY, main_binary_map.l_entry );
1340 SET_NEW_AV( 7, AT_NULL, 0 );
1341 #undef SET_NEW_AV
1343 i = 0;
1344 /* delete sysinfo values if addresses conflict */
1345 if (is_in_preload_range( av, AT_SYSINFO ) || is_in_preload_range( av, AT_SYSINFO_EHDR ))
1347 delete_av[i++].a_type = AT_SYSINFO;
1348 delete_av[i++].a_type = AT_SYSINFO_EHDR;
1350 delete_av[i].a_type = AT_NULL;
1352 /* get rid of first argument */
1353 set_process_name( *pargc, argv );
1354 pargc[1] = pargc[0] - 1;
1355 *stack = pargc + 1;
1357 set_auxiliary_values( av, new_av, delete_av, stack );
1359 #ifdef DUMP_AUX_INFO
1360 wld_printf("new stack = %p\n", *stack);
1361 wld_printf("jumping to %p\n", (void *)ld_so_map.l_entry);
1362 #endif
1363 #ifdef DUMP_MAPS
1365 char buffer[1024];
1366 int len, fd = wld_open( "/proc/self/maps", O_RDONLY );
1367 if (fd != -1)
1369 while ((len = wld_read( fd, buffer, sizeof(buffer) )) > 0) wld_write( 2, buffer, len );
1370 wld_close( fd );
1373 #endif
1375 return (void *)ld_so_map.l_entry;