2 * linux/fs/binfmt_aout.c
4 * Copyright (C) 1991, 1992, 1996 Linus Torvalds
7 #include <linux/module.h>
9 #include <linux/time.h>
10 #include <linux/kernel.h>
12 #include <linux/mman.h>
13 #include <linux/a.out.h>
14 #include <linux/errno.h>
15 #include <linux/signal.h>
16 #include <linux/string.h>
18 #include <linux/file.h>
19 #include <linux/stat.h>
20 #include <linux/fcntl.h>
21 #include <linux/ptrace.h>
22 #include <linux/user.h>
23 #include <linux/slab.h>
24 #include <linux/binfmts.h>
25 #include <linux/personality.h>
26 #include <linux/init.h>
28 #include <asm/system.h>
29 #include <asm/uaccess.h>
30 #include <asm/cacheflush.h>
32 static int load_aout_binary(struct linux_binprm
*, struct pt_regs
* regs
);
33 static int load_aout_library(struct file
*);
34 static int aout_core_dump(long signr
, struct pt_regs
* regs
, struct file
*file
);
36 extern void dump_thread(struct pt_regs
*, struct user
*);
38 static struct linux_binfmt aout_format
= {
39 .module
= THIS_MODULE
,
40 .load_binary
= load_aout_binary
,
41 .load_shlib
= load_aout_library
,
42 .core_dump
= aout_core_dump
,
43 .min_coredump
= PAGE_SIZE
46 static void set_brk(unsigned long start
, unsigned long end
)
48 start
= PAGE_ALIGN(start
);
49 end
= PAGE_ALIGN(end
);
52 do_brk(start
, end
- start
);
56 * These are the only things you should do on a core-file: use only these
57 * macros to write out all the necessary info.
60 static int dump_write(struct file
*file
, const void *addr
, int nr
)
62 return file
->f_op
->write(file
, addr
, nr
, &file
->f_pos
) == nr
;
65 #define DUMP_WRITE(addr, nr) \
66 if (!dump_write(file, (void *)(addr), (nr))) \
69 #define DUMP_SEEK(offset) \
70 if (file->f_op->llseek) { \
71 if (file->f_op->llseek(file,(offset),0) != (offset)) \
73 } else file->f_pos = (offset)
76 * Routine writes a core dump image in the current directory.
77 * Currently only a stub-function.
79 * Note that setuid/setgid files won't make a core-dump if the uid/gid
80 * changed due to the set[u|g]id. It's enforced by the "current->mm->dumpable"
81 * field, which also makes sure the core-dumps won't be recursive if the
82 * dumping of the process results in another error..
85 static int aout_core_dump(long signr
, struct pt_regs
* regs
, struct file
*file
)
89 unsigned long dump_start
, dump_size
;
91 #if defined(__alpha__)
92 # define START_DATA(u) (u.start_data)
93 #elif defined(__arm__)
94 # define START_DATA(u) ((u.u_tsize << PAGE_SHIFT) + u.start_code)
95 #elif defined(__sparc__)
96 # define START_DATA(u) (u.u_tsize)
97 #elif defined(__i386__) || defined(__mc68000__) || defined(__arch_um__)
98 # define START_DATA(u) (u.u_tsize << PAGE_SHIFT)
101 # define START_STACK(u) ((regs->u_regs[UREG_FP]) & ~(PAGE_SIZE - 1))
103 # define START_STACK(u) (u.start_stack)
109 current
->flags
|= PF_DUMPCORE
;
110 strncpy(dump
.u_comm
, current
->comm
, sizeof(current
->comm
));
112 dump
.u_ar0
= (void *)(((unsigned long)(&dump
.regs
)) - ((unsigned long)(&dump
)));
115 dump_thread(regs
, &dump
);
117 /* If the size of the dump file exceeds the rlimit, then see what would happen
118 if we wrote the stack, but not the data area. */
120 if ((dump
.u_dsize
+dump
.u_ssize
) >
121 current
->rlim
[RLIMIT_CORE
].rlim_cur
)
124 if ((dump
.u_dsize
+dump
.u_ssize
+1) * PAGE_SIZE
>
125 current
->rlim
[RLIMIT_CORE
].rlim_cur
)
129 /* Make sure we have enough room to write the stack and data areas. */
132 current
->rlim
[RLIMIT_CORE
].rlim_cur
)
135 if ((dump
.u_ssize
+1) * PAGE_SIZE
>
136 current
->rlim
[RLIMIT_CORE
].rlim_cur
)
140 /* make sure we actually have a data and stack area to dump */
143 if (verify_area(VERIFY_READ
, (void __user
*)START_DATA(dump
), dump
.u_dsize
))
145 if (verify_area(VERIFY_READ
, (void __user
*)START_STACK(dump
), dump
.u_ssize
))
148 if (verify_area(VERIFY_READ
, (void __user
*)START_DATA(dump
), dump
.u_dsize
<< PAGE_SHIFT
))
150 if (verify_area(VERIFY_READ
, (void __user
*)START_STACK(dump
), dump
.u_ssize
<< PAGE_SHIFT
))
156 DUMP_WRITE(&dump
,sizeof(dump
));
157 /* Now dump all of the user data. Include malloced stuff as well */
159 DUMP_SEEK(PAGE_SIZE
);
161 /* now we start writing out the user space info */
163 /* Dump the data area */
164 if (dump
.u_dsize
!= 0) {
165 dump_start
= START_DATA(dump
);
167 dump_size
= dump
.u_dsize
;
169 dump_size
= dump
.u_dsize
<< PAGE_SHIFT
;
171 DUMP_WRITE(dump_start
,dump_size
);
173 /* Now prepare to dump the stack area */
174 if (dump
.u_ssize
!= 0) {
175 dump_start
= START_STACK(dump
);
177 dump_size
= dump
.u_ssize
;
179 dump_size
= dump
.u_ssize
<< PAGE_SHIFT
;
181 DUMP_WRITE(dump_start
,dump_size
);
183 /* Finally dump the task struct. Not be used by gdb, but could be useful */
185 DUMP_WRITE(current
,sizeof(*current
));
192 * create_aout_tables() parses the env- and arg-strings in new user
193 * memory and creates the pointer tables from them, and puts their
194 * addresses on the "stack", returning the new stack pointer value.
196 static unsigned long __user
*create_aout_tables(char __user
*p
, struct linux_binprm
* bprm
)
198 char __user
* __user
*argv
;
199 char __user
* __user
*envp
;
200 unsigned long __user
*sp
;
201 int argc
= bprm
->argc
;
202 int envc
= bprm
->envc
;
204 sp
= (void __user
*)((-(unsigned long)sizeof(char *)) & (unsigned long) p
);
206 /* This imposes the proper stack alignment for a new process. */
207 sp
= (void __user
*) (((unsigned long) sp
) & ~7);
208 if ((envc
+argc
+3)&1) --sp
;
211 /* whee.. test-programs are so much fun. */
216 put_user(0x3eb, --sp
);
217 put_user(bprm
->loader
, --sp
);
218 put_user(0x3ea, --sp
);
220 put_user(bprm
->exec
, --sp
);
221 put_user(0x3e9, --sp
);
224 envp
= (char __user
* __user
*) sp
;
226 argv
= (char __user
* __user
*) sp
;
227 #if defined(__i386__) || defined(__mc68000__) || defined(__arm__) || defined(__arch_um__)
228 put_user((unsigned long) envp
,--sp
);
229 put_user((unsigned long) argv
,--sp
);
232 current
->mm
->arg_start
= (unsigned long) p
;
241 current
->mm
->arg_end
= current
->mm
->env_start
= (unsigned long) p
;
250 current
->mm
->env_end
= (unsigned long) p
;
255 * These are the functions used to load a.out style executables and shared
256 * libraries. There is no binary dependent code anywhere else.
259 static int load_aout_binary(struct linux_binprm
* bprm
, struct pt_regs
* regs
)
263 unsigned long fd_offset
;
267 ex
= *((struct exec
*) bprm
->buf
); /* exec-header */
268 if ((N_MAGIC(ex
) != ZMAGIC
&& N_MAGIC(ex
) != OMAGIC
&&
269 N_MAGIC(ex
) != QMAGIC
&& N_MAGIC(ex
) != NMAGIC
) ||
270 N_TRSIZE(ex
) || N_DRSIZE(ex
) ||
271 i_size_read(bprm
->file
->f_dentry
->d_inode
) < ex
.a_text
+ex
.a_data
+N_SYMSIZE(ex
)+N_TXTOFF(ex
)) {
275 fd_offset
= N_TXTOFF(ex
);
277 /* Check initial limits. This avoids letting people circumvent
278 * size limits imposed on them by creating programs with large
279 * arrays in the data or bss.
281 rlim
= current
->rlim
[RLIMIT_DATA
].rlim_cur
;
282 if (rlim
>= RLIM_INFINITY
)
284 if (ex
.a_data
+ ex
.a_bss
> rlim
)
287 /* Flush all traces of the currently running executable */
288 retval
= flush_old_exec(bprm
);
292 /* OK, This is the point of no return */
293 #if defined(__alpha__)
294 SET_AOUT_PERSONALITY(bprm
, ex
);
295 #elif defined(__sparc__)
296 set_personality(PER_SUNOS
);
297 #if !defined(__sparc_v9__)
298 memcpy(¤t
->thread
.core_exec
, &ex
, sizeof(struct exec
));
301 set_personality(PER_LINUX
);
304 current
->mm
->end_code
= ex
.a_text
+
305 (current
->mm
->start_code
= N_TXTADDR(ex
));
306 current
->mm
->end_data
= ex
.a_data
+
307 (current
->mm
->start_data
= N_DATADDR(ex
));
308 current
->mm
->brk
= ex
.a_bss
+
309 (current
->mm
->start_brk
= N_BSSADDR(ex
));
310 current
->mm
->free_area_cache
= current
->mm
->mmap_base
;
312 current
->mm
->rss
= 0;
313 current
->mm
->mmap
= NULL
;
315 current
->flags
&= ~PF_FORKNOEXEC
;
317 if (N_MAGIC(ex
) == NMAGIC
) {
318 loff_t pos
= fd_offset
;
319 /* Fuck me plenty... */
321 error
= do_brk(N_TXTADDR(ex
), ex
.a_text
);
322 bprm
->file
->f_op
->read(bprm
->file
, (char *) N_TXTADDR(ex
),
324 error
= do_brk(N_DATADDR(ex
), ex
.a_data
);
325 bprm
->file
->f_op
->read(bprm
->file
, (char *) N_DATADDR(ex
),
331 if (N_MAGIC(ex
) == OMAGIC
) {
332 unsigned long text_addr
, map_size
;
335 text_addr
= N_TXTADDR(ex
);
337 #if defined(__alpha__) || defined(__sparc__)
339 map_size
= ex
.a_text
+ex
.a_data
+ PAGE_SIZE
- 1;
342 map_size
= ex
.a_text
+ex
.a_data
;
345 error
= do_brk(text_addr
& PAGE_MASK
, map_size
);
346 if (error
!= (text_addr
& PAGE_MASK
)) {
347 send_sig(SIGKILL
, current
, 0);
351 error
= bprm
->file
->f_op
->read(bprm
->file
,
352 (char __user
*)text_addr
,
353 ex
.a_text
+ex
.a_data
, &pos
);
354 if ((signed long)error
< 0) {
355 send_sig(SIGKILL
, current
, 0);
359 flush_icache_range(text_addr
, text_addr
+ex
.a_text
+ex
.a_data
);
361 static unsigned long error_time
, error_time2
;
362 if ((ex
.a_text
& 0xfff || ex
.a_data
& 0xfff) &&
363 (N_MAGIC(ex
) != NMAGIC
) && (jiffies
-error_time2
) > 5*HZ
)
365 printk(KERN_NOTICE
"executable not page aligned\n");
366 error_time2
= jiffies
;
369 if ((fd_offset
& ~PAGE_MASK
) != 0 &&
370 (jiffies
-error_time
) > 5*HZ
)
373 "fd_offset is not page aligned. Please convert program: %s\n",
374 bprm
->file
->f_dentry
->d_name
.name
);
375 error_time
= jiffies
;
378 if (!bprm
->file
->f_op
->mmap
||((fd_offset
& ~PAGE_MASK
) != 0)) {
379 loff_t pos
= fd_offset
;
380 do_brk(N_TXTADDR(ex
), ex
.a_text
+ex
.a_data
);
381 bprm
->file
->f_op
->read(bprm
->file
,
382 (char __user
*)N_TXTADDR(ex
),
383 ex
.a_text
+ex
.a_data
, &pos
);
384 flush_icache_range((unsigned long) N_TXTADDR(ex
),
385 (unsigned long) N_TXTADDR(ex
) +
386 ex
.a_text
+ex
.a_data
);
390 down_write(¤t
->mm
->mmap_sem
);
391 error
= do_mmap(bprm
->file
, N_TXTADDR(ex
), ex
.a_text
,
392 PROT_READ
| PROT_EXEC
,
393 MAP_FIXED
| MAP_PRIVATE
| MAP_DENYWRITE
| MAP_EXECUTABLE
,
395 up_write(¤t
->mm
->mmap_sem
);
397 if (error
!= N_TXTADDR(ex
)) {
398 send_sig(SIGKILL
, current
, 0);
402 down_write(¤t
->mm
->mmap_sem
);
403 error
= do_mmap(bprm
->file
, N_DATADDR(ex
), ex
.a_data
,
404 PROT_READ
| PROT_WRITE
| PROT_EXEC
,
405 MAP_FIXED
| MAP_PRIVATE
| MAP_DENYWRITE
| MAP_EXECUTABLE
,
406 fd_offset
+ ex
.a_text
);
407 up_write(¤t
->mm
->mmap_sem
);
408 if (error
!= N_DATADDR(ex
)) {
409 send_sig(SIGKILL
, current
, 0);
414 set_binfmt(&aout_format
);
416 set_brk(current
->mm
->start_brk
, current
->mm
->brk
);
418 retval
= setup_arg_pages(bprm
, EXSTACK_DEFAULT
);
420 /* Someone check-me: is this error path enough? */
421 send_sig(SIGKILL
, current
, 0);
425 current
->mm
->start_stack
=
426 (unsigned long) create_aout_tables((char __user
*) bprm
->p
, bprm
);
428 regs
->gp
= ex
.a_gpvalue
;
430 start_thread(regs
, ex
.a_entry
, current
->mm
->start_stack
);
431 if (unlikely(current
->ptrace
& PT_PTRACED
)) {
432 if (current
->ptrace
& PT_TRACE_EXEC
)
433 ptrace_notify ((PTRACE_EVENT_EXEC
<< 8) | SIGTRAP
);
435 send_sig(SIGTRAP
, current
, 0);
440 static int load_aout_library(struct file
*file
)
442 struct inode
* inode
;
443 unsigned long bss
, start_addr
, len
;
448 inode
= file
->f_dentry
->d_inode
;
451 error
= kernel_read(file
, 0, (char *) &ex
, sizeof(ex
));
452 if (error
!= sizeof(ex
))
455 /* We come in here for the regular a.out style of shared libraries */
456 if ((N_MAGIC(ex
) != ZMAGIC
&& N_MAGIC(ex
) != QMAGIC
) || N_TRSIZE(ex
) ||
457 N_DRSIZE(ex
) || ((ex
.a_entry
& 0xfff) && N_MAGIC(ex
) == ZMAGIC
) ||
458 i_size_read(inode
) < ex
.a_text
+ex
.a_data
+N_SYMSIZE(ex
)+N_TXTOFF(ex
)) {
465 /* For QMAGIC, the starting address is 0x20 into the page. We mask
466 this off to get the starting address for the page */
468 start_addr
= ex
.a_entry
& 0xfffff000;
470 if ((N_TXTOFF(ex
) & ~PAGE_MASK
) != 0) {
471 static unsigned long error_time
;
472 loff_t pos
= N_TXTOFF(ex
);
474 if ((jiffies
-error_time
) > 5*HZ
)
477 "N_TXTOFF is not page aligned. Please convert library: %s\n",
478 file
->f_dentry
->d_name
.name
);
479 error_time
= jiffies
;
482 do_brk(start_addr
, ex
.a_text
+ ex
.a_data
+ ex
.a_bss
);
484 file
->f_op
->read(file
, (char __user
*)start_addr
,
485 ex
.a_text
+ ex
.a_data
, &pos
);
486 flush_icache_range((unsigned long) start_addr
,
487 (unsigned long) start_addr
+ ex
.a_text
+ ex
.a_data
);
492 /* Now use mmap to map the library into memory. */
493 down_write(¤t
->mm
->mmap_sem
);
494 error
= do_mmap(file
, start_addr
, ex
.a_text
+ ex
.a_data
,
495 PROT_READ
| PROT_WRITE
| PROT_EXEC
,
496 MAP_FIXED
| MAP_PRIVATE
| MAP_DENYWRITE
,
498 up_write(¤t
->mm
->mmap_sem
);
500 if (error
!= start_addr
)
503 len
= PAGE_ALIGN(ex
.a_text
+ ex
.a_data
);
504 bss
= ex
.a_text
+ ex
.a_data
+ ex
.a_bss
;
506 error
= do_brk(start_addr
+ len
, bss
- len
);
508 if (error
!= start_addr
+ len
)
516 static int __init
init_aout_binfmt(void)
518 return register_binfmt(&aout_format
);
521 static void __exit
exit_aout_binfmt(void)
523 unregister_binfmt(&aout_format
);
526 core_initcall(init_aout_binfmt
);
527 module_exit(exit_aout_binfmt
);
528 MODULE_LICENSE("GPL");