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>
27 #include <linux/ptrace.h>
29 #include <asm/system.h>
30 #include <asm/uaccess.h>
31 #include <asm/pgalloc.h>
32 #include <asm/cacheflush.h>
34 static int load_aout_binary(struct linux_binprm
*, struct pt_regs
* regs
);
35 static int load_aout_library(struct file
*);
36 static int aout_core_dump(long signr
, struct pt_regs
* regs
, struct file
*file
);
38 extern void dump_thread(struct pt_regs
*, struct user
*);
40 static struct linux_binfmt aout_format
= {
41 .module
= THIS_MODULE
,
42 .load_binary
= load_aout_binary
,
43 .load_shlib
= load_aout_library
,
44 .core_dump
= aout_core_dump
,
45 .min_coredump
= PAGE_SIZE
48 static void set_brk(unsigned long start
, unsigned long end
)
50 start
= PAGE_ALIGN(start
);
51 end
= PAGE_ALIGN(end
);
54 do_brk(start
, end
- start
);
58 * These are the only things you should do on a core-file: use only these
59 * macros to write out all the necessary info.
62 static int dump_write(struct file
*file
, const void *addr
, int nr
)
64 return file
->f_op
->write(file
, addr
, nr
, &file
->f_pos
) == nr
;
67 #define DUMP_WRITE(addr, nr) \
68 if (!dump_write(file, (void *)(addr), (nr))) \
71 #define DUMP_SEEK(offset) \
72 if (file->f_op->llseek) { \
73 if (file->f_op->llseek(file,(offset),0) != (offset)) \
75 } else file->f_pos = (offset)
78 * Routine writes a core dump image in the current directory.
79 * Currently only a stub-function.
81 * Note that setuid/setgid files won't make a core-dump if the uid/gid
82 * changed due to the set[u|g]id. It's enforced by the "current->mm->dumpable"
83 * field, which also makes sure the core-dumps won't be recursive if the
84 * dumping of the process results in another error..
87 static int aout_core_dump(long signr
, struct pt_regs
* regs
, struct file
*file
)
91 unsigned long dump_start
, dump_size
;
93 #if defined(__alpha__)
94 # define START_DATA(u) (u.start_data)
95 #elif defined(__arm__)
96 # define START_DATA(u) ((u.u_tsize << PAGE_SHIFT) + u.start_code)
97 #elif defined(__sparc__)
98 # define START_DATA(u) (u.u_tsize)
99 #elif defined(__i386__) || defined(__mc68000__) || defined(__arch_um__)
100 # define START_DATA(u) (u.u_tsize << PAGE_SHIFT)
103 # define START_STACK(u) ((regs->u_regs[UREG_FP]) & ~(PAGE_SIZE - 1))
105 # define START_STACK(u) (u.start_stack)
111 current
->flags
|= PF_DUMPCORE
;
112 strncpy(dump
.u_comm
, current
->comm
, sizeof(current
->comm
));
114 dump
.u_ar0
= (void *)(((unsigned long)(&dump
.regs
)) - ((unsigned long)(&dump
)));
117 dump_thread(regs
, &dump
);
119 /* If the size of the dump file exceeds the rlimit, then see what would happen
120 if we wrote the stack, but not the data area. */
122 if ((dump
.u_dsize
+dump
.u_ssize
) >
123 current
->rlim
[RLIMIT_CORE
].rlim_cur
)
126 if ((dump
.u_dsize
+dump
.u_ssize
+1) * PAGE_SIZE
>
127 current
->rlim
[RLIMIT_CORE
].rlim_cur
)
131 /* Make sure we have enough room to write the stack and data areas. */
134 current
->rlim
[RLIMIT_CORE
].rlim_cur
)
137 if ((dump
.u_ssize
+1) * PAGE_SIZE
>
138 current
->rlim
[RLIMIT_CORE
].rlim_cur
)
142 /* make sure we actually have a data and stack area to dump */
145 if (verify_area(VERIFY_READ
, (void *) START_DATA(dump
), dump
.u_dsize
))
147 if (verify_area(VERIFY_READ
, (void *) START_STACK(dump
), dump
.u_ssize
))
150 if (verify_area(VERIFY_READ
, (void *) START_DATA(dump
), dump
.u_dsize
<< PAGE_SHIFT
))
152 if (verify_area(VERIFY_READ
, (void *) START_STACK(dump
), dump
.u_ssize
<< PAGE_SHIFT
))
158 DUMP_WRITE(&dump
,sizeof(dump
));
159 /* Now dump all of the user data. Include malloced stuff as well */
161 DUMP_SEEK(PAGE_SIZE
);
163 /* now we start writing out the user space info */
165 /* Dump the data area */
166 if (dump
.u_dsize
!= 0) {
167 dump_start
= START_DATA(dump
);
169 dump_size
= dump
.u_dsize
;
171 dump_size
= dump
.u_dsize
<< PAGE_SHIFT
;
173 DUMP_WRITE(dump_start
,dump_size
);
175 /* Now prepare to dump the stack area */
176 if (dump
.u_ssize
!= 0) {
177 dump_start
= START_STACK(dump
);
179 dump_size
= dump
.u_ssize
;
181 dump_size
= dump
.u_ssize
<< PAGE_SHIFT
;
183 DUMP_WRITE(dump_start
,dump_size
);
185 /* Finally dump the task struct. Not be used by gdb, but could be useful */
187 DUMP_WRITE(current
,sizeof(*current
));
194 * create_aout_tables() parses the env- and arg-strings in new user
195 * memory and creates the pointer tables from them, and puts their
196 * addresses on the "stack", returning the new stack pointer value.
198 static unsigned long * create_aout_tables(char * p
, struct linux_binprm
* bprm
)
202 int argc
= bprm
->argc
;
203 int envc
= bprm
->envc
;
205 sp
= (unsigned long *) ((-(unsigned long)sizeof(char *)) & (unsigned long) p
);
207 /* This imposes the proper stack alignment for a new process. */
208 sp
= (unsigned long *) (((unsigned long) sp
) & ~7);
209 if ((envc
+argc
+3)&1) --sp
;
212 /* whee.. test-programs are so much fun. */
217 put_user(0x3eb, --sp
);
218 put_user(bprm
->loader
, --sp
);
219 put_user(0x3ea, --sp
);
221 put_user(bprm
->exec
, --sp
);
222 put_user(0x3e9, --sp
);
228 #if defined(__i386__) || defined(__mc68000__) || defined(__arm__) || defined(__arch_um__)
229 put_user((unsigned long) envp
,--sp
);
230 put_user((unsigned long) argv
,--sp
);
233 current
->mm
->arg_start
= (unsigned long) p
;
242 current
->mm
->arg_end
= current
->mm
->env_start
= (unsigned long) p
;
251 current
->mm
->env_end
= (unsigned long) p
;
256 * These are the functions used to load a.out style executables and shared
257 * libraries. There is no binary dependent code anywhere else.
260 static int load_aout_binary(struct linux_binprm
* bprm
, struct pt_regs
* regs
)
264 unsigned long fd_offset
;
268 ex
= *((struct exec
*) bprm
->buf
); /* exec-header */
269 if ((N_MAGIC(ex
) != ZMAGIC
&& N_MAGIC(ex
) != OMAGIC
&&
270 N_MAGIC(ex
) != QMAGIC
&& N_MAGIC(ex
) != NMAGIC
) ||
271 N_TRSIZE(ex
) || N_DRSIZE(ex
) ||
272 i_size_read(bprm
->file
->f_dentry
->d_inode
) < ex
.a_text
+ex
.a_data
+N_SYMSIZE(ex
)+N_TXTOFF(ex
)) {
276 fd_offset
= N_TXTOFF(ex
);
278 /* Check initial limits. This avoids letting people circumvent
279 * size limits imposed on them by creating programs with large
280 * arrays in the data or bss.
282 rlim
= current
->rlim
[RLIMIT_DATA
].rlim_cur
;
283 if (rlim
>= RLIM_INFINITY
)
285 if (ex
.a_data
+ ex
.a_bss
> rlim
)
288 /* Flush all traces of the currently running executable */
289 retval
= flush_old_exec(bprm
);
293 /* OK, This is the point of no return */
294 #if defined(__alpha__)
295 SET_AOUT_PERSONALITY(bprm
, ex
);
296 #elif defined(__sparc__)
297 set_personality(PER_SUNOS
);
298 #if !defined(__sparc_v9__)
299 memcpy(¤t
->thread
.core_exec
, &ex
, sizeof(struct exec
));
302 set_personality(PER_LINUX
);
305 current
->mm
->end_code
= ex
.a_text
+
306 (current
->mm
->start_code
= N_TXTADDR(ex
));
307 current
->mm
->end_data
= ex
.a_data
+
308 (current
->mm
->start_data
= N_DATADDR(ex
));
309 current
->mm
->brk
= ex
.a_bss
+
310 (current
->mm
->start_brk
= N_BSSADDR(ex
));
311 current
->mm
->free_area_cache
= TASK_UNMAPPED_BASE
;
313 current
->mm
->rss
= 0;
314 current
->mm
->mmap
= NULL
;
316 current
->flags
&= ~PF_FORKNOEXEC
;
318 if (N_MAGIC(ex
) == NMAGIC
) {
319 loff_t pos
= fd_offset
;
320 /* Fuck me plenty... */
322 error
= do_brk(N_TXTADDR(ex
), ex
.a_text
);
323 bprm
->file
->f_op
->read(bprm
->file
, (char *) N_TXTADDR(ex
),
325 error
= do_brk(N_DATADDR(ex
), ex
.a_data
);
326 bprm
->file
->f_op
->read(bprm
->file
, (char *) N_DATADDR(ex
),
332 if (N_MAGIC(ex
) == OMAGIC
) {
333 unsigned long text_addr
, map_size
;
336 text_addr
= N_TXTADDR(ex
);
338 #if defined(__alpha__) || defined(__sparc__)
340 map_size
= ex
.a_text
+ex
.a_data
+ PAGE_SIZE
- 1;
343 map_size
= ex
.a_text
+ex
.a_data
;
346 error
= do_brk(text_addr
& PAGE_MASK
, map_size
);
347 if (error
!= (text_addr
& PAGE_MASK
)) {
348 send_sig(SIGKILL
, current
, 0);
352 error
= bprm
->file
->f_op
->read(bprm
->file
, (char *)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
,(char *)N_TXTADDR(ex
),
382 ex
.a_text
+ex
.a_data
, &pos
);
383 flush_icache_range((unsigned long) N_TXTADDR(ex
),
384 (unsigned long) N_TXTADDR(ex
) +
385 ex
.a_text
+ex
.a_data
);
389 down_write(¤t
->mm
->mmap_sem
);
390 error
= do_mmap(bprm
->file
, N_TXTADDR(ex
), ex
.a_text
,
391 PROT_READ
| PROT_EXEC
,
392 MAP_FIXED
| MAP_PRIVATE
| MAP_DENYWRITE
| MAP_EXECUTABLE
,
394 up_write(¤t
->mm
->mmap_sem
);
396 if (error
!= N_TXTADDR(ex
)) {
397 send_sig(SIGKILL
, current
, 0);
401 down_write(¤t
->mm
->mmap_sem
);
402 error
= do_mmap(bprm
->file
, N_DATADDR(ex
), ex
.a_data
,
403 PROT_READ
| PROT_WRITE
| PROT_EXEC
,
404 MAP_FIXED
| MAP_PRIVATE
| MAP_DENYWRITE
| MAP_EXECUTABLE
,
405 fd_offset
+ ex
.a_text
);
406 up_write(¤t
->mm
->mmap_sem
);
407 if (error
!= N_DATADDR(ex
)) {
408 send_sig(SIGKILL
, current
, 0);
413 set_binfmt(&aout_format
);
415 set_brk(current
->mm
->start_brk
, current
->mm
->brk
);
417 retval
= setup_arg_pages(bprm
);
419 /* Someone check-me: is this error path enough? */
420 send_sig(SIGKILL
, current
, 0);
424 current
->mm
->start_stack
=
425 (unsigned long) create_aout_tables((char *) bprm
->p
, bprm
);
427 regs
->gp
= ex
.a_gpvalue
;
429 start_thread(regs
, ex
.a_entry
, current
->mm
->start_stack
);
430 if (unlikely(current
->ptrace
& PT_PTRACED
)) {
431 if (current
->ptrace
& PT_TRACE_EXEC
)
432 ptrace_notify ((PTRACE_EVENT_EXEC
<< 8) | SIGTRAP
);
434 send_sig(SIGTRAP
, current
, 0);
439 static int load_aout_library(struct file
*file
)
441 struct inode
* inode
;
442 unsigned long bss
, start_addr
, len
;
447 inode
= file
->f_dentry
->d_inode
;
450 error
= kernel_read(file
, 0, (char *) &ex
, sizeof(ex
));
451 if (error
!= sizeof(ex
))
454 /* We come in here for the regular a.out style of shared libraries */
455 if ((N_MAGIC(ex
) != ZMAGIC
&& N_MAGIC(ex
) != QMAGIC
) || N_TRSIZE(ex
) ||
456 N_DRSIZE(ex
) || ((ex
.a_entry
& 0xfff) && N_MAGIC(ex
) == ZMAGIC
) ||
457 i_size_read(inode
) < ex
.a_text
+ex
.a_data
+N_SYMSIZE(ex
)+N_TXTOFF(ex
)) {
464 /* For QMAGIC, the starting address is 0x20 into the page. We mask
465 this off to get the starting address for the page */
467 start_addr
= ex
.a_entry
& 0xfffff000;
469 if ((N_TXTOFF(ex
) & ~PAGE_MASK
) != 0) {
470 static unsigned long error_time
;
471 loff_t pos
= N_TXTOFF(ex
);
473 if ((jiffies
-error_time
) > 5*HZ
)
476 "N_TXTOFF is not page aligned. Please convert library: %s\n",
477 file
->f_dentry
->d_name
.name
);
478 error_time
= jiffies
;
481 do_brk(start_addr
, ex
.a_text
+ ex
.a_data
+ ex
.a_bss
);
483 file
->f_op
->read(file
, (char *)start_addr
,
484 ex
.a_text
+ ex
.a_data
, &pos
);
485 flush_icache_range((unsigned long) start_addr
,
486 (unsigned long) start_addr
+ ex
.a_text
+ ex
.a_data
);
491 /* Now use mmap to map the library into memory. */
492 down_write(¤t
->mm
->mmap_sem
);
493 error
= do_mmap(file
, start_addr
, ex
.a_text
+ ex
.a_data
,
494 PROT_READ
| PROT_WRITE
| PROT_EXEC
,
495 MAP_FIXED
| MAP_PRIVATE
| MAP_DENYWRITE
,
497 up_write(¤t
->mm
->mmap_sem
);
499 if (error
!= start_addr
)
502 len
= PAGE_ALIGN(ex
.a_text
+ ex
.a_data
);
503 bss
= ex
.a_text
+ ex
.a_data
+ ex
.a_bss
;
505 error
= do_brk(start_addr
+ len
, bss
- len
);
507 if (error
!= start_addr
+ len
)
515 static int __init
init_aout_binfmt(void)
517 return register_binfmt(&aout_format
);
520 static void __exit
exit_aout_binfmt(void)
522 unregister_binfmt(&aout_format
);
525 module_init(init_aout_binfmt
);
526 module_exit(exit_aout_binfmt
);
527 MODULE_LICENSE("GPL");