2 * Written 2000,2002 by Andi Kleen.
4 * Loosely based on the sparc64 and IA64 32bit emulation loaders.
5 * This tricks binfmt_elf.c into loading 32bit binaries using lots
6 * of ugly preprocessor tricks. Talk about very very poor man's inheritance.
8 #define __ASM_X86_64_ELF_H 1
11 #define ELF_CLASS ELFCLASS32
13 #include <linux/types.h>
14 #include <linux/stddef.h>
15 #include <linux/rwsem.h>
16 #include <linux/sched.h>
17 #include <linux/compat.h>
18 #include <linux/string.h>
19 #include <linux/binfmts.h>
21 #include <linux/security.h>
23 #include <asm/segment.h>
24 #include <asm/ptrace.h>
25 #include <asm/processor.h>
26 #include <asm/user32.h>
27 #include <asm/sigcontext32.h>
28 #include <asm/fpu32.h>
30 #include <asm/uaccess.h>
32 #include <asm/vsyscall32.h>
34 #define ELF_NAME "elf/i386"
37 #define AT_SYSINFO_EHDR 33
39 int sysctl_vsyscall32 = 1;
42 #define ARCH_DLINFO do { \
43 if (sysctl_vsyscall32) { \
44 current->mm->context.vdso = (void *)VSYSCALL32_BASE; \
45 NEW_AUX_ENT(AT_SYSINFO, (u32)(u64)VSYSCALL32_VSYSCALL); \
46 NEW_AUX_ENT(AT_SYSINFO_EHDR, VSYSCALL32_BASE); \
53 #define IA32_EMULATOR 1
55 #define ELF_ET_DYN_BASE (TASK_UNMAPPED_BASE + 0x1000000)
58 #define ELF_ARCH EM_386
60 #define ELF_DATA ELFDATA2LSB
62 #define USE_ELF_CORE_DUMP 1
64 /* Override elfcore.h */
65 #define _LINUX_ELFCORE_H 1
66 typedef unsigned int elf_greg_t;
68 #define ELF_NGREG (sizeof (struct user_regs_struct32) / sizeof(elf_greg_t))
69 typedef elf_greg_t elf_gregset_t[ELF_NGREG];
73 int si_signo; /* signal number */
74 int si_code; /* extra code */
75 int si_errno; /* errno */
78 #define jiffies_to_timeval(a,b) do { (b)->tv_usec = 0; (b)->tv_sec = (a)/HZ; }while(0)
82 struct elf_siginfo pr_info; /* Info associated with signal */
83 short pr_cursig; /* Current signal */
84 unsigned int pr_sigpend; /* Set of pending signals */
85 unsigned int pr_sighold; /* Set of held signals */
90 struct compat_timeval pr_utime; /* User time */
91 struct compat_timeval pr_stime; /* System time */
92 struct compat_timeval pr_cutime; /* Cumulative user time */
93 struct compat_timeval pr_cstime; /* Cumulative system time */
94 elf_gregset_t pr_reg; /* GP registers */
95 int pr_fpvalid; /* True if math co-processor being used. */
98 #define ELF_PRARGSZ (80) /* Number of chars for args */
102 char pr_state; /* numeric process state */
103 char pr_sname; /* char for pr_state */
104 char pr_zomb; /* zombie */
105 char pr_nice; /* nice val */
106 unsigned int pr_flag; /* flags */
109 pid_t pr_pid, pr_ppid, pr_pgrp, pr_sid;
111 char pr_fname[16]; /* filename of executable */
112 char pr_psargs[ELF_PRARGSZ]; /* initial part of arg list */
115 #define _GET_SEG(x) \
116 ({ __u32 seg; asm("movl %%" __stringify(x) ",%0" : "=r"(seg)); seg; })
118 /* Assumes current==process to be dumped */
119 #define ELF_CORE_COPY_REGS(pr_reg, regs) \
120 pr_reg[0] = regs->rbx; \
121 pr_reg[1] = regs->rcx; \
122 pr_reg[2] = regs->rdx; \
123 pr_reg[3] = regs->rsi; \
124 pr_reg[4] = regs->rdi; \
125 pr_reg[5] = regs->rbp; \
126 pr_reg[6] = regs->rax; \
127 pr_reg[7] = _GET_SEG(ds); \
128 pr_reg[8] = _GET_SEG(es); \
129 pr_reg[9] = _GET_SEG(fs); \
130 pr_reg[10] = _GET_SEG(gs); \
131 pr_reg[11] = regs->orig_rax; \
132 pr_reg[12] = regs->rip; \
133 pr_reg[13] = regs->cs; \
134 pr_reg[14] = regs->eflags; \
135 pr_reg[15] = regs->rsp; \
136 pr_reg[16] = regs->ss;
140 #undef elf_read_implies_exec
141 #define elf_read_implies_exec(ex, executable_stack) (executable_stack != EXSTACK_DISABLE_X)
142 //#include <asm/ia32.h>
143 #include <linux/elf.h>
145 typedef struct user_i387_ia32_struct elf_fpregset_t;
146 typedef struct user32_fxsr_struct elf_fpxregset_t;
149 static inline void elf_core_copy_regs(elf_gregset_t *elfregs, struct pt_regs *regs)
151 ELF_CORE_COPY_REGS((*elfregs), regs)
154 static inline int elf_core_copy_task_regs(struct task_struct *t, elf_gregset_t* elfregs)
156 struct pt_regs *pp = task_pt_regs(t);
157 ELF_CORE_COPY_REGS((*elfregs), pp);
158 /* fix wrong segments */
159 (*elfregs)[7] = t->thread.ds;
160 (*elfregs)[9] = t->thread.fsindex;
161 (*elfregs)[10] = t->thread.gsindex;
162 (*elfregs)[8] = t->thread.es;
167 elf_core_copy_task_fpregs(struct task_struct *tsk, struct pt_regs *regs, elf_fpregset_t *fpu)
169 struct _fpstate_ia32 *fpstate = (void*)fpu;
170 mm_segment_t oldfs = get_fs();
172 if (!tsk_used_math(tsk))
175 regs = task_pt_regs(tsk);
179 save_i387_ia32(tsk, fpstate, regs, 1);
180 /* Correct for i386 bug. It puts the fop into the upper 16bits of
181 the tag word (like FXSAVE), not into the fcs*/
182 fpstate->cssel |= fpstate->tag & 0xffff0000;
187 #define ELF_CORE_COPY_XFPREGS 1
188 #define ELF_CORE_XFPREG_TYPE NT_PRXFPREG
190 elf_core_copy_task_xfpregs(struct task_struct *t, elf_fpxregset_t *xfpu)
192 struct pt_regs *regs = task_pt_regs(t);
193 if (!tsk_used_math(t))
197 memcpy(xfpu, &t->thread.i387.fxsave, sizeof(elf_fpxregset_t));
198 xfpu->fcs = regs->cs;
199 xfpu->fos = t->thread.ds; /* right? */
203 #undef elf_check_arch
204 #define elf_check_arch(x) \
205 ((x)->e_machine == EM_386)
207 extern int force_personality32;
209 #define ELF_EXEC_PAGESIZE PAGE_SIZE
210 #define ELF_HWCAP (boot_cpu_data.x86_capability[0])
211 #define ELF_PLATFORM ("i686")
212 #define SET_PERSONALITY(ex, ibcs2) \
214 unsigned long new_flags = 0; \
215 if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \
216 new_flags = _TIF_IA32; \
217 if ((current_thread_info()->flags & _TIF_IA32) \
219 set_thread_flag(TIF_ABI_PENDING); \
221 clear_thread_flag(TIF_ABI_PENDING); \
222 /* XXX This overwrites the user set personality */ \
223 current->personality |= force_personality32; \
226 /* Override some function names */
227 #define elf_format elf32_format
229 #define init_elf_binfmt init_elf32_binfmt
230 #define exit_elf_binfmt exit_elf32_binfmt
232 #define load_elf_binary load_elf32_binary
234 #define ELF_PLAT_INIT(r, load_addr) elf32_init(r)
237 #define start_thread(regs,new_rip,new_rsp) do { \
238 asm volatile("movl %0,%%fs" :: "r" (0)); \
239 asm volatile("movl %0,%%es; movl %0,%%ds": :"r" (__USER32_DS)); \
241 (regs)->rip = (new_rip); \
242 (regs)->rsp = (new_rsp); \
243 (regs)->eflags = 0x200; \
244 (regs)->cs = __USER32_CS; \
245 (regs)->ss = __USER32_DS; \
250 #include <linux/module.h>
252 MODULE_DESCRIPTION("Binary format loader for compatibility with IA32 ELF binaries.");
253 MODULE_AUTHOR("Eric Youngdale, Andi Kleen");
255 #undef MODULE_DESCRIPTION
258 static void elf32_init(struct pt_regs *);
260 #define ARCH_HAS_SETUP_ADDITIONAL_PAGES 1
261 #define arch_setup_additional_pages syscall32_setup_pages
262 extern int syscall32_setup_pages(struct linux_binprm *, int exstack);
264 #include "../../../fs/binfmt_elf.c"
266 static void elf32_init(struct pt_regs *regs)
268 struct task_struct *me = current;
276 regs->r8 = regs->r9 = regs->r10 = regs->r11 = regs->r12 =
277 regs->r13 = regs->r14 = regs->r15 = 0;
280 me->thread.fsindex = 0;
281 me->thread.gsindex = 0;
282 me->thread.ds = __USER_DS;
283 me->thread.es = __USER_DS;
287 /* Register vsyscall32 into the ABI table */
288 #include <linux/sysctl.h>
290 static ctl_table abi_table2[] = {
293 .procname = "vsyscall32",
294 .data = &sysctl_vsyscall32,
295 .maxlen = sizeof(int),
297 .proc_handler = proc_dointvec
302 static ctl_table abi_root_table2[] = {
312 static __init int ia32_binfmt_init(void)
314 register_sysctl_table(abi_root_table2);
317 __initcall(ia32_binfmt_init);