blob: d511d951a0527103e05abca9c1cf73b4b024b7c1 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/binfmts.h>
25#include <linux/personality.h>
26#include <linux/init.h>
Julia Lawalle5fc3162008-01-30 13:32:17 +010027#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/uaccess.h>
30#include <asm/pgalloc.h>
31#include <asm/cacheflush.h>
32#include <asm/user32.h>
33#include <asm/ia32.h>
34
35#undef WARN_OLD
Linus Torvalds0eead9ab2010-10-14 10:57:40 -070036#undef CORE_DUMP /* definitely broken */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010038static int load_aout_binary(struct linux_binprm *, struct pt_regs *regs);
39static int load_aout_library(struct file *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Olaf Hering44456d32005-07-27 11:45:17 -070041#ifdef CORE_DUMP
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010042static int aout_core_dump(long signr, struct pt_regs *regs, struct file *file,
43 unsigned long limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/*
46 * fill in the user structure for a core dump..
47 */
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010048static void dump_thread32(struct pt_regs *regs, struct user32 *dump)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010050 u32 fs, gs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/* changed the size calculations - should hopefully work better. lbt */
53 dump->magic = CMAGIC;
54 dump->start_code = 0;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010055 dump->start_stack = regs->sp & ~(PAGE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010057 dump->u_dsize = ((unsigned long)
58 (current->mm->brk + (PAGE_SIZE-1))) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 dump->u_dsize -= dump->u_tsize;
60 dump->u_ssize = 0;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010061 dump->u_debugreg[0] = current->thread.debugreg0;
62 dump->u_debugreg[1] = current->thread.debugreg1;
63 dump->u_debugreg[2] = current->thread.debugreg2;
64 dump->u_debugreg[3] = current->thread.debugreg3;
65 dump->u_debugreg[4] = 0;
66 dump->u_debugreg[5] = 0;
67 dump->u_debugreg[6] = current->thread.debugreg6;
68 dump->u_debugreg[7] = current->thread.debugreg7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010070 if (dump->start_stack < 0xc0000000) {
71 unsigned long tmp;
72
73 tmp = (unsigned long) (0xc0000000 - dump->start_stack);
74 dump->u_ssize = tmp >> PAGE_SHIFT;
75 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010077 dump->regs.bx = regs->bx;
78 dump->regs.cx = regs->cx;
79 dump->regs.dx = regs->dx;
80 dump->regs.si = regs->si;
81 dump->regs.di = regs->di;
82 dump->regs.bp = regs->bp;
83 dump->regs.ax = regs->ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 dump->regs.ds = current->thread.ds;
85 dump->regs.es = current->thread.es;
Jeremy Fitzhardingeb6edbb12008-08-19 13:04:19 -070086 savesegment(fs, fs);
87 dump->regs.fs = fs;
88 savesegment(gs, gs);
89 dump->regs.gs = gs;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010090 dump->regs.orig_ax = regs->orig_ax;
91 dump->regs.ip = regs->ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 dump->regs.cs = regs->cs;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010093 dump->regs.flags = regs->flags;
94 dump->regs.sp = regs->sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 dump->regs.ss = regs->ss;
96
97#if 1 /* FIXME */
98 dump->u_fpvalid = 0;
99#else
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100100 dump->u_fpvalid = dump_fpu(regs, &dump->i387);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif
102}
103
104#endif
105
106static struct linux_binfmt aout_format = {
107 .module = THIS_MODULE,
108 .load_binary = load_aout_binary,
109 .load_shlib = load_aout_library,
Olaf Hering44456d32005-07-27 11:45:17 -0700110#ifdef CORE_DUMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .core_dump = aout_core_dump,
112#endif
113 .min_coredump = PAGE_SIZE
114};
115
116static void set_brk(unsigned long start, unsigned long end)
117{
118 start = PAGE_ALIGN(start);
119 end = PAGE_ALIGN(end);
120 if (end <= start)
121 return;
122 down_write(&current->mm->mmap_sem);
123 do_brk(start, end - start);
124 up_write(&current->mm->mmap_sem);
125}
126
Olaf Hering44456d32005-07-27 11:45:17 -0700127#ifdef CORE_DUMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/*
129 * These are the only things you should do on a core-file: use only these
130 * macros to write out all the necessary info.
131 */
132
Linus Torvalds0eead9ab2010-10-14 10:57:40 -0700133#include <linux/coredump.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100135#define DUMP_WRITE(addr, nr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (!dump_write(file, (void *)(addr), (nr))) \
137 goto end_coredump;
138
Linus Torvalds0eead9ab2010-10-14 10:57:40 -0700139#define DUMP_SEEK(offset) \
140 if (!dump_seek(file, offset)) \
141 goto end_coredump;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100142
143#define START_DATA() (u.u_tsize << PAGE_SHIFT)
144#define START_STACK(u) (u.start_stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146/*
147 * Routine writes a core dump image in the current directory.
148 * Currently only a stub-function.
149 *
150 * Note that setuid/setgid files won't make a core-dump if the uid/gid
151 * changed due to the set[u|g]id. It's enforced by the "current->mm->dumpable"
152 * field, which also makes sure the core-dumps won't be recursive if the
153 * dumping of the process results in another error..
154 */
155
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100156static int aout_core_dump(long signr, struct pt_regs *regs, struct file *file,
157 unsigned long limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
159 mm_segment_t fs;
160 int has_dumped = 0;
161 unsigned long dump_start, dump_size;
162 struct user32 dump;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 fs = get_fs();
165 set_fs(KERNEL_DS);
166 has_dumped = 1;
167 current->flags |= PF_DUMPCORE;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100168 strncpy(dump.u_comm, current->comm, sizeof(current->comm));
H. Peter Anvin6e16d892008-02-07 00:15:57 -0800169 dump.u_ar0 = offsetof(struct user32, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 dump.signal = signr;
171 dump_thread32(regs, &dump);
172
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100173 /*
174 * If the size of the dump file exceeds the rlimit, then see
175 * what would happen if we wrote the stack, but not the data
176 * area.
177 */
Neil Horman7dc0b222007-10-16 23:26:34 -0700178 if ((dump.u_dsize + dump.u_ssize + 1) * PAGE_SIZE > limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 dump.u_dsize = 0;
180
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100181 /* Make sure we have enough room to write the stack and data areas. */
Neil Horman7dc0b222007-10-16 23:26:34 -0700182 if ((dump.u_ssize + 1) * PAGE_SIZE > limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 dump.u_ssize = 0;
184
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100185 /* make sure we actually have a data and stack area to dump */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 set_fs(USER_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100187 if (!access_ok(VERIFY_READ, (void *) (unsigned long)START_DATA(dump),
188 dump.u_dsize << PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 dump.u_dsize = 0;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100190 if (!access_ok(VERIFY_READ, (void *) (unsigned long)START_STACK(dump),
191 dump.u_ssize << PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 dump.u_ssize = 0;
193
194 set_fs(KERNEL_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100195 /* struct user */
196 DUMP_WRITE(&dump, sizeof(dump));
197 /* Now dump all of the user data. Include malloced stuff as well */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 DUMP_SEEK(PAGE_SIZE);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100199 /* now we start writing out the user space info */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 set_fs(USER_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100201 /* Dump the data area */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (dump.u_dsize != 0) {
203 dump_start = START_DATA(dump);
204 dump_size = dump.u_dsize << PAGE_SHIFT;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100205 DUMP_WRITE(dump_start, dump_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100207 /* Now prepare to dump the stack area */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (dump.u_ssize != 0) {
209 dump_start = START_STACK(dump);
210 dump_size = dump.u_ssize << PAGE_SHIFT;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100211 DUMP_WRITE(dump_start, dump_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213end_coredump:
214 set_fs(fs);
215 return has_dumped;
216}
217#endif
218
219/*
220 * create_aout_tables() parses the env- and arg-strings in new user
221 * memory and creates the pointer tables from them, and puts their
222 * addresses on the "stack", returning the new stack pointer value.
223 */
224static u32 __user *create_aout_tables(char __user *p, struct linux_binprm *bprm)
225{
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100226 u32 __user *argv, *envp, *sp;
227 int argc = bprm->argc, envc = bprm->envc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 sp = (u32 __user *) ((-(unsigned long)sizeof(u32)) & (unsigned long) p);
230 sp -= envc+1;
231 envp = sp;
232 sp -= argc+1;
233 argv = sp;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100234 put_user((unsigned long) envp, --sp);
235 put_user((unsigned long) argv, --sp);
236 put_user(argc, --sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 current->mm->arg_start = (unsigned long) p;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100238 while (argc-- > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 char c;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100240
241 put_user((u32)(unsigned long)p, argv++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 do {
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100243 get_user(c, p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 } while (c);
245 }
Andi Kleen74019692007-01-11 01:52:45 +0100246 put_user(0, argv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 current->mm->arg_end = current->mm->env_start = (unsigned long) p;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100248 while (envc-- > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 char c;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100250
251 put_user((u32)(unsigned long)p, envp++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 do {
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100253 get_user(c, p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 } while (c);
255 }
Andi Kleen74019692007-01-11 01:52:45 +0100256 put_user(0, envp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 current->mm->env_end = (unsigned long) p;
258 return sp;
259}
260
261/*
262 * These are the functions used to load a.out style executables and shared
263 * libraries. There is no binary dependent code anywhere else.
264 */
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100265static int load_aout_binary(struct linux_binprm *bprm, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100267 unsigned long error, fd_offset, rlim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 struct exec ex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 int retval;
270
271 ex = *((struct exec *) bprm->buf); /* exec-header */
272 if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != OMAGIC &&
273 N_MAGIC(ex) != QMAGIC && N_MAGIC(ex) != NMAGIC) ||
274 N_TRSIZE(ex) || N_DRSIZE(ex) ||
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100275 i_size_read(bprm->file->f_path.dentry->d_inode) <
276 ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return -ENOEXEC;
278 }
279
280 fd_offset = N_TXTOFF(ex);
281
282 /* Check initial limits. This avoids letting people circumvent
283 * size limits imposed on them by creating programs with large
284 * arrays in the data or bss.
285 */
Jiri Slaby2854e722010-01-27 17:32:22 +0100286 rlim = rlimit(RLIMIT_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (rlim >= RLIM_INFINITY)
288 rlim = ~0;
289 if (ex.a_data + ex.a_bss > rlim)
290 return -ENOMEM;
291
292 /* Flush all traces of the currently running executable */
293 retval = flush_old_exec(bprm);
294 if (retval)
295 return retval;
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 /* OK, This is the point of no return */
298 set_personality(PER_LINUX);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100299 set_thread_flag(TIF_IA32);
Stephen Wilson375906f2011-03-13 15:49:14 -0400300 current->mm->context.ia32_compat = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Linus Torvalds221af7f2010-01-28 22:14:42 -0800302 setup_new_exec(bprm);
303
304 regs->cs = __USER32_CS;
305 regs->r8 = regs->r9 = regs->r10 = regs->r11 = regs->r12 =
306 regs->r13 = regs->r14 = regs->r15 = 0;
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 current->mm->end_code = ex.a_text +
309 (current->mm->start_code = N_TXTADDR(ex));
310 current->mm->end_data = ex.a_data +
311 (current->mm->start_data = N_DATADDR(ex));
312 current->mm->brk = ex.a_bss +
313 (current->mm->start_brk = N_BSSADDR(ex));
314 current->mm->free_area_cache = TASK_UNMAPPED_BASE;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -0700315 current->mm->cached_hole_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Al Viro6414fa62012-03-05 06:38:42 +0000317 retval = setup_arg_pages(bprm, IA32_STACK_TOP, EXSTACK_DEFAULT);
318 if (retval < 0) {
319 /* Someone check-me: is this error path enough? */
320 send_sig(SIGKILL, current, 0);
321 return retval;
322 }
323
David Howellsa6f76f22008-11-14 10:39:24 +1100324 install_exec_creds(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 if (N_MAGIC(ex) == OMAGIC) {
327 unsigned long text_addr, map_size;
328 loff_t pos;
329
330 text_addr = N_TXTADDR(ex);
331
332 pos = 32;
333 map_size = ex.a_text+ex.a_data;
334
335 down_write(&current->mm->mmap_sem);
336 error = do_brk(text_addr & PAGE_MASK, map_size);
337 up_write(&current->mm->mmap_sem);
338
339 if (error != (text_addr & PAGE_MASK)) {
340 send_sig(SIGKILL, current, 0);
341 return error;
342 }
343
Andi Kleen52d522f2006-09-26 10:52:33 +0200344 error = bprm->file->f_op->read(bprm->file,
345 (char __user *)text_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 ex.a_text+ex.a_data, &pos);
347 if ((signed long)error < 0) {
348 send_sig(SIGKILL, current, 0);
349 return error;
350 }
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 flush_icache_range(text_addr, text_addr+ex.a_text+ex.a_data);
353 } else {
354#ifdef WARN_OLD
355 static unsigned long error_time, error_time2;
356 if ((ex.a_text & 0xfff || ex.a_data & 0xfff) &&
Julia Lawalle5fc3162008-01-30 13:32:17 +0100357 (N_MAGIC(ex) != NMAGIC) &&
358 time_after(jiffies, error_time2 + 5*HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 printk(KERN_NOTICE "executable not page aligned\n");
360 error_time2 = jiffies;
361 }
362
363 if ((fd_offset & ~PAGE_MASK) != 0 &&
Julia Lawalle5fc3162008-01-30 13:32:17 +0100364 time_after(jiffies, error_time + 5*HZ)) {
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100365 printk(KERN_WARNING
366 "fd_offset is not page aligned. Please convert "
367 "program: %s\n",
Josef "Jeff" Sipekc9411922006-12-08 02:36:43 -0800368 bprm->file->f_path.dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 error_time = jiffies;
370 }
371#endif
372
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100373 if (!bprm->file->f_op->mmap || (fd_offset & ~PAGE_MASK) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 loff_t pos = fd_offset;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 down_write(&current->mm->mmap_sem);
377 do_brk(N_TXTADDR(ex), ex.a_text+ex.a_data);
378 up_write(&current->mm->mmap_sem);
Andi Kleen52d522f2006-09-26 10:52:33 +0200379 bprm->file->f_op->read(bprm->file,
380 (char __user *)N_TXTADDR(ex),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 ex.a_text+ex.a_data, &pos);
382 flush_icache_range((unsigned long) N_TXTADDR(ex),
383 (unsigned long) N_TXTADDR(ex) +
384 ex.a_text+ex.a_data);
385 goto beyond_if;
386 }
387
388 down_write(&current->mm->mmap_sem);
389 error = do_mmap(bprm->file, N_TXTADDR(ex), ex.a_text,
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100390 PROT_READ | PROT_EXEC,
391 MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE |
392 MAP_EXECUTABLE | MAP_32BIT,
393 fd_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 up_write(&current->mm->mmap_sem);
395
396 if (error != N_TXTADDR(ex)) {
397 send_sig(SIGKILL, current, 0);
398 return error;
399 }
400
401 down_write(&current->mm->mmap_sem);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100402 error = do_mmap(bprm->file, N_DATADDR(ex), ex.a_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 PROT_READ | PROT_WRITE | PROT_EXEC,
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100404 MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE |
405 MAP_EXECUTABLE | MAP_32BIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 fd_offset + ex.a_text);
407 up_write(&current->mm->mmap_sem);
408 if (error != N_DATADDR(ex)) {
409 send_sig(SIGKILL, current, 0);
410 return error;
411 }
412 }
413beyond_if:
414 set_binfmt(&aout_format);
415
416 set_brk(current->mm->start_brk, current->mm->brk);
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 current->mm->start_stack =
419 (unsigned long)create_aout_tables((char __user *)bprm->p, bprm);
420 /* start thread */
Jeremy Fitzhardingeb6edbb12008-08-19 13:04:19 -0700421 loadsegment(fs, 0);
422 loadsegment(ds, __USER32_DS);
423 loadsegment(es, __USER32_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100424 load_gs_index(0);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100425 (regs)->ip = ex.a_entry;
426 (regs)->sp = current->mm->start_stack;
427 (regs)->flags = 0x200;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 (regs)->cs = __USER32_CS;
429 (regs)->ss = __USER32_DS;
Andi Kleenf891dd12007-10-17 18:04:33 +0200430 regs->r8 = regs->r9 = regs->r10 = regs->r11 =
431 regs->r12 = regs->r13 = regs->r14 = regs->r15 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 set_fs(USER_DS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return 0;
434}
435
436static int load_aout_library(struct file *file)
437{
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100438 struct inode *inode;
439 unsigned long bss, start_addr, len, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 int retval;
441 struct exec ex;
442
Josef "Jeff" Sipekc9411922006-12-08 02:36:43 -0800443 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 retval = -ENOEXEC;
446 error = kernel_read(file, 0, (char *) &ex, sizeof(ex));
447 if (error != sizeof(ex))
448 goto out;
449
450 /* We come in here for the regular a.out style of shared libraries */
451 if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != QMAGIC) || N_TRSIZE(ex) ||
452 N_DRSIZE(ex) || ((ex.a_entry & 0xfff) && N_MAGIC(ex) == ZMAGIC) ||
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100453 i_size_read(inode) <
454 ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 goto out;
456 }
457
458 if (N_FLAGS(ex))
459 goto out;
460
461 /* For QMAGIC, the starting address is 0x20 into the page. We mask
462 this off to get the starting address for the page */
463
464 start_addr = ex.a_entry & 0xfffff000;
465
466 if ((N_TXTOFF(ex) & ~PAGE_MASK) != 0) {
467 loff_t pos = N_TXTOFF(ex);
468
469#ifdef WARN_OLD
470 static unsigned long error_time;
Julia Lawalle5fc3162008-01-30 13:32:17 +0100471 if (time_after(jiffies, error_time + 5*HZ)) {
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100472 printk(KERN_WARNING
473 "N_TXTOFF is not page aligned. Please convert "
474 "library: %s\n",
Josef "Jeff" Sipekc9411922006-12-08 02:36:43 -0800475 file->f_path.dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 error_time = jiffies;
477 }
478#endif
479 down_write(&current->mm->mmap_sem);
480 do_brk(start_addr, ex.a_text + ex.a_data + ex.a_bss);
481 up_write(&current->mm->mmap_sem);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100482
Andi Kleen52d522f2006-09-26 10:52:33 +0200483 file->f_op->read(file, (char __user *)start_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 ex.a_text + ex.a_data, &pos);
485 flush_icache_range((unsigned long) start_addr,
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100486 (unsigned long) start_addr + ex.a_text +
487 ex.a_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 retval = 0;
490 goto out;
491 }
492 /* Now use mmap to map the library into memory. */
493 down_write(&current->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 | MAP_32BIT,
497 N_TXTOFF(ex));
498 up_write(&current->mm->mmap_sem);
499 retval = error;
500 if (error != start_addr)
501 goto out;
502
503 len = PAGE_ALIGN(ex.a_text + ex.a_data);
504 bss = ex.a_text + ex.a_data + ex.a_bss;
505 if (bss > len) {
506 down_write(&current->mm->mmap_sem);
507 error = do_brk(start_addr + len, bss - len);
508 up_write(&current->mm->mmap_sem);
509 retval = error;
510 if (error != start_addr + len)
511 goto out;
512 }
513 retval = 0;
514out:
515 return retval;
516}
517
518static int __init init_aout_binfmt(void)
519{
Al Viro8fc3dc52012-03-17 03:05:16 -0400520 register_binfmt(&aout_format);
521 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524static void __exit exit_aout_binfmt(void)
525{
526 unregister_binfmt(&aout_format);
527}
528
529module_init(init_aout_binfmt);
530module_exit(exit_aout_binfmt);
531MODULE_LICENSE("GPL");