blob: 805078e080133bbdb1eab29f9ff742ba55a54955 [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
Al Viro71613c32012-10-20 22:00:48 -040038static int load_aout_binary(struct linux_binprm *);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +010039static 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;
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -0700122 vm_brk(start, end - start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Olaf Hering44456d32005-07-27 11:45:17 -0700125#ifdef CORE_DUMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126/*
127 * These are the only things you should do on a core-file: use only these
128 * macros to write out all the necessary info.
129 */
130
Linus Torvalds0eead9ab2010-10-14 10:57:40 -0700131#include <linux/coredump.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100133#define DUMP_WRITE(addr, nr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (!dump_write(file, (void *)(addr), (nr))) \
135 goto end_coredump;
136
Linus Torvalds0eead9ab2010-10-14 10:57:40 -0700137#define DUMP_SEEK(offset) \
138 if (!dump_seek(file, offset)) \
139 goto end_coredump;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100140
141#define START_DATA() (u.u_tsize << PAGE_SHIFT)
142#define START_STACK(u) (u.start_stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144/*
145 * Routine writes a core dump image in the current directory.
146 * Currently only a stub-function.
147 *
148 * Note that setuid/setgid files won't make a core-dump if the uid/gid
149 * changed due to the set[u|g]id. It's enforced by the "current->mm->dumpable"
150 * field, which also makes sure the core-dumps won't be recursive if the
151 * dumping of the process results in another error..
152 */
153
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100154static int aout_core_dump(long signr, struct pt_regs *regs, struct file *file,
155 unsigned long limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 mm_segment_t fs;
158 int has_dumped = 0;
159 unsigned long dump_start, dump_size;
160 struct user32 dump;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 fs = get_fs();
163 set_fs(KERNEL_DS);
164 has_dumped = 1;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100165 strncpy(dump.u_comm, current->comm, sizeof(current->comm));
H. Peter Anvin6e16d892008-02-07 00:15:57 -0800166 dump.u_ar0 = offsetof(struct user32, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 dump.signal = signr;
168 dump_thread32(regs, &dump);
169
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100170 /*
171 * If the size of the dump file exceeds the rlimit, then see
172 * what would happen if we wrote the stack, but not the data
173 * area.
174 */
Neil Horman7dc0b222007-10-16 23:26:34 -0700175 if ((dump.u_dsize + dump.u_ssize + 1) * PAGE_SIZE > limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 dump.u_dsize = 0;
177
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100178 /* Make sure we have enough room to write the stack and data areas. */
Neil Horman7dc0b222007-10-16 23:26:34 -0700179 if ((dump.u_ssize + 1) * PAGE_SIZE > limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 dump.u_ssize = 0;
181
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100182 /* make sure we actually have a data and stack area to dump */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 set_fs(USER_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100184 if (!access_ok(VERIFY_READ, (void *) (unsigned long)START_DATA(dump),
185 dump.u_dsize << PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 dump.u_dsize = 0;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100187 if (!access_ok(VERIFY_READ, (void *) (unsigned long)START_STACK(dump),
188 dump.u_ssize << PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 dump.u_ssize = 0;
190
191 set_fs(KERNEL_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100192 /* struct user */
193 DUMP_WRITE(&dump, sizeof(dump));
194 /* Now dump all of the user data. Include malloced stuff as well */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 DUMP_SEEK(PAGE_SIZE);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100196 /* now we start writing out the user space info */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 set_fs(USER_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100198 /* Dump the data area */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (dump.u_dsize != 0) {
200 dump_start = START_DATA(dump);
201 dump_size = dump.u_dsize << PAGE_SHIFT;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100202 DUMP_WRITE(dump_start, dump_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100204 /* Now prepare to dump the stack area */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (dump.u_ssize != 0) {
206 dump_start = START_STACK(dump);
207 dump_size = dump.u_ssize << PAGE_SHIFT;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100208 DUMP_WRITE(dump_start, dump_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210end_coredump:
211 set_fs(fs);
212 return has_dumped;
213}
214#endif
215
216/*
217 * create_aout_tables() parses the env- and arg-strings in new user
218 * memory and creates the pointer tables from them, and puts their
219 * addresses on the "stack", returning the new stack pointer value.
220 */
221static u32 __user *create_aout_tables(char __user *p, struct linux_binprm *bprm)
222{
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100223 u32 __user *argv, *envp, *sp;
224 int argc = bprm->argc, envc = bprm->envc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 sp = (u32 __user *) ((-(unsigned long)sizeof(u32)) & (unsigned long) p);
227 sp -= envc+1;
228 envp = sp;
229 sp -= argc+1;
230 argv = sp;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100231 put_user((unsigned long) envp, --sp);
232 put_user((unsigned long) argv, --sp);
233 put_user(argc, --sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 current->mm->arg_start = (unsigned long) p;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100235 while (argc-- > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 char c;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100237
238 put_user((u32)(unsigned long)p, argv++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 do {
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100240 get_user(c, p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 } while (c);
242 }
Andi Kleen74019692007-01-11 01:52:45 +0100243 put_user(0, argv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 current->mm->arg_end = current->mm->env_start = (unsigned long) p;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100245 while (envc-- > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 char c;
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100247
248 put_user((u32)(unsigned long)p, envp++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 do {
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100250 get_user(c, p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 } while (c);
252 }
Andi Kleen74019692007-01-11 01:52:45 +0100253 put_user(0, envp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 current->mm->env_end = (unsigned long) p;
255 return sp;
256}
257
258/*
259 * These are the functions used to load a.out style executables and shared
260 * libraries. There is no binary dependent code anywhere else.
261 */
Al Viro71613c32012-10-20 22:00:48 -0400262static int load_aout_binary(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100264 unsigned long error, fd_offset, rlim;
Al Viro71613c32012-10-20 22:00:48 -0400265 struct pt_regs *regs = current_pt_regs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 struct exec ex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 int retval;
268
269 ex = *((struct exec *) bprm->buf); /* exec-header */
270 if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != OMAGIC &&
271 N_MAGIC(ex) != QMAGIC && N_MAGIC(ex) != NMAGIC) ||
272 N_TRSIZE(ex) || N_DRSIZE(ex) ||
Al Viro496ad9a2013-01-23 17:07:38 -0500273 i_size_read(file_inode(bprm->file)) <
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100274 ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return -ENOEXEC;
276 }
277
278 fd_offset = N_TXTOFF(ex);
279
280 /* Check initial limits. This avoids letting people circumvent
281 * size limits imposed on them by creating programs with large
282 * arrays in the data or bss.
283 */
Jiri Slaby2854e722010-01-27 17:32:22 +0100284 rlim = rlimit(RLIMIT_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (rlim >= RLIM_INFINITY)
286 rlim = ~0;
287 if (ex.a_data + ex.a_bss > rlim)
288 return -ENOMEM;
289
290 /* Flush all traces of the currently running executable */
291 retval = flush_old_exec(bprm);
292 if (retval)
293 return retval;
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* OK, This is the point of no return */
296 set_personality(PER_LINUX);
Al Viroce7e5d22012-05-06 17:20:00 +0100297 set_personality_ia32(false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Linus Torvalds221af7f2010-01-28 22:14:42 -0800299 setup_new_exec(bprm);
300
301 regs->cs = __USER32_CS;
302 regs->r8 = regs->r9 = regs->r10 = regs->r11 = regs->r12 =
303 regs->r13 = regs->r14 = regs->r15 = 0;
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 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;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -0700312 current->mm->cached_hole_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Al Viro6414fa62012-03-05 06:38:42 +0000314 retval = setup_arg_pages(bprm, IA32_STACK_TOP, EXSTACK_DEFAULT);
315 if (retval < 0) {
316 /* Someone check-me: is this error path enough? */
317 send_sig(SIGKILL, current, 0);
318 return retval;
319 }
320
David Howellsa6f76f22008-11-14 10:39:24 +1100321 install_exec_creds(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 if (N_MAGIC(ex) == OMAGIC) {
324 unsigned long text_addr, map_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 text_addr = N_TXTADDR(ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 map_size = ex.a_text+ex.a_data;
328
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -0700329 error = vm_brk(text_addr & PAGE_MASK, map_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 if (error != (text_addr & PAGE_MASK)) {
332 send_sig(SIGKILL, current, 0);
333 return error;
334 }
335
Al Viro3dc20cb2013-04-13 20:31:37 -0400336 error = read_code(bprm->file, text_addr, 32,
337 ex.a_text + ex.a_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if ((signed long)error < 0) {
339 send_sig(SIGKILL, current, 0);
340 return error;
341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 } else {
343#ifdef WARN_OLD
344 static unsigned long error_time, error_time2;
345 if ((ex.a_text & 0xfff || ex.a_data & 0xfff) &&
Julia Lawalle5fc3162008-01-30 13:32:17 +0100346 (N_MAGIC(ex) != NMAGIC) &&
347 time_after(jiffies, error_time2 + 5*HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 printk(KERN_NOTICE "executable not page aligned\n");
349 error_time2 = jiffies;
350 }
351
352 if ((fd_offset & ~PAGE_MASK) != 0 &&
Julia Lawalle5fc3162008-01-30 13:32:17 +0100353 time_after(jiffies, error_time + 5*HZ)) {
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100354 printk(KERN_WARNING
355 "fd_offset is not page aligned. Please convert "
356 "program: %s\n",
Josef "Jeff" Sipekc9411922006-12-08 02:36:43 -0800357 bprm->file->f_path.dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 error_time = jiffies;
359 }
360#endif
361
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100362 if (!bprm->file->f_op->mmap || (fd_offset & ~PAGE_MASK) != 0) {
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -0700363 vm_brk(N_TXTADDR(ex), ex.a_text+ex.a_data);
Al Viro3dc20cb2013-04-13 20:31:37 -0400364 read_code(bprm->file, N_TXTADDR(ex), fd_offset,
365 ex.a_text+ex.a_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 goto beyond_if;
367 }
368
Linus Torvalds6be5ceb2012-04-20 17:13:58 -0700369 error = vm_mmap(bprm->file, N_TXTADDR(ex), ex.a_text,
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100370 PROT_READ | PROT_EXEC,
371 MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE |
372 MAP_EXECUTABLE | MAP_32BIT,
373 fd_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 if (error != N_TXTADDR(ex)) {
376 send_sig(SIGKILL, current, 0);
377 return error;
378 }
379
Linus Torvalds6be5ceb2012-04-20 17:13:58 -0700380 error = vm_mmap(bprm->file, N_DATADDR(ex), ex.a_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 PROT_READ | PROT_WRITE | PROT_EXEC,
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100382 MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE |
383 MAP_EXECUTABLE | MAP_32BIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 fd_offset + ex.a_text);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (error != N_DATADDR(ex)) {
386 send_sig(SIGKILL, current, 0);
387 return error;
388 }
389 }
390beyond_if:
391 set_binfmt(&aout_format);
392
393 set_brk(current->mm->start_brk, current->mm->brk);
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 current->mm->start_stack =
396 (unsigned long)create_aout_tables((char __user *)bprm->p, bprm);
397 /* start thread */
Jeremy Fitzhardingeb6edbb12008-08-19 13:04:19 -0700398 loadsegment(fs, 0);
399 loadsegment(ds, __USER32_DS);
400 loadsegment(es, __USER32_DS);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100401 load_gs_index(0);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100402 (regs)->ip = ex.a_entry;
403 (regs)->sp = current->mm->start_stack;
404 (regs)->flags = 0x200;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 (regs)->cs = __USER32_CS;
406 (regs)->ss = __USER32_DS;
Andi Kleenf891dd12007-10-17 18:04:33 +0200407 regs->r8 = regs->r9 = regs->r10 = regs->r11 =
408 regs->r12 = regs->r13 = regs->r14 = regs->r15 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 set_fs(USER_DS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return 0;
411}
412
413static int load_aout_library(struct file *file)
414{
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100415 unsigned long bss, start_addr, len, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 int retval;
417 struct exec ex;
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 retval = -ENOEXEC;
421 error = kernel_read(file, 0, (char *) &ex, sizeof(ex));
422 if (error != sizeof(ex))
423 goto out;
424
425 /* We come in here for the regular a.out style of shared libraries */
426 if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != QMAGIC) || N_TRSIZE(ex) ||
427 N_DRSIZE(ex) || ((ex.a_entry & 0xfff) && N_MAGIC(ex) == ZMAGIC) ||
Al Viro496ad9a2013-01-23 17:07:38 -0500428 i_size_read(file_inode(file)) <
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100429 ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 goto out;
431 }
432
433 if (N_FLAGS(ex))
434 goto out;
435
436 /* For QMAGIC, the starting address is 0x20 into the page. We mask
437 this off to get the starting address for the page */
438
439 start_addr = ex.a_entry & 0xfffff000;
440
441 if ((N_TXTOFF(ex) & ~PAGE_MASK) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#ifdef WARN_OLD
443 static unsigned long error_time;
Julia Lawalle5fc3162008-01-30 13:32:17 +0100444 if (time_after(jiffies, error_time + 5*HZ)) {
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100445 printk(KERN_WARNING
446 "N_TXTOFF is not page aligned. Please convert "
447 "library: %s\n",
Josef "Jeff" Sipekc9411922006-12-08 02:36:43 -0800448 file->f_path.dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 error_time = jiffies;
450 }
451#endif
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -0700452 vm_brk(start_addr, ex.a_text + ex.a_data + ex.a_bss);
Thomas Gleixner8edf8be2008-01-30 13:30:07 +0100453
Al Viro3dc20cb2013-04-13 20:31:37 -0400454 read_code(file, start_addr, N_TXTOFF(ex),
455 ex.a_text + ex.a_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 retval = 0;
457 goto out;
458 }
459 /* Now use mmap to map the library into memory. */
Linus Torvalds6be5ceb2012-04-20 17:13:58 -0700460 error = vm_mmap(file, start_addr, ex.a_text + ex.a_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 PROT_READ | PROT_WRITE | PROT_EXEC,
462 MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE | MAP_32BIT,
463 N_TXTOFF(ex));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 retval = error;
465 if (error != start_addr)
466 goto out;
467
468 len = PAGE_ALIGN(ex.a_text + ex.a_data);
469 bss = ex.a_text + ex.a_data + ex.a_bss;
470 if (bss > len) {
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -0700471 error = vm_brk(start_addr + len, bss - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 retval = error;
473 if (error != start_addr + len)
474 goto out;
475 }
476 retval = 0;
477out:
478 return retval;
479}
480
481static int __init init_aout_binfmt(void)
482{
Al Viro8fc3dc52012-03-17 03:05:16 -0400483 register_binfmt(&aout_format);
484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
487static void __exit exit_aout_binfmt(void)
488{
489 unregister_binfmt(&aout_format);
490}
491
492module_init(init_aout_binfmt);
493module_exit(exit_aout_binfmt);
494MODULE_LICENSE("GPL");