blob: 2a4d073d2cf12124830ddcd2879485c5f61629b0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * a.out loader for x86-64
3 *
4 * Copyright (C) 1991, 1992, 1996 Linus Torvalds
5 * Hacked together by Andi Kleen
6 */
7
8#include <linux/module.h>
9
10#include <linux/time.h>
11#include <linux/kernel.h>
12#include <linux/mm.h>
13#include <linux/mman.h>
14#include <linux/a.out.h>
15#include <linux/errno.h>
16#include <linux/signal.h>
17#include <linux/string.h>
18#include <linux/fs.h>
19#include <linux/file.h>
20#include <linux/stat.h>
21#include <linux/fcntl.h>
22#include <linux/ptrace.h>
23#include <linux/user.h>
24#include <linux/slab.h>
25#include <linux/binfmts.h>
26#include <linux/personality.h>
27#include <linux/init.h>
Julia Lawalle5fc3162008-01-30 13:32:17 +010028#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <asm/system.h>
31#include <asm/uaccess.h>
32#include <asm/pgalloc.h>
33#include <asm/cacheflush.h>
34#include <asm/user32.h>
35#include <asm/ia32.h>
36
37#undef WARN_OLD
38#undef CORE_DUMP /* probably broken */
39
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010040static int load_aout_binary(struct linux_binprm *, struct pt_regs *regs);
41static int load_aout_library(struct file *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Olaf Hering44456d32005-07-27 11:45:17 -070043#ifdef CORE_DUMP
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010044static int aout_core_dump(long signr, struct pt_regs *regs, struct file *file,
45 unsigned long limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * fill in the user structure for a core dump..
49 */
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010050static void dump_thread32(struct pt_regs *regs, struct user32 *dump)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010052 u32 fs, gs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/* changed the size calculations - should hopefully work better. lbt */
55 dump->magic = CMAGIC;
56 dump->start_code = 0;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010057 dump->start_stack = regs->sp & ~(PAGE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010059 dump->u_dsize = ((unsigned long)
60 (current->mm->brk + (PAGE_SIZE-1))) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 dump->u_dsize -= dump->u_tsize;
62 dump->u_ssize = 0;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010063 dump->u_debugreg[0] = current->thread.debugreg0;
64 dump->u_debugreg[1] = current->thread.debugreg1;
65 dump->u_debugreg[2] = current->thread.debugreg2;
66 dump->u_debugreg[3] = current->thread.debugreg3;
67 dump->u_debugreg[4] = 0;
68 dump->u_debugreg[5] = 0;
69 dump->u_debugreg[6] = current->thread.debugreg6;
70 dump->u_debugreg[7] = current->thread.debugreg7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010072 if (dump->start_stack < 0xc0000000) {
73 unsigned long tmp;
74
75 tmp = (unsigned long) (0xc0000000 - dump->start_stack);
76 dump->u_ssize = tmp >> PAGE_SHIFT;
77 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010079 dump->regs.bx = regs->bx;
80 dump->regs.cx = regs->cx;
81 dump->regs.dx = regs->dx;
82 dump->regs.si = regs->si;
83 dump->regs.di = regs->di;
84 dump->regs.bp = regs->bp;
85 dump->regs.ax = regs->ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 dump->regs.ds = current->thread.ds;
87 dump->regs.es = current->thread.es;
Jeremy Fitzhardingeb6edbb12008-08-19 13:04:19 -070088 savesegment(fs, fs);
89 dump->regs.fs = fs;
90 savesegment(gs, gs);
91 dump->regs.gs = gs;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010092 dump->regs.orig_ax = regs->orig_ax;
93 dump->regs.ip = regs->ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 dump->regs.cs = regs->cs;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010095 dump->regs.flags = regs->flags;
96 dump->regs.sp = regs->sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 dump->regs.ss = regs->ss;
98
99#if 1 /* FIXME */
100 dump->u_fpvalid = 0;
101#else
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100102 dump->u_fpvalid = dump_fpu(regs, &dump->i387);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#endif
104}
105
106#endif
107
108static struct linux_binfmt aout_format = {
109 .module = THIS_MODULE,
110 .load_binary = load_aout_binary,
111 .load_shlib = load_aout_library,
Olaf Hering44456d32005-07-27 11:45:17 -0700112#ifdef CORE_DUMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 .core_dump = aout_core_dump,
114#endif
115 .min_coredump = PAGE_SIZE
116};
117
118static void set_brk(unsigned long start, unsigned long end)
119{
120 start = PAGE_ALIGN(start);
121 end = PAGE_ALIGN(end);
122 if (end <= start)
123 return;
124 down_write(&current->mm->mmap_sem);
125 do_brk(start, end - start);
126 up_write(&current->mm->mmap_sem);
127}
128
Olaf Hering44456d32005-07-27 11:45:17 -0700129#ifdef CORE_DUMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
131 * These are the only things you should do on a core-file: use only these
132 * macros to write out all the necessary info.
133 */
134
135static int dump_write(struct file *file, const void *addr, int nr)
136{
137 return file->f_op->write(file, addr, nr, &file->f_pos) == nr;
138}
139
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100140#define DUMP_WRITE(addr, nr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (!dump_write(file, (void *)(addr), (nr))) \
142 goto end_coredump;
143
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100144#define DUMP_SEEK(offset) \
145 if (file->f_op->llseek) { \
146 if (file->f_op->llseek(file, (offset), 0) != (offset)) \
147 goto end_coredump; \
148 } else \
149 file->f_pos = (offset)
150
151#define START_DATA() (u.u_tsize << PAGE_SHIFT)
152#define START_STACK(u) (u.start_stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154/*
155 * Routine writes a core dump image in the current directory.
156 * Currently only a stub-function.
157 *
158 * Note that setuid/setgid files won't make a core-dump if the uid/gid
159 * changed due to the set[u|g]id. It's enforced by the "current->mm->dumpable"
160 * field, which also makes sure the core-dumps won't be recursive if the
161 * dumping of the process results in another error..
162 */
163
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100164static int aout_core_dump(long signr, struct pt_regs *regs, struct file *file,
165 unsigned long limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 mm_segment_t fs;
168 int has_dumped = 0;
169 unsigned long dump_start, dump_size;
170 struct user32 dump;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 fs = get_fs();
173 set_fs(KERNEL_DS);
174 has_dumped = 1;
175 current->flags |= PF_DUMPCORE;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100176 strncpy(dump.u_comm, current->comm, sizeof(current->comm));
H. Peter Anvin6e16d892008-02-07 00:15:57 -0800177 dump.u_ar0 = offsetof(struct user32, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 dump.signal = signr;
179 dump_thread32(regs, &dump);
180
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100181 /*
182 * If the size of the dump file exceeds the rlimit, then see
183 * what would happen if we wrote the stack, but not the data
184 * area.
185 */
Neil Horman7dc0b222007-10-16 23:26:34 -0700186 if ((dump.u_dsize + dump.u_ssize + 1) * PAGE_SIZE > limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 dump.u_dsize = 0;
188
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100189 /* Make sure we have enough room to write the stack and data areas. */
Neil Horman7dc0b222007-10-16 23:26:34 -0700190 if ((dump.u_ssize + 1) * PAGE_SIZE > limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 dump.u_ssize = 0;
192
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100193 /* make sure we actually have a data and stack area to dump */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 set_fs(USER_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100195 if (!access_ok(VERIFY_READ, (void *) (unsigned long)START_DATA(dump),
196 dump.u_dsize << PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 dump.u_dsize = 0;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100198 if (!access_ok(VERIFY_READ, (void *) (unsigned long)START_STACK(dump),
199 dump.u_ssize << PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 dump.u_ssize = 0;
201
202 set_fs(KERNEL_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100203 /* struct user */
204 DUMP_WRITE(&dump, sizeof(dump));
205 /* Now dump all of the user data. Include malloced stuff as well */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 DUMP_SEEK(PAGE_SIZE);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100207 /* now we start writing out the user space info */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 set_fs(USER_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100209 /* Dump the data area */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (dump.u_dsize != 0) {
211 dump_start = START_DATA(dump);
212 dump_size = dump.u_dsize << PAGE_SHIFT;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100213 DUMP_WRITE(dump_start, dump_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100215 /* Now prepare to dump the stack area */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (dump.u_ssize != 0) {
217 dump_start = START_STACK(dump);
218 dump_size = dump.u_ssize << PAGE_SHIFT;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100219 DUMP_WRITE(dump_start, dump_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100221 /*
222 * Finally dump the task struct. Not be used by gdb, but
223 * could be useful
224 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 set_fs(KERNEL_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100226 DUMP_WRITE(current, sizeof(*current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227end_coredump:
228 set_fs(fs);
229 return has_dumped;
230}
231#endif
232
233/*
234 * create_aout_tables() parses the env- and arg-strings in new user
235 * memory and creates the pointer tables from them, and puts their
236 * addresses on the "stack", returning the new stack pointer value.
237 */
238static u32 __user *create_aout_tables(char __user *p, struct linux_binprm *bprm)
239{
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100240 u32 __user *argv, *envp, *sp;
241 int argc = bprm->argc, envc = bprm->envc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 sp = (u32 __user *) ((-(unsigned long)sizeof(u32)) & (unsigned long) p);
244 sp -= envc+1;
245 envp = sp;
246 sp -= argc+1;
247 argv = sp;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100248 put_user((unsigned long) envp, --sp);
249 put_user((unsigned long) argv, --sp);
250 put_user(argc, --sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 current->mm->arg_start = (unsigned long) p;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100252 while (argc-- > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 char c;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100254
255 put_user((u32)(unsigned long)p, argv++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 do {
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100257 get_user(c, p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 } while (c);
259 }
Andi Kleen74019692007-01-11 01:52:45 +0100260 put_user(0, argv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 current->mm->arg_end = current->mm->env_start = (unsigned long) p;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100262 while (envc-- > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 char c;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100264
265 put_user((u32)(unsigned long)p, envp++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 do {
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100267 get_user(c, p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 } while (c);
269 }
Andi Kleen74019692007-01-11 01:52:45 +0100270 put_user(0, envp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 current->mm->env_end = (unsigned long) p;
272 return sp;
273}
274
275/*
276 * These are the functions used to load a.out style executables and shared
277 * libraries. There is no binary dependent code anywhere else.
278 */
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100279static int load_aout_binary(struct linux_binprm *bprm, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100281 unsigned long error, fd_offset, rlim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 struct exec ex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 int retval;
284
285 ex = *((struct exec *) bprm->buf); /* exec-header */
286 if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != OMAGIC &&
287 N_MAGIC(ex) != QMAGIC && N_MAGIC(ex) != NMAGIC) ||
288 N_TRSIZE(ex) || N_DRSIZE(ex) ||
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100289 i_size_read(bprm->file->f_path.dentry->d_inode) <
290 ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return -ENOEXEC;
292 }
293
294 fd_offset = N_TXTOFF(ex);
295
296 /* Check initial limits. This avoids letting people circumvent
297 * size limits imposed on them by creating programs with large
298 * arrays in the data or bss.
299 */
300 rlim = current->signal->rlim[RLIMIT_DATA].rlim_cur;
301 if (rlim >= RLIM_INFINITY)
302 rlim = ~0;
303 if (ex.a_data + ex.a_bss > rlim)
304 return -ENOMEM;
305
306 /* Flush all traces of the currently running executable */
307 retval = flush_old_exec(bprm);
308 if (retval)
309 return retval;
310
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100311 regs->cs = __USER32_CS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 regs->r8 = regs->r9 = regs->r10 = regs->r11 = regs->r12 =
313 regs->r13 = regs->r14 = regs->r15 = 0;
314
315 /* OK, This is the point of no return */
316 set_personality(PER_LINUX);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100317 set_thread_flag(TIF_IA32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 clear_thread_flag(TIF_ABI_PENDING);
319
320 current->mm->end_code = ex.a_text +
321 (current->mm->start_code = N_TXTADDR(ex));
322 current->mm->end_data = ex.a_data +
323 (current->mm->start_data = N_DATADDR(ex));
324 current->mm->brk = ex.a_bss +
325 (current->mm->start_brk = N_BSSADDR(ex));
326 current->mm->free_area_cache = TASK_UNMAPPED_BASE;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -0700327 current->mm->cached_hole_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 current->mm->mmap = NULL;
David Howellsa6f76f22008-11-14 10:39:24 +1100330 install_exec_creds(bprm);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100331 current->flags &= ~PF_FORKNOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 if (N_MAGIC(ex) == OMAGIC) {
334 unsigned long text_addr, map_size;
335 loff_t pos;
336
337 text_addr = N_TXTADDR(ex);
338
339 pos = 32;
340 map_size = ex.a_text+ex.a_data;
341
342 down_write(&current->mm->mmap_sem);
343 error = do_brk(text_addr & PAGE_MASK, map_size);
344 up_write(&current->mm->mmap_sem);
345
346 if (error != (text_addr & PAGE_MASK)) {
347 send_sig(SIGKILL, current, 0);
348 return error;
349 }
350
Andi Kleen52d522f2006-09-26 10:52:33 +0200351 error = bprm->file->f_op->read(bprm->file,
352 (char __user *)text_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 ex.a_text+ex.a_data, &pos);
354 if ((signed long)error < 0) {
355 send_sig(SIGKILL, current, 0);
356 return error;
357 }
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 flush_icache_range(text_addr, text_addr+ex.a_text+ex.a_data);
360 } else {
361#ifdef WARN_OLD
362 static unsigned long error_time, error_time2;
363 if ((ex.a_text & 0xfff || ex.a_data & 0xfff) &&
Julia Lawalle5fc3162008-01-30 13:32:17 +0100364 (N_MAGIC(ex) != NMAGIC) &&
365 time_after(jiffies, error_time2 + 5*HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 printk(KERN_NOTICE "executable not page aligned\n");
367 error_time2 = jiffies;
368 }
369
370 if ((fd_offset & ~PAGE_MASK) != 0 &&
Julia Lawalle5fc3162008-01-30 13:32:17 +0100371 time_after(jiffies, error_time + 5*HZ)) {
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100372 printk(KERN_WARNING
373 "fd_offset is not page aligned. Please convert "
374 "program: %s\n",
Josef "Jeff" Sipekc9411922006-12-08 02:36:43 -0800375 bprm->file->f_path.dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 error_time = jiffies;
377 }
378#endif
379
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100380 if (!bprm->file->f_op->mmap || (fd_offset & ~PAGE_MASK) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 loff_t pos = fd_offset;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 down_write(&current->mm->mmap_sem);
384 do_brk(N_TXTADDR(ex), ex.a_text+ex.a_data);
385 up_write(&current->mm->mmap_sem);
Andi Kleen52d522f2006-09-26 10:52:33 +0200386 bprm->file->f_op->read(bprm->file,
387 (char __user *)N_TXTADDR(ex),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 ex.a_text+ex.a_data, &pos);
389 flush_icache_range((unsigned long) N_TXTADDR(ex),
390 (unsigned long) N_TXTADDR(ex) +
391 ex.a_text+ex.a_data);
392 goto beyond_if;
393 }
394
395 down_write(&current->mm->mmap_sem);
396 error = do_mmap(bprm->file, N_TXTADDR(ex), ex.a_text,
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100397 PROT_READ | PROT_EXEC,
398 MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE |
399 MAP_EXECUTABLE | MAP_32BIT,
400 fd_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 up_write(&current->mm->mmap_sem);
402
403 if (error != N_TXTADDR(ex)) {
404 send_sig(SIGKILL, current, 0);
405 return error;
406 }
407
408 down_write(&current->mm->mmap_sem);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100409 error = do_mmap(bprm->file, N_DATADDR(ex), ex.a_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 PROT_READ | PROT_WRITE | PROT_EXEC,
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100411 MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE |
412 MAP_EXECUTABLE | MAP_32BIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 fd_offset + ex.a_text);
414 up_write(&current->mm->mmap_sem);
415 if (error != N_DATADDR(ex)) {
416 send_sig(SIGKILL, current, 0);
417 return error;
418 }
419 }
420beyond_if:
421 set_binfmt(&aout_format);
422
423 set_brk(current->mm->start_brk, current->mm->brk);
424
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700425 retval = setup_arg_pages(bprm, IA32_STACK_TOP, EXSTACK_DEFAULT);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100426 if (retval < 0) {
427 /* Someone check-me: is this error path enough? */
428 send_sig(SIGKILL, current, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return retval;
430 }
431
432 current->mm->start_stack =
433 (unsigned long)create_aout_tables((char __user *)bprm->p, bprm);
434 /* start thread */
Jeremy Fitzhardingeb6edbb12008-08-19 13:04:19 -0700435 loadsegment(fs, 0);
436 loadsegment(ds, __USER32_DS);
437 loadsegment(es, __USER32_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100438 load_gs_index(0);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100439 (regs)->ip = ex.a_entry;
440 (regs)->sp = current->mm->start_stack;
441 (regs)->flags = 0x200;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 (regs)->cs = __USER32_CS;
443 (regs)->ss = __USER32_DS;
Andi Kleenf891dd12007-10-17 18:04:33 +0200444 regs->r8 = regs->r9 = regs->r10 = regs->r11 =
445 regs->r12 = regs->r13 = regs->r14 = regs->r15 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 set_fs(USER_DS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return 0;
448}
449
450static int load_aout_library(struct file *file)
451{
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100452 struct inode *inode;
453 unsigned long bss, start_addr, len, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 int retval;
455 struct exec ex;
456
Josef "Jeff" Sipekc9411922006-12-08 02:36:43 -0800457 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 retval = -ENOEXEC;
460 error = kernel_read(file, 0, (char *) &ex, sizeof(ex));
461 if (error != sizeof(ex))
462 goto out;
463
464 /* We come in here for the regular a.out style of shared libraries */
465 if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != QMAGIC) || N_TRSIZE(ex) ||
466 N_DRSIZE(ex) || ((ex.a_entry & 0xfff) && N_MAGIC(ex) == ZMAGIC) ||
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100467 i_size_read(inode) <
468 ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 goto out;
470 }
471
472 if (N_FLAGS(ex))
473 goto out;
474
475 /* For QMAGIC, the starting address is 0x20 into the page. We mask
476 this off to get the starting address for the page */
477
478 start_addr = ex.a_entry & 0xfffff000;
479
480 if ((N_TXTOFF(ex) & ~PAGE_MASK) != 0) {
481 loff_t pos = N_TXTOFF(ex);
482
483#ifdef WARN_OLD
484 static unsigned long error_time;
Julia Lawalle5fc3162008-01-30 13:32:17 +0100485 if (time_after(jiffies, error_time + 5*HZ)) {
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100486 printk(KERN_WARNING
487 "N_TXTOFF is not page aligned. Please convert "
488 "library: %s\n",
Josef "Jeff" Sipekc9411922006-12-08 02:36:43 -0800489 file->f_path.dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 error_time = jiffies;
491 }
492#endif
493 down_write(&current->mm->mmap_sem);
494 do_brk(start_addr, ex.a_text + ex.a_data + ex.a_bss);
495 up_write(&current->mm->mmap_sem);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100496
Andi Kleen52d522f2006-09-26 10:52:33 +0200497 file->f_op->read(file, (char __user *)start_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 ex.a_text + ex.a_data, &pos);
499 flush_icache_range((unsigned long) start_addr,
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100500 (unsigned long) start_addr + ex.a_text +
501 ex.a_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 retval = 0;
504 goto out;
505 }
506 /* Now use mmap to map the library into memory. */
507 down_write(&current->mm->mmap_sem);
508 error = do_mmap(file, start_addr, ex.a_text + ex.a_data,
509 PROT_READ | PROT_WRITE | PROT_EXEC,
510 MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE | MAP_32BIT,
511 N_TXTOFF(ex));
512 up_write(&current->mm->mmap_sem);
513 retval = error;
514 if (error != start_addr)
515 goto out;
516
517 len = PAGE_ALIGN(ex.a_text + ex.a_data);
518 bss = ex.a_text + ex.a_data + ex.a_bss;
519 if (bss > len) {
520 down_write(&current->mm->mmap_sem);
521 error = do_brk(start_addr + len, bss - len);
522 up_write(&current->mm->mmap_sem);
523 retval = error;
524 if (error != start_addr + len)
525 goto out;
526 }
527 retval = 0;
528out:
529 return retval;
530}
531
532static int __init init_aout_binfmt(void)
533{
534 return register_binfmt(&aout_format);
535}
536
537static void __exit exit_aout_binfmt(void)
538{
539 unregister_binfmt(&aout_format);
540}
541
542module_init(init_aout_binfmt);
543module_exit(exit_aout_binfmt);
544MODULE_LICENSE("GPL");