4 * Copyright (C) 1999 Arun Sharma <arun.sharma@intel.com>
5 * Copyright (C) 2001 Hewlett-Packard Co
6 * David Mosberger-Tang <davidm@hpl.hp.com>
8 * 06/16/00 A. Mallick initialize csd/ssd/tssd/cflg for ia32_load_state
9 * 04/13/01 D. Mosberger dropped saving tssd in ar.k1---it's not needed
10 * 09/14/01 D. Mosberger fixed memory management for gdt/tss page
12 #include <linux/config.h>
14 #include <linux/types.h>
16 #include <linux/security.h>
18 #include <asm/param.h>
19 #include <asm/signal.h>
22 #include "elfcore32.h"
24 /* Override some function names */
26 #define start_thread ia32_start_thread
27 #define elf_format elf32_format
28 #define init_elf_binfmt init_elf32_binfmt
29 #define exit_elf_binfmt exit_elf32_binfmt
32 #define CLOCKS_PER_SEC IA32_CLOCKS_PER_SEC
34 extern void ia64_elf32_init (struct pt_regs
*regs
);
36 static void elf32_set_personality (void);
38 static unsigned long __attribute ((unused
))
39 randomize_stack_top(unsigned long stack_top
);
41 #define setup_arg_pages(bprm,tos,exec) ia32_setup_arg_pages(bprm,exec)
42 #define elf_map elf32_map
44 #undef SET_PERSONALITY
45 #define SET_PERSONALITY(ex, ibcs2) elf32_set_personality()
47 #define elf_read_implies_exec(ex, have_pt_gnu_stack) (!(have_pt_gnu_stack))
49 /* Ugly but avoids duplication */
50 #include "../../../fs/binfmt_elf.c"
52 extern struct page
*ia32_shared_page
[];
53 extern unsigned long *ia32_gdt
;
54 extern struct page
*ia32_gate_page
;
57 ia32_install_shared_page (struct vm_area_struct
*vma
, unsigned long address
, int *type
)
59 struct page
*pg
= ia32_shared_page
[smp_processor_id()];
62 *type
= VM_FAULT_MINOR
;
67 ia32_install_gate_page (struct vm_area_struct
*vma
, unsigned long address
, int *type
)
69 struct page
*pg
= ia32_gate_page
;
72 *type
= VM_FAULT_MINOR
;
77 static struct vm_operations_struct ia32_shared_page_vm_ops
= {
78 .nopage
= ia32_install_shared_page
81 static struct vm_operations_struct ia32_gate_page_vm_ops
= {
82 .nopage
= ia32_install_gate_page
86 ia64_elf32_init (struct pt_regs
*regs
)
88 struct vm_area_struct
*vma
;
91 * Map GDT below 4GB, where the processor can find it. We need to map
92 * it with privilege level 3 because the IVE uses non-privileged accesses to these
93 * tables. IA-32 segmentation is used to protect against IA-32 accesses to them.
95 vma
= kmem_cache_alloc(vm_area_cachep
, SLAB_KERNEL
);
97 memset(vma
, 0, sizeof(*vma
));
98 vma
->vm_mm
= current
->mm
;
99 vma
->vm_start
= IA32_GDT_OFFSET
;
100 vma
->vm_end
= vma
->vm_start
+ PAGE_SIZE
;
101 vma
->vm_page_prot
= PAGE_SHARED
;
102 vma
->vm_flags
= VM_READ
|VM_MAYREAD
|VM_RESERVED
;
103 vma
->vm_ops
= &ia32_shared_page_vm_ops
;
104 down_write(¤t
->mm
->mmap_sem
);
106 if (insert_vm_struct(current
->mm
, vma
)) {
107 kmem_cache_free(vm_area_cachep
, vma
);
108 up_write(¤t
->mm
->mmap_sem
);
112 up_write(¤t
->mm
->mmap_sem
);
116 * When user stack is not executable, push sigreturn code to stack makes
117 * segmentation fault raised when returning to kernel. So now sigreturn
118 * code is locked in specific gate page, which is pointed by pretcode
119 * when setup_frame_ia32
121 vma
= kmem_cache_alloc(vm_area_cachep
, SLAB_KERNEL
);
123 memset(vma
, 0, sizeof(*vma
));
124 vma
->vm_mm
= current
->mm
;
125 vma
->vm_start
= IA32_GATE_OFFSET
;
126 vma
->vm_end
= vma
->vm_start
+ PAGE_SIZE
;
127 vma
->vm_page_prot
= PAGE_COPY_EXEC
;
128 vma
->vm_flags
= VM_READ
| VM_MAYREAD
| VM_EXEC
129 | VM_MAYEXEC
| VM_RESERVED
;
130 vma
->vm_ops
= &ia32_gate_page_vm_ops
;
131 down_write(¤t
->mm
->mmap_sem
);
133 if (insert_vm_struct(current
->mm
, vma
)) {
134 kmem_cache_free(vm_area_cachep
, vma
);
135 up_write(¤t
->mm
->mmap_sem
);
139 up_write(¤t
->mm
->mmap_sem
);
143 * Install LDT as anonymous memory. This gives us all-zero segment descriptors
144 * until a task modifies them via modify_ldt().
146 vma
= kmem_cache_alloc(vm_area_cachep
, SLAB_KERNEL
);
148 memset(vma
, 0, sizeof(*vma
));
149 vma
->vm_mm
= current
->mm
;
150 vma
->vm_start
= IA32_LDT_OFFSET
;
151 vma
->vm_end
= vma
->vm_start
+ PAGE_ALIGN(IA32_LDT_ENTRIES
*IA32_LDT_ENTRY_SIZE
);
152 vma
->vm_page_prot
= PAGE_SHARED
;
153 vma
->vm_flags
= VM_READ
|VM_WRITE
|VM_MAYREAD
|VM_MAYWRITE
;
154 down_write(¤t
->mm
->mmap_sem
);
156 if (insert_vm_struct(current
->mm
, vma
)) {
157 kmem_cache_free(vm_area_cachep
, vma
);
158 up_write(¤t
->mm
->mmap_sem
);
162 up_write(¤t
->mm
->mmap_sem
);
165 ia64_psr(regs
)->ac
= 0; /* turn off alignment checking */
168 * According to the ABI %edx points to an `atexit' handler. Since we don't have
169 * one we'll set it to 0 and initialize all the other registers just to make
170 * things more deterministic, ala the i386 implementation.
172 regs
->r8
= 0; /* %eax */
173 regs
->r11
= 0; /* %ebx */
174 regs
->r9
= 0; /* %ecx */
175 regs
->r10
= 0; /* %edx */
176 regs
->r13
= 0; /* %ebp */
177 regs
->r14
= 0; /* %esi */
178 regs
->r15
= 0; /* %edi */
180 current
->thread
.eflag
= IA32_EFLAG
;
181 current
->thread
.fsr
= IA32_FSR_DEFAULT
;
182 current
->thread
.fcr
= IA32_FCR_DEFAULT
;
183 current
->thread
.fir
= 0;
184 current
->thread
.fdr
= 0;
187 * Setup GDTD. Note: GDTD is the descrambled version of the pseudo-descriptor
188 * format defined by Figure 3-11 "Pseudo-Descriptor Format" in the IA-32
189 * architecture manual. Also note that the only fields that are not ignored are
190 * `base', `limit', 'G', `P' (must be 1) and `S' (must be 0).
192 regs
->r31
= IA32_SEG_UNSCRAMBLE(IA32_SEG_DESCRIPTOR(IA32_GDT_OFFSET
, IA32_PAGE_SIZE
- 1,
193 0, 0, 0, 1, 0, 0, 0));
194 /* Setup the segment selectors */
195 regs
->r16
= (__USER_DS
<< 16) | __USER_DS
; /* ES == DS, GS, FS are zero */
196 regs
->r17
= (__USER_DS
<< 16) | __USER_CS
; /* SS, CS; ia32_load_state() sets TSS and LDT */
198 ia32_load_segment_descriptors(current
);
199 ia32_load_state(current
);
203 ia32_setup_arg_pages (struct linux_binprm
*bprm
, int executable_stack
)
205 unsigned long stack_base
;
206 struct vm_area_struct
*mpnt
;
207 struct mm_struct
*mm
= current
->mm
;
210 stack_base
= IA32_STACK_TOP
- MAX_ARG_PAGES
*PAGE_SIZE
;
211 mm
->arg_start
= bprm
->p
+ stack_base
;
213 bprm
->p
+= stack_base
;
215 bprm
->loader
+= stack_base
;
216 bprm
->exec
+= stack_base
;
218 mpnt
= kmem_cache_alloc(vm_area_cachep
, SLAB_KERNEL
);
222 memset(mpnt
, 0, sizeof(*mpnt
));
224 down_write(¤t
->mm
->mmap_sem
);
226 mpnt
->vm_mm
= current
->mm
;
227 mpnt
->vm_start
= PAGE_MASK
& (unsigned long) bprm
->p
;
228 mpnt
->vm_end
= IA32_STACK_TOP
;
229 if (executable_stack
== EXSTACK_ENABLE_X
)
230 mpnt
->vm_flags
= VM_STACK_FLAGS
| VM_EXEC
;
231 else if (executable_stack
== EXSTACK_DISABLE_X
)
232 mpnt
->vm_flags
= VM_STACK_FLAGS
& ~VM_EXEC
;
234 mpnt
->vm_flags
= VM_STACK_FLAGS
;
235 mpnt
->vm_page_prot
= (mpnt
->vm_flags
& VM_EXEC
)?
236 PAGE_COPY_EXEC
: PAGE_COPY
;
237 if ((ret
= insert_vm_struct(current
->mm
, mpnt
))) {
238 up_write(¤t
->mm
->mmap_sem
);
239 kmem_cache_free(vm_area_cachep
, mpnt
);
242 current
->mm
->stack_vm
= current
->mm
->total_vm
= vma_pages(mpnt
);
245 for (i
= 0 ; i
< MAX_ARG_PAGES
; i
++) {
246 struct page
*page
= bprm
->page
[i
];
248 bprm
->page
[i
] = NULL
;
249 install_arg_page(mpnt
, page
, stack_base
);
251 stack_base
+= PAGE_SIZE
;
253 up_write(¤t
->mm
->mmap_sem
);
255 /* Can't do it in ia64_elf32_init(). Needs to be done before calls to
257 current
->thread
.ppl
= ia32_init_pp_list();
263 elf32_set_personality (void)
265 set_personality(PER_LINUX32
);
266 current
->thread
.map_base
= IA32_PAGE_OFFSET
/3;
270 elf32_map (struct file
*filep
, unsigned long addr
, struct elf_phdr
*eppnt
, int prot
, int type
)
272 unsigned long pgoff
= (eppnt
->p_vaddr
) & ~IA32_PAGE_MASK
;
274 return ia32_do_mmap(filep
, (addr
& IA32_PAGE_MASK
), eppnt
->p_filesz
+ pgoff
, prot
, type
,
275 eppnt
->p_offset
- pgoff
);
278 #define cpu_uses_ia32el() (local_cpu_data->family > 0x1f)
280 static int __init
check_elf32_binfmt(void)
282 if (cpu_uses_ia32el()) {
283 printk("Please use IA-32 EL for executing IA-32 binaries\n");
284 return unregister_binfmt(&elf_format
);
289 module_init(check_elf32_binfmt
)