2 * linux/fs/binfmt_elf.c
4 * These are the functions used to load ELF format executables as used
5 * on SVr4 machines. Information on the format may be found in the book
6 * "UNIX SYSTEM V RELEASE 4 Programmers Guide: Ansi C and Programming Support
9 * Copyright 1993, 1994: Eric Youngdale (ericy@cais.com).
12 #include <linux/module.h>
13 #include <linux/kernel.h>
15 #include <linux/stat.h>
16 #include <linux/time.h>
18 #include <linux/mman.h>
19 #include <linux/a.out.h>
20 #include <linux/errno.h>
21 #include <linux/signal.h>
22 #include <linux/binfmts.h>
23 #include <linux/string.h>
24 #include <linux/file.h>
25 #include <linux/fcntl.h>
26 #include <linux/ptrace.h>
27 #include <linux/slab.h>
28 #include <linux/shm.h>
29 #include <linux/personality.h>
30 #include <linux/elfcore.h>
31 #include <linux/init.h>
32 #include <linux/highuid.h>
33 #include <linux/smp.h>
34 #include <linux/compiler.h>
35 #include <linux/highmem.h>
36 #include <linux/pagemap.h>
37 #include <linux/security.h>
38 #include <linux/syscalls.h>
39 #include <linux/random.h>
40 #include <linux/elf.h>
41 #include <linux/utsname.h>
42 #include <asm/uaccess.h>
43 #include <asm/param.h>
46 static int load_elf_binary(struct linux_binprm
*bprm
, struct pt_regs
*regs
);
47 static int load_elf_library(struct file
*);
48 static unsigned long elf_map (struct file
*, unsigned long, struct elf_phdr
*, int, int);
51 * If we don't support core dumping, then supply a NULL so we
54 #if defined(USE_ELF_CORE_DUMP) && defined(CONFIG_ELF_CORE)
55 static int elf_core_dump(long signr
, struct pt_regs
*regs
, struct file
*file
, unsigned long limit
);
57 #define elf_core_dump NULL
60 #if ELF_EXEC_PAGESIZE > PAGE_SIZE
61 #define ELF_MIN_ALIGN ELF_EXEC_PAGESIZE
63 #define ELF_MIN_ALIGN PAGE_SIZE
66 #ifndef ELF_CORE_EFLAGS
67 #define ELF_CORE_EFLAGS 0
70 #define ELF_PAGESTART(_v) ((_v) & ~(unsigned long)(ELF_MIN_ALIGN-1))
71 #define ELF_PAGEOFFSET(_v) ((_v) & (ELF_MIN_ALIGN-1))
72 #define ELF_PAGEALIGN(_v) (((_v) + ELF_MIN_ALIGN - 1) & ~(ELF_MIN_ALIGN - 1))
74 static struct linux_binfmt elf_format
= {
75 .module
= THIS_MODULE
,
76 .load_binary
= load_elf_binary
,
77 .load_shlib
= load_elf_library
,
78 .core_dump
= elf_core_dump
,
79 .min_coredump
= ELF_EXEC_PAGESIZE
,
83 #define BAD_ADDR(x) ((unsigned long)(x) >= TASK_SIZE)
85 static int set_brk(unsigned long start
, unsigned long end
)
87 start
= ELF_PAGEALIGN(start
);
88 end
= ELF_PAGEALIGN(end
);
91 down_write(¤t
->mm
->mmap_sem
);
92 addr
= do_brk(start
, end
- start
);
93 up_write(¤t
->mm
->mmap_sem
);
97 current
->mm
->start_brk
= current
->mm
->brk
= end
;
101 /* We need to explicitly zero any fractional pages
102 after the data section (i.e. bss). This would
103 contain the junk from the file that should not
106 static int padzero(unsigned long elf_bss
)
110 nbyte
= ELF_PAGEOFFSET(elf_bss
);
112 nbyte
= ELF_MIN_ALIGN
- nbyte
;
113 if (clear_user((void __user
*) elf_bss
, nbyte
))
119 /* Let's use some macros to make this stack manipulation a litle clearer */
120 #ifdef CONFIG_STACK_GROWSUP
121 #define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) + (items))
122 #define STACK_ROUND(sp, items) \
123 ((15 + (unsigned long) ((sp) + (items))) &~ 15UL)
124 #define STACK_ALLOC(sp, len) ({ \
125 elf_addr_t __user *old_sp = (elf_addr_t __user *)sp; sp += len; \
128 #define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) - (items))
129 #define STACK_ROUND(sp, items) \
130 (((unsigned long) (sp - items)) &~ 15UL)
131 #define STACK_ALLOC(sp, len) ({ sp -= len ; sp; })
135 create_elf_tables(struct linux_binprm
*bprm
, struct elfhdr
*exec
,
136 int interp_aout
, unsigned long load_addr
,
137 unsigned long interp_load_addr
)
139 unsigned long p
= bprm
->p
;
140 int argc
= bprm
->argc
;
141 int envc
= bprm
->envc
;
142 elf_addr_t __user
*argv
;
143 elf_addr_t __user
*envp
;
144 elf_addr_t __user
*sp
;
145 elf_addr_t __user
*u_platform
;
146 const char *k_platform
= ELF_PLATFORM
;
148 elf_addr_t
*elf_info
;
150 struct task_struct
*tsk
= current
;
151 struct vm_area_struct
*vma
;
154 * If this architecture has a platform capability string, copy it
155 * to userspace. In some cases (Sparc), this info is impossible
156 * for userspace to get any other way, in others (i386) it is
161 size_t len
= strlen(k_platform
) + 1;
164 * In some cases (e.g. Hyper-Threading), we want to avoid L1
165 * evictions by the processes running on the same package. One
166 * thing we can do is to shuffle the initial stack for them.
169 p
= arch_align_stack(p
);
171 u_platform
= (elf_addr_t __user
*)STACK_ALLOC(p
, len
);
172 if (__copy_to_user(u_platform
, k_platform
, len
))
176 /* Create the ELF interpreter info */
177 elf_info
= (elf_addr_t
*)current
->mm
->saved_auxv
;
178 #define NEW_AUX_ENT(id, val) \
180 elf_info[ei_index++] = id; \
181 elf_info[ei_index++] = val; \
186 * ARCH_DLINFO must come first so PPC can do its special alignment of
191 NEW_AUX_ENT(AT_HWCAP
, ELF_HWCAP
);
192 NEW_AUX_ENT(AT_PAGESZ
, ELF_EXEC_PAGESIZE
);
193 NEW_AUX_ENT(AT_CLKTCK
, CLOCKS_PER_SEC
);
194 NEW_AUX_ENT(AT_PHDR
, load_addr
+ exec
->e_phoff
);
195 NEW_AUX_ENT(AT_PHENT
, sizeof(struct elf_phdr
));
196 NEW_AUX_ENT(AT_PHNUM
, exec
->e_phnum
);
197 NEW_AUX_ENT(AT_BASE
, interp_load_addr
);
198 NEW_AUX_ENT(AT_FLAGS
, 0);
199 NEW_AUX_ENT(AT_ENTRY
, exec
->e_entry
);
200 NEW_AUX_ENT(AT_UID
, tsk
->uid
);
201 NEW_AUX_ENT(AT_EUID
, tsk
->euid
);
202 NEW_AUX_ENT(AT_GID
, tsk
->gid
);
203 NEW_AUX_ENT(AT_EGID
, tsk
->egid
);
204 NEW_AUX_ENT(AT_SECURE
, security_bprm_secureexec(bprm
));
206 NEW_AUX_ENT(AT_PLATFORM
,
207 (elf_addr_t
)(unsigned long)u_platform
);
209 if (bprm
->interp_flags
& BINPRM_FLAGS_EXECFD
) {
210 NEW_AUX_ENT(AT_EXECFD
, bprm
->interp_data
);
213 /* AT_NULL is zero; clear the rest too */
214 memset(&elf_info
[ei_index
], 0,
215 sizeof current
->mm
->saved_auxv
- ei_index
* sizeof elf_info
[0]);
217 /* And advance past the AT_NULL entry. */
220 sp
= STACK_ADD(p
, ei_index
);
222 items
= (argc
+ 1) + (envc
+ 1);
224 items
+= 3; /* a.out interpreters require argv & envp too */
226 items
+= 1; /* ELF interpreters only put argc on the stack */
228 bprm
->p
= STACK_ROUND(sp
, items
);
230 /* Point sp at the lowest address on the stack */
231 #ifdef CONFIG_STACK_GROWSUP
232 sp
= (elf_addr_t __user
*)bprm
->p
- items
- ei_index
;
233 bprm
->exec
= (unsigned long)sp
; /* XXX: PARISC HACK */
235 sp
= (elf_addr_t __user
*)bprm
->p
;
240 * Grow the stack manually; some architectures have a limit on how
241 * far ahead a user-space access may be in order to grow the stack.
243 vma
= find_extend_vma(current
->mm
, bprm
->p
);
247 /* Now, let's put argc (and argv, envp if appropriate) on the stack */
248 if (__put_user(argc
, sp
++))
252 envp
= argv
+ argc
+ 1;
253 if (__put_user((elf_addr_t
)(unsigned long)argv
, sp
++) ||
254 __put_user((elf_addr_t
)(unsigned long)envp
, sp
++))
258 envp
= argv
+ argc
+ 1;
261 /* Populate argv and envp */
262 p
= current
->mm
->arg_end
= current
->mm
->arg_start
;
265 if (__put_user((elf_addr_t
)p
, argv
++))
267 len
= strnlen_user((void __user
*)p
, MAX_ARG_STRLEN
);
268 if (!len
|| len
> MAX_ARG_STRLEN
)
272 if (__put_user(0, argv
))
274 current
->mm
->arg_end
= current
->mm
->env_start
= p
;
277 if (__put_user((elf_addr_t
)p
, envp
++))
279 len
= strnlen_user((void __user
*)p
, MAX_ARG_STRLEN
);
280 if (!len
|| len
> MAX_ARG_STRLEN
)
284 if (__put_user(0, envp
))
286 current
->mm
->env_end
= p
;
288 /* Put the elf_info on the stack in the right place. */
289 sp
= (elf_addr_t __user
*)envp
+ 1;
290 if (copy_to_user(sp
, elf_info
, ei_index
* sizeof(elf_addr_t
)))
297 static unsigned long elf_map(struct file
*filep
, unsigned long addr
,
298 struct elf_phdr
*eppnt
, int prot
, int type
)
300 unsigned long map_addr
;
301 unsigned long pageoffset
= ELF_PAGEOFFSET(eppnt
->p_vaddr
);
303 down_write(¤t
->mm
->mmap_sem
);
304 /* mmap() will return -EINVAL if given a zero size, but a
305 * segment with zero filesize is perfectly valid */
306 if (eppnt
->p_filesz
+ pageoffset
)
307 map_addr
= do_mmap(filep
, ELF_PAGESTART(addr
),
308 eppnt
->p_filesz
+ pageoffset
, prot
, type
,
309 eppnt
->p_offset
- pageoffset
);
311 map_addr
= ELF_PAGESTART(addr
);
312 up_write(¤t
->mm
->mmap_sem
);
316 #endif /* !elf_map */
318 /* This is much more generalized than the library routine read function,
319 so we keep this separate. Technically the library read function
320 is only provided so that we can read a.out libraries that have
323 static unsigned long load_elf_interp(struct elfhdr
*interp_elf_ex
,
324 struct file
*interpreter
, unsigned long *interp_load_addr
)
326 struct elf_phdr
*elf_phdata
;
327 struct elf_phdr
*eppnt
;
328 unsigned long load_addr
= 0;
329 int load_addr_set
= 0;
330 unsigned long last_bss
= 0, elf_bss
= 0;
331 unsigned long error
= ~0UL;
334 /* First of all, some simple consistency checks */
335 if (interp_elf_ex
->e_type
!= ET_EXEC
&&
336 interp_elf_ex
->e_type
!= ET_DYN
)
338 if (!elf_check_arch(interp_elf_ex
))
340 if (!interpreter
->f_op
|| !interpreter
->f_op
->mmap
)
344 * If the size of this structure has changed, then punt, since
345 * we will be doing the wrong thing.
347 if (interp_elf_ex
->e_phentsize
!= sizeof(struct elf_phdr
))
349 if (interp_elf_ex
->e_phnum
< 1 ||
350 interp_elf_ex
->e_phnum
> 65536U / sizeof(struct elf_phdr
))
353 /* Now read in all of the header information */
354 size
= sizeof(struct elf_phdr
) * interp_elf_ex
->e_phnum
;
355 if (size
> ELF_MIN_ALIGN
)
357 elf_phdata
= kmalloc(size
, GFP_KERNEL
);
361 retval
= kernel_read(interpreter
, interp_elf_ex
->e_phoff
,
362 (char *)elf_phdata
,size
);
364 if (retval
!= size
) {
371 for (i
= 0; i
< interp_elf_ex
->e_phnum
; i
++, eppnt
++) {
372 if (eppnt
->p_type
== PT_LOAD
) {
373 int elf_type
= MAP_PRIVATE
| MAP_DENYWRITE
;
375 unsigned long vaddr
= 0;
376 unsigned long k
, map_addr
;
378 if (eppnt
->p_flags
& PF_R
)
379 elf_prot
= PROT_READ
;
380 if (eppnt
->p_flags
& PF_W
)
381 elf_prot
|= PROT_WRITE
;
382 if (eppnt
->p_flags
& PF_X
)
383 elf_prot
|= PROT_EXEC
;
384 vaddr
= eppnt
->p_vaddr
;
385 if (interp_elf_ex
->e_type
== ET_EXEC
|| load_addr_set
)
386 elf_type
|= MAP_FIXED
;
388 map_addr
= elf_map(interpreter
, load_addr
+ vaddr
,
389 eppnt
, elf_prot
, elf_type
);
391 if (BAD_ADDR(map_addr
))
394 if (!load_addr_set
&&
395 interp_elf_ex
->e_type
== ET_DYN
) {
396 load_addr
= map_addr
- ELF_PAGESTART(vaddr
);
401 * Check to see if the section's size will overflow the
402 * allowed task size. Note that p_filesz must always be
403 * <= p_memsize so it's only necessary to check p_memsz.
405 k
= load_addr
+ eppnt
->p_vaddr
;
407 eppnt
->p_filesz
> eppnt
->p_memsz
||
408 eppnt
->p_memsz
> TASK_SIZE
||
409 TASK_SIZE
- eppnt
->p_memsz
< k
) {
415 * Find the end of the file mapping for this phdr, and
416 * keep track of the largest address we see for this.
418 k
= load_addr
+ eppnt
->p_vaddr
+ eppnt
->p_filesz
;
423 * Do the same thing for the memory mapping - between
424 * elf_bss and last_bss is the bss section.
426 k
= load_addr
+ eppnt
->p_memsz
+ eppnt
->p_vaddr
;
433 * Now fill out the bss section. First pad the last page up
434 * to the page boundary, and then perform a mmap to make sure
435 * that there are zero-mapped pages up to and including the
438 if (padzero(elf_bss
)) {
443 /* What we have mapped so far */
444 elf_bss
= ELF_PAGESTART(elf_bss
+ ELF_MIN_ALIGN
- 1);
446 /* Map the last of the bss segment */
447 if (last_bss
> elf_bss
) {
448 down_write(¤t
->mm
->mmap_sem
);
449 error
= do_brk(elf_bss
, last_bss
- elf_bss
);
450 up_write(¤t
->mm
->mmap_sem
);
455 *interp_load_addr
= load_addr
;
456 error
= ((unsigned long)interp_elf_ex
->e_entry
) + load_addr
;
464 static unsigned long load_aout_interp(struct exec
*interp_ex
,
465 struct file
*interpreter
)
467 unsigned long text_data
, elf_entry
= ~0UL;
471 current
->mm
->end_code
= interp_ex
->a_text
;
472 text_data
= interp_ex
->a_text
+ interp_ex
->a_data
;
473 current
->mm
->end_data
= text_data
;
474 current
->mm
->brk
= interp_ex
->a_bss
+ text_data
;
476 switch (N_MAGIC(*interp_ex
)) {
479 addr
= (char __user
*)0;
483 offset
= N_TXTOFF(*interp_ex
);
484 addr
= (char __user
*)N_TXTADDR(*interp_ex
);
490 down_write(¤t
->mm
->mmap_sem
);
491 do_brk(0, text_data
);
492 up_write(¤t
->mm
->mmap_sem
);
493 if (!interpreter
->f_op
|| !interpreter
->f_op
->read
)
495 if (interpreter
->f_op
->read(interpreter
, addr
, text_data
, &offset
) < 0)
497 flush_icache_range((unsigned long)addr
,
498 (unsigned long)addr
+ text_data
);
500 down_write(¤t
->mm
->mmap_sem
);
501 do_brk(ELF_PAGESTART(text_data
+ ELF_MIN_ALIGN
- 1),
503 up_write(¤t
->mm
->mmap_sem
);
504 elf_entry
= interp_ex
->a_entry
;
511 * These are the functions used to load ELF style executables and shared
512 * libraries. There is no binary dependent code anywhere else.
515 #define INTERPRETER_NONE 0
516 #define INTERPRETER_AOUT 1
517 #define INTERPRETER_ELF 2
519 #ifndef STACK_RND_MASK
520 #define STACK_RND_MASK (0x7ff >> (PAGE_SHIFT - 12)) /* 8MB of VA */
523 static unsigned long randomize_stack_top(unsigned long stack_top
)
525 unsigned int random_variable
= 0;
527 if ((current
->flags
& PF_RANDOMIZE
) &&
528 !(current
->personality
& ADDR_NO_RANDOMIZE
)) {
529 random_variable
= get_random_int() & STACK_RND_MASK
;
530 random_variable
<<= PAGE_SHIFT
;
532 #ifdef CONFIG_STACK_GROWSUP
533 return PAGE_ALIGN(stack_top
) + random_variable
;
535 return PAGE_ALIGN(stack_top
) - random_variable
;
539 static int load_elf_binary(struct linux_binprm
*bprm
, struct pt_regs
*regs
)
541 struct file
*interpreter
= NULL
; /* to shut gcc up */
542 unsigned long load_addr
= 0, load_bias
= 0;
543 int load_addr_set
= 0;
544 char * elf_interpreter
= NULL
;
545 unsigned int interpreter_type
= INTERPRETER_NONE
;
546 unsigned char ibcs2_interpreter
= 0;
548 struct elf_phdr
*elf_ppnt
, *elf_phdata
;
549 unsigned long elf_bss
, elf_brk
;
553 unsigned long elf_entry
, interp_load_addr
= 0;
554 unsigned long start_code
, end_code
, start_data
, end_data
;
555 unsigned long reloc_func_desc
= 0;
556 char passed_fileno
[6];
557 struct files_struct
*files
;
558 int executable_stack
= EXSTACK_DEFAULT
;
559 unsigned long def_flags
= 0;
561 struct elfhdr elf_ex
;
562 struct elfhdr interp_elf_ex
;
563 struct exec interp_ex
;
566 loc
= kmalloc(sizeof(*loc
), GFP_KERNEL
);
572 /* Get the exec-header */
573 loc
->elf_ex
= *((struct elfhdr
*)bprm
->buf
);
576 /* First of all, some simple consistency checks */
577 if (memcmp(loc
->elf_ex
.e_ident
, ELFMAG
, SELFMAG
) != 0)
580 if (loc
->elf_ex
.e_type
!= ET_EXEC
&& loc
->elf_ex
.e_type
!= ET_DYN
)
582 if (!elf_check_arch(&loc
->elf_ex
))
584 if (!bprm
->file
->f_op
||!bprm
->file
->f_op
->mmap
)
587 /* Now read in all of the header information */
588 if (loc
->elf_ex
.e_phentsize
!= sizeof(struct elf_phdr
))
590 if (loc
->elf_ex
.e_phnum
< 1 ||
591 loc
->elf_ex
.e_phnum
> 65536U / sizeof(struct elf_phdr
))
593 size
= loc
->elf_ex
.e_phnum
* sizeof(struct elf_phdr
);
595 elf_phdata
= kmalloc(size
, GFP_KERNEL
);
599 retval
= kernel_read(bprm
->file
, loc
->elf_ex
.e_phoff
,
600 (char *)elf_phdata
, size
);
601 if (retval
!= size
) {
607 files
= current
->files
; /* Refcounted so ok */
608 retval
= unshare_files();
611 if (files
== current
->files
) {
612 put_files_struct(files
);
616 /* exec will make our files private anyway, but for the a.out
617 loader stuff we need to do it earlier */
618 retval
= get_unused_fd();
621 get_file(bprm
->file
);
622 fd_install(elf_exec_fileno
= retval
, bprm
->file
);
624 elf_ppnt
= elf_phdata
;
633 for (i
= 0; i
< loc
->elf_ex
.e_phnum
; i
++) {
634 if (elf_ppnt
->p_type
== PT_INTERP
) {
635 /* This is the program interpreter used for
636 * shared libraries - for now assume that this
637 * is an a.out format binary
640 if (elf_ppnt
->p_filesz
> PATH_MAX
||
641 elf_ppnt
->p_filesz
< 2)
645 elf_interpreter
= kmalloc(elf_ppnt
->p_filesz
,
647 if (!elf_interpreter
)
650 retval
= kernel_read(bprm
->file
, elf_ppnt
->p_offset
,
653 if (retval
!= elf_ppnt
->p_filesz
) {
656 goto out_free_interp
;
658 /* make sure path is NULL terminated */
660 if (elf_interpreter
[elf_ppnt
->p_filesz
- 1] != '\0')
661 goto out_free_interp
;
663 /* If the program interpreter is one of these two,
664 * then assume an iBCS2 image. Otherwise assume
665 * a native linux image.
667 if (strcmp(elf_interpreter
,"/usr/lib/libc.so.1") == 0 ||
668 strcmp(elf_interpreter
,"/usr/lib/ld.so.1") == 0)
669 ibcs2_interpreter
= 1;
672 * The early SET_PERSONALITY here is so that the lookup
673 * for the interpreter happens in the namespace of the
674 * to-be-execed image. SET_PERSONALITY can select an
677 * However, SET_PERSONALITY is NOT allowed to switch
678 * this task into the new images's memory mapping
679 * policy - that is, TASK_SIZE must still evaluate to
680 * that which is appropriate to the execing application.
681 * This is because exit_mmap() needs to have TASK_SIZE
682 * evaluate to the size of the old image.
684 * So if (say) a 64-bit application is execing a 32-bit
685 * application it is the architecture's responsibility
686 * to defer changing the value of TASK_SIZE until the
687 * switch really is going to happen - do this in
688 * flush_thread(). - akpm
690 SET_PERSONALITY(loc
->elf_ex
, ibcs2_interpreter
);
692 interpreter
= open_exec(elf_interpreter
);
693 retval
= PTR_ERR(interpreter
);
694 if (IS_ERR(interpreter
))
695 goto out_free_interp
;
698 * If the binary is not readable then enforce
699 * mm->dumpable = 0 regardless of the interpreter's
702 if (file_permission(interpreter
, MAY_READ
) < 0)
703 bprm
->interp_flags
|= BINPRM_FLAGS_ENFORCE_NONDUMP
;
705 retval
= kernel_read(interpreter
, 0, bprm
->buf
,
707 if (retval
!= BINPRM_BUF_SIZE
) {
710 goto out_free_dentry
;
713 /* Get the exec headers */
714 loc
->interp_ex
= *((struct exec
*)bprm
->buf
);
715 loc
->interp_elf_ex
= *((struct elfhdr
*)bprm
->buf
);
721 elf_ppnt
= elf_phdata
;
722 for (i
= 0; i
< loc
->elf_ex
.e_phnum
; i
++, elf_ppnt
++)
723 if (elf_ppnt
->p_type
== PT_GNU_STACK
) {
724 if (elf_ppnt
->p_flags
& PF_X
)
725 executable_stack
= EXSTACK_ENABLE_X
;
727 executable_stack
= EXSTACK_DISABLE_X
;
731 /* Some simple consistency checks for the interpreter */
732 if (elf_interpreter
) {
734 interpreter_type
= INTERPRETER_ELF
| INTERPRETER_AOUT
;
736 /* Now figure out which format our binary is */
737 if ((N_MAGIC(loc
->interp_ex
) != OMAGIC
) &&
738 (N_MAGIC(loc
->interp_ex
) != ZMAGIC
) &&
739 (N_MAGIC(loc
->interp_ex
) != QMAGIC
))
740 interpreter_type
= INTERPRETER_ELF
;
742 if (memcmp(loc
->interp_elf_ex
.e_ident
, ELFMAG
, SELFMAG
) != 0)
743 interpreter_type
&= ~INTERPRETER_ELF
;
745 if (interpreter_type
== INTERPRETER_AOUT
&& warn
< 10) {
746 printk(KERN_WARNING
"a.out ELF interpreter %s is "
747 "deprecated and will not be supported "
748 "after Linux 2.6.25\n", elf_interpreter
);
753 if (!interpreter_type
)
754 goto out_free_dentry
;
756 /* Make sure only one type was selected */
757 if ((interpreter_type
& INTERPRETER_ELF
) &&
758 interpreter_type
!= INTERPRETER_ELF
) {
759 // FIXME - ratelimit this before re-enabling
760 // printk(KERN_WARNING "ELF: Ambiguous type, using ELF\n");
761 interpreter_type
= INTERPRETER_ELF
;
763 /* Verify the interpreter has a valid arch */
764 if ((interpreter_type
== INTERPRETER_ELF
) &&
765 !elf_check_arch(&loc
->interp_elf_ex
))
766 goto out_free_dentry
;
768 /* Executables without an interpreter also need a personality */
769 SET_PERSONALITY(loc
->elf_ex
, ibcs2_interpreter
);
772 /* OK, we are done with that, now set up the arg stuff,
773 and then start this sucker up */
774 if ((!bprm
->sh_bang
) && (interpreter_type
== INTERPRETER_AOUT
)) {
775 char *passed_p
= passed_fileno
;
776 sprintf(passed_fileno
, "%d", elf_exec_fileno
);
778 if (elf_interpreter
) {
779 retval
= copy_strings_kernel(1, &passed_p
, bprm
);
781 goto out_free_dentry
;
786 /* Flush all traces of the currently running executable */
787 retval
= flush_old_exec(bprm
);
789 goto out_free_dentry
;
791 /* Discard our unneeded old files struct */
793 put_files_struct(files
);
797 /* OK, This is the point of no return */
798 current
->flags
&= ~PF_FORKNOEXEC
;
799 current
->mm
->def_flags
= def_flags
;
801 /* Do this immediately, since STACK_TOP as used in setup_arg_pages
802 may depend on the personality. */
803 SET_PERSONALITY(loc
->elf_ex
, ibcs2_interpreter
);
804 if (elf_read_implies_exec(loc
->elf_ex
, executable_stack
))
805 current
->personality
|= READ_IMPLIES_EXEC
;
807 if (!(current
->personality
& ADDR_NO_RANDOMIZE
) && randomize_va_space
)
808 current
->flags
|= PF_RANDOMIZE
;
809 arch_pick_mmap_layout(current
->mm
);
811 /* Do this so that we can load the interpreter, if need be. We will
812 change some of these later */
813 current
->mm
->free_area_cache
= current
->mm
->mmap_base
;
814 current
->mm
->cached_hole_size
= 0;
815 retval
= setup_arg_pages(bprm
, randomize_stack_top(STACK_TOP
),
818 send_sig(SIGKILL
, current
, 0);
819 goto out_free_dentry
;
822 current
->mm
->start_stack
= bprm
->p
;
824 /* Now we do a little grungy work by mmaping the ELF image into
825 the correct location in memory. At this point, we assume that
826 the image should be loaded at fixed address, not at a variable
828 for(i
= 0, elf_ppnt
= elf_phdata
;
829 i
< loc
->elf_ex
.e_phnum
; i
++, elf_ppnt
++) {
830 int elf_prot
= 0, elf_flags
;
831 unsigned long k
, vaddr
;
833 if (elf_ppnt
->p_type
!= PT_LOAD
)
836 if (unlikely (elf_brk
> elf_bss
)) {
839 /* There was a PT_LOAD segment with p_memsz > p_filesz
840 before this one. Map anonymous pages, if needed,
841 and clear the area. */
842 retval
= set_brk (elf_bss
+ load_bias
,
843 elf_brk
+ load_bias
);
845 send_sig(SIGKILL
, current
, 0);
846 goto out_free_dentry
;
848 nbyte
= ELF_PAGEOFFSET(elf_bss
);
850 nbyte
= ELF_MIN_ALIGN
- nbyte
;
851 if (nbyte
> elf_brk
- elf_bss
)
852 nbyte
= elf_brk
- elf_bss
;
853 if (clear_user((void __user
*)elf_bss
+
856 * This bss-zeroing can fail if the ELF
857 * file specifies odd protections. So
858 * we don't check the return value
864 if (elf_ppnt
->p_flags
& PF_R
)
865 elf_prot
|= PROT_READ
;
866 if (elf_ppnt
->p_flags
& PF_W
)
867 elf_prot
|= PROT_WRITE
;
868 if (elf_ppnt
->p_flags
& PF_X
)
869 elf_prot
|= PROT_EXEC
;
871 elf_flags
= MAP_PRIVATE
| MAP_DENYWRITE
| MAP_EXECUTABLE
;
873 vaddr
= elf_ppnt
->p_vaddr
;
874 if (loc
->elf_ex
.e_type
== ET_EXEC
|| load_addr_set
) {
875 elf_flags
|= MAP_FIXED
;
876 } else if (loc
->elf_ex
.e_type
== ET_DYN
) {
877 /* Try and get dynamic programs out of the way of the
878 * default mmap base, as well as whatever program they
879 * might try to exec. This is because the brk will
880 * follow the loader, and is not movable. */
881 load_bias
= ELF_PAGESTART(ELF_ET_DYN_BASE
- vaddr
);
884 error
= elf_map(bprm
->file
, load_bias
+ vaddr
, elf_ppnt
,
885 elf_prot
, elf_flags
);
886 if (BAD_ADDR(error
)) {
887 send_sig(SIGKILL
, current
, 0);
888 retval
= IS_ERR((void *)error
) ?
889 PTR_ERR((void*)error
) : -EINVAL
;
890 goto out_free_dentry
;
893 if (!load_addr_set
) {
895 load_addr
= (elf_ppnt
->p_vaddr
- elf_ppnt
->p_offset
);
896 if (loc
->elf_ex
.e_type
== ET_DYN
) {
898 ELF_PAGESTART(load_bias
+ vaddr
);
899 load_addr
+= load_bias
;
900 reloc_func_desc
= load_bias
;
903 k
= elf_ppnt
->p_vaddr
;
910 * Check to see if the section's size will overflow the
911 * allowed task size. Note that p_filesz must always be
912 * <= p_memsz so it is only necessary to check p_memsz.
914 if (BAD_ADDR(k
) || elf_ppnt
->p_filesz
> elf_ppnt
->p_memsz
||
915 elf_ppnt
->p_memsz
> TASK_SIZE
||
916 TASK_SIZE
- elf_ppnt
->p_memsz
< k
) {
917 /* set_brk can never work. Avoid overflows. */
918 send_sig(SIGKILL
, current
, 0);
920 goto out_free_dentry
;
923 k
= elf_ppnt
->p_vaddr
+ elf_ppnt
->p_filesz
;
927 if ((elf_ppnt
->p_flags
& PF_X
) && end_code
< k
)
931 k
= elf_ppnt
->p_vaddr
+ elf_ppnt
->p_memsz
;
936 loc
->elf_ex
.e_entry
+= load_bias
;
937 elf_bss
+= load_bias
;
938 elf_brk
+= load_bias
;
939 start_code
+= load_bias
;
940 end_code
+= load_bias
;
941 start_data
+= load_bias
;
942 end_data
+= load_bias
;
944 /* Calling set_brk effectively mmaps the pages that we need
945 * for the bss and break sections. We must do this before
946 * mapping in the interpreter, to make sure it doesn't wind
947 * up getting placed where the bss needs to go.
949 retval
= set_brk(elf_bss
, elf_brk
);
951 send_sig(SIGKILL
, current
, 0);
952 goto out_free_dentry
;
954 if (likely(elf_bss
!= elf_brk
) && unlikely(padzero(elf_bss
))) {
955 send_sig(SIGSEGV
, current
, 0);
956 retval
= -EFAULT
; /* Nobody gets to see this, but.. */
957 goto out_free_dentry
;
960 if (elf_interpreter
) {
961 if (interpreter_type
== INTERPRETER_AOUT
)
962 elf_entry
= load_aout_interp(&loc
->interp_ex
,
965 elf_entry
= load_elf_interp(&loc
->interp_elf_ex
,
968 if (BAD_ADDR(elf_entry
)) {
969 force_sig(SIGSEGV
, current
);
970 retval
= IS_ERR((void *)elf_entry
) ?
971 (int)elf_entry
: -EINVAL
;
972 goto out_free_dentry
;
974 reloc_func_desc
= interp_load_addr
;
976 allow_write_access(interpreter
);
978 kfree(elf_interpreter
);
980 elf_entry
= loc
->elf_ex
.e_entry
;
981 if (BAD_ADDR(elf_entry
)) {
982 force_sig(SIGSEGV
, current
);
984 goto out_free_dentry
;
990 if (interpreter_type
!= INTERPRETER_AOUT
)
991 sys_close(elf_exec_fileno
);
993 set_binfmt(&elf_format
);
995 #ifdef ARCH_HAS_SETUP_ADDITIONAL_PAGES
996 retval
= arch_setup_additional_pages(bprm
, executable_stack
);
998 send_sig(SIGKILL
, current
, 0);
1001 #endif /* ARCH_HAS_SETUP_ADDITIONAL_PAGES */
1003 compute_creds(bprm
);
1004 current
->flags
&= ~PF_FORKNOEXEC
;
1005 retval
= create_elf_tables(bprm
, &loc
->elf_ex
,
1006 (interpreter_type
== INTERPRETER_AOUT
),
1007 load_addr
, interp_load_addr
);
1009 send_sig(SIGKILL
, current
, 0);
1012 /* N.B. passed_fileno might not be initialized? */
1013 if (interpreter_type
== INTERPRETER_AOUT
)
1014 current
->mm
->arg_start
+= strlen(passed_fileno
) + 1;
1015 current
->mm
->end_code
= end_code
;
1016 current
->mm
->start_code
= start_code
;
1017 current
->mm
->start_data
= start_data
;
1018 current
->mm
->end_data
= end_data
;
1019 current
->mm
->start_stack
= bprm
->p
;
1021 if (current
->personality
& MMAP_PAGE_ZERO
) {
1022 /* Why this, you ask??? Well SVr4 maps page 0 as read-only,
1023 and some applications "depend" upon this behavior.
1024 Since we do not have the power to recompile these, we
1025 emulate the SVr4 behavior. Sigh. */
1026 down_write(¤t
->mm
->mmap_sem
);
1027 error
= do_mmap(NULL
, 0, PAGE_SIZE
, PROT_READ
| PROT_EXEC
,
1028 MAP_FIXED
| MAP_PRIVATE
, 0);
1029 up_write(¤t
->mm
->mmap_sem
);
1032 #ifdef ELF_PLAT_INIT
1034 * The ABI may specify that certain registers be set up in special
1035 * ways (on i386 %edx is the address of a DT_FINI function, for
1036 * example. In addition, it may also specify (eg, PowerPC64 ELF)
1037 * that the e_entry field is the address of the function descriptor
1038 * for the startup routine, rather than the address of the startup
1039 * routine itself. This macro performs whatever initialization to
1040 * the regs structure is required as well as any relocations to the
1041 * function descriptor entries when executing dynamically links apps.
1043 ELF_PLAT_INIT(regs
, reloc_func_desc
);
1046 start_thread(regs
, elf_entry
, bprm
->p
);
1047 if (unlikely(current
->ptrace
& PT_PTRACED
)) {
1048 if (current
->ptrace
& PT_TRACE_EXEC
)
1049 ptrace_notify ((PTRACE_EVENT_EXEC
<< 8) | SIGTRAP
);
1051 send_sig(SIGTRAP
, current
, 0);
1061 allow_write_access(interpreter
);
1065 kfree(elf_interpreter
);
1067 sys_close(elf_exec_fileno
);
1070 reset_files_struct(current
, files
);
1076 /* This is really simpleminded and specialized - we are loading an
1077 a.out library that is given an ELF header. */
1078 static int load_elf_library(struct file
*file
)
1080 struct elf_phdr
*elf_phdata
;
1081 struct elf_phdr
*eppnt
;
1082 unsigned long elf_bss
, bss
, len
;
1083 int retval
, error
, i
, j
;
1084 struct elfhdr elf_ex
;
1087 retval
= kernel_read(file
, 0, (char *)&elf_ex
, sizeof(elf_ex
));
1088 if (retval
!= sizeof(elf_ex
))
1091 if (memcmp(elf_ex
.e_ident
, ELFMAG
, SELFMAG
) != 0)
1094 /* First of all, some simple consistency checks */
1095 if (elf_ex
.e_type
!= ET_EXEC
|| elf_ex
.e_phnum
> 2 ||
1096 !elf_check_arch(&elf_ex
) || !file
->f_op
|| !file
->f_op
->mmap
)
1099 /* Now read in all of the header information */
1101 j
= sizeof(struct elf_phdr
) * elf_ex
.e_phnum
;
1102 /* j < ELF_MIN_ALIGN because elf_ex.e_phnum <= 2 */
1105 elf_phdata
= kmalloc(j
, GFP_KERNEL
);
1111 retval
= kernel_read(file
, elf_ex
.e_phoff
, (char *)eppnt
, j
);
1115 for (j
= 0, i
= 0; i
<elf_ex
.e_phnum
; i
++)
1116 if ((eppnt
+ i
)->p_type
== PT_LOAD
)
1121 while (eppnt
->p_type
!= PT_LOAD
)
1124 /* Now use mmap to map the library into memory. */
1125 down_write(¤t
->mm
->mmap_sem
);
1126 error
= do_mmap(file
,
1127 ELF_PAGESTART(eppnt
->p_vaddr
),
1129 ELF_PAGEOFFSET(eppnt
->p_vaddr
)),
1130 PROT_READ
| PROT_WRITE
| PROT_EXEC
,
1131 MAP_FIXED
| MAP_PRIVATE
| MAP_DENYWRITE
,
1133 ELF_PAGEOFFSET(eppnt
->p_vaddr
)));
1134 up_write(¤t
->mm
->mmap_sem
);
1135 if (error
!= ELF_PAGESTART(eppnt
->p_vaddr
))
1138 elf_bss
= eppnt
->p_vaddr
+ eppnt
->p_filesz
;
1139 if (padzero(elf_bss
)) {
1144 len
= ELF_PAGESTART(eppnt
->p_filesz
+ eppnt
->p_vaddr
+
1146 bss
= eppnt
->p_memsz
+ eppnt
->p_vaddr
;
1148 down_write(¤t
->mm
->mmap_sem
);
1149 do_brk(len
, bss
- len
);
1150 up_write(¤t
->mm
->mmap_sem
);
1161 * Note that some platforms still use traditional core dumps and not
1162 * the ELF core dump. Each platform can select it as appropriate.
1164 #if defined(USE_ELF_CORE_DUMP) && defined(CONFIG_ELF_CORE)
1169 * Modelled on fs/exec.c:aout_core_dump()
1170 * Jeremy Fitzhardinge <jeremy@sw.oz.au>
1173 * These are the only things you should do on a core-file: use only these
1174 * functions to write out all the necessary info.
1176 static int dump_write(struct file
*file
, const void *addr
, int nr
)
1178 return file
->f_op
->write(file
, addr
, nr
, &file
->f_pos
) == nr
;
1181 static int dump_seek(struct file
*file
, loff_t off
)
1183 if (file
->f_op
->llseek
&& file
->f_op
->llseek
!= no_llseek
) {
1184 if (file
->f_op
->llseek(file
, off
, SEEK_CUR
) < 0)
1187 char *buf
= (char *)get_zeroed_page(GFP_KERNEL
);
1191 unsigned long n
= off
;
1194 if (!dump_write(file
, buf
, n
))
1198 free_page((unsigned long)buf
);
1204 * Decide whether a segment is worth dumping; default is yes to be
1205 * sure (missing info is worse than too much; etc).
1206 * Personally I'd include everything, and use the coredump limit...
1208 * I think we should skip something. But I am not sure how. H.J.
1210 static int maydump(struct vm_area_struct
*vma
, unsigned long mm_flags
)
1212 /* The vma can be set up to tell us the answer directly. */
1213 if (vma
->vm_flags
& VM_ALWAYSDUMP
)
1216 /* Do not dump I/O mapped devices or special mappings */
1217 if (vma
->vm_flags
& (VM_IO
| VM_RESERVED
))
1220 /* By default, dump shared memory if mapped from an anonymous file. */
1221 if (vma
->vm_flags
& VM_SHARED
) {
1222 if (vma
->vm_file
->f_path
.dentry
->d_inode
->i_nlink
== 0)
1223 return test_bit(MMF_DUMP_ANON_SHARED
, &mm_flags
);
1225 return test_bit(MMF_DUMP_MAPPED_SHARED
, &mm_flags
);
1228 /* By default, if it hasn't been written to, don't write it out. */
1230 return test_bit(MMF_DUMP_MAPPED_PRIVATE
, &mm_flags
);
1232 return test_bit(MMF_DUMP_ANON_PRIVATE
, &mm_flags
);
1235 /* An ELF note in memory */
1240 unsigned int datasz
;
1244 static int notesize(struct memelfnote
*en
)
1248 sz
= sizeof(struct elf_note
);
1249 sz
+= roundup(strlen(en
->name
) + 1, 4);
1250 sz
+= roundup(en
->datasz
, 4);
1255 #define DUMP_WRITE(addr, nr, foffset) \
1256 do { if (!dump_write(file, (addr), (nr))) return 0; *foffset += (nr); } while(0)
1258 static int alignfile(struct file
*file
, loff_t
*foffset
)
1260 static const char buf
[4] = { 0, };
1261 DUMP_WRITE(buf
, roundup(*foffset
, 4) - *foffset
, foffset
);
1265 static int writenote(struct memelfnote
*men
, struct file
*file
,
1269 en
.n_namesz
= strlen(men
->name
) + 1;
1270 en
.n_descsz
= men
->datasz
;
1271 en
.n_type
= men
->type
;
1273 DUMP_WRITE(&en
, sizeof(en
), foffset
);
1274 DUMP_WRITE(men
->name
, en
.n_namesz
, foffset
);
1275 if (!alignfile(file
, foffset
))
1277 DUMP_WRITE(men
->data
, men
->datasz
, foffset
);
1278 if (!alignfile(file
, foffset
))
1285 #define DUMP_WRITE(addr, nr) \
1286 if ((size += (nr)) > limit || !dump_write(file, (addr), (nr))) \
1288 #define DUMP_SEEK(off) \
1289 if (!dump_seek(file, (off))) \
1292 static void fill_elf_header(struct elfhdr
*elf
, int segs
)
1294 memcpy(elf
->e_ident
, ELFMAG
, SELFMAG
);
1295 elf
->e_ident
[EI_CLASS
] = ELF_CLASS
;
1296 elf
->e_ident
[EI_DATA
] = ELF_DATA
;
1297 elf
->e_ident
[EI_VERSION
] = EV_CURRENT
;
1298 elf
->e_ident
[EI_OSABI
] = ELF_OSABI
;
1299 memset(elf
->e_ident
+EI_PAD
, 0, EI_NIDENT
-EI_PAD
);
1301 elf
->e_type
= ET_CORE
;
1302 elf
->e_machine
= ELF_ARCH
;
1303 elf
->e_version
= EV_CURRENT
;
1305 elf
->e_phoff
= sizeof(struct elfhdr
);
1307 elf
->e_flags
= ELF_CORE_EFLAGS
;
1308 elf
->e_ehsize
= sizeof(struct elfhdr
);
1309 elf
->e_phentsize
= sizeof(struct elf_phdr
);
1310 elf
->e_phnum
= segs
;
1311 elf
->e_shentsize
= 0;
1313 elf
->e_shstrndx
= 0;
1317 static void fill_elf_note_phdr(struct elf_phdr
*phdr
, int sz
, loff_t offset
)
1319 phdr
->p_type
= PT_NOTE
;
1320 phdr
->p_offset
= offset
;
1323 phdr
->p_filesz
= sz
;
1330 static void fill_note(struct memelfnote
*note
, const char *name
, int type
,
1331 unsigned int sz
, void *data
)
1341 * fill up all the fields in prstatus from the given task struct, except
1342 * registers which need to be filled up separately.
1344 static void fill_prstatus(struct elf_prstatus
*prstatus
,
1345 struct task_struct
*p
, long signr
)
1347 prstatus
->pr_info
.si_signo
= prstatus
->pr_cursig
= signr
;
1348 prstatus
->pr_sigpend
= p
->pending
.signal
.sig
[0];
1349 prstatus
->pr_sighold
= p
->blocked
.sig
[0];
1350 prstatus
->pr_pid
= p
->pid
;
1351 prstatus
->pr_ppid
= p
->parent
->pid
;
1352 prstatus
->pr_pgrp
= process_group(p
);
1353 prstatus
->pr_sid
= process_session(p
);
1354 if (thread_group_leader(p
)) {
1356 * This is the record for the group leader. Add in the
1357 * cumulative times of previous dead threads. This total
1358 * won't include the time of each live thread whose state
1359 * is included in the core dump. The final total reported
1360 * to our parent process when it calls wait4 will include
1361 * those sums as well as the little bit more time it takes
1362 * this and each other thread to finish dying after the
1363 * core dump synchronization phase.
1365 cputime_to_timeval(cputime_add(p
->utime
, p
->signal
->utime
),
1366 &prstatus
->pr_utime
);
1367 cputime_to_timeval(cputime_add(p
->stime
, p
->signal
->stime
),
1368 &prstatus
->pr_stime
);
1370 cputime_to_timeval(p
->utime
, &prstatus
->pr_utime
);
1371 cputime_to_timeval(p
->stime
, &prstatus
->pr_stime
);
1373 cputime_to_timeval(p
->signal
->cutime
, &prstatus
->pr_cutime
);
1374 cputime_to_timeval(p
->signal
->cstime
, &prstatus
->pr_cstime
);
1377 static int fill_psinfo(struct elf_prpsinfo
*psinfo
, struct task_struct
*p
,
1378 struct mm_struct
*mm
)
1380 unsigned int i
, len
;
1382 /* first copy the parameters from user space */
1383 memset(psinfo
, 0, sizeof(struct elf_prpsinfo
));
1385 len
= mm
->arg_end
- mm
->arg_start
;
1386 if (len
>= ELF_PRARGSZ
)
1387 len
= ELF_PRARGSZ
-1;
1388 if (copy_from_user(&psinfo
->pr_psargs
,
1389 (const char __user
*)mm
->arg_start
, len
))
1391 for(i
= 0; i
< len
; i
++)
1392 if (psinfo
->pr_psargs
[i
] == 0)
1393 psinfo
->pr_psargs
[i
] = ' ';
1394 psinfo
->pr_psargs
[len
] = 0;
1396 psinfo
->pr_pid
= p
->pid
;
1397 psinfo
->pr_ppid
= p
->parent
->pid
;
1398 psinfo
->pr_pgrp
= process_group(p
);
1399 psinfo
->pr_sid
= process_session(p
);
1401 i
= p
->state
? ffz(~p
->state
) + 1 : 0;
1402 psinfo
->pr_state
= i
;
1403 psinfo
->pr_sname
= (i
> 5) ? '.' : "RSDTZW"[i
];
1404 psinfo
->pr_zomb
= psinfo
->pr_sname
== 'Z';
1405 psinfo
->pr_nice
= task_nice(p
);
1406 psinfo
->pr_flag
= p
->flags
;
1407 SET_UID(psinfo
->pr_uid
, p
->uid
);
1408 SET_GID(psinfo
->pr_gid
, p
->gid
);
1409 strncpy(psinfo
->pr_fname
, p
->comm
, sizeof(psinfo
->pr_fname
));
1414 /* Here is the structure in which status of each thread is captured. */
1415 struct elf_thread_status
1417 struct list_head list
;
1418 struct elf_prstatus prstatus
; /* NT_PRSTATUS */
1419 elf_fpregset_t fpu
; /* NT_PRFPREG */
1420 struct task_struct
*thread
;
1421 #ifdef ELF_CORE_COPY_XFPREGS
1422 elf_fpxregset_t xfpu
; /* ELF_CORE_XFPREG_TYPE */
1424 struct memelfnote notes
[3];
1429 * In order to add the specific thread information for the elf file format,
1430 * we need to keep a linked list of every threads pr_status and then create
1431 * a single section for them in the final core file.
1433 static int elf_dump_thread_status(long signr
, struct elf_thread_status
*t
)
1436 struct task_struct
*p
= t
->thread
;
1439 fill_prstatus(&t
->prstatus
, p
, signr
);
1440 elf_core_copy_task_regs(p
, &t
->prstatus
.pr_reg
);
1442 fill_note(&t
->notes
[0], "CORE", NT_PRSTATUS
, sizeof(t
->prstatus
),
1445 sz
+= notesize(&t
->notes
[0]);
1447 if ((t
->prstatus
.pr_fpvalid
= elf_core_copy_task_fpregs(p
, NULL
,
1449 fill_note(&t
->notes
[1], "CORE", NT_PRFPREG
, sizeof(t
->fpu
),
1452 sz
+= notesize(&t
->notes
[1]);
1455 #ifdef ELF_CORE_COPY_XFPREGS
1456 if (elf_core_copy_task_xfpregs(p
, &t
->xfpu
)) {
1457 fill_note(&t
->notes
[2], "LINUX", ELF_CORE_XFPREG_TYPE
,
1458 sizeof(t
->xfpu
), &t
->xfpu
);
1460 sz
+= notesize(&t
->notes
[2]);
1466 static struct vm_area_struct
*first_vma(struct task_struct
*tsk
,
1467 struct vm_area_struct
*gate_vma
)
1469 struct vm_area_struct
*ret
= tsk
->mm
->mmap
;
1476 * Helper function for iterating across a vma list. It ensures that the caller
1477 * will visit `gate_vma' prior to terminating the search.
1479 static struct vm_area_struct
*next_vma(struct vm_area_struct
*this_vma
,
1480 struct vm_area_struct
*gate_vma
)
1482 struct vm_area_struct
*ret
;
1484 ret
= this_vma
->vm_next
;
1487 if (this_vma
== gate_vma
)
1495 * This is a two-pass process; first we find the offsets of the bits,
1496 * and then they are actually written out. If we run out of core limit
1499 static int elf_core_dump(long signr
, struct pt_regs
*regs
, struct file
*file
, unsigned long limit
)
1507 struct vm_area_struct
*vma
, *gate_vma
;
1508 struct elfhdr
*elf
= NULL
;
1509 loff_t offset
= 0, dataoff
, foffset
;
1511 struct memelfnote
*notes
= NULL
;
1512 struct elf_prstatus
*prstatus
= NULL
; /* NT_PRSTATUS */
1513 struct elf_prpsinfo
*psinfo
= NULL
; /* NT_PRPSINFO */
1514 struct task_struct
*g
, *p
;
1515 LIST_HEAD(thread_list
);
1516 struct list_head
*t
;
1517 elf_fpregset_t
*fpu
= NULL
;
1518 #ifdef ELF_CORE_COPY_XFPREGS
1519 elf_fpxregset_t
*xfpu
= NULL
;
1521 int thread_status_size
= 0;
1523 unsigned long mm_flags
;
1526 * We no longer stop all VM operations.
1528 * This is because those proceses that could possibly change map_count
1529 * or the mmap / vma pages are now blocked in do_exit on current
1530 * finishing this core dump.
1532 * Only ptrace can touch these memory addresses, but it doesn't change
1533 * the map_count or the pages allocated. So no possibility of crashing
1534 * exists while dumping the mm->vm_next areas to the core file.
1537 /* alloc memory for large data structures: too large to be on stack */
1538 elf
= kmalloc(sizeof(*elf
), GFP_KERNEL
);
1541 prstatus
= kmalloc(sizeof(*prstatus
), GFP_KERNEL
);
1544 psinfo
= kmalloc(sizeof(*psinfo
), GFP_KERNEL
);
1547 notes
= kmalloc(NUM_NOTES
* sizeof(struct memelfnote
), GFP_KERNEL
);
1550 fpu
= kmalloc(sizeof(*fpu
), GFP_KERNEL
);
1553 #ifdef ELF_CORE_COPY_XFPREGS
1554 xfpu
= kmalloc(sizeof(*xfpu
), GFP_KERNEL
);
1560 struct elf_thread_status
*tmp
;
1563 if (current
->mm
== p
->mm
&& current
!= p
) {
1564 tmp
= kzalloc(sizeof(*tmp
), GFP_ATOMIC
);
1570 list_add(&tmp
->list
, &thread_list
);
1572 while_each_thread(g
,p
);
1574 list_for_each(t
, &thread_list
) {
1575 struct elf_thread_status
*tmp
;
1578 tmp
= list_entry(t
, struct elf_thread_status
, list
);
1579 sz
= elf_dump_thread_status(signr
, tmp
);
1580 thread_status_size
+= sz
;
1583 /* now collect the dump for the current */
1584 memset(prstatus
, 0, sizeof(*prstatus
));
1585 fill_prstatus(prstatus
, current
, signr
);
1586 elf_core_copy_regs(&prstatus
->pr_reg
, regs
);
1588 segs
= current
->mm
->map_count
;
1589 #ifdef ELF_CORE_EXTRA_PHDRS
1590 segs
+= ELF_CORE_EXTRA_PHDRS
;
1593 gate_vma
= get_gate_vma(current
);
1594 if (gate_vma
!= NULL
)
1598 fill_elf_header(elf
, segs
+ 1); /* including notes section */
1601 current
->flags
|= PF_DUMPCORE
;
1604 * Set up the notes in similar form to SVR4 core dumps made
1605 * with info from their /proc.
1608 fill_note(notes
+ 0, "CORE", NT_PRSTATUS
, sizeof(*prstatus
), prstatus
);
1609 fill_psinfo(psinfo
, current
->group_leader
, current
->mm
);
1610 fill_note(notes
+ 1, "CORE", NT_PRPSINFO
, sizeof(*psinfo
), psinfo
);
1614 auxv
= (elf_addr_t
*)current
->mm
->saved_auxv
;
1619 while (auxv
[i
- 2] != AT_NULL
);
1620 fill_note(¬es
[numnote
++], "CORE", NT_AUXV
,
1621 i
* sizeof(elf_addr_t
), auxv
);
1623 /* Try to dump the FPU. */
1624 if ((prstatus
->pr_fpvalid
=
1625 elf_core_copy_task_fpregs(current
, regs
, fpu
)))
1626 fill_note(notes
+ numnote
++,
1627 "CORE", NT_PRFPREG
, sizeof(*fpu
), fpu
);
1628 #ifdef ELF_CORE_COPY_XFPREGS
1629 if (elf_core_copy_task_xfpregs(current
, xfpu
))
1630 fill_note(notes
+ numnote
++,
1631 "LINUX", ELF_CORE_XFPREG_TYPE
, sizeof(*xfpu
), xfpu
);
1637 DUMP_WRITE(elf
, sizeof(*elf
));
1638 offset
+= sizeof(*elf
); /* Elf header */
1639 offset
+= (segs
+ 1) * sizeof(struct elf_phdr
); /* Program headers */
1642 /* Write notes phdr entry */
1644 struct elf_phdr phdr
;
1647 for (i
= 0; i
< numnote
; i
++)
1648 sz
+= notesize(notes
+ i
);
1650 sz
+= thread_status_size
;
1652 sz
+= elf_coredump_extra_notes_size();
1654 fill_elf_note_phdr(&phdr
, sz
, offset
);
1656 DUMP_WRITE(&phdr
, sizeof(phdr
));
1659 dataoff
= offset
= roundup(offset
, ELF_EXEC_PAGESIZE
);
1662 * We must use the same mm->flags while dumping core to avoid
1663 * inconsistency between the program headers and bodies, otherwise an
1664 * unusable core file can be generated.
1666 mm_flags
= current
->mm
->flags
;
1668 /* Write program headers for segments dump */
1669 for (vma
= first_vma(current
, gate_vma
); vma
!= NULL
;
1670 vma
= next_vma(vma
, gate_vma
)) {
1671 struct elf_phdr phdr
;
1674 sz
= vma
->vm_end
- vma
->vm_start
;
1676 phdr
.p_type
= PT_LOAD
;
1677 phdr
.p_offset
= offset
;
1678 phdr
.p_vaddr
= vma
->vm_start
;
1680 phdr
.p_filesz
= maydump(vma
, mm_flags
) ? sz
: 0;
1682 offset
+= phdr
.p_filesz
;
1683 phdr
.p_flags
= vma
->vm_flags
& VM_READ
? PF_R
: 0;
1684 if (vma
->vm_flags
& VM_WRITE
)
1685 phdr
.p_flags
|= PF_W
;
1686 if (vma
->vm_flags
& VM_EXEC
)
1687 phdr
.p_flags
|= PF_X
;
1688 phdr
.p_align
= ELF_EXEC_PAGESIZE
;
1690 DUMP_WRITE(&phdr
, sizeof(phdr
));
1693 #ifdef ELF_CORE_WRITE_EXTRA_PHDRS
1694 ELF_CORE_WRITE_EXTRA_PHDRS
;
1697 /* write out the notes section */
1698 for (i
= 0; i
< numnote
; i
++)
1699 if (!writenote(notes
+ i
, file
, &foffset
))
1702 if (elf_coredump_extra_notes_write(file
, &foffset
))
1705 /* write out the thread status notes section */
1706 list_for_each(t
, &thread_list
) {
1707 struct elf_thread_status
*tmp
=
1708 list_entry(t
, struct elf_thread_status
, list
);
1710 for (i
= 0; i
< tmp
->num_notes
; i
++)
1711 if (!writenote(&tmp
->notes
[i
], file
, &foffset
))
1716 DUMP_SEEK(dataoff
- foffset
);
1718 for (vma
= first_vma(current
, gate_vma
); vma
!= NULL
;
1719 vma
= next_vma(vma
, gate_vma
)) {
1722 if (!maydump(vma
, mm_flags
))
1725 for (addr
= vma
->vm_start
;
1727 addr
+= PAGE_SIZE
) {
1729 struct vm_area_struct
*vma
;
1731 if (get_user_pages(current
, current
->mm
, addr
, 1, 0, 1,
1732 &page
, &vma
) <= 0) {
1733 DUMP_SEEK(PAGE_SIZE
);
1735 if (page
== ZERO_PAGE(0)) {
1736 if (!dump_seek(file
, PAGE_SIZE
)) {
1737 page_cache_release(page
);
1742 flush_cache_page(vma
, addr
,
1745 if ((size
+= PAGE_SIZE
) > limit
||
1746 !dump_write(file
, kaddr
,
1749 page_cache_release(page
);
1754 page_cache_release(page
);
1759 #ifdef ELF_CORE_WRITE_EXTRA_DATA
1760 ELF_CORE_WRITE_EXTRA_DATA
;
1767 while (!list_empty(&thread_list
)) {
1768 struct list_head
*tmp
= thread_list
.next
;
1770 kfree(list_entry(tmp
, struct elf_thread_status
, list
));
1778 #ifdef ELF_CORE_COPY_XFPREGS
1785 #endif /* USE_ELF_CORE_DUMP */
1787 static int __init
init_elf_binfmt(void)
1789 return register_binfmt(&elf_format
);
1792 static void __exit
exit_elf_binfmt(void)
1794 /* Remove the COFF and ELF loaders. */
1795 unregister_binfmt(&elf_format
);
1798 core_initcall(init_elf_binfmt
);
1799 module_exit(exit_elf_binfmt
);
1800 MODULE_LICENSE("GPL");