bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1 | /* 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> |
| 6 | #include <sys/stat.h> |
| 7 | #include <errno.h> |
| 8 | #include <unistd.h> |
| 9 | #include <sys/mman.h> |
| 10 | #include <stdlib.h> |
| 11 | #include <string.h> |
| 12 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 13 | #include "qemu.h" |
bellard | 689f936 | 2003-04-29 20:40:07 +0000 | [diff] [blame] | 14 | #include "disas.h" |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 15 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 16 | /* this flag is uneffective under linux too, should be deleted */ |
| 17 | #ifndef MAP_DENYWRITE |
| 18 | #define MAP_DENYWRITE 0 |
| 19 | #endif |
| 20 | |
| 21 | /* should probably go in elf.h */ |
| 22 | #ifndef ELIBBAD |
| 23 | #define ELIBBAD 80 |
| 24 | #endif |
| 25 | |
bellard | 30ac07d | 2003-04-07 21:33:03 +0000 | [diff] [blame] | 26 | #ifdef TARGET_I386 |
| 27 | |
bellard | 15338fd | 2005-11-26 11:41:16 +0000 | [diff] [blame] | 28 | #define ELF_PLATFORM get_elf_platform() |
| 29 | |
| 30 | static const char *get_elf_platform(void) |
| 31 | { |
| 32 | static char elf_platform[] = "i386"; |
| 33 | int family = (global_env->cpuid_version >> 8) & 0xff; |
| 34 | if (family > 6) |
| 35 | family = 6; |
| 36 | if (family >= 3) |
| 37 | elf_platform[1] = '0' + family; |
| 38 | return elf_platform; |
| 39 | } |
| 40 | |
| 41 | #define ELF_HWCAP get_elf_hwcap() |
| 42 | |
| 43 | static uint32_t get_elf_hwcap(void) |
| 44 | { |
| 45 | return global_env->cpuid_features; |
| 46 | } |
| 47 | |
bellard | 30ac07d | 2003-04-07 21:33:03 +0000 | [diff] [blame] | 48 | #define ELF_START_MMAP 0x80000000 |
| 49 | |
bellard | 30ac07d | 2003-04-07 21:33:03 +0000 | [diff] [blame] | 50 | /* |
| 51 | * This is used to ensure we don't load something for the wrong architecture. |
| 52 | */ |
| 53 | #define elf_check_arch(x) ( ((x) == EM_386) || ((x) == EM_486) ) |
| 54 | |
| 55 | /* |
| 56 | * These are used to set parameters in the core dumps. |
| 57 | */ |
| 58 | #define ELF_CLASS ELFCLASS32 |
| 59 | #define ELF_DATA ELFDATA2LSB |
| 60 | #define ELF_ARCH EM_386 |
| 61 | |
| 62 | /* SVR4/i386 ABI (pages 3-31, 3-32) says that when the program |
| 63 | starts %edx contains a pointer to a function which might be |
| 64 | registered using `atexit'. This provides a mean for the |
| 65 | dynamic linker to call DT_FINI functions for shared libraries |
| 66 | that have been loaded before the code runs. |
| 67 | |
| 68 | A value of 0 tells we have no such handler. */ |
| 69 | #define ELF_PLAT_INIT(_r) _r->edx = 0 |
| 70 | |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 71 | static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop) |
| 72 | { |
| 73 | regs->esp = infop->start_stack; |
| 74 | regs->eip = infop->entry; |
| 75 | } |
| 76 | |
| 77 | #define USE_ELF_CORE_DUMP |
| 78 | #define ELF_EXEC_PAGESIZE 4096 |
| 79 | |
| 80 | #endif |
| 81 | |
| 82 | #ifdef TARGET_ARM |
| 83 | |
| 84 | #define ELF_START_MMAP 0x80000000 |
| 85 | |
| 86 | #define elf_check_arch(x) ( (x) == EM_ARM ) |
| 87 | |
| 88 | #define ELF_CLASS ELFCLASS32 |
| 89 | #ifdef TARGET_WORDS_BIGENDIAN |
| 90 | #define ELF_DATA ELFDATA2MSB |
| 91 | #else |
| 92 | #define ELF_DATA ELFDATA2LSB |
| 93 | #endif |
| 94 | #define ELF_ARCH EM_ARM |
| 95 | |
| 96 | #define ELF_PLAT_INIT(_r) _r->ARM_r0 = 0 |
| 97 | |
| 98 | static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop) |
| 99 | { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 100 | target_long stack = infop->start_stack; |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 101 | memset(regs, 0, sizeof(*regs)); |
| 102 | regs->ARM_cpsr = 0x10; |
pbrook | 0240ded | 2006-02-04 19:30:51 +0000 | [diff] [blame] | 103 | if (infop->entry & 1) |
| 104 | regs->ARM_cpsr |= CPSR_T; |
| 105 | regs->ARM_pc = infop->entry & 0xfffffffe; |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 106 | regs->ARM_sp = infop->start_stack; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 107 | regs->ARM_r2 = tgetl(stack + 8); /* envp */ |
| 108 | regs->ARM_r1 = tgetl(stack + 4); /* envp */ |
bellard | a1516e9 | 2003-07-09 17:13:37 +0000 | [diff] [blame] | 109 | /* XXX: it seems that r0 is zeroed after ! */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 110 | // regs->ARM_r0 = tgetl(stack); /* argc */ |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 111 | } |
| 112 | |
bellard | 30ac07d | 2003-04-07 21:33:03 +0000 | [diff] [blame] | 113 | #define USE_ELF_CORE_DUMP |
| 114 | #define ELF_EXEC_PAGESIZE 4096 |
| 115 | |
bellard | afce292 | 2005-10-30 20:58:30 +0000 | [diff] [blame] | 116 | enum |
| 117 | { |
| 118 | ARM_HWCAP_ARM_SWP = 1 << 0, |
| 119 | ARM_HWCAP_ARM_HALF = 1 << 1, |
| 120 | ARM_HWCAP_ARM_THUMB = 1 << 2, |
| 121 | ARM_HWCAP_ARM_26BIT = 1 << 3, |
| 122 | ARM_HWCAP_ARM_FAST_MULT = 1 << 4, |
| 123 | ARM_HWCAP_ARM_FPA = 1 << 5, |
| 124 | ARM_HWCAP_ARM_VFP = 1 << 6, |
| 125 | ARM_HWCAP_ARM_EDSP = 1 << 7, |
| 126 | }; |
| 127 | |
bellard | 15338fd | 2005-11-26 11:41:16 +0000 | [diff] [blame] | 128 | #define ELF_HWCAP (ARM_HWCAP_ARM_SWP | ARM_HWCAP_ARM_HALF \ |
bellard | afce292 | 2005-10-30 20:58:30 +0000 | [diff] [blame] | 129 | | ARM_HWCAP_ARM_THUMB | ARM_HWCAP_ARM_FAST_MULT \ |
| 130 | | ARM_HWCAP_ARM_FPA | ARM_HWCAP_ARM_VFP) |
| 131 | |
bellard | 30ac07d | 2003-04-07 21:33:03 +0000 | [diff] [blame] | 132 | #endif |
| 133 | |
bellard | 853d6f7 | 2003-09-30 20:58:32 +0000 | [diff] [blame] | 134 | #ifdef TARGET_SPARC |
bellard | a315a14 | 2005-01-30 22:59:18 +0000 | [diff] [blame] | 135 | #ifdef TARGET_SPARC64 |
bellard | 853d6f7 | 2003-09-30 20:58:32 +0000 | [diff] [blame] | 136 | |
| 137 | #define ELF_START_MMAP 0x80000000 |
| 138 | |
| 139 | #define elf_check_arch(x) ( (x) == EM_SPARC ) |
| 140 | |
bellard | a315a14 | 2005-01-30 22:59:18 +0000 | [diff] [blame] | 141 | #define ELF_CLASS ELFCLASS64 |
| 142 | #define ELF_DATA ELFDATA2MSB |
| 143 | #define ELF_ARCH EM_SPARC |
| 144 | |
| 145 | /*XXX*/ |
| 146 | #define ELF_PLAT_INIT(_r) |
| 147 | |
| 148 | static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop) |
| 149 | { |
| 150 | regs->tstate = 0; |
| 151 | regs->pc = infop->entry; |
| 152 | regs->npc = regs->pc + 4; |
| 153 | regs->y = 0; |
| 154 | regs->u_regs[14] = infop->start_stack - 16 * 4; |
| 155 | } |
| 156 | |
| 157 | #else |
| 158 | #define ELF_START_MMAP 0x80000000 |
| 159 | |
| 160 | #define elf_check_arch(x) ( (x) == EM_SPARC ) |
| 161 | |
bellard | 853d6f7 | 2003-09-30 20:58:32 +0000 | [diff] [blame] | 162 | #define ELF_CLASS ELFCLASS32 |
| 163 | #define ELF_DATA ELFDATA2MSB |
| 164 | #define ELF_ARCH EM_SPARC |
| 165 | |
| 166 | /*XXX*/ |
| 167 | #define ELF_PLAT_INIT(_r) |
| 168 | |
| 169 | static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop) |
| 170 | { |
bellard | f515528 | 2004-01-04 15:46:50 +0000 | [diff] [blame] | 171 | regs->psr = 0; |
| 172 | regs->pc = infop->entry; |
| 173 | regs->npc = regs->pc + 4; |
| 174 | regs->y = 0; |
| 175 | regs->u_regs[14] = infop->start_stack - 16 * 4; |
bellard | 853d6f7 | 2003-09-30 20:58:32 +0000 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | #endif |
bellard | a315a14 | 2005-01-30 22:59:18 +0000 | [diff] [blame] | 179 | #endif |
bellard | 853d6f7 | 2003-09-30 20:58:32 +0000 | [diff] [blame] | 180 | |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 181 | #ifdef TARGET_PPC |
| 182 | |
| 183 | #define ELF_START_MMAP 0x80000000 |
| 184 | |
| 185 | #define elf_check_arch(x) ( (x) == EM_PPC ) |
| 186 | |
| 187 | #define ELF_CLASS ELFCLASS32 |
| 188 | #ifdef TARGET_WORDS_BIGENDIAN |
| 189 | #define ELF_DATA ELFDATA2MSB |
| 190 | #else |
| 191 | #define ELF_DATA ELFDATA2LSB |
| 192 | #endif |
| 193 | #define ELF_ARCH EM_PPC |
| 194 | |
| 195 | /* Note that isn't exactly what regular kernel does |
| 196 | * but this is what the ABI wants and is needed to allow |
| 197 | * execution of PPC BSD programs. |
| 198 | */ |
| 199 | #define ELF_PLAT_INIT(_r) \ |
| 200 | do { \ |
bellard | 274da6b | 2004-05-20 21:56:27 +0000 | [diff] [blame] | 201 | target_ulong *pos = (target_ulong *)bprm->p, tmp = 1; \ |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 202 | _r->gpr[3] = bprm->argc; \ |
| 203 | _r->gpr[4] = (unsigned long)++pos; \ |
| 204 | for (; tmp != 0; pos++) \ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 205 | tmp = ldl(pos); \ |
bellard | f515528 | 2004-01-04 15:46:50 +0000 | [diff] [blame] | 206 | _r->gpr[5] = (unsigned long)pos; \ |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 207 | } while (0) |
| 208 | |
bellard | f515528 | 2004-01-04 15:46:50 +0000 | [diff] [blame] | 209 | /* |
| 210 | * We need to put in some extra aux table entries to tell glibc what |
| 211 | * the cache block size is, so it can use the dcbz instruction safely. |
| 212 | */ |
| 213 | #define AT_DCACHEBSIZE 19 |
| 214 | #define AT_ICACHEBSIZE 20 |
| 215 | #define AT_UCACHEBSIZE 21 |
| 216 | /* A special ignored type value for PPC, for glibc compatibility. */ |
| 217 | #define AT_IGNOREPPC 22 |
| 218 | /* |
| 219 | * The requirements here are: |
| 220 | * - keep the final alignment of sp (sp & 0xf) |
| 221 | * - make sure the 32-bit value at the first 16 byte aligned position of |
| 222 | * AUXV is greater than 16 for glibc compatibility. |
| 223 | * AT_IGNOREPPC is used for that. |
| 224 | * - for compatibility with glibc ARCH_DLINFO must always be defined on PPC, |
| 225 | * even if DLINFO_ARCH_ITEMS goes to zero or is undefined. |
| 226 | */ |
bellard | 0bccf03 | 2005-08-21 10:12:28 +0000 | [diff] [blame] | 227 | #define DLINFO_ARCH_ITEMS 5 |
bellard | f515528 | 2004-01-04 15:46:50 +0000 | [diff] [blame] | 228 | #define ARCH_DLINFO \ |
| 229 | do { \ |
bellard | 0bccf03 | 2005-08-21 10:12:28 +0000 | [diff] [blame] | 230 | NEW_AUX_ENT(AT_DCACHEBSIZE, 0x20); \ |
| 231 | NEW_AUX_ENT(AT_ICACHEBSIZE, 0x20); \ |
| 232 | NEW_AUX_ENT(AT_UCACHEBSIZE, 0); \ |
bellard | f515528 | 2004-01-04 15:46:50 +0000 | [diff] [blame] | 233 | /* \ |
| 234 | * Now handle glibc compatibility. \ |
| 235 | */ \ |
bellard | 0bccf03 | 2005-08-21 10:12:28 +0000 | [diff] [blame] | 236 | NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \ |
| 237 | NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \ |
bellard | f515528 | 2004-01-04 15:46:50 +0000 | [diff] [blame] | 238 | } while (0) |
| 239 | |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 240 | static inline void init_thread(struct target_pt_regs *_regs, struct image_info *infop) |
| 241 | { |
| 242 | _regs->msr = 1 << MSR_PR; /* Set user mode */ |
| 243 | _regs->gpr[1] = infop->start_stack; |
| 244 | _regs->nip = infop->entry; |
| 245 | } |
| 246 | |
| 247 | #define USE_ELF_CORE_DUMP |
| 248 | #define ELF_EXEC_PAGESIZE 4096 |
| 249 | |
| 250 | #endif |
| 251 | |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 252 | #ifdef TARGET_MIPS |
| 253 | |
| 254 | #define ELF_START_MMAP 0x80000000 |
| 255 | |
| 256 | #define elf_check_arch(x) ( (x) == EM_MIPS ) |
| 257 | |
| 258 | #define ELF_CLASS ELFCLASS32 |
| 259 | #ifdef TARGET_WORDS_BIGENDIAN |
| 260 | #define ELF_DATA ELFDATA2MSB |
| 261 | #else |
| 262 | #define ELF_DATA ELFDATA2LSB |
| 263 | #endif |
| 264 | #define ELF_ARCH EM_MIPS |
| 265 | |
| 266 | #define ELF_PLAT_INIT(_r) |
| 267 | |
| 268 | static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop) |
| 269 | { |
| 270 | regs->cp0_status = CP0St_UM; |
| 271 | regs->cp0_epc = infop->entry; |
| 272 | regs->regs[29] = infop->start_stack; |
| 273 | } |
| 274 | |
| 275 | #endif /* TARGET_MIPS */ |
| 276 | |
bellard | 15338fd | 2005-11-26 11:41:16 +0000 | [diff] [blame] | 277 | #ifndef ELF_PLATFORM |
| 278 | #define ELF_PLATFORM (NULL) |
| 279 | #endif |
| 280 | |
| 281 | #ifndef ELF_HWCAP |
| 282 | #define ELF_HWCAP 0 |
| 283 | #endif |
| 284 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 285 | #include "elf.h" |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 286 | |
| 287 | /* |
| 288 | * MAX_ARG_PAGES defines the number of pages allocated for arguments |
| 289 | * and envelope for the new program. 32 should suffice, this gives |
| 290 | * a maximum env+arg of 128kB w/4KB pages! |
| 291 | */ |
| 292 | #define MAX_ARG_PAGES 32 |
| 293 | |
| 294 | /* |
| 295 | * This structure is used to hold the arguments that are |
| 296 | * used when loading binaries. |
| 297 | */ |
| 298 | struct linux_binprm { |
| 299 | char buf[128]; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 300 | void *page[MAX_ARG_PAGES]; |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 301 | unsigned long p; |
| 302 | int sh_bang; |
| 303 | int fd; |
| 304 | int e_uid, e_gid; |
| 305 | int argc, envc; |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 306 | char * filename; /* Name of binary */ |
| 307 | unsigned long loader, exec; |
| 308 | int dont_iput; /* binfmt handler has put inode */ |
| 309 | }; |
| 310 | |
| 311 | struct exec |
| 312 | { |
| 313 | unsigned int a_info; /* Use macros N_MAGIC, etc for access */ |
| 314 | unsigned int a_text; /* length of text, in bytes */ |
| 315 | unsigned int a_data; /* length of data, in bytes */ |
| 316 | unsigned int a_bss; /* length of uninitialized data area, in bytes */ |
| 317 | unsigned int a_syms; /* length of symbol table data in file, in bytes */ |
| 318 | unsigned int a_entry; /* start address */ |
| 319 | unsigned int a_trsize; /* length of relocation info for text, in bytes */ |
| 320 | unsigned int a_drsize; /* length of relocation info for data, in bytes */ |
| 321 | }; |
| 322 | |
| 323 | |
| 324 | #define N_MAGIC(exec) ((exec).a_info & 0xffff) |
| 325 | #define OMAGIC 0407 |
| 326 | #define NMAGIC 0410 |
| 327 | #define ZMAGIC 0413 |
| 328 | #define QMAGIC 0314 |
| 329 | |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 330 | /* max code+data+bss space allocated to elf interpreter */ |
| 331 | #define INTERP_MAP_SIZE (32 * 1024 * 1024) |
| 332 | |
| 333 | /* max code+data+bss+brk space allocated to ET_DYN executables */ |
| 334 | #define ET_DYN_MAP_SIZE (128 * 1024 * 1024) |
| 335 | |
| 336 | /* from personality.h */ |
| 337 | |
| 338 | /* Flags for bug emulation. These occupy the top three bytes. */ |
| 339 | #define STICKY_TIMEOUTS 0x4000000 |
| 340 | #define WHOLE_SECONDS 0x2000000 |
| 341 | |
| 342 | /* Personality types. These go in the low byte. Avoid using the top bit, |
| 343 | * it will conflict with error returns. |
| 344 | */ |
| 345 | #define PER_MASK (0x00ff) |
| 346 | #define PER_LINUX (0x0000) |
| 347 | #define PER_SVR4 (0x0001 | STICKY_TIMEOUTS) |
| 348 | #define PER_SVR3 (0x0002 | STICKY_TIMEOUTS) |
| 349 | #define PER_SCOSVR3 (0x0003 | STICKY_TIMEOUTS | WHOLE_SECONDS) |
| 350 | #define PER_WYSEV386 (0x0004 | STICKY_TIMEOUTS) |
| 351 | #define PER_ISCR4 (0x0005 | STICKY_TIMEOUTS) |
| 352 | #define PER_BSD (0x0006) |
| 353 | #define PER_XENIX (0x0007 | STICKY_TIMEOUTS) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 354 | |
| 355 | /* Necessary parameters */ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 356 | #define NGROUPS 32 |
| 357 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 358 | #define TARGET_ELF_EXEC_PAGESIZE TARGET_PAGE_SIZE |
| 359 | #define TARGET_ELF_PAGESTART(_v) ((_v) & ~(unsigned long)(TARGET_ELF_EXEC_PAGESIZE-1)) |
| 360 | #define TARGET_ELF_PAGEOFFSET(_v) ((_v) & (TARGET_ELF_EXEC_PAGESIZE-1)) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 361 | |
| 362 | #define INTERPRETER_NONE 0 |
| 363 | #define INTERPRETER_AOUT 1 |
| 364 | #define INTERPRETER_ELF 2 |
| 365 | |
bellard | 15338fd | 2005-11-26 11:41:16 +0000 | [diff] [blame] | 366 | #define DLINFO_ITEMS 12 |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 367 | |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 368 | static inline void memcpy_fromfs(void * to, const void * from, unsigned long n) |
| 369 | { |
| 370 | memcpy(to, from, n); |
| 371 | } |
| 372 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 373 | extern unsigned long x86_stack_size; |
| 374 | |
| 375 | static int load_aout_interp(void * exptr, int interp_fd); |
| 376 | |
| 377 | #ifdef BSWAP_NEEDED |
bellard | 92a31b1 | 2005-02-10 22:00:52 +0000 | [diff] [blame] | 378 | static void bswap_ehdr(struct elfhdr *ehdr) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 379 | { |
| 380 | bswap16s(&ehdr->e_type); /* Object file type */ |
| 381 | bswap16s(&ehdr->e_machine); /* Architecture */ |
| 382 | bswap32s(&ehdr->e_version); /* Object file version */ |
bellard | 92a31b1 | 2005-02-10 22:00:52 +0000 | [diff] [blame] | 383 | bswaptls(&ehdr->e_entry); /* Entry point virtual address */ |
| 384 | bswaptls(&ehdr->e_phoff); /* Program header table file offset */ |
| 385 | bswaptls(&ehdr->e_shoff); /* Section header table file offset */ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 386 | bswap32s(&ehdr->e_flags); /* Processor-specific flags */ |
| 387 | bswap16s(&ehdr->e_ehsize); /* ELF header size in bytes */ |
| 388 | bswap16s(&ehdr->e_phentsize); /* Program header table entry size */ |
| 389 | bswap16s(&ehdr->e_phnum); /* Program header table entry count */ |
| 390 | bswap16s(&ehdr->e_shentsize); /* Section header table entry size */ |
| 391 | bswap16s(&ehdr->e_shnum); /* Section header table entry count */ |
| 392 | bswap16s(&ehdr->e_shstrndx); /* Section header string table index */ |
| 393 | } |
| 394 | |
bellard | 92a31b1 | 2005-02-10 22:00:52 +0000 | [diff] [blame] | 395 | static void bswap_phdr(struct elf_phdr *phdr) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 396 | { |
| 397 | bswap32s(&phdr->p_type); /* Segment type */ |
bellard | 92a31b1 | 2005-02-10 22:00:52 +0000 | [diff] [blame] | 398 | bswaptls(&phdr->p_offset); /* Segment file offset */ |
| 399 | bswaptls(&phdr->p_vaddr); /* Segment virtual address */ |
| 400 | bswaptls(&phdr->p_paddr); /* Segment physical address */ |
| 401 | bswaptls(&phdr->p_filesz); /* Segment size in file */ |
| 402 | bswaptls(&phdr->p_memsz); /* Segment size in memory */ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 403 | bswap32s(&phdr->p_flags); /* Segment flags */ |
bellard | 92a31b1 | 2005-02-10 22:00:52 +0000 | [diff] [blame] | 404 | bswaptls(&phdr->p_align); /* Segment alignment */ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 405 | } |
bellard | 689f936 | 2003-04-29 20:40:07 +0000 | [diff] [blame] | 406 | |
bellard | 92a31b1 | 2005-02-10 22:00:52 +0000 | [diff] [blame] | 407 | static void bswap_shdr(struct elf_shdr *shdr) |
bellard | 689f936 | 2003-04-29 20:40:07 +0000 | [diff] [blame] | 408 | { |
| 409 | bswap32s(&shdr->sh_name); |
| 410 | bswap32s(&shdr->sh_type); |
bellard | 92a31b1 | 2005-02-10 22:00:52 +0000 | [diff] [blame] | 411 | bswaptls(&shdr->sh_flags); |
| 412 | bswaptls(&shdr->sh_addr); |
| 413 | bswaptls(&shdr->sh_offset); |
| 414 | bswaptls(&shdr->sh_size); |
bellard | 689f936 | 2003-04-29 20:40:07 +0000 | [diff] [blame] | 415 | bswap32s(&shdr->sh_link); |
| 416 | bswap32s(&shdr->sh_info); |
bellard | 92a31b1 | 2005-02-10 22:00:52 +0000 | [diff] [blame] | 417 | bswaptls(&shdr->sh_addralign); |
| 418 | bswaptls(&shdr->sh_entsize); |
bellard | 689f936 | 2003-04-29 20:40:07 +0000 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | static void bswap_sym(Elf32_Sym *sym) |
| 422 | { |
| 423 | bswap32s(&sym->st_name); |
| 424 | bswap32s(&sym->st_value); |
| 425 | bswap32s(&sym->st_size); |
| 426 | bswap16s(&sym->st_shndx); |
| 427 | } |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 428 | #endif |
| 429 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 430 | /* |
| 431 | * 'copy_string()' copies argument/envelope strings from user |
| 432 | * memory to free pages in kernel mem. These are in a format ready |
| 433 | * to be put directly into the top of new user memory. |
| 434 | * |
| 435 | */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 436 | static unsigned long copy_strings(int argc,char ** argv, void **page, |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 437 | unsigned long p) |
| 438 | { |
| 439 | char *tmp, *tmp1, *pag = NULL; |
| 440 | int len, offset = 0; |
| 441 | |
| 442 | if (!p) { |
| 443 | return 0; /* bullet-proofing */ |
| 444 | } |
| 445 | while (argc-- > 0) { |
bellard | edf779f | 2004-02-22 13:40:13 +0000 | [diff] [blame] | 446 | tmp = argv[argc]; |
| 447 | if (!tmp) { |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 448 | fprintf(stderr, "VFS: argc is wrong"); |
| 449 | exit(-1); |
| 450 | } |
bellard | edf779f | 2004-02-22 13:40:13 +0000 | [diff] [blame] | 451 | tmp1 = tmp; |
| 452 | while (*tmp++); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 453 | len = tmp - tmp1; |
| 454 | if (p < len) { /* this shouldn't happen - 128kB */ |
| 455 | return 0; |
| 456 | } |
| 457 | while (len) { |
| 458 | --p; --tmp; --len; |
| 459 | if (--offset < 0) { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 460 | offset = p % TARGET_PAGE_SIZE; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 461 | pag = (char *)page[p/TARGET_PAGE_SIZE]; |
bellard | 44a91ca | 2004-01-18 22:05:44 +0000 | [diff] [blame] | 462 | if (!pag) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 463 | pag = (char *)malloc(TARGET_PAGE_SIZE); |
| 464 | page[p/TARGET_PAGE_SIZE] = pag; |
bellard | 44a91ca | 2004-01-18 22:05:44 +0000 | [diff] [blame] | 465 | if (!pag) |
| 466 | return 0; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 467 | } |
| 468 | } |
| 469 | if (len == 0 || offset == 0) { |
bellard | edf779f | 2004-02-22 13:40:13 +0000 | [diff] [blame] | 470 | *(pag + offset) = *tmp; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 471 | } |
| 472 | else { |
| 473 | int bytes_to_copy = (len > offset) ? offset : len; |
| 474 | tmp -= bytes_to_copy; |
| 475 | p -= bytes_to_copy; |
| 476 | offset -= bytes_to_copy; |
| 477 | len -= bytes_to_copy; |
| 478 | memcpy_fromfs(pag + offset, tmp, bytes_to_copy + 1); |
| 479 | } |
| 480 | } |
| 481 | } |
| 482 | return p; |
| 483 | } |
| 484 | |
| 485 | static int in_group_p(gid_t g) |
| 486 | { |
| 487 | /* return TRUE if we're in the specified group, FALSE otherwise */ |
| 488 | int ngroup; |
| 489 | int i; |
| 490 | gid_t grouplist[NGROUPS]; |
| 491 | |
| 492 | ngroup = getgroups(NGROUPS, grouplist); |
| 493 | for(i = 0; i < ngroup; i++) { |
| 494 | if(grouplist[i] == g) { |
| 495 | return 1; |
| 496 | } |
| 497 | } |
| 498 | return 0; |
| 499 | } |
| 500 | |
| 501 | static int count(char ** vec) |
| 502 | { |
| 503 | int i; |
| 504 | |
| 505 | for(i = 0; *vec; i++) { |
| 506 | vec++; |
| 507 | } |
| 508 | |
| 509 | return(i); |
| 510 | } |
| 511 | |
| 512 | static int prepare_binprm(struct linux_binprm *bprm) |
| 513 | { |
| 514 | struct stat st; |
| 515 | int mode; |
| 516 | int retval, id_change; |
| 517 | |
| 518 | if(fstat(bprm->fd, &st) < 0) { |
| 519 | return(-errno); |
| 520 | } |
| 521 | |
| 522 | mode = st.st_mode; |
| 523 | if(!S_ISREG(mode)) { /* Must be regular file */ |
| 524 | return(-EACCES); |
| 525 | } |
| 526 | if(!(mode & 0111)) { /* Must have at least one execute bit set */ |
| 527 | return(-EACCES); |
| 528 | } |
| 529 | |
| 530 | bprm->e_uid = geteuid(); |
| 531 | bprm->e_gid = getegid(); |
| 532 | id_change = 0; |
| 533 | |
| 534 | /* Set-uid? */ |
| 535 | if(mode & S_ISUID) { |
| 536 | bprm->e_uid = st.st_uid; |
| 537 | if(bprm->e_uid != geteuid()) { |
| 538 | id_change = 1; |
| 539 | } |
| 540 | } |
| 541 | |
| 542 | /* Set-gid? */ |
| 543 | /* |
| 544 | * If setgid is set but no group execute bit then this |
| 545 | * is a candidate for mandatory locking, not a setgid |
| 546 | * executable. |
| 547 | */ |
| 548 | if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) { |
| 549 | bprm->e_gid = st.st_gid; |
| 550 | if (!in_group_p(bprm->e_gid)) { |
| 551 | id_change = 1; |
| 552 | } |
| 553 | } |
| 554 | |
| 555 | memset(bprm->buf, 0, sizeof(bprm->buf)); |
| 556 | retval = lseek(bprm->fd, 0L, SEEK_SET); |
| 557 | if(retval >= 0) { |
| 558 | retval = read(bprm->fd, bprm->buf, 128); |
| 559 | } |
| 560 | if(retval < 0) { |
| 561 | perror("prepare_binprm"); |
| 562 | exit(-1); |
| 563 | /* return(-errno); */ |
| 564 | } |
| 565 | else { |
| 566 | return(retval); |
| 567 | } |
| 568 | } |
| 569 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 570 | static inline void memcpy_to_target(target_ulong dest, const void *src, |
| 571 | unsigned long len) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 572 | { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 573 | void *host_ptr; |
| 574 | |
| 575 | host_ptr = lock_user(dest, len, 0); |
| 576 | memcpy(host_ptr, src, len); |
| 577 | unlock_user(host_ptr, dest, 1); |
| 578 | } |
| 579 | |
| 580 | unsigned long setup_arg_pages(target_ulong p, struct linux_binprm * bprm, |
| 581 | struct image_info * info) |
| 582 | { |
| 583 | target_ulong stack_base, size, error; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 584 | int i; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 585 | |
| 586 | /* Create enough stack to hold everything. If we don't use |
| 587 | * it for args, we'll use it for something else... |
| 588 | */ |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 589 | size = x86_stack_size; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 590 | if (size < MAX_ARG_PAGES*TARGET_PAGE_SIZE) |
| 591 | size = MAX_ARG_PAGES*TARGET_PAGE_SIZE; |
| 592 | error = target_mmap(0, |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 593 | size + qemu_host_page_size, |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 594 | PROT_READ | PROT_WRITE, |
| 595 | MAP_PRIVATE | MAP_ANONYMOUS, |
| 596 | -1, 0); |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 597 | if (error == -1) { |
| 598 | perror("stk mmap"); |
| 599 | exit(-1); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 600 | } |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 601 | /* we reserve one extra page at the top of the stack as guard */ |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 602 | target_mprotect(error + size, qemu_host_page_size, PROT_NONE); |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 603 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 604 | stack_base = error + size - MAX_ARG_PAGES*TARGET_PAGE_SIZE; |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 605 | p += stack_base; |
| 606 | |
| 607 | if (bprm->loader) { |
| 608 | bprm->loader += stack_base; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 609 | } |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 610 | bprm->exec += stack_base; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 611 | |
| 612 | for (i = 0 ; i < MAX_ARG_PAGES ; i++) { |
| 613 | if (bprm->page[i]) { |
| 614 | info->rss++; |
| 615 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 616 | memcpy_to_target(stack_base, bprm->page[i], TARGET_PAGE_SIZE); |
| 617 | free(bprm->page[i]); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 618 | } |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 619 | stack_base += TARGET_PAGE_SIZE; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 620 | } |
| 621 | return p; |
| 622 | } |
| 623 | |
| 624 | static void set_brk(unsigned long start, unsigned long end) |
| 625 | { |
| 626 | /* page-align the start and end addresses... */ |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 627 | start = HOST_PAGE_ALIGN(start); |
| 628 | end = HOST_PAGE_ALIGN(end); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 629 | if (end <= start) |
| 630 | return; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 631 | if(target_mmap(start, end - start, |
| 632 | PROT_READ | PROT_WRITE | PROT_EXEC, |
| 633 | MAP_FIXED | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0) == -1) { |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 634 | perror("cannot mmap brk"); |
| 635 | exit(-1); |
| 636 | } |
| 637 | } |
| 638 | |
| 639 | |
bellard | 853d6f7 | 2003-09-30 20:58:32 +0000 | [diff] [blame] | 640 | /* We need to explicitly zero any fractional pages after the data |
| 641 | section (i.e. bss). This would contain the junk from the file that |
| 642 | should not be in memory. */ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 643 | static void padzero(unsigned long elf_bss) |
| 644 | { |
| 645 | unsigned long nbyte; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 646 | |
bellard | 853d6f7 | 2003-09-30 20:58:32 +0000 | [diff] [blame] | 647 | /* XXX: this is really a hack : if the real host page size is |
| 648 | smaller than the target page size, some pages after the end |
| 649 | of the file may not be mapped. A better fix would be to |
| 650 | patch target_mmap(), but it is more complicated as the file |
| 651 | size must be known */ |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 652 | if (qemu_real_host_page_size < qemu_host_page_size) { |
bellard | 853d6f7 | 2003-09-30 20:58:32 +0000 | [diff] [blame] | 653 | unsigned long end_addr, end_addr1; |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 654 | end_addr1 = (elf_bss + qemu_real_host_page_size - 1) & |
| 655 | ~(qemu_real_host_page_size - 1); |
bellard | 853d6f7 | 2003-09-30 20:58:32 +0000 | [diff] [blame] | 656 | end_addr = HOST_PAGE_ALIGN(elf_bss); |
| 657 | if (end_addr1 < end_addr) { |
| 658 | mmap((void *)end_addr1, end_addr - end_addr1, |
| 659 | PROT_READ|PROT_WRITE|PROT_EXEC, |
| 660 | MAP_FIXED|MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); |
| 661 | } |
| 662 | } |
| 663 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 664 | nbyte = elf_bss & (qemu_host_page_size-1); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 665 | if (nbyte) { |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 666 | nbyte = qemu_host_page_size - nbyte; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 667 | do { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 668 | tput8(elf_bss, 0); |
| 669 | elf_bss++; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 670 | } while (--nbyte); |
| 671 | } |
| 672 | } |
| 673 | |
bellard | edf779f | 2004-02-22 13:40:13 +0000 | [diff] [blame] | 674 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 675 | static unsigned long create_elf_tables(target_ulong p, int argc, int envc, |
| 676 | struct elfhdr * exec, |
| 677 | unsigned long load_addr, |
| 678 | unsigned long load_bias, |
| 679 | unsigned long interp_load_addr, int ibcs, |
| 680 | struct image_info *info) |
| 681 | { |
| 682 | target_ulong argv, envp; |
| 683 | target_ulong sp; |
| 684 | int size; |
| 685 | target_ulong u_platform; |
| 686 | const char *k_platform; |
| 687 | const int n = sizeof(target_ulong); |
| 688 | |
| 689 | sp = p; |
| 690 | u_platform = 0; |
bellard | 15338fd | 2005-11-26 11:41:16 +0000 | [diff] [blame] | 691 | k_platform = ELF_PLATFORM; |
| 692 | if (k_platform) { |
| 693 | size_t len = strlen(k_platform) + 1; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 694 | sp -= (len + n - 1) & ~(n - 1); |
| 695 | u_platform = sp; |
| 696 | memcpy_to_target(sp, k_platform, len); |
bellard | 15338fd | 2005-11-26 11:41:16 +0000 | [diff] [blame] | 697 | } |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 698 | /* |
| 699 | * Force 16 byte _final_ alignment here for generality. |
| 700 | */ |
| 701 | sp = sp &~ (target_ulong)15; |
| 702 | size = (DLINFO_ITEMS + 1) * 2; |
bellard | 15338fd | 2005-11-26 11:41:16 +0000 | [diff] [blame] | 703 | if (k_platform) |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 704 | size += 2; |
bellard | f515528 | 2004-01-04 15:46:50 +0000 | [diff] [blame] | 705 | #ifdef DLINFO_ARCH_ITEMS |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 706 | size += DLINFO_ARCH_ITEMS * 2; |
bellard | f515528 | 2004-01-04 15:46:50 +0000 | [diff] [blame] | 707 | #endif |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 708 | size += envc + argc + 2; |
| 709 | size += (!ibcs ? 3 : 1); /* argc itself */ |
| 710 | size *= n; |
| 711 | if (size & 15) |
| 712 | sp -= 16 - (size & 15); |
bellard | f515528 | 2004-01-04 15:46:50 +0000 | [diff] [blame] | 713 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 714 | #define NEW_AUX_ENT(id, val) do { \ |
| 715 | sp -= n; tputl(sp, val); \ |
| 716 | sp -= n; tputl(sp, id); \ |
| 717 | } while(0) |
bellard | 0bccf03 | 2005-08-21 10:12:28 +0000 | [diff] [blame] | 718 | NEW_AUX_ENT (AT_NULL, 0); |
bellard | f515528 | 2004-01-04 15:46:50 +0000 | [diff] [blame] | 719 | |
bellard | 0bccf03 | 2005-08-21 10:12:28 +0000 | [diff] [blame] | 720 | /* There must be exactly DLINFO_ITEMS entries here. */ |
| 721 | NEW_AUX_ENT(AT_PHDR, (target_ulong)(load_addr + exec->e_phoff)); |
| 722 | NEW_AUX_ENT(AT_PHENT, (target_ulong)(sizeof (struct elf_phdr))); |
| 723 | NEW_AUX_ENT(AT_PHNUM, (target_ulong)(exec->e_phnum)); |
| 724 | NEW_AUX_ENT(AT_PAGESZ, (target_ulong)(TARGET_PAGE_SIZE)); |
| 725 | NEW_AUX_ENT(AT_BASE, (target_ulong)(interp_load_addr)); |
| 726 | NEW_AUX_ENT(AT_FLAGS, (target_ulong)0); |
| 727 | NEW_AUX_ENT(AT_ENTRY, load_bias + exec->e_entry); |
| 728 | NEW_AUX_ENT(AT_UID, (target_ulong) getuid()); |
| 729 | NEW_AUX_ENT(AT_EUID, (target_ulong) geteuid()); |
| 730 | NEW_AUX_ENT(AT_GID, (target_ulong) getgid()); |
| 731 | NEW_AUX_ENT(AT_EGID, (target_ulong) getegid()); |
bellard | 15338fd | 2005-11-26 11:41:16 +0000 | [diff] [blame] | 732 | NEW_AUX_ENT(AT_HWCAP, (target_ulong) ELF_HWCAP); |
| 733 | if (k_platform) |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 734 | NEW_AUX_ENT(AT_PLATFORM, u_platform); |
bellard | f515528 | 2004-01-04 15:46:50 +0000 | [diff] [blame] | 735 | #ifdef ARCH_DLINFO |
| 736 | /* |
| 737 | * ARCH_DLINFO must come last so platform specific code can enforce |
| 738 | * special alignment requirements on the AUXV if necessary (eg. PPC). |
| 739 | */ |
| 740 | ARCH_DLINFO; |
| 741 | #endif |
| 742 | #undef NEW_AUX_ENT |
| 743 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 744 | sp -= (envc + 1) * n; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 745 | envp = sp; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 746 | sp -= (argc + 1) * n; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 747 | argv = sp; |
| 748 | if (!ibcs) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 749 | sp -= n; tputl(sp, envp); |
| 750 | sp -= n; tputl(sp, argv); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 751 | } |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 752 | sp -= n; tputl(sp, argc); |
| 753 | info->arg_start = p; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 754 | while (argc-->0) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 755 | tputl(argv, p); argv += n; |
| 756 | p += target_strlen(p) + 1; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 757 | } |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 758 | tputl(argv, 0); |
| 759 | info->arg_end = info->env_start = p; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 760 | while (envc-->0) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 761 | tputl(envp, p); envp += n; |
| 762 | p += target_strlen(p) + 1; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 763 | } |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 764 | tputl(envp, 0); |
| 765 | info->env_end = p; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 766 | return sp; |
| 767 | } |
| 768 | |
| 769 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 770 | static unsigned long load_elf_interp(struct elfhdr * interp_elf_ex, |
| 771 | int interpreter_fd, |
| 772 | unsigned long *interp_load_addr) |
| 773 | { |
| 774 | struct elf_phdr *elf_phdata = NULL; |
| 775 | struct elf_phdr *eppnt; |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 776 | unsigned long load_addr = 0; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 777 | int load_addr_set = 0; |
| 778 | int retval; |
| 779 | unsigned long last_bss, elf_bss; |
| 780 | unsigned long error; |
| 781 | int i; |
| 782 | |
| 783 | elf_bss = 0; |
| 784 | last_bss = 0; |
| 785 | error = 0; |
| 786 | |
bellard | 644c433 | 2003-03-24 23:00:36 +0000 | [diff] [blame] | 787 | #ifdef BSWAP_NEEDED |
| 788 | bswap_ehdr(interp_elf_ex); |
| 789 | #endif |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 790 | /* First of all, some simple consistency checks */ |
| 791 | if ((interp_elf_ex->e_type != ET_EXEC && |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 792 | interp_elf_ex->e_type != ET_DYN) || |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 793 | !elf_check_arch(interp_elf_ex->e_machine)) { |
| 794 | return ~0UL; |
| 795 | } |
| 796 | |
bellard | 644c433 | 2003-03-24 23:00:36 +0000 | [diff] [blame] | 797 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 798 | /* Now read in all of the header information */ |
| 799 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 800 | if (sizeof(struct elf_phdr) * interp_elf_ex->e_phnum > TARGET_PAGE_SIZE) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 801 | return ~0UL; |
| 802 | |
| 803 | elf_phdata = (struct elf_phdr *) |
| 804 | malloc(sizeof(struct elf_phdr) * interp_elf_ex->e_phnum); |
| 805 | |
| 806 | if (!elf_phdata) |
| 807 | return ~0UL; |
| 808 | |
| 809 | /* |
| 810 | * If the size of this structure has changed, then punt, since |
| 811 | * we will be doing the wrong thing. |
| 812 | */ |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 813 | if (interp_elf_ex->e_phentsize != sizeof(struct elf_phdr)) { |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 814 | free(elf_phdata); |
| 815 | return ~0UL; |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 816 | } |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 817 | |
| 818 | retval = lseek(interpreter_fd, interp_elf_ex->e_phoff, SEEK_SET); |
| 819 | if(retval >= 0) { |
| 820 | retval = read(interpreter_fd, |
| 821 | (char *) elf_phdata, |
| 822 | sizeof(struct elf_phdr) * interp_elf_ex->e_phnum); |
| 823 | } |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 824 | if (retval < 0) { |
| 825 | perror("load_elf_interp"); |
| 826 | exit(-1); |
| 827 | free (elf_phdata); |
| 828 | return retval; |
| 829 | } |
| 830 | #ifdef BSWAP_NEEDED |
| 831 | eppnt = elf_phdata; |
| 832 | for (i=0; i<interp_elf_ex->e_phnum; i++, eppnt++) { |
| 833 | bswap_phdr(eppnt); |
| 834 | } |
| 835 | #endif |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 836 | |
| 837 | if (interp_elf_ex->e_type == ET_DYN) { |
| 838 | /* in order to avoid harcoding the interpreter load |
| 839 | address in qemu, we allocate a big enough memory zone */ |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 840 | error = target_mmap(0, INTERP_MAP_SIZE, |
| 841 | PROT_NONE, MAP_PRIVATE | MAP_ANON, |
| 842 | -1, 0); |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 843 | if (error == -1) { |
| 844 | perror("mmap"); |
| 845 | exit(-1); |
| 846 | } |
| 847 | load_addr = error; |
| 848 | load_addr_set = 1; |
| 849 | } |
| 850 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 851 | eppnt = elf_phdata; |
| 852 | for(i=0; i<interp_elf_ex->e_phnum; i++, eppnt++) |
| 853 | if (eppnt->p_type == PT_LOAD) { |
| 854 | int elf_type = MAP_PRIVATE | MAP_DENYWRITE; |
| 855 | int elf_prot = 0; |
| 856 | unsigned long vaddr = 0; |
| 857 | unsigned long k; |
| 858 | |
| 859 | if (eppnt->p_flags & PF_R) elf_prot = PROT_READ; |
| 860 | if (eppnt->p_flags & PF_W) elf_prot |= PROT_WRITE; |
| 861 | if (eppnt->p_flags & PF_X) elf_prot |= PROT_EXEC; |
| 862 | if (interp_elf_ex->e_type == ET_EXEC || load_addr_set) { |
| 863 | elf_type |= MAP_FIXED; |
| 864 | vaddr = eppnt->p_vaddr; |
| 865 | } |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 866 | error = target_mmap(load_addr+TARGET_ELF_PAGESTART(vaddr), |
| 867 | eppnt->p_filesz + TARGET_ELF_PAGEOFFSET(eppnt->p_vaddr), |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 868 | elf_prot, |
| 869 | elf_type, |
| 870 | interpreter_fd, |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 871 | eppnt->p_offset - TARGET_ELF_PAGEOFFSET(eppnt->p_vaddr)); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 872 | |
pbrook | e89f07d | 2006-02-04 20:46:24 +0000 | [diff] [blame] | 873 | if (error == -1) { |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 874 | /* Real error */ |
| 875 | close(interpreter_fd); |
| 876 | free(elf_phdata); |
| 877 | return ~0UL; |
| 878 | } |
| 879 | |
| 880 | if (!load_addr_set && interp_elf_ex->e_type == ET_DYN) { |
| 881 | load_addr = error; |
| 882 | load_addr_set = 1; |
| 883 | } |
| 884 | |
| 885 | /* |
| 886 | * Find the end of the file mapping for this phdr, and keep |
| 887 | * track of the largest address we see for this. |
| 888 | */ |
| 889 | k = load_addr + eppnt->p_vaddr + eppnt->p_filesz; |
| 890 | if (k > elf_bss) elf_bss = k; |
| 891 | |
| 892 | /* |
| 893 | * Do the same thing for the memory mapping - between |
| 894 | * elf_bss and last_bss is the bss section. |
| 895 | */ |
| 896 | k = load_addr + eppnt->p_memsz + eppnt->p_vaddr; |
| 897 | if (k > last_bss) last_bss = k; |
| 898 | } |
| 899 | |
| 900 | /* Now use mmap to map the library into memory. */ |
| 901 | |
| 902 | close(interpreter_fd); |
| 903 | |
| 904 | /* |
| 905 | * Now fill out the bss section. First pad the last page up |
| 906 | * to the page boundary, and then perform a mmap to make sure |
| 907 | * that there are zeromapped pages up to and including the last |
| 908 | * bss page. |
| 909 | */ |
| 910 | padzero(elf_bss); |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 911 | elf_bss = TARGET_ELF_PAGESTART(elf_bss + qemu_host_page_size - 1); /* What we have mapped so far */ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 912 | |
| 913 | /* Map the last of the bss segment */ |
| 914 | if (last_bss > elf_bss) { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 915 | target_mmap(elf_bss, last_bss-elf_bss, |
| 916 | PROT_READ|PROT_WRITE|PROT_EXEC, |
| 917 | MAP_FIXED|MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 918 | } |
| 919 | free(elf_phdata); |
| 920 | |
| 921 | *interp_load_addr = load_addr; |
| 922 | return ((unsigned long) interp_elf_ex->e_entry) + load_addr; |
| 923 | } |
| 924 | |
bellard | 689f936 | 2003-04-29 20:40:07 +0000 | [diff] [blame] | 925 | /* Best attempt to load symbols from this ELF object. */ |
| 926 | static void load_symbols(struct elfhdr *hdr, int fd) |
| 927 | { |
| 928 | unsigned int i; |
| 929 | struct elf_shdr sechdr, symtab, strtab; |
| 930 | char *strings; |
bellard | e80cfcf | 2004-12-19 23:18:01 +0000 | [diff] [blame] | 931 | struct syminfo *s; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 932 | |
bellard | 689f936 | 2003-04-29 20:40:07 +0000 | [diff] [blame] | 933 | lseek(fd, hdr->e_shoff, SEEK_SET); |
| 934 | for (i = 0; i < hdr->e_shnum; i++) { |
| 935 | if (read(fd, &sechdr, sizeof(sechdr)) != sizeof(sechdr)) |
| 936 | return; |
| 937 | #ifdef BSWAP_NEEDED |
| 938 | bswap_shdr(&sechdr); |
| 939 | #endif |
| 940 | if (sechdr.sh_type == SHT_SYMTAB) { |
| 941 | symtab = sechdr; |
| 942 | lseek(fd, hdr->e_shoff |
| 943 | + sizeof(sechdr) * sechdr.sh_link, SEEK_SET); |
| 944 | if (read(fd, &strtab, sizeof(strtab)) |
| 945 | != sizeof(strtab)) |
| 946 | return; |
| 947 | #ifdef BSWAP_NEEDED |
| 948 | bswap_shdr(&strtab); |
| 949 | #endif |
| 950 | goto found; |
| 951 | } |
| 952 | } |
| 953 | return; /* Shouldn't happen... */ |
| 954 | |
| 955 | found: |
| 956 | /* Now know where the strtab and symtab are. Snarf them. */ |
bellard | e80cfcf | 2004-12-19 23:18:01 +0000 | [diff] [blame] | 957 | s = malloc(sizeof(*s)); |
| 958 | s->disas_symtab = malloc(symtab.sh_size); |
| 959 | s->disas_strtab = strings = malloc(strtab.sh_size); |
| 960 | if (!s->disas_symtab || !s->disas_strtab) |
bellard | 689f936 | 2003-04-29 20:40:07 +0000 | [diff] [blame] | 961 | return; |
| 962 | |
| 963 | lseek(fd, symtab.sh_offset, SEEK_SET); |
bellard | e80cfcf | 2004-12-19 23:18:01 +0000 | [diff] [blame] | 964 | if (read(fd, s->disas_symtab, symtab.sh_size) != symtab.sh_size) |
bellard | 689f936 | 2003-04-29 20:40:07 +0000 | [diff] [blame] | 965 | return; |
| 966 | |
| 967 | #ifdef BSWAP_NEEDED |
| 968 | for (i = 0; i < symtab.sh_size / sizeof(struct elf_sym); i++) |
bellard | e80cfcf | 2004-12-19 23:18:01 +0000 | [diff] [blame] | 969 | bswap_sym(s->disas_symtab + sizeof(struct elf_sym)*i); |
bellard | 689f936 | 2003-04-29 20:40:07 +0000 | [diff] [blame] | 970 | #endif |
| 971 | |
| 972 | lseek(fd, strtab.sh_offset, SEEK_SET); |
| 973 | if (read(fd, strings, strtab.sh_size) != strtab.sh_size) |
| 974 | return; |
bellard | e80cfcf | 2004-12-19 23:18:01 +0000 | [diff] [blame] | 975 | s->disas_num_syms = symtab.sh_size / sizeof(struct elf_sym); |
| 976 | s->next = syminfos; |
| 977 | syminfos = s; |
bellard | 689f936 | 2003-04-29 20:40:07 +0000 | [diff] [blame] | 978 | } |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 979 | |
bellard | b17780d | 2003-02-18 23:32:15 +0000 | [diff] [blame] | 980 | static int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs, |
| 981 | struct image_info * info) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 982 | { |
| 983 | struct elfhdr elf_ex; |
| 984 | struct elfhdr interp_elf_ex; |
| 985 | struct exec interp_ex; |
| 986 | int interpreter_fd = -1; /* avoid warning */ |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 987 | unsigned long load_addr, load_bias; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 988 | int load_addr_set = 0; |
| 989 | unsigned int interpreter_type = INTERPRETER_NONE; |
| 990 | unsigned char ibcs2_interpreter; |
| 991 | int i; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 992 | unsigned long mapped_addr; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 993 | struct elf_phdr * elf_ppnt; |
| 994 | struct elf_phdr *elf_phdata; |
| 995 | unsigned long elf_bss, k, elf_brk; |
| 996 | int retval; |
| 997 | char * elf_interpreter; |
| 998 | unsigned long elf_entry, interp_load_addr = 0; |
| 999 | int status; |
| 1000 | unsigned long start_code, end_code, end_data; |
| 1001 | unsigned long elf_stack; |
| 1002 | char passed_fileno[6]; |
| 1003 | |
| 1004 | ibcs2_interpreter = 0; |
| 1005 | status = 0; |
| 1006 | load_addr = 0; |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 1007 | load_bias = 0; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1008 | elf_ex = *((struct elfhdr *) bprm->buf); /* exec-header */ |
| 1009 | #ifdef BSWAP_NEEDED |
| 1010 | bswap_ehdr(&elf_ex); |
| 1011 | #endif |
| 1012 | |
| 1013 | if (elf_ex.e_ident[0] != 0x7f || |
| 1014 | strncmp(&elf_ex.e_ident[1], "ELF",3) != 0) { |
| 1015 | return -ENOEXEC; |
| 1016 | } |
| 1017 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1018 | /* First of all, some simple consistency checks */ |
| 1019 | if ((elf_ex.e_type != ET_EXEC && elf_ex.e_type != ET_DYN) || |
| 1020 | (! elf_check_arch(elf_ex.e_machine))) { |
| 1021 | return -ENOEXEC; |
| 1022 | } |
| 1023 | |
| 1024 | /* Now read in all of the header information */ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1025 | elf_phdata = (struct elf_phdr *)malloc(elf_ex.e_phentsize*elf_ex.e_phnum); |
| 1026 | if (elf_phdata == NULL) { |
| 1027 | return -ENOMEM; |
| 1028 | } |
| 1029 | |
| 1030 | retval = lseek(bprm->fd, elf_ex.e_phoff, SEEK_SET); |
| 1031 | if(retval > 0) { |
| 1032 | retval = read(bprm->fd, (char *) elf_phdata, |
| 1033 | elf_ex.e_phentsize * elf_ex.e_phnum); |
| 1034 | } |
| 1035 | |
| 1036 | if (retval < 0) { |
| 1037 | perror("load_elf_binary"); |
| 1038 | exit(-1); |
| 1039 | free (elf_phdata); |
| 1040 | return -errno; |
| 1041 | } |
| 1042 | |
bellard | b17780d | 2003-02-18 23:32:15 +0000 | [diff] [blame] | 1043 | #ifdef BSWAP_NEEDED |
| 1044 | elf_ppnt = elf_phdata; |
| 1045 | for (i=0; i<elf_ex.e_phnum; i++, elf_ppnt++) { |
| 1046 | bswap_phdr(elf_ppnt); |
| 1047 | } |
| 1048 | #endif |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1049 | elf_ppnt = elf_phdata; |
| 1050 | |
| 1051 | elf_bss = 0; |
| 1052 | elf_brk = 0; |
| 1053 | |
| 1054 | |
| 1055 | elf_stack = ~0UL; |
| 1056 | elf_interpreter = NULL; |
| 1057 | start_code = ~0UL; |
| 1058 | end_code = 0; |
| 1059 | end_data = 0; |
| 1060 | |
| 1061 | for(i=0;i < elf_ex.e_phnum; i++) { |
| 1062 | if (elf_ppnt->p_type == PT_INTERP) { |
| 1063 | if ( elf_interpreter != NULL ) |
| 1064 | { |
| 1065 | free (elf_phdata); |
| 1066 | free(elf_interpreter); |
| 1067 | close(bprm->fd); |
| 1068 | return -EINVAL; |
| 1069 | } |
| 1070 | |
| 1071 | /* This is the program interpreter used for |
| 1072 | * shared libraries - for now assume that this |
| 1073 | * is an a.out format binary |
| 1074 | */ |
| 1075 | |
bellard | 32ce633 | 2003-04-11 00:16:16 +0000 | [diff] [blame] | 1076 | elf_interpreter = (char *)malloc(elf_ppnt->p_filesz); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1077 | |
| 1078 | if (elf_interpreter == NULL) { |
| 1079 | free (elf_phdata); |
| 1080 | close(bprm->fd); |
| 1081 | return -ENOMEM; |
| 1082 | } |
| 1083 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1084 | retval = lseek(bprm->fd, elf_ppnt->p_offset, SEEK_SET); |
| 1085 | if(retval >= 0) { |
bellard | 32ce633 | 2003-04-11 00:16:16 +0000 | [diff] [blame] | 1086 | retval = read(bprm->fd, elf_interpreter, elf_ppnt->p_filesz); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1087 | } |
| 1088 | if(retval < 0) { |
| 1089 | perror("load_elf_binary2"); |
| 1090 | exit(-1); |
| 1091 | } |
| 1092 | |
| 1093 | /* If the program interpreter is one of these two, |
| 1094 | then assume an iBCS2 image. Otherwise assume |
| 1095 | a native linux image. */ |
| 1096 | |
| 1097 | /* JRP - Need to add X86 lib dir stuff here... */ |
| 1098 | |
| 1099 | if (strcmp(elf_interpreter,"/usr/lib/libc.so.1") == 0 || |
| 1100 | strcmp(elf_interpreter,"/usr/lib/ld.so.1") == 0) { |
| 1101 | ibcs2_interpreter = 1; |
| 1102 | } |
| 1103 | |
| 1104 | #if 0 |
| 1105 | printf("Using ELF interpreter %s\n", elf_interpreter); |
| 1106 | #endif |
| 1107 | if (retval >= 0) { |
bellard | 32ce633 | 2003-04-11 00:16:16 +0000 | [diff] [blame] | 1108 | retval = open(path(elf_interpreter), O_RDONLY); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1109 | if(retval >= 0) { |
| 1110 | interpreter_fd = retval; |
| 1111 | } |
| 1112 | else { |
| 1113 | perror(elf_interpreter); |
| 1114 | exit(-1); |
| 1115 | /* retval = -errno; */ |
| 1116 | } |
| 1117 | } |
| 1118 | |
| 1119 | if (retval >= 0) { |
| 1120 | retval = lseek(interpreter_fd, 0, SEEK_SET); |
| 1121 | if(retval >= 0) { |
| 1122 | retval = read(interpreter_fd,bprm->buf,128); |
| 1123 | } |
| 1124 | } |
| 1125 | if (retval >= 0) { |
| 1126 | interp_ex = *((struct exec *) bprm->buf); /* aout exec-header */ |
| 1127 | interp_elf_ex=*((struct elfhdr *) bprm->buf); /* elf exec-header */ |
| 1128 | } |
| 1129 | if (retval < 0) { |
| 1130 | perror("load_elf_binary3"); |
| 1131 | exit(-1); |
| 1132 | free (elf_phdata); |
| 1133 | free(elf_interpreter); |
| 1134 | close(bprm->fd); |
| 1135 | return retval; |
| 1136 | } |
| 1137 | } |
| 1138 | elf_ppnt++; |
| 1139 | } |
| 1140 | |
| 1141 | /* Some simple consistency checks for the interpreter */ |
| 1142 | if (elf_interpreter){ |
| 1143 | interpreter_type = INTERPRETER_ELF | INTERPRETER_AOUT; |
| 1144 | |
| 1145 | /* Now figure out which format our binary is */ |
| 1146 | if ((N_MAGIC(interp_ex) != OMAGIC) && (N_MAGIC(interp_ex) != ZMAGIC) && |
| 1147 | (N_MAGIC(interp_ex) != QMAGIC)) { |
| 1148 | interpreter_type = INTERPRETER_ELF; |
| 1149 | } |
| 1150 | |
| 1151 | if (interp_elf_ex.e_ident[0] != 0x7f || |
| 1152 | strncmp(&interp_elf_ex.e_ident[1], "ELF",3) != 0) { |
| 1153 | interpreter_type &= ~INTERPRETER_ELF; |
| 1154 | } |
| 1155 | |
| 1156 | if (!interpreter_type) { |
| 1157 | free(elf_interpreter); |
| 1158 | free(elf_phdata); |
| 1159 | close(bprm->fd); |
| 1160 | return -ELIBBAD; |
| 1161 | } |
| 1162 | } |
| 1163 | |
| 1164 | /* OK, we are done with that, now set up the arg stuff, |
| 1165 | and then start this sucker up */ |
| 1166 | |
| 1167 | if (!bprm->sh_bang) { |
| 1168 | char * passed_p; |
| 1169 | |
| 1170 | if (interpreter_type == INTERPRETER_AOUT) { |
bellard | eba2af6 | 2004-06-19 17:23:39 +0000 | [diff] [blame] | 1171 | snprintf(passed_fileno, sizeof(passed_fileno), "%d", bprm->fd); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1172 | passed_p = passed_fileno; |
| 1173 | |
| 1174 | if (elf_interpreter) { |
| 1175 | bprm->p = copy_strings(1,&passed_p,bprm->page,bprm->p); |
| 1176 | bprm->argc++; |
| 1177 | } |
| 1178 | } |
| 1179 | if (!bprm->p) { |
| 1180 | if (elf_interpreter) { |
| 1181 | free(elf_interpreter); |
| 1182 | } |
| 1183 | free (elf_phdata); |
| 1184 | close(bprm->fd); |
| 1185 | return -E2BIG; |
| 1186 | } |
| 1187 | } |
| 1188 | |
| 1189 | /* OK, This is the point of no return */ |
| 1190 | info->end_data = 0; |
| 1191 | info->end_code = 0; |
| 1192 | info->start_mmap = (unsigned long)ELF_START_MMAP; |
| 1193 | info->mmap = 0; |
| 1194 | elf_entry = (unsigned long) elf_ex.e_entry; |
| 1195 | |
| 1196 | /* Do this so that we can load the interpreter, if need be. We will |
| 1197 | change some of these later */ |
| 1198 | info->rss = 0; |
| 1199 | bprm->p = setup_arg_pages(bprm->p, bprm, info); |
| 1200 | info->start_stack = bprm->p; |
| 1201 | |
| 1202 | /* Now we do a little grungy work by mmaping the ELF image into |
| 1203 | * the correct location in memory. At this point, we assume that |
| 1204 | * the image should be loaded at fixed address, not at a variable |
| 1205 | * address. |
| 1206 | */ |
| 1207 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1208 | for(i = 0, elf_ppnt = elf_phdata; i < elf_ex.e_phnum; i++, elf_ppnt++) { |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 1209 | int elf_prot = 0; |
| 1210 | int elf_flags = 0; |
| 1211 | unsigned long error; |
| 1212 | |
| 1213 | if (elf_ppnt->p_type != PT_LOAD) |
| 1214 | continue; |
| 1215 | |
| 1216 | if (elf_ppnt->p_flags & PF_R) elf_prot |= PROT_READ; |
| 1217 | if (elf_ppnt->p_flags & PF_W) elf_prot |= PROT_WRITE; |
| 1218 | if (elf_ppnt->p_flags & PF_X) elf_prot |= PROT_EXEC; |
| 1219 | elf_flags = MAP_PRIVATE | MAP_DENYWRITE; |
| 1220 | if (elf_ex.e_type == ET_EXEC || load_addr_set) { |
| 1221 | elf_flags |= MAP_FIXED; |
| 1222 | } else if (elf_ex.e_type == ET_DYN) { |
| 1223 | /* Try and get dynamic programs out of the way of the default mmap |
| 1224 | base, as well as whatever program they might try to exec. This |
| 1225 | is because the brk will follow the loader, and is not movable. */ |
| 1226 | /* NOTE: for qemu, we do a big mmap to get enough space |
| 1227 | without harcoding any address */ |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1228 | error = target_mmap(0, ET_DYN_MAP_SIZE, |
| 1229 | PROT_NONE, MAP_PRIVATE | MAP_ANON, |
| 1230 | -1, 0); |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 1231 | if (error == -1) { |
| 1232 | perror("mmap"); |
| 1233 | exit(-1); |
| 1234 | } |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1235 | load_bias = TARGET_ELF_PAGESTART(error - elf_ppnt->p_vaddr); |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 1236 | } |
| 1237 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1238 | error = target_mmap(TARGET_ELF_PAGESTART(load_bias + elf_ppnt->p_vaddr), |
| 1239 | (elf_ppnt->p_filesz + |
| 1240 | TARGET_ELF_PAGEOFFSET(elf_ppnt->p_vaddr)), |
| 1241 | elf_prot, |
| 1242 | (MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE), |
| 1243 | bprm->fd, |
| 1244 | (elf_ppnt->p_offset - |
| 1245 | TARGET_ELF_PAGEOFFSET(elf_ppnt->p_vaddr))); |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 1246 | if (error == -1) { |
| 1247 | perror("mmap"); |
| 1248 | exit(-1); |
| 1249 | } |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1250 | |
| 1251 | #ifdef LOW_ELF_STACK |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1252 | if (TARGET_ELF_PAGESTART(elf_ppnt->p_vaddr) < elf_stack) |
| 1253 | elf_stack = TARGET_ELF_PAGESTART(elf_ppnt->p_vaddr); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1254 | #endif |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 1255 | |
| 1256 | if (!load_addr_set) { |
| 1257 | load_addr_set = 1; |
| 1258 | load_addr = elf_ppnt->p_vaddr - elf_ppnt->p_offset; |
| 1259 | if (elf_ex.e_type == ET_DYN) { |
| 1260 | load_bias += error - |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1261 | TARGET_ELF_PAGESTART(load_bias + elf_ppnt->p_vaddr); |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 1262 | load_addr += load_bias; |
| 1263 | } |
| 1264 | } |
| 1265 | k = elf_ppnt->p_vaddr; |
| 1266 | if (k < start_code) |
| 1267 | start_code = k; |
| 1268 | k = elf_ppnt->p_vaddr + elf_ppnt->p_filesz; |
| 1269 | if (k > elf_bss) |
| 1270 | elf_bss = k; |
| 1271 | if ((elf_ppnt->p_flags & PF_X) && end_code < k) |
| 1272 | end_code = k; |
| 1273 | if (end_data < k) |
| 1274 | end_data = k; |
| 1275 | k = elf_ppnt->p_vaddr + elf_ppnt->p_memsz; |
| 1276 | if (k > elf_brk) elf_brk = k; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1277 | } |
| 1278 | |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 1279 | elf_entry += load_bias; |
| 1280 | elf_bss += load_bias; |
| 1281 | elf_brk += load_bias; |
| 1282 | start_code += load_bias; |
| 1283 | end_code += load_bias; |
| 1284 | // start_data += load_bias; |
| 1285 | end_data += load_bias; |
| 1286 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1287 | if (elf_interpreter) { |
| 1288 | if (interpreter_type & 1) { |
| 1289 | elf_entry = load_aout_interp(&interp_ex, interpreter_fd); |
| 1290 | } |
| 1291 | else if (interpreter_type & 2) { |
| 1292 | elf_entry = load_elf_interp(&interp_elf_ex, interpreter_fd, |
| 1293 | &interp_load_addr); |
| 1294 | } |
| 1295 | |
| 1296 | close(interpreter_fd); |
| 1297 | free(elf_interpreter); |
| 1298 | |
| 1299 | if (elf_entry == ~0UL) { |
| 1300 | printf("Unable to load interpreter\n"); |
| 1301 | free(elf_phdata); |
| 1302 | exit(-1); |
| 1303 | return 0; |
| 1304 | } |
| 1305 | } |
| 1306 | |
| 1307 | free(elf_phdata); |
| 1308 | |
bellard | 689f936 | 2003-04-29 20:40:07 +0000 | [diff] [blame] | 1309 | if (loglevel) |
| 1310 | load_symbols(&elf_ex, bprm->fd); |
| 1311 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1312 | if (interpreter_type != INTERPRETER_AOUT) close(bprm->fd); |
| 1313 | info->personality = (ibcs2_interpreter ? PER_SVR4 : PER_LINUX); |
| 1314 | |
| 1315 | #ifdef LOW_ELF_STACK |
| 1316 | info->start_stack = bprm->p = elf_stack - 4; |
| 1317 | #endif |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 1318 | bprm->p = create_elf_tables(bprm->p, |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1319 | bprm->argc, |
| 1320 | bprm->envc, |
bellard | a1516e9 | 2003-07-09 17:13:37 +0000 | [diff] [blame] | 1321 | &elf_ex, |
bellard | 09bfb05 | 2003-04-10 00:03:40 +0000 | [diff] [blame] | 1322 | load_addr, load_bias, |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1323 | interp_load_addr, |
| 1324 | (interpreter_type == INTERPRETER_AOUT ? 0 : 1), |
| 1325 | info); |
| 1326 | if (interpreter_type == INTERPRETER_AOUT) |
| 1327 | info->arg_start += strlen(passed_fileno) + 1; |
| 1328 | info->start_brk = info->brk = elf_brk; |
| 1329 | info->end_code = end_code; |
| 1330 | info->start_code = start_code; |
| 1331 | info->end_data = end_data; |
| 1332 | info->start_stack = bprm->p; |
| 1333 | |
| 1334 | /* Calling set_brk effectively mmaps the pages that we need for the bss and break |
| 1335 | sections */ |
| 1336 | set_brk(elf_bss, elf_brk); |
| 1337 | |
| 1338 | padzero(elf_bss); |
| 1339 | |
| 1340 | #if 0 |
| 1341 | printf("(start_brk) %x\n" , info->start_brk); |
| 1342 | printf("(end_code) %x\n" , info->end_code); |
| 1343 | printf("(start_code) %x\n" , info->start_code); |
| 1344 | printf("(end_data) %x\n" , info->end_data); |
| 1345 | printf("(start_stack) %x\n" , info->start_stack); |
| 1346 | printf("(brk) %x\n" , info->brk); |
| 1347 | #endif |
| 1348 | |
| 1349 | if ( info->personality == PER_SVR4 ) |
| 1350 | { |
| 1351 | /* Why this, you ask??? Well SVr4 maps page 0 as read-only, |
| 1352 | and some applications "depend" upon this behavior. |
| 1353 | Since we do not have the power to recompile these, we |
| 1354 | emulate the SVr4 behavior. Sigh. */ |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1355 | mapped_addr = target_mmap(0, qemu_host_page_size, PROT_READ | PROT_EXEC, |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1356 | MAP_FIXED | MAP_PRIVATE, -1, 0); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1357 | } |
| 1358 | |
| 1359 | #ifdef ELF_PLAT_INIT |
| 1360 | /* |
| 1361 | * The ABI may specify that certain registers be set up in special |
| 1362 | * ways (on i386 %edx is the address of a DT_FINI function, for |
| 1363 | * example. This macro performs whatever initialization to |
| 1364 | * the regs structure is required. |
| 1365 | */ |
| 1366 | ELF_PLAT_INIT(regs); |
| 1367 | #endif |
| 1368 | |
| 1369 | |
| 1370 | info->entry = elf_entry; |
| 1371 | |
| 1372 | return 0; |
| 1373 | } |
| 1374 | |
| 1375 | |
| 1376 | |
bellard | 32ce633 | 2003-04-11 00:16:16 +0000 | [diff] [blame] | 1377 | int elf_exec(const char * filename, char ** argv, char ** envp, |
bellard | b17780d | 2003-02-18 23:32:15 +0000 | [diff] [blame] | 1378 | struct target_pt_regs * regs, struct image_info *infop) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1379 | { |
| 1380 | struct linux_binprm bprm; |
| 1381 | int retval; |
| 1382 | int i; |
| 1383 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1384 | bprm.p = TARGET_PAGE_SIZE*MAX_ARG_PAGES-sizeof(unsigned int); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1385 | for (i=0 ; i<MAX_ARG_PAGES ; i++) /* clear page-table */ |
| 1386 | bprm.page[i] = 0; |
| 1387 | retval = open(filename, O_RDONLY); |
bellard | c273579 | 2004-01-18 22:55:23 +0000 | [diff] [blame] | 1388 | if (retval < 0) |
| 1389 | return retval; |
| 1390 | bprm.fd = retval; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1391 | bprm.filename = (char *)filename; |
| 1392 | bprm.sh_bang = 0; |
| 1393 | bprm.loader = 0; |
| 1394 | bprm.exec = 0; |
| 1395 | bprm.dont_iput = 0; |
| 1396 | bprm.argc = count(argv); |
| 1397 | bprm.envc = count(envp); |
| 1398 | |
| 1399 | retval = prepare_binprm(&bprm); |
| 1400 | |
| 1401 | if(retval>=0) { |
| 1402 | bprm.p = copy_strings(1, &bprm.filename, bprm.page, bprm.p); |
| 1403 | bprm.exec = bprm.p; |
| 1404 | bprm.p = copy_strings(bprm.envc,envp,bprm.page,bprm.p); |
| 1405 | bprm.p = copy_strings(bprm.argc,argv,bprm.page,bprm.p); |
| 1406 | if (!bprm.p) { |
| 1407 | retval = -E2BIG; |
| 1408 | } |
| 1409 | } |
| 1410 | |
| 1411 | if(retval>=0) { |
| 1412 | retval = load_elf_binary(&bprm,regs,infop); |
| 1413 | } |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 1414 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1415 | if(retval>=0) { |
| 1416 | /* success. Initialize important registers */ |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 1417 | init_thread(regs, infop); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1418 | return retval; |
| 1419 | } |
| 1420 | |
| 1421 | /* Something went wrong, return the inode and free the argument pages*/ |
| 1422 | for (i=0 ; i<MAX_ARG_PAGES ; i++) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame^] | 1423 | free(bprm.page[i]); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1424 | } |
| 1425 | return(retval); |
| 1426 | } |
| 1427 | |
| 1428 | |
| 1429 | static int load_aout_interp(void * exptr, int interp_fd) |
| 1430 | { |
| 1431 | printf("a.out interpreter not yet supported\n"); |
| 1432 | return(0); |
| 1433 | } |
| 1434 | |