blob: 1256dba95340e21e8b96e29ed512f38ab11b8d58 [file] [log] [blame]
bellard31e31b82003-02-18 22:55:36 +00001/* This is the Linux kernel elf-loading code, ported into user space */
2
3#include <stdio.h>
4#include <sys/types.h>
5#include <fcntl.h>
bellard31e31b82003-02-18 22:55:36 +00006#include <errno.h>
7#include <unistd.h>
8#include <sys/mman.h>
9#include <stdlib.h>
10#include <string.h>
11
bellard3ef693a2003-03-23 20:17:16 +000012#include "qemu.h"
bellard689f9362003-04-29 20:40:07 +000013#include "disas.h"
bellard31e31b82003-02-18 22:55:36 +000014
bellard83fb7ad2004-07-05 21:25:26 +000015/* this flag is uneffective under linux too, should be deleted */
16#ifndef MAP_DENYWRITE
17#define MAP_DENYWRITE 0
18#endif
19
20/* should probably go in elf.h */
21#ifndef ELIBBAD
22#define ELIBBAD 80
23#endif
24
bellard30ac07d2003-04-07 21:33:03 +000025#ifdef TARGET_I386
26
bellard15338fd2005-11-26 11:41:16 +000027#define ELF_PLATFORM get_elf_platform()
28
29static const char *get_elf_platform(void)
30{
31 static char elf_platform[] = "i386";
32 int family = (global_env->cpuid_version >> 8) & 0xff;
33 if (family > 6)
34 family = 6;
35 if (family >= 3)
36 elf_platform[1] = '0' + family;
37 return elf_platform;
38}
39
40#define ELF_HWCAP get_elf_hwcap()
41
42static uint32_t get_elf_hwcap(void)
43{
44 return global_env->cpuid_features;
45}
46
j_mayer84409dd2007-04-06 08:56:50 +000047#ifdef TARGET_X86_64
48#define ELF_START_MMAP 0x2aaaaab000ULL
49#define elf_check_arch(x) ( ((x) == ELF_ARCH) )
50
51#define ELF_CLASS ELFCLASS64
52#define ELF_DATA ELFDATA2LSB
53#define ELF_ARCH EM_X86_64
54
55static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop)
56{
57 regs->rax = 0;
58 regs->rsp = infop->start_stack;
59 regs->rip = infop->entry;
60}
61
62#else
63
bellard30ac07d2003-04-07 21:33:03 +000064#define ELF_START_MMAP 0x80000000
65
bellard30ac07d2003-04-07 21:33:03 +000066/*
67 * This is used to ensure we don't load something for the wrong architecture.
68 */
69#define elf_check_arch(x) ( ((x) == EM_386) || ((x) == EM_486) )
70
71/*
72 * These are used to set parameters in the core dumps.
73 */
74#define ELF_CLASS ELFCLASS32
75#define ELF_DATA ELFDATA2LSB
76#define ELF_ARCH EM_386
77
bellardb346ff42003-06-15 20:05:50 +000078static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop)
79{
80 regs->esp = infop->start_stack;
81 regs->eip = infop->entry;
pbrooke5fe0c52006-06-11 13:32:59 +000082
83 /* SVR4/i386 ABI (pages 3-31, 3-32) says that when the program
84 starts %edx contains a pointer to a function which might be
85 registered using `atexit'. This provides a mean for the
86 dynamic linker to call DT_FINI functions for shared libraries
87 that have been loaded before the code runs.
88
89 A value of 0 tells we have no such handler. */
90 regs->edx = 0;
bellardb346ff42003-06-15 20:05:50 +000091}
j_mayer84409dd2007-04-06 08:56:50 +000092#endif
bellardb346ff42003-06-15 20:05:50 +000093
94#define USE_ELF_CORE_DUMP
95#define ELF_EXEC_PAGESIZE 4096
96
97#endif
98
99#ifdef TARGET_ARM
100
101#define ELF_START_MMAP 0x80000000
102
103#define elf_check_arch(x) ( (x) == EM_ARM )
104
105#define ELF_CLASS ELFCLASS32
106#ifdef TARGET_WORDS_BIGENDIAN
107#define ELF_DATA ELFDATA2MSB
108#else
109#define ELF_DATA ELFDATA2LSB
110#endif
111#define ELF_ARCH EM_ARM
112
bellardb346ff42003-06-15 20:05:50 +0000113static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop)
114{
pbrook53a59602006-03-25 19:31:22 +0000115 target_long stack = infop->start_stack;
bellardb346ff42003-06-15 20:05:50 +0000116 memset(regs, 0, sizeof(*regs));
117 regs->ARM_cpsr = 0x10;
pbrook0240ded2006-02-04 19:30:51 +0000118 if (infop->entry & 1)
119 regs->ARM_cpsr |= CPSR_T;
120 regs->ARM_pc = infop->entry & 0xfffffffe;
bellardb346ff42003-06-15 20:05:50 +0000121 regs->ARM_sp = infop->start_stack;
pbrook53a59602006-03-25 19:31:22 +0000122 regs->ARM_r2 = tgetl(stack + 8); /* envp */
123 regs->ARM_r1 = tgetl(stack + 4); /* envp */
bellarda1516e92003-07-09 17:13:37 +0000124 /* XXX: it seems that r0 is zeroed after ! */
pbrooke5fe0c52006-06-11 13:32:59 +0000125 regs->ARM_r0 = 0;
126 /* For uClinux PIC binaries. */
127 regs->ARM_r10 = infop->start_data;
bellardb346ff42003-06-15 20:05:50 +0000128}
129
bellard30ac07d2003-04-07 21:33:03 +0000130#define USE_ELF_CORE_DUMP
131#define ELF_EXEC_PAGESIZE 4096
132
bellardafce2922005-10-30 20:58:30 +0000133enum
134{
135 ARM_HWCAP_ARM_SWP = 1 << 0,
136 ARM_HWCAP_ARM_HALF = 1 << 1,
137 ARM_HWCAP_ARM_THUMB = 1 << 2,
138 ARM_HWCAP_ARM_26BIT = 1 << 3,
139 ARM_HWCAP_ARM_FAST_MULT = 1 << 4,
140 ARM_HWCAP_ARM_FPA = 1 << 5,
141 ARM_HWCAP_ARM_VFP = 1 << 6,
142 ARM_HWCAP_ARM_EDSP = 1 << 7,
143};
144
bellard15338fd2005-11-26 11:41:16 +0000145#define ELF_HWCAP (ARM_HWCAP_ARM_SWP | ARM_HWCAP_ARM_HALF \
bellardafce2922005-10-30 20:58:30 +0000146 | ARM_HWCAP_ARM_THUMB | ARM_HWCAP_ARM_FAST_MULT \
147 | ARM_HWCAP_ARM_FPA | ARM_HWCAP_ARM_VFP)
148
bellard30ac07d2003-04-07 21:33:03 +0000149#endif
150
bellard853d6f72003-09-30 20:58:32 +0000151#ifdef TARGET_SPARC
bellarda315a142005-01-30 22:59:18 +0000152#ifdef TARGET_SPARC64
bellard853d6f72003-09-30 20:58:32 +0000153
154#define ELF_START_MMAP 0x80000000
155
bellard5ef54112006-07-18 21:14:09 +0000156#define elf_check_arch(x) ( (x) == EM_SPARCV9 )
bellard853d6f72003-09-30 20:58:32 +0000157
bellarda315a142005-01-30 22:59:18 +0000158#define ELF_CLASS ELFCLASS64
159#define ELF_DATA ELFDATA2MSB
bellard5ef54112006-07-18 21:14:09 +0000160#define ELF_ARCH EM_SPARCV9
161
162#define STACK_BIAS 2047
bellarda315a142005-01-30 22:59:18 +0000163
bellarda315a142005-01-30 22:59:18 +0000164static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop)
165{
166 regs->tstate = 0;
167 regs->pc = infop->entry;
168 regs->npc = regs->pc + 4;
169 regs->y = 0;
bellard5ef54112006-07-18 21:14:09 +0000170 regs->u_regs[14] = infop->start_stack - 16 * 8 - STACK_BIAS;
bellarda315a142005-01-30 22:59:18 +0000171}
172
173#else
174#define ELF_START_MMAP 0x80000000
175
176#define elf_check_arch(x) ( (x) == EM_SPARC )
177
bellard853d6f72003-09-30 20:58:32 +0000178#define ELF_CLASS ELFCLASS32
179#define ELF_DATA ELFDATA2MSB
180#define ELF_ARCH EM_SPARC
181
bellard853d6f72003-09-30 20:58:32 +0000182static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop)
183{
bellardf5155282004-01-04 15:46:50 +0000184 regs->psr = 0;
185 regs->pc = infop->entry;
186 regs->npc = regs->pc + 4;
187 regs->y = 0;
188 regs->u_regs[14] = infop->start_stack - 16 * 4;
bellard853d6f72003-09-30 20:58:32 +0000189}
190
191#endif
bellarda315a142005-01-30 22:59:18 +0000192#endif
bellard853d6f72003-09-30 20:58:32 +0000193
bellard67867302003-11-23 17:05:30 +0000194#ifdef TARGET_PPC
195
196#define ELF_START_MMAP 0x80000000
197
j_mayer84409dd2007-04-06 08:56:50 +0000198#ifdef TARGET_PPC64
199
200#define elf_check_arch(x) ( (x) == EM_PPC64 )
201
202#define ELF_CLASS ELFCLASS64
203
204#else
205
bellard67867302003-11-23 17:05:30 +0000206#define elf_check_arch(x) ( (x) == EM_PPC )
207
208#define ELF_CLASS ELFCLASS32
j_mayer84409dd2007-04-06 08:56:50 +0000209
210#endif
211
bellard67867302003-11-23 17:05:30 +0000212#ifdef TARGET_WORDS_BIGENDIAN
213#define ELF_DATA ELFDATA2MSB
214#else
215#define ELF_DATA ELFDATA2LSB
216#endif
217#define ELF_ARCH EM_PPC
218
bellardf5155282004-01-04 15:46:50 +0000219/*
220 * We need to put in some extra aux table entries to tell glibc what
221 * the cache block size is, so it can use the dcbz instruction safely.
222 */
223#define AT_DCACHEBSIZE 19
224#define AT_ICACHEBSIZE 20
225#define AT_UCACHEBSIZE 21
226/* A special ignored type value for PPC, for glibc compatibility. */
227#define AT_IGNOREPPC 22
228/*
229 * The requirements here are:
230 * - keep the final alignment of sp (sp & 0xf)
231 * - make sure the 32-bit value at the first 16 byte aligned position of
232 * AUXV is greater than 16 for glibc compatibility.
233 * AT_IGNOREPPC is used for that.
234 * - for compatibility with glibc ARCH_DLINFO must always be defined on PPC,
235 * even if DLINFO_ARCH_ITEMS goes to zero or is undefined.
236 */
bellard0bccf032005-08-21 10:12:28 +0000237#define DLINFO_ARCH_ITEMS 5
bellardf5155282004-01-04 15:46:50 +0000238#define ARCH_DLINFO \
239do { \
bellard0bccf032005-08-21 10:12:28 +0000240 NEW_AUX_ENT(AT_DCACHEBSIZE, 0x20); \
241 NEW_AUX_ENT(AT_ICACHEBSIZE, 0x20); \
242 NEW_AUX_ENT(AT_UCACHEBSIZE, 0); \
bellardf5155282004-01-04 15:46:50 +0000243 /* \
244 * Now handle glibc compatibility. \
245 */ \
bellard0bccf032005-08-21 10:12:28 +0000246 NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \
247 NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \
bellardf5155282004-01-04 15:46:50 +0000248 } while (0)
249
bellard67867302003-11-23 17:05:30 +0000250static inline void init_thread(struct target_pt_regs *_regs, struct image_info *infop)
251{
pbrooke5fe0c52006-06-11 13:32:59 +0000252 target_ulong pos = infop->start_stack;
253 target_ulong tmp;
j_mayer84409dd2007-04-06 08:56:50 +0000254#ifdef TARGET_PPC64
255 target_ulong entry, toc;
256#endif
pbrooke5fe0c52006-06-11 13:32:59 +0000257
bellard67867302003-11-23 17:05:30 +0000258 _regs->msr = 1 << MSR_PR; /* Set user mode */
259 _regs->gpr[1] = infop->start_stack;
j_mayer84409dd2007-04-06 08:56:50 +0000260#ifdef TARGET_PPC64
261 entry = ldq_raw(infop->entry) + infop->load_addr;
262 toc = ldq_raw(infop->entry + 8) + infop->load_addr;
263 _regs->gpr[2] = toc;
264 infop->entry = entry;
265#endif
bellard67867302003-11-23 17:05:30 +0000266 _regs->nip = infop->entry;
pbrooke5fe0c52006-06-11 13:32:59 +0000267 /* Note that isn't exactly what regular kernel does
268 * but this is what the ABI wants and is needed to allow
269 * execution of PPC BSD programs.
270 */
271 _regs->gpr[3] = tgetl(pos);
272 pos += sizeof(target_ulong);
273 _regs->gpr[4] = pos;
274 for (tmp = 1; tmp != 0; pos += sizeof(target_ulong))
275 tmp = ldl(pos);
276 _regs->gpr[5] = pos;
bellard67867302003-11-23 17:05:30 +0000277}
278
279#define USE_ELF_CORE_DUMP
280#define ELF_EXEC_PAGESIZE 4096
281
282#endif
283
bellard048f6b42005-11-26 18:47:20 +0000284#ifdef TARGET_MIPS
285
286#define ELF_START_MMAP 0x80000000
287
288#define elf_check_arch(x) ( (x) == EM_MIPS )
289
290#define ELF_CLASS ELFCLASS32
291#ifdef TARGET_WORDS_BIGENDIAN
292#define ELF_DATA ELFDATA2MSB
293#else
294#define ELF_DATA ELFDATA2LSB
295#endif
296#define ELF_ARCH EM_MIPS
297
bellard048f6b42005-11-26 18:47:20 +0000298static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop)
299{
300 regs->cp0_status = CP0St_UM;
301 regs->cp0_epc = infop->entry;
302 regs->regs[29] = infop->start_stack;
303}
304
305#endif /* TARGET_MIPS */
306
bellardfdf9b3e2006-04-27 21:07:38 +0000307#ifdef TARGET_SH4
308
309#define ELF_START_MMAP 0x80000000
310
311#define elf_check_arch(x) ( (x) == EM_SH )
312
313#define ELF_CLASS ELFCLASS32
314#define ELF_DATA ELFDATA2LSB
315#define ELF_ARCH EM_SH
316
bellardfdf9b3e2006-04-27 21:07:38 +0000317static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop)
318{
319 /* Check other registers XXXXX */
320 regs->pc = infop->entry;
321 regs->regs[15] = infop->start_stack - 16 * 4;
322}
323
324#define USE_ELF_CORE_DUMP
325#define ELF_EXEC_PAGESIZE 4096
326
327#endif
328
pbrooke6e59062006-10-22 00:18:54 +0000329#ifdef TARGET_M68K
330
331#define ELF_START_MMAP 0x80000000
332
333#define elf_check_arch(x) ( (x) == EM_68K )
334
335#define ELF_CLASS ELFCLASS32
336#define ELF_DATA ELFDATA2MSB
337#define ELF_ARCH EM_68K
338
339/* ??? Does this need to do anything?
340#define ELF_PLAT_INIT(_r) */
341
342static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop)
343{
344 regs->usp = infop->start_stack;
345 regs->sr = 0;
346 regs->pc = infop->entry;
347}
348
349#define USE_ELF_CORE_DUMP
350#define ELF_EXEC_PAGESIZE 8192
351
352#endif
353
j_mayer7a3148a2007-04-05 07:13:51 +0000354#ifdef TARGET_ALPHA
355
356#define ELF_START_MMAP (0x30000000000ULL)
357
358#define elf_check_arch(x) ( (x) == ELF_ARCH )
359
360#define ELF_CLASS ELFCLASS64
361#define ELF_DATA ELFDATA2MSB
362#define ELF_ARCH EM_ALPHA
363
364static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop)
365{
366 regs->pc = infop->entry;
367 regs->ps = 8;
368 regs->usp = infop->start_stack;
369 regs->unique = infop->start_data; /* ? */
370 printf("Set unique value to " TARGET_FMT_lx " (" TARGET_FMT_lx ")\n",
371 regs->unique, infop->start_data);
372}
373
374#define USE_ELF_CORE_DUMP
375#define ELF_EXEC_PAGESIZE 8192
376
377#endif /* TARGET_ALPHA */
378
bellard15338fd2005-11-26 11:41:16 +0000379#ifndef ELF_PLATFORM
380#define ELF_PLATFORM (NULL)
381#endif
382
383#ifndef ELF_HWCAP
384#define ELF_HWCAP 0
385#endif
386
bellard31e31b82003-02-18 22:55:36 +0000387#include "elf.h"
bellard09bfb052003-04-10 00:03:40 +0000388
bellard09bfb052003-04-10 00:03:40 +0000389struct exec
390{
391 unsigned int a_info; /* Use macros N_MAGIC, etc for access */
392 unsigned int a_text; /* length of text, in bytes */
393 unsigned int a_data; /* length of data, in bytes */
394 unsigned int a_bss; /* length of uninitialized data area, in bytes */
395 unsigned int a_syms; /* length of symbol table data in file, in bytes */
396 unsigned int a_entry; /* start address */
397 unsigned int a_trsize; /* length of relocation info for text, in bytes */
398 unsigned int a_drsize; /* length of relocation info for data, in bytes */
399};
400
401
402#define N_MAGIC(exec) ((exec).a_info & 0xffff)
403#define OMAGIC 0407
404#define NMAGIC 0410
405#define ZMAGIC 0413
406#define QMAGIC 0314
407
bellard09bfb052003-04-10 00:03:40 +0000408/* max code+data+bss space allocated to elf interpreter */
409#define INTERP_MAP_SIZE (32 * 1024 * 1024)
410
411/* max code+data+bss+brk space allocated to ET_DYN executables */
412#define ET_DYN_MAP_SIZE (128 * 1024 * 1024)
413
414/* from personality.h */
415
416/* Flags for bug emulation. These occupy the top three bytes. */
417#define STICKY_TIMEOUTS 0x4000000
418#define WHOLE_SECONDS 0x2000000
419
420/* Personality types. These go in the low byte. Avoid using the top bit,
421 * it will conflict with error returns.
422 */
423#define PER_MASK (0x00ff)
424#define PER_LINUX (0x0000)
425#define PER_SVR4 (0x0001 | STICKY_TIMEOUTS)
426#define PER_SVR3 (0x0002 | STICKY_TIMEOUTS)
427#define PER_SCOSVR3 (0x0003 | STICKY_TIMEOUTS | WHOLE_SECONDS)
428#define PER_WYSEV386 (0x0004 | STICKY_TIMEOUTS)
429#define PER_ISCR4 (0x0005 | STICKY_TIMEOUTS)
430#define PER_BSD (0x0006)
431#define PER_XENIX (0x0007 | STICKY_TIMEOUTS)
bellard31e31b82003-02-18 22:55:36 +0000432
433/* Necessary parameters */
bellard54936002003-05-13 00:25:15 +0000434#define TARGET_ELF_EXEC_PAGESIZE TARGET_PAGE_SIZE
435#define TARGET_ELF_PAGESTART(_v) ((_v) & ~(unsigned long)(TARGET_ELF_EXEC_PAGESIZE-1))
436#define TARGET_ELF_PAGEOFFSET(_v) ((_v) & (TARGET_ELF_EXEC_PAGESIZE-1))
bellard31e31b82003-02-18 22:55:36 +0000437
438#define INTERPRETER_NONE 0
439#define INTERPRETER_AOUT 1
440#define INTERPRETER_ELF 2
441
bellard15338fd2005-11-26 11:41:16 +0000442#define DLINFO_ITEMS 12
bellard31e31b82003-02-18 22:55:36 +0000443
bellard09bfb052003-04-10 00:03:40 +0000444static inline void memcpy_fromfs(void * to, const void * from, unsigned long n)
445{
446 memcpy(to, from, n);
447}
448
bellard31e31b82003-02-18 22:55:36 +0000449extern unsigned long x86_stack_size;
450
451static int load_aout_interp(void * exptr, int interp_fd);
452
453#ifdef BSWAP_NEEDED
bellard92a31b12005-02-10 22:00:52 +0000454static void bswap_ehdr(struct elfhdr *ehdr)
bellard31e31b82003-02-18 22:55:36 +0000455{
456 bswap16s(&ehdr->e_type); /* Object file type */
457 bswap16s(&ehdr->e_machine); /* Architecture */
458 bswap32s(&ehdr->e_version); /* Object file version */
bellard92a31b12005-02-10 22:00:52 +0000459 bswaptls(&ehdr->e_entry); /* Entry point virtual address */
460 bswaptls(&ehdr->e_phoff); /* Program header table file offset */
461 bswaptls(&ehdr->e_shoff); /* Section header table file offset */
bellard31e31b82003-02-18 22:55:36 +0000462 bswap32s(&ehdr->e_flags); /* Processor-specific flags */
463 bswap16s(&ehdr->e_ehsize); /* ELF header size in bytes */
464 bswap16s(&ehdr->e_phentsize); /* Program header table entry size */
465 bswap16s(&ehdr->e_phnum); /* Program header table entry count */
466 bswap16s(&ehdr->e_shentsize); /* Section header table entry size */
467 bswap16s(&ehdr->e_shnum); /* Section header table entry count */
468 bswap16s(&ehdr->e_shstrndx); /* Section header string table index */
469}
470
bellard92a31b12005-02-10 22:00:52 +0000471static void bswap_phdr(struct elf_phdr *phdr)
bellard31e31b82003-02-18 22:55:36 +0000472{
473 bswap32s(&phdr->p_type); /* Segment type */
bellard92a31b12005-02-10 22:00:52 +0000474 bswaptls(&phdr->p_offset); /* Segment file offset */
475 bswaptls(&phdr->p_vaddr); /* Segment virtual address */
476 bswaptls(&phdr->p_paddr); /* Segment physical address */
477 bswaptls(&phdr->p_filesz); /* Segment size in file */
478 bswaptls(&phdr->p_memsz); /* Segment size in memory */
bellard31e31b82003-02-18 22:55:36 +0000479 bswap32s(&phdr->p_flags); /* Segment flags */
bellard92a31b12005-02-10 22:00:52 +0000480 bswaptls(&phdr->p_align); /* Segment alignment */
bellard31e31b82003-02-18 22:55:36 +0000481}
bellard689f9362003-04-29 20:40:07 +0000482
bellard92a31b12005-02-10 22:00:52 +0000483static void bswap_shdr(struct elf_shdr *shdr)
bellard689f9362003-04-29 20:40:07 +0000484{
485 bswap32s(&shdr->sh_name);
486 bswap32s(&shdr->sh_type);
bellard92a31b12005-02-10 22:00:52 +0000487 bswaptls(&shdr->sh_flags);
488 bswaptls(&shdr->sh_addr);
489 bswaptls(&shdr->sh_offset);
490 bswaptls(&shdr->sh_size);
bellard689f9362003-04-29 20:40:07 +0000491 bswap32s(&shdr->sh_link);
492 bswap32s(&shdr->sh_info);
bellard92a31b12005-02-10 22:00:52 +0000493 bswaptls(&shdr->sh_addralign);
494 bswaptls(&shdr->sh_entsize);
bellard689f9362003-04-29 20:40:07 +0000495}
496
j_mayer7a3148a2007-04-05 07:13:51 +0000497static void bswap_sym(struct elf_sym *sym)
bellard689f9362003-04-29 20:40:07 +0000498{
499 bswap32s(&sym->st_name);
j_mayer7a3148a2007-04-05 07:13:51 +0000500 bswaptls(&sym->st_value);
501 bswaptls(&sym->st_size);
bellard689f9362003-04-29 20:40:07 +0000502 bswap16s(&sym->st_shndx);
503}
bellard31e31b82003-02-18 22:55:36 +0000504#endif
505
bellard31e31b82003-02-18 22:55:36 +0000506/*
pbrooke5fe0c52006-06-11 13:32:59 +0000507 * 'copy_elf_strings()' copies argument/envelope strings from user
bellard31e31b82003-02-18 22:55:36 +0000508 * memory to free pages in kernel mem. These are in a format ready
509 * to be put directly into the top of new user memory.
510 *
511 */
pbrooke5fe0c52006-06-11 13:32:59 +0000512static unsigned long copy_elf_strings(int argc,char ** argv, void **page,
513 unsigned long p)
bellard31e31b82003-02-18 22:55:36 +0000514{
515 char *tmp, *tmp1, *pag = NULL;
516 int len, offset = 0;
517
518 if (!p) {
519 return 0; /* bullet-proofing */
520 }
521 while (argc-- > 0) {
bellardedf779f2004-02-22 13:40:13 +0000522 tmp = argv[argc];
523 if (!tmp) {
bellard31e31b82003-02-18 22:55:36 +0000524 fprintf(stderr, "VFS: argc is wrong");
525 exit(-1);
526 }
bellardedf779f2004-02-22 13:40:13 +0000527 tmp1 = tmp;
528 while (*tmp++);
bellard31e31b82003-02-18 22:55:36 +0000529 len = tmp - tmp1;
530 if (p < len) { /* this shouldn't happen - 128kB */
531 return 0;
532 }
533 while (len) {
534 --p; --tmp; --len;
535 if (--offset < 0) {
bellard54936002003-05-13 00:25:15 +0000536 offset = p % TARGET_PAGE_SIZE;
pbrook53a59602006-03-25 19:31:22 +0000537 pag = (char *)page[p/TARGET_PAGE_SIZE];
bellard44a91ca2004-01-18 22:05:44 +0000538 if (!pag) {
pbrook53a59602006-03-25 19:31:22 +0000539 pag = (char *)malloc(TARGET_PAGE_SIZE);
540 page[p/TARGET_PAGE_SIZE] = pag;
bellard44a91ca2004-01-18 22:05:44 +0000541 if (!pag)
542 return 0;
bellard31e31b82003-02-18 22:55:36 +0000543 }
544 }
545 if (len == 0 || offset == 0) {
bellardedf779f2004-02-22 13:40:13 +0000546 *(pag + offset) = *tmp;
bellard31e31b82003-02-18 22:55:36 +0000547 }
548 else {
549 int bytes_to_copy = (len > offset) ? offset : len;
550 tmp -= bytes_to_copy;
551 p -= bytes_to_copy;
552 offset -= bytes_to_copy;
553 len -= bytes_to_copy;
554 memcpy_fromfs(pag + offset, tmp, bytes_to_copy + 1);
555 }
556 }
557 }
558 return p;
559}
560
pbrook53a59602006-03-25 19:31:22 +0000561unsigned long setup_arg_pages(target_ulong p, struct linux_binprm * bprm,
562 struct image_info * info)
563{
564 target_ulong stack_base, size, error;
bellard31e31b82003-02-18 22:55:36 +0000565 int i;
bellard31e31b82003-02-18 22:55:36 +0000566
567 /* Create enough stack to hold everything. If we don't use
568 * it for args, we'll use it for something else...
569 */
bellard09bfb052003-04-10 00:03:40 +0000570 size = x86_stack_size;
bellard54936002003-05-13 00:25:15 +0000571 if (size < MAX_ARG_PAGES*TARGET_PAGE_SIZE)
572 size = MAX_ARG_PAGES*TARGET_PAGE_SIZE;
573 error = target_mmap(0,
bellard83fb7ad2004-07-05 21:25:26 +0000574 size + qemu_host_page_size,
bellard54936002003-05-13 00:25:15 +0000575 PROT_READ | PROT_WRITE,
576 MAP_PRIVATE | MAP_ANONYMOUS,
577 -1, 0);
bellard09bfb052003-04-10 00:03:40 +0000578 if (error == -1) {
579 perror("stk mmap");
580 exit(-1);
bellard31e31b82003-02-18 22:55:36 +0000581 }
bellard09bfb052003-04-10 00:03:40 +0000582 /* we reserve one extra page at the top of the stack as guard */
bellard83fb7ad2004-07-05 21:25:26 +0000583 target_mprotect(error + size, qemu_host_page_size, PROT_NONE);
bellard09bfb052003-04-10 00:03:40 +0000584
bellard54936002003-05-13 00:25:15 +0000585 stack_base = error + size - MAX_ARG_PAGES*TARGET_PAGE_SIZE;
bellard09bfb052003-04-10 00:03:40 +0000586 p += stack_base;
587
bellard31e31b82003-02-18 22:55:36 +0000588 for (i = 0 ; i < MAX_ARG_PAGES ; i++) {
589 if (bprm->page[i]) {
590 info->rss++;
591
pbrook53a59602006-03-25 19:31:22 +0000592 memcpy_to_target(stack_base, bprm->page[i], TARGET_PAGE_SIZE);
593 free(bprm->page[i]);
bellard31e31b82003-02-18 22:55:36 +0000594 }
pbrook53a59602006-03-25 19:31:22 +0000595 stack_base += TARGET_PAGE_SIZE;
bellard31e31b82003-02-18 22:55:36 +0000596 }
597 return p;
598}
599
600static void set_brk(unsigned long start, unsigned long end)
601{
602 /* page-align the start and end addresses... */
bellard54936002003-05-13 00:25:15 +0000603 start = HOST_PAGE_ALIGN(start);
604 end = HOST_PAGE_ALIGN(end);
bellard31e31b82003-02-18 22:55:36 +0000605 if (end <= start)
606 return;
bellard54936002003-05-13 00:25:15 +0000607 if(target_mmap(start, end - start,
608 PROT_READ | PROT_WRITE | PROT_EXEC,
609 MAP_FIXED | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0) == -1) {
bellard31e31b82003-02-18 22:55:36 +0000610 perror("cannot mmap brk");
611 exit(-1);
612 }
613}
614
615
bellard853d6f72003-09-30 20:58:32 +0000616/* We need to explicitly zero any fractional pages after the data
617 section (i.e. bss). This would contain the junk from the file that
618 should not be in memory. */
ths768a4a32006-12-14 13:32:11 +0000619static void padzero(unsigned long elf_bss, unsigned long last_bss)
bellard31e31b82003-02-18 22:55:36 +0000620{
621 unsigned long nbyte;
bellard31e31b82003-02-18 22:55:36 +0000622
ths768a4a32006-12-14 13:32:11 +0000623 if (elf_bss >= last_bss)
624 return;
625
bellard853d6f72003-09-30 20:58:32 +0000626 /* XXX: this is really a hack : if the real host page size is
627 smaller than the target page size, some pages after the end
628 of the file may not be mapped. A better fix would be to
629 patch target_mmap(), but it is more complicated as the file
630 size must be known */
bellard83fb7ad2004-07-05 21:25:26 +0000631 if (qemu_real_host_page_size < qemu_host_page_size) {
bellard853d6f72003-09-30 20:58:32 +0000632 unsigned long end_addr, end_addr1;
bellard83fb7ad2004-07-05 21:25:26 +0000633 end_addr1 = (elf_bss + qemu_real_host_page_size - 1) &
634 ~(qemu_real_host_page_size - 1);
bellard853d6f72003-09-30 20:58:32 +0000635 end_addr = HOST_PAGE_ALIGN(elf_bss);
636 if (end_addr1 < end_addr) {
637 mmap((void *)end_addr1, end_addr - end_addr1,
638 PROT_READ|PROT_WRITE|PROT_EXEC,
639 MAP_FIXED|MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
640 }
641 }
642
bellard83fb7ad2004-07-05 21:25:26 +0000643 nbyte = elf_bss & (qemu_host_page_size-1);
bellard31e31b82003-02-18 22:55:36 +0000644 if (nbyte) {
bellard83fb7ad2004-07-05 21:25:26 +0000645 nbyte = qemu_host_page_size - nbyte;
bellard31e31b82003-02-18 22:55:36 +0000646 do {
pbrook53a59602006-03-25 19:31:22 +0000647 tput8(elf_bss, 0);
648 elf_bss++;
bellard31e31b82003-02-18 22:55:36 +0000649 } while (--nbyte);
650 }
651}
652
bellardedf779f2004-02-22 13:40:13 +0000653
pbrook53a59602006-03-25 19:31:22 +0000654static unsigned long create_elf_tables(target_ulong p, int argc, int envc,
655 struct elfhdr * exec,
656 unsigned long load_addr,
657 unsigned long load_bias,
658 unsigned long interp_load_addr, int ibcs,
659 struct image_info *info)
660{
pbrook53a59602006-03-25 19:31:22 +0000661 target_ulong sp;
662 int size;
663 target_ulong u_platform;
664 const char *k_platform;
665 const int n = sizeof(target_ulong);
666
667 sp = p;
668 u_platform = 0;
bellard15338fd2005-11-26 11:41:16 +0000669 k_platform = ELF_PLATFORM;
670 if (k_platform) {
671 size_t len = strlen(k_platform) + 1;
pbrook53a59602006-03-25 19:31:22 +0000672 sp -= (len + n - 1) & ~(n - 1);
673 u_platform = sp;
674 memcpy_to_target(sp, k_platform, len);
bellard15338fd2005-11-26 11:41:16 +0000675 }
pbrook53a59602006-03-25 19:31:22 +0000676 /*
677 * Force 16 byte _final_ alignment here for generality.
678 */
679 sp = sp &~ (target_ulong)15;
680 size = (DLINFO_ITEMS + 1) * 2;
bellard15338fd2005-11-26 11:41:16 +0000681 if (k_platform)
pbrook53a59602006-03-25 19:31:22 +0000682 size += 2;
bellardf5155282004-01-04 15:46:50 +0000683#ifdef DLINFO_ARCH_ITEMS
pbrook53a59602006-03-25 19:31:22 +0000684 size += DLINFO_ARCH_ITEMS * 2;
bellardf5155282004-01-04 15:46:50 +0000685#endif
pbrook53a59602006-03-25 19:31:22 +0000686 size += envc + argc + 2;
687 size += (!ibcs ? 3 : 1); /* argc itself */
688 size *= n;
689 if (size & 15)
690 sp -= 16 - (size & 15);
bellardf5155282004-01-04 15:46:50 +0000691
pbrook53a59602006-03-25 19:31:22 +0000692#define NEW_AUX_ENT(id, val) do { \
693 sp -= n; tputl(sp, val); \
694 sp -= n; tputl(sp, id); \
695 } while(0)
bellard0bccf032005-08-21 10:12:28 +0000696 NEW_AUX_ENT (AT_NULL, 0);
bellardf5155282004-01-04 15:46:50 +0000697
bellard0bccf032005-08-21 10:12:28 +0000698 /* There must be exactly DLINFO_ITEMS entries here. */
699 NEW_AUX_ENT(AT_PHDR, (target_ulong)(load_addr + exec->e_phoff));
700 NEW_AUX_ENT(AT_PHENT, (target_ulong)(sizeof (struct elf_phdr)));
701 NEW_AUX_ENT(AT_PHNUM, (target_ulong)(exec->e_phnum));
702 NEW_AUX_ENT(AT_PAGESZ, (target_ulong)(TARGET_PAGE_SIZE));
703 NEW_AUX_ENT(AT_BASE, (target_ulong)(interp_load_addr));
704 NEW_AUX_ENT(AT_FLAGS, (target_ulong)0);
705 NEW_AUX_ENT(AT_ENTRY, load_bias + exec->e_entry);
706 NEW_AUX_ENT(AT_UID, (target_ulong) getuid());
707 NEW_AUX_ENT(AT_EUID, (target_ulong) geteuid());
708 NEW_AUX_ENT(AT_GID, (target_ulong) getgid());
709 NEW_AUX_ENT(AT_EGID, (target_ulong) getegid());
bellard15338fd2005-11-26 11:41:16 +0000710 NEW_AUX_ENT(AT_HWCAP, (target_ulong) ELF_HWCAP);
711 if (k_platform)
pbrook53a59602006-03-25 19:31:22 +0000712 NEW_AUX_ENT(AT_PLATFORM, u_platform);
bellardf5155282004-01-04 15:46:50 +0000713#ifdef ARCH_DLINFO
714 /*
715 * ARCH_DLINFO must come last so platform specific code can enforce
716 * special alignment requirements on the AUXV if necessary (eg. PPC).
717 */
718 ARCH_DLINFO;
719#endif
720#undef NEW_AUX_ENT
721
pbrooke5fe0c52006-06-11 13:32:59 +0000722 sp = loader_build_argptr(envc, argc, sp, p, !ibcs);
bellard31e31b82003-02-18 22:55:36 +0000723 return sp;
724}
725
726
bellard31e31b82003-02-18 22:55:36 +0000727static unsigned long load_elf_interp(struct elfhdr * interp_elf_ex,
728 int interpreter_fd,
729 unsigned long *interp_load_addr)
730{
731 struct elf_phdr *elf_phdata = NULL;
732 struct elf_phdr *eppnt;
bellard09bfb052003-04-10 00:03:40 +0000733 unsigned long load_addr = 0;
bellard31e31b82003-02-18 22:55:36 +0000734 int load_addr_set = 0;
735 int retval;
736 unsigned long last_bss, elf_bss;
737 unsigned long error;
738 int i;
739
740 elf_bss = 0;
741 last_bss = 0;
742 error = 0;
743
bellard644c4332003-03-24 23:00:36 +0000744#ifdef BSWAP_NEEDED
745 bswap_ehdr(interp_elf_ex);
746#endif
bellard31e31b82003-02-18 22:55:36 +0000747 /* First of all, some simple consistency checks */
748 if ((interp_elf_ex->e_type != ET_EXEC &&
bellard09bfb052003-04-10 00:03:40 +0000749 interp_elf_ex->e_type != ET_DYN) ||
bellard31e31b82003-02-18 22:55:36 +0000750 !elf_check_arch(interp_elf_ex->e_machine)) {
751 return ~0UL;
752 }
753
bellard644c4332003-03-24 23:00:36 +0000754
bellard31e31b82003-02-18 22:55:36 +0000755 /* Now read in all of the header information */
756
bellard54936002003-05-13 00:25:15 +0000757 if (sizeof(struct elf_phdr) * interp_elf_ex->e_phnum > TARGET_PAGE_SIZE)
bellard31e31b82003-02-18 22:55:36 +0000758 return ~0UL;
759
760 elf_phdata = (struct elf_phdr *)
761 malloc(sizeof(struct elf_phdr) * interp_elf_ex->e_phnum);
762
763 if (!elf_phdata)
764 return ~0UL;
765
766 /*
767 * If the size of this structure has changed, then punt, since
768 * we will be doing the wrong thing.
769 */
bellard09bfb052003-04-10 00:03:40 +0000770 if (interp_elf_ex->e_phentsize != sizeof(struct elf_phdr)) {
bellard31e31b82003-02-18 22:55:36 +0000771 free(elf_phdata);
772 return ~0UL;
bellard09bfb052003-04-10 00:03:40 +0000773 }
bellard31e31b82003-02-18 22:55:36 +0000774
775 retval = lseek(interpreter_fd, interp_elf_ex->e_phoff, SEEK_SET);
776 if(retval >= 0) {
777 retval = read(interpreter_fd,
778 (char *) elf_phdata,
779 sizeof(struct elf_phdr) * interp_elf_ex->e_phnum);
780 }
bellard31e31b82003-02-18 22:55:36 +0000781 if (retval < 0) {
782 perror("load_elf_interp");
783 exit(-1);
784 free (elf_phdata);
785 return retval;
786 }
787#ifdef BSWAP_NEEDED
788 eppnt = elf_phdata;
789 for (i=0; i<interp_elf_ex->e_phnum; i++, eppnt++) {
790 bswap_phdr(eppnt);
791 }
792#endif
bellard09bfb052003-04-10 00:03:40 +0000793
794 if (interp_elf_ex->e_type == ET_DYN) {
795 /* in order to avoid harcoding the interpreter load
796 address in qemu, we allocate a big enough memory zone */
bellard54936002003-05-13 00:25:15 +0000797 error = target_mmap(0, INTERP_MAP_SIZE,
798 PROT_NONE, MAP_PRIVATE | MAP_ANON,
799 -1, 0);
bellard09bfb052003-04-10 00:03:40 +0000800 if (error == -1) {
801 perror("mmap");
802 exit(-1);
803 }
804 load_addr = error;
805 load_addr_set = 1;
806 }
807
bellard31e31b82003-02-18 22:55:36 +0000808 eppnt = elf_phdata;
809 for(i=0; i<interp_elf_ex->e_phnum; i++, eppnt++)
810 if (eppnt->p_type == PT_LOAD) {
811 int elf_type = MAP_PRIVATE | MAP_DENYWRITE;
812 int elf_prot = 0;
813 unsigned long vaddr = 0;
814 unsigned long k;
815
816 if (eppnt->p_flags & PF_R) elf_prot = PROT_READ;
817 if (eppnt->p_flags & PF_W) elf_prot |= PROT_WRITE;
818 if (eppnt->p_flags & PF_X) elf_prot |= PROT_EXEC;
819 if (interp_elf_ex->e_type == ET_EXEC || load_addr_set) {
820 elf_type |= MAP_FIXED;
821 vaddr = eppnt->p_vaddr;
822 }
bellard54936002003-05-13 00:25:15 +0000823 error = target_mmap(load_addr+TARGET_ELF_PAGESTART(vaddr),
824 eppnt->p_filesz + TARGET_ELF_PAGEOFFSET(eppnt->p_vaddr),
bellard31e31b82003-02-18 22:55:36 +0000825 elf_prot,
826 elf_type,
827 interpreter_fd,
bellard54936002003-05-13 00:25:15 +0000828 eppnt->p_offset - TARGET_ELF_PAGEOFFSET(eppnt->p_vaddr));
bellard31e31b82003-02-18 22:55:36 +0000829
pbrooke89f07d2006-02-04 20:46:24 +0000830 if (error == -1) {
bellard31e31b82003-02-18 22:55:36 +0000831 /* Real error */
832 close(interpreter_fd);
833 free(elf_phdata);
834 return ~0UL;
835 }
836
837 if (!load_addr_set && interp_elf_ex->e_type == ET_DYN) {
838 load_addr = error;
839 load_addr_set = 1;
840 }
841
842 /*
843 * Find the end of the file mapping for this phdr, and keep
844 * track of the largest address we see for this.
845 */
846 k = load_addr + eppnt->p_vaddr + eppnt->p_filesz;
847 if (k > elf_bss) elf_bss = k;
848
849 /*
850 * Do the same thing for the memory mapping - between
851 * elf_bss and last_bss is the bss section.
852 */
853 k = load_addr + eppnt->p_memsz + eppnt->p_vaddr;
854 if (k > last_bss) last_bss = k;
855 }
856
857 /* Now use mmap to map the library into memory. */
858
859 close(interpreter_fd);
860
861 /*
862 * Now fill out the bss section. First pad the last page up
863 * to the page boundary, and then perform a mmap to make sure
864 * that there are zeromapped pages up to and including the last
865 * bss page.
866 */
ths768a4a32006-12-14 13:32:11 +0000867 padzero(elf_bss, last_bss);
bellard83fb7ad2004-07-05 21:25:26 +0000868 elf_bss = TARGET_ELF_PAGESTART(elf_bss + qemu_host_page_size - 1); /* What we have mapped so far */
bellard31e31b82003-02-18 22:55:36 +0000869
870 /* Map the last of the bss segment */
871 if (last_bss > elf_bss) {
bellard54936002003-05-13 00:25:15 +0000872 target_mmap(elf_bss, last_bss-elf_bss,
873 PROT_READ|PROT_WRITE|PROT_EXEC,
874 MAP_FIXED|MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
bellard31e31b82003-02-18 22:55:36 +0000875 }
876 free(elf_phdata);
877
878 *interp_load_addr = load_addr;
879 return ((unsigned long) interp_elf_ex->e_entry) + load_addr;
880}
881
bellard689f9362003-04-29 20:40:07 +0000882/* Best attempt to load symbols from this ELF object. */
883static void load_symbols(struct elfhdr *hdr, int fd)
884{
885 unsigned int i;
886 struct elf_shdr sechdr, symtab, strtab;
887 char *strings;
bellarde80cfcf2004-12-19 23:18:01 +0000888 struct syminfo *s;
bellard31e31b82003-02-18 22:55:36 +0000889
bellard689f9362003-04-29 20:40:07 +0000890 lseek(fd, hdr->e_shoff, SEEK_SET);
891 for (i = 0; i < hdr->e_shnum; i++) {
892 if (read(fd, &sechdr, sizeof(sechdr)) != sizeof(sechdr))
893 return;
894#ifdef BSWAP_NEEDED
895 bswap_shdr(&sechdr);
896#endif
897 if (sechdr.sh_type == SHT_SYMTAB) {
898 symtab = sechdr;
899 lseek(fd, hdr->e_shoff
900 + sizeof(sechdr) * sechdr.sh_link, SEEK_SET);
901 if (read(fd, &strtab, sizeof(strtab))
902 != sizeof(strtab))
903 return;
904#ifdef BSWAP_NEEDED
905 bswap_shdr(&strtab);
906#endif
907 goto found;
908 }
909 }
910 return; /* Shouldn't happen... */
911
912 found:
913 /* Now know where the strtab and symtab are. Snarf them. */
bellarde80cfcf2004-12-19 23:18:01 +0000914 s = malloc(sizeof(*s));
915 s->disas_symtab = malloc(symtab.sh_size);
916 s->disas_strtab = strings = malloc(strtab.sh_size);
917 if (!s->disas_symtab || !s->disas_strtab)
bellard689f9362003-04-29 20:40:07 +0000918 return;
919
920 lseek(fd, symtab.sh_offset, SEEK_SET);
bellarde80cfcf2004-12-19 23:18:01 +0000921 if (read(fd, s->disas_symtab, symtab.sh_size) != symtab.sh_size)
bellard689f9362003-04-29 20:40:07 +0000922 return;
923
924#ifdef BSWAP_NEEDED
925 for (i = 0; i < symtab.sh_size / sizeof(struct elf_sym); i++)
bellarde80cfcf2004-12-19 23:18:01 +0000926 bswap_sym(s->disas_symtab + sizeof(struct elf_sym)*i);
bellard689f9362003-04-29 20:40:07 +0000927#endif
928
929 lseek(fd, strtab.sh_offset, SEEK_SET);
930 if (read(fd, strings, strtab.sh_size) != strtab.sh_size)
931 return;
bellarde80cfcf2004-12-19 23:18:01 +0000932 s->disas_num_syms = symtab.sh_size / sizeof(struct elf_sym);
933 s->next = syminfos;
934 syminfos = s;
bellard689f9362003-04-29 20:40:07 +0000935}
bellard31e31b82003-02-18 22:55:36 +0000936
pbrooke5fe0c52006-06-11 13:32:59 +0000937int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
938 struct image_info * info)
bellard31e31b82003-02-18 22:55:36 +0000939{
940 struct elfhdr elf_ex;
941 struct elfhdr interp_elf_ex;
942 struct exec interp_ex;
943 int interpreter_fd = -1; /* avoid warning */
bellard09bfb052003-04-10 00:03:40 +0000944 unsigned long load_addr, load_bias;
bellard31e31b82003-02-18 22:55:36 +0000945 int load_addr_set = 0;
946 unsigned int interpreter_type = INTERPRETER_NONE;
947 unsigned char ibcs2_interpreter;
948 int i;
bellard54936002003-05-13 00:25:15 +0000949 unsigned long mapped_addr;
bellard31e31b82003-02-18 22:55:36 +0000950 struct elf_phdr * elf_ppnt;
951 struct elf_phdr *elf_phdata;
952 unsigned long elf_bss, k, elf_brk;
953 int retval;
954 char * elf_interpreter;
955 unsigned long elf_entry, interp_load_addr = 0;
956 int status;
957 unsigned long start_code, end_code, end_data;
j_mayer84409dd2007-04-06 08:56:50 +0000958 unsigned long reloc_func_desc = 0;
bellard31e31b82003-02-18 22:55:36 +0000959 unsigned long elf_stack;
960 char passed_fileno[6];
961
962 ibcs2_interpreter = 0;
963 status = 0;
964 load_addr = 0;
bellard09bfb052003-04-10 00:03:40 +0000965 load_bias = 0;
bellard31e31b82003-02-18 22:55:36 +0000966 elf_ex = *((struct elfhdr *) bprm->buf); /* exec-header */
967#ifdef BSWAP_NEEDED
968 bswap_ehdr(&elf_ex);
969#endif
970
bellard31e31b82003-02-18 22:55:36 +0000971 /* First of all, some simple consistency checks */
972 if ((elf_ex.e_type != ET_EXEC && elf_ex.e_type != ET_DYN) ||
973 (! elf_check_arch(elf_ex.e_machine))) {
974 return -ENOEXEC;
975 }
976
pbrooke5fe0c52006-06-11 13:32:59 +0000977 bprm->p = copy_elf_strings(1, &bprm->filename, bprm->page, bprm->p);
978 bprm->p = copy_elf_strings(bprm->envc,bprm->envp,bprm->page,bprm->p);
979 bprm->p = copy_elf_strings(bprm->argc,bprm->argv,bprm->page,bprm->p);
980 if (!bprm->p) {
981 retval = -E2BIG;
982 }
983
bellard31e31b82003-02-18 22:55:36 +0000984 /* Now read in all of the header information */
bellard31e31b82003-02-18 22:55:36 +0000985 elf_phdata = (struct elf_phdr *)malloc(elf_ex.e_phentsize*elf_ex.e_phnum);
986 if (elf_phdata == NULL) {
987 return -ENOMEM;
988 }
989
990 retval = lseek(bprm->fd, elf_ex.e_phoff, SEEK_SET);
991 if(retval > 0) {
992 retval = read(bprm->fd, (char *) elf_phdata,
993 elf_ex.e_phentsize * elf_ex.e_phnum);
994 }
995
996 if (retval < 0) {
997 perror("load_elf_binary");
998 exit(-1);
999 free (elf_phdata);
1000 return -errno;
1001 }
1002
bellardb17780d2003-02-18 23:32:15 +00001003#ifdef BSWAP_NEEDED
1004 elf_ppnt = elf_phdata;
1005 for (i=0; i<elf_ex.e_phnum; i++, elf_ppnt++) {
1006 bswap_phdr(elf_ppnt);
1007 }
1008#endif
bellard31e31b82003-02-18 22:55:36 +00001009 elf_ppnt = elf_phdata;
1010
1011 elf_bss = 0;
1012 elf_brk = 0;
1013
1014
1015 elf_stack = ~0UL;
1016 elf_interpreter = NULL;
1017 start_code = ~0UL;
1018 end_code = 0;
1019 end_data = 0;
1020
1021 for(i=0;i < elf_ex.e_phnum; i++) {
1022 if (elf_ppnt->p_type == PT_INTERP) {
1023 if ( elf_interpreter != NULL )
1024 {
1025 free (elf_phdata);
1026 free(elf_interpreter);
1027 close(bprm->fd);
1028 return -EINVAL;
1029 }
1030
1031 /* This is the program interpreter used for
1032 * shared libraries - for now assume that this
1033 * is an a.out format binary
1034 */
1035
bellard32ce6332003-04-11 00:16:16 +00001036 elf_interpreter = (char *)malloc(elf_ppnt->p_filesz);
bellard31e31b82003-02-18 22:55:36 +00001037
1038 if (elf_interpreter == NULL) {
1039 free (elf_phdata);
1040 close(bprm->fd);
1041 return -ENOMEM;
1042 }
1043
bellard31e31b82003-02-18 22:55:36 +00001044 retval = lseek(bprm->fd, elf_ppnt->p_offset, SEEK_SET);
1045 if(retval >= 0) {
bellard32ce6332003-04-11 00:16:16 +00001046 retval = read(bprm->fd, elf_interpreter, elf_ppnt->p_filesz);
bellard31e31b82003-02-18 22:55:36 +00001047 }
1048 if(retval < 0) {
1049 perror("load_elf_binary2");
1050 exit(-1);
1051 }
1052
1053 /* If the program interpreter is one of these two,
1054 then assume an iBCS2 image. Otherwise assume
1055 a native linux image. */
1056
1057 /* JRP - Need to add X86 lib dir stuff here... */
1058
1059 if (strcmp(elf_interpreter,"/usr/lib/libc.so.1") == 0 ||
1060 strcmp(elf_interpreter,"/usr/lib/ld.so.1") == 0) {
1061 ibcs2_interpreter = 1;
1062 }
1063
1064#if 0
1065 printf("Using ELF interpreter %s\n", elf_interpreter);
1066#endif
1067 if (retval >= 0) {
bellard32ce6332003-04-11 00:16:16 +00001068 retval = open(path(elf_interpreter), O_RDONLY);
bellard31e31b82003-02-18 22:55:36 +00001069 if(retval >= 0) {
1070 interpreter_fd = retval;
1071 }
1072 else {
1073 perror(elf_interpreter);
1074 exit(-1);
1075 /* retval = -errno; */
1076 }
1077 }
1078
1079 if (retval >= 0) {
1080 retval = lseek(interpreter_fd, 0, SEEK_SET);
1081 if(retval >= 0) {
1082 retval = read(interpreter_fd,bprm->buf,128);
1083 }
1084 }
1085 if (retval >= 0) {
1086 interp_ex = *((struct exec *) bprm->buf); /* aout exec-header */
1087 interp_elf_ex=*((struct elfhdr *) bprm->buf); /* elf exec-header */
1088 }
1089 if (retval < 0) {
1090 perror("load_elf_binary3");
1091 exit(-1);
1092 free (elf_phdata);
1093 free(elf_interpreter);
1094 close(bprm->fd);
1095 return retval;
1096 }
1097 }
1098 elf_ppnt++;
1099 }
1100
1101 /* Some simple consistency checks for the interpreter */
1102 if (elf_interpreter){
1103 interpreter_type = INTERPRETER_ELF | INTERPRETER_AOUT;
1104
1105 /* Now figure out which format our binary is */
1106 if ((N_MAGIC(interp_ex) != OMAGIC) && (N_MAGIC(interp_ex) != ZMAGIC) &&
1107 (N_MAGIC(interp_ex) != QMAGIC)) {
1108 interpreter_type = INTERPRETER_ELF;
1109 }
1110
1111 if (interp_elf_ex.e_ident[0] != 0x7f ||
1112 strncmp(&interp_elf_ex.e_ident[1], "ELF",3) != 0) {
1113 interpreter_type &= ~INTERPRETER_ELF;
1114 }
1115
1116 if (!interpreter_type) {
1117 free(elf_interpreter);
1118 free(elf_phdata);
1119 close(bprm->fd);
1120 return -ELIBBAD;
1121 }
1122 }
1123
1124 /* OK, we are done with that, now set up the arg stuff,
1125 and then start this sucker up */
1126
pbrooke5fe0c52006-06-11 13:32:59 +00001127 {
bellard31e31b82003-02-18 22:55:36 +00001128 char * passed_p;
1129
1130 if (interpreter_type == INTERPRETER_AOUT) {
bellardeba2af62004-06-19 17:23:39 +00001131 snprintf(passed_fileno, sizeof(passed_fileno), "%d", bprm->fd);
bellard31e31b82003-02-18 22:55:36 +00001132 passed_p = passed_fileno;
1133
1134 if (elf_interpreter) {
pbrooke5fe0c52006-06-11 13:32:59 +00001135 bprm->p = copy_elf_strings(1,&passed_p,bprm->page,bprm->p);
bellard31e31b82003-02-18 22:55:36 +00001136 bprm->argc++;
1137 }
1138 }
1139 if (!bprm->p) {
1140 if (elf_interpreter) {
1141 free(elf_interpreter);
1142 }
1143 free (elf_phdata);
1144 close(bprm->fd);
1145 return -E2BIG;
1146 }
1147 }
1148
1149 /* OK, This is the point of no return */
1150 info->end_data = 0;
1151 info->end_code = 0;
1152 info->start_mmap = (unsigned long)ELF_START_MMAP;
1153 info->mmap = 0;
1154 elf_entry = (unsigned long) elf_ex.e_entry;
1155
1156 /* Do this so that we can load the interpreter, if need be. We will
1157 change some of these later */
1158 info->rss = 0;
1159 bprm->p = setup_arg_pages(bprm->p, bprm, info);
1160 info->start_stack = bprm->p;
1161
1162 /* Now we do a little grungy work by mmaping the ELF image into
1163 * the correct location in memory. At this point, we assume that
1164 * the image should be loaded at fixed address, not at a variable
1165 * address.
1166 */
1167
bellard31e31b82003-02-18 22:55:36 +00001168 for(i = 0, elf_ppnt = elf_phdata; i < elf_ex.e_phnum; i++, elf_ppnt++) {
bellard09bfb052003-04-10 00:03:40 +00001169 int elf_prot = 0;
1170 int elf_flags = 0;
1171 unsigned long error;
1172
1173 if (elf_ppnt->p_type != PT_LOAD)
1174 continue;
1175
1176 if (elf_ppnt->p_flags & PF_R) elf_prot |= PROT_READ;
1177 if (elf_ppnt->p_flags & PF_W) elf_prot |= PROT_WRITE;
1178 if (elf_ppnt->p_flags & PF_X) elf_prot |= PROT_EXEC;
1179 elf_flags = MAP_PRIVATE | MAP_DENYWRITE;
1180 if (elf_ex.e_type == ET_EXEC || load_addr_set) {
1181 elf_flags |= MAP_FIXED;
1182 } else if (elf_ex.e_type == ET_DYN) {
1183 /* Try and get dynamic programs out of the way of the default mmap
1184 base, as well as whatever program they might try to exec. This
1185 is because the brk will follow the loader, and is not movable. */
1186 /* NOTE: for qemu, we do a big mmap to get enough space
1187 without harcoding any address */
bellard54936002003-05-13 00:25:15 +00001188 error = target_mmap(0, ET_DYN_MAP_SIZE,
1189 PROT_NONE, MAP_PRIVATE | MAP_ANON,
1190 -1, 0);
bellard09bfb052003-04-10 00:03:40 +00001191 if (error == -1) {
1192 perror("mmap");
1193 exit(-1);
1194 }
bellard54936002003-05-13 00:25:15 +00001195 load_bias = TARGET_ELF_PAGESTART(error - elf_ppnt->p_vaddr);
bellard09bfb052003-04-10 00:03:40 +00001196 }
1197
bellard54936002003-05-13 00:25:15 +00001198 error = target_mmap(TARGET_ELF_PAGESTART(load_bias + elf_ppnt->p_vaddr),
1199 (elf_ppnt->p_filesz +
1200 TARGET_ELF_PAGEOFFSET(elf_ppnt->p_vaddr)),
1201 elf_prot,
1202 (MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE),
1203 bprm->fd,
1204 (elf_ppnt->p_offset -
1205 TARGET_ELF_PAGEOFFSET(elf_ppnt->p_vaddr)));
bellard09bfb052003-04-10 00:03:40 +00001206 if (error == -1) {
1207 perror("mmap");
1208 exit(-1);
1209 }
bellard31e31b82003-02-18 22:55:36 +00001210
1211#ifdef LOW_ELF_STACK
bellard54936002003-05-13 00:25:15 +00001212 if (TARGET_ELF_PAGESTART(elf_ppnt->p_vaddr) < elf_stack)
1213 elf_stack = TARGET_ELF_PAGESTART(elf_ppnt->p_vaddr);
bellard31e31b82003-02-18 22:55:36 +00001214#endif
bellard09bfb052003-04-10 00:03:40 +00001215
1216 if (!load_addr_set) {
1217 load_addr_set = 1;
1218 load_addr = elf_ppnt->p_vaddr - elf_ppnt->p_offset;
1219 if (elf_ex.e_type == ET_DYN) {
1220 load_bias += error -
bellard54936002003-05-13 00:25:15 +00001221 TARGET_ELF_PAGESTART(load_bias + elf_ppnt->p_vaddr);
bellard09bfb052003-04-10 00:03:40 +00001222 load_addr += load_bias;
j_mayer84409dd2007-04-06 08:56:50 +00001223 reloc_func_desc = load_bias;
bellard09bfb052003-04-10 00:03:40 +00001224 }
1225 }
1226 k = elf_ppnt->p_vaddr;
1227 if (k < start_code)
1228 start_code = k;
1229 k = elf_ppnt->p_vaddr + elf_ppnt->p_filesz;
1230 if (k > elf_bss)
1231 elf_bss = k;
1232 if ((elf_ppnt->p_flags & PF_X) && end_code < k)
1233 end_code = k;
1234 if (end_data < k)
1235 end_data = k;
1236 k = elf_ppnt->p_vaddr + elf_ppnt->p_memsz;
1237 if (k > elf_brk) elf_brk = k;
bellard31e31b82003-02-18 22:55:36 +00001238 }
1239
bellard09bfb052003-04-10 00:03:40 +00001240 elf_entry += load_bias;
1241 elf_bss += load_bias;
1242 elf_brk += load_bias;
1243 start_code += load_bias;
1244 end_code += load_bias;
1245 // start_data += load_bias;
1246 end_data += load_bias;
1247
bellard31e31b82003-02-18 22:55:36 +00001248 if (elf_interpreter) {
1249 if (interpreter_type & 1) {
1250 elf_entry = load_aout_interp(&interp_ex, interpreter_fd);
1251 }
1252 else if (interpreter_type & 2) {
1253 elf_entry = load_elf_interp(&interp_elf_ex, interpreter_fd,
1254 &interp_load_addr);
1255 }
j_mayer84409dd2007-04-06 08:56:50 +00001256 reloc_func_desc = interp_load_addr;
bellard31e31b82003-02-18 22:55:36 +00001257
1258 close(interpreter_fd);
1259 free(elf_interpreter);
1260
1261 if (elf_entry == ~0UL) {
1262 printf("Unable to load interpreter\n");
1263 free(elf_phdata);
1264 exit(-1);
1265 return 0;
1266 }
1267 }
1268
1269 free(elf_phdata);
1270
bellard689f9362003-04-29 20:40:07 +00001271 if (loglevel)
1272 load_symbols(&elf_ex, bprm->fd);
1273
bellard31e31b82003-02-18 22:55:36 +00001274 if (interpreter_type != INTERPRETER_AOUT) close(bprm->fd);
1275 info->personality = (ibcs2_interpreter ? PER_SVR4 : PER_LINUX);
1276
1277#ifdef LOW_ELF_STACK
1278 info->start_stack = bprm->p = elf_stack - 4;
1279#endif
pbrook53a59602006-03-25 19:31:22 +00001280 bprm->p = create_elf_tables(bprm->p,
bellard31e31b82003-02-18 22:55:36 +00001281 bprm->argc,
1282 bprm->envc,
bellarda1516e92003-07-09 17:13:37 +00001283 &elf_ex,
bellard09bfb052003-04-10 00:03:40 +00001284 load_addr, load_bias,
bellard31e31b82003-02-18 22:55:36 +00001285 interp_load_addr,
1286 (interpreter_type == INTERPRETER_AOUT ? 0 : 1),
1287 info);
bellard31e31b82003-02-18 22:55:36 +00001288 info->start_brk = info->brk = elf_brk;
1289 info->end_code = end_code;
1290 info->start_code = start_code;
pbrooke5fe0c52006-06-11 13:32:59 +00001291 info->start_data = end_code;
bellard31e31b82003-02-18 22:55:36 +00001292 info->end_data = end_data;
1293 info->start_stack = bprm->p;
1294
1295 /* Calling set_brk effectively mmaps the pages that we need for the bss and break
1296 sections */
1297 set_brk(elf_bss, elf_brk);
1298
ths768a4a32006-12-14 13:32:11 +00001299 padzero(elf_bss, elf_brk);
bellard31e31b82003-02-18 22:55:36 +00001300
1301#if 0
1302 printf("(start_brk) %x\n" , info->start_brk);
1303 printf("(end_code) %x\n" , info->end_code);
1304 printf("(start_code) %x\n" , info->start_code);
1305 printf("(end_data) %x\n" , info->end_data);
1306 printf("(start_stack) %x\n" , info->start_stack);
1307 printf("(brk) %x\n" , info->brk);
1308#endif
1309
1310 if ( info->personality == PER_SVR4 )
1311 {
1312 /* Why this, you ask??? Well SVr4 maps page 0 as read-only,
1313 and some applications "depend" upon this behavior.
1314 Since we do not have the power to recompile these, we
1315 emulate the SVr4 behavior. Sigh. */
bellard83fb7ad2004-07-05 21:25:26 +00001316 mapped_addr = target_mmap(0, qemu_host_page_size, PROT_READ | PROT_EXEC,
bellard54936002003-05-13 00:25:15 +00001317 MAP_FIXED | MAP_PRIVATE, -1, 0);
bellard31e31b82003-02-18 22:55:36 +00001318 }
1319
bellard31e31b82003-02-18 22:55:36 +00001320 info->entry = elf_entry;
1321
1322 return 0;
1323}
1324
bellard31e31b82003-02-18 22:55:36 +00001325static int load_aout_interp(void * exptr, int interp_fd)
1326{
1327 printf("a.out interpreter not yet supported\n");
1328 return(0);
1329}
1330
pbrooke5fe0c52006-06-11 13:32:59 +00001331void do_init_thread(struct target_pt_regs *regs, struct image_info *infop)
1332{
1333 init_thread(regs, infop);
1334}