| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 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 Lawall | e5fc316 | 2008-01-30 13:32:17 +0100 | [diff] [blame] | 28 | #include <linux/jiffies.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 |  | 
 | 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 Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 40 | static int load_aout_binary(struct linux_binprm *, struct pt_regs *regs); | 
 | 41 | static int load_aout_library(struct file *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 |  | 
| Olaf Hering | 44456d3 | 2005-07-27 11:45:17 -0700 | [diff] [blame] | 43 | #ifdef CORE_DUMP | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 44 | static int aout_core_dump(long signr, struct pt_regs *regs, struct file *file, | 
 | 45 | 			  unsigned long limit); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 |  | 
 | 47 | /* | 
 | 48 |  * fill in the user structure for a core dump.. | 
 | 49 |  */ | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 50 | static void dump_thread32(struct pt_regs *regs, struct user32 *dump) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 52 | 	u32 fs, gs; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 |  | 
 | 54 | /* changed the size calculations - should hopefully work better. lbt */ | 
 | 55 | 	dump->magic = CMAGIC; | 
 | 56 | 	dump->start_code = 0; | 
| H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 57 | 	dump->start_stack = regs->sp & ~(PAGE_SIZE - 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | 	dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 59 | 	dump->u_dsize = ((unsigned long) | 
 | 60 | 			 (current->mm->brk + (PAGE_SIZE-1))) >> PAGE_SHIFT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | 	dump->u_dsize -= dump->u_tsize; | 
 | 62 | 	dump->u_ssize = 0; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 63 | 	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 |  | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 72 | 	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 |  | 
| H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 79 | 	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | 	dump->regs.ds = current->thread.ds; | 
 | 87 | 	dump->regs.es = current->thread.es; | 
 | 88 | 	asm("movl %%fs,%0" : "=r" (fs)); dump->regs.fs = fs; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 89 | 	asm("movl %%gs,%0" : "=r" (gs)); dump->regs.gs = gs; | 
| H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 90 | 	dump->regs.orig_ax = regs->orig_ax; | 
 | 91 | 	dump->regs.ip = regs->ip; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | 	dump->regs.cs = regs->cs; | 
| H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 93 | 	dump->regs.flags = regs->flags; | 
 | 94 | 	dump->regs.sp = regs->sp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | 	dump->regs.ss = regs->ss; | 
 | 96 |  | 
 | 97 | #if 1 /* FIXME */ | 
 | 98 | 	dump->u_fpvalid = 0; | 
 | 99 | #else | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 100 | 	dump->u_fpvalid = dump_fpu(regs, &dump->i387); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | #endif | 
 | 102 | } | 
 | 103 |  | 
 | 104 | #endif | 
 | 105 |  | 
 | 106 | static struct linux_binfmt aout_format = { | 
 | 107 | 	.module		= THIS_MODULE, | 
 | 108 | 	.load_binary	= load_aout_binary, | 
 | 109 | 	.load_shlib	= load_aout_library, | 
| Olaf Hering | 44456d3 | 2005-07-27 11:45:17 -0700 | [diff] [blame] | 110 | #ifdef CORE_DUMP | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | 	.core_dump	= aout_core_dump, | 
 | 112 | #endif | 
 | 113 | 	.min_coredump	= PAGE_SIZE | 
 | 114 | }; | 
 | 115 |  | 
 | 116 | static 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(¤t->mm->mmap_sem); | 
 | 123 | 	do_brk(start, end - start); | 
 | 124 | 	up_write(¤t->mm->mmap_sem); | 
 | 125 | } | 
 | 126 |  | 
| Olaf Hering | 44456d3 | 2005-07-27 11:45:17 -0700 | [diff] [blame] | 127 | #ifdef CORE_DUMP | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | /* | 
 | 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 |  | 
 | 133 | static int dump_write(struct file *file, const void *addr, int nr) | 
 | 134 | { | 
 | 135 | 	return file->f_op->write(file, addr, nr, &file->f_pos) == nr; | 
 | 136 | } | 
 | 137 |  | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 138 | #define DUMP_WRITE(addr, nr)			     \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | 	if (!dump_write(file, (void *)(addr), (nr))) \ | 
 | 140 | 		goto end_coredump; | 
 | 141 |  | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 142 | #define DUMP_SEEK(offset)						\ | 
 | 143 | 	if (file->f_op->llseek) {					\ | 
 | 144 | 		if (file->f_op->llseek(file, (offset), 0) != (offset))	\ | 
 | 145 | 			goto end_coredump;				\ | 
 | 146 | 	} else								\ | 
 | 147 | 		file->f_pos = (offset) | 
 | 148 |  | 
 | 149 | #define START_DATA()	(u.u_tsize << PAGE_SHIFT) | 
 | 150 | #define START_STACK(u)	(u.start_stack) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 |  | 
 | 152 | /* | 
 | 153 |  * Routine writes a core dump image in the current directory. | 
 | 154 |  * Currently only a stub-function. | 
 | 155 |  * | 
 | 156 |  * Note that setuid/setgid files won't make a core-dump if the uid/gid | 
 | 157 |  * changed due to the set[u|g]id. It's enforced by the "current->mm->dumpable" | 
 | 158 |  * field, which also makes sure the core-dumps won't be recursive if the | 
 | 159 |  * dumping of the process results in another error.. | 
 | 160 |  */ | 
 | 161 |  | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 162 | static int aout_core_dump(long signr, struct pt_regs *regs, struct file *file, | 
 | 163 | 			  unsigned long limit) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | { | 
 | 165 | 	mm_segment_t fs; | 
 | 166 | 	int has_dumped = 0; | 
 | 167 | 	unsigned long dump_start, dump_size; | 
 | 168 | 	struct user32 dump; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 |  | 
 | 170 | 	fs = get_fs(); | 
 | 171 | 	set_fs(KERNEL_DS); | 
 | 172 | 	has_dumped = 1; | 
 | 173 | 	current->flags |= PF_DUMPCORE; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 174 | 	strncpy(dump.u_comm, current->comm, sizeof(current->comm)); | 
| H. Peter Anvin | 6e16d89 | 2008-02-07 00:15:57 -0800 | [diff] [blame] | 175 | 	dump.u_ar0 = offsetof(struct user32, regs); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | 	dump.signal = signr; | 
 | 177 | 	dump_thread32(regs, &dump); | 
 | 178 |  | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 179 | 	/* | 
 | 180 | 	 * If the size of the dump file exceeds the rlimit, then see | 
 | 181 | 	 * what would happen if we wrote the stack, but not the data | 
 | 182 | 	 * area. | 
 | 183 | 	 */ | 
| Neil Horman | 7dc0b22 | 2007-10-16 23:26:34 -0700 | [diff] [blame] | 184 | 	if ((dump.u_dsize + dump.u_ssize + 1) * PAGE_SIZE > limit) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | 		dump.u_dsize = 0; | 
 | 186 |  | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 187 | 	/* Make sure we have enough room to write the stack and data areas. */ | 
| Neil Horman | 7dc0b22 | 2007-10-16 23:26:34 -0700 | [diff] [blame] | 188 | 	if ((dump.u_ssize + 1) * PAGE_SIZE > limit) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | 		dump.u_ssize = 0; | 
 | 190 |  | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 191 | 	/* make sure we actually have a data and stack area to dump */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | 	set_fs(USER_DS); | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 193 | 	if (!access_ok(VERIFY_READ, (void *) (unsigned long)START_DATA(dump), | 
 | 194 | 		       dump.u_dsize << PAGE_SHIFT)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | 		dump.u_dsize = 0; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 196 | 	if (!access_ok(VERIFY_READ, (void *) (unsigned long)START_STACK(dump), | 
 | 197 | 		       dump.u_ssize << PAGE_SHIFT)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | 		dump.u_ssize = 0; | 
 | 199 |  | 
 | 200 | 	set_fs(KERNEL_DS); | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 201 | 	/* struct user */ | 
 | 202 | 	DUMP_WRITE(&dump, sizeof(dump)); | 
 | 203 | 	/* Now dump all of the user data.  Include malloced stuff as well */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | 	DUMP_SEEK(PAGE_SIZE); | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 205 | 	/* now we start writing out the user space info */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | 	set_fs(USER_DS); | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 207 | 	/* Dump the data area */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | 	if (dump.u_dsize != 0) { | 
 | 209 | 		dump_start = START_DATA(dump); | 
 | 210 | 		dump_size = dump.u_dsize << PAGE_SHIFT; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 211 | 		DUMP_WRITE(dump_start, dump_size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | 	} | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 213 | 	/* Now prepare to dump the stack area */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | 	if (dump.u_ssize != 0) { | 
 | 215 | 		dump_start = START_STACK(dump); | 
 | 216 | 		dump_size = dump.u_ssize << PAGE_SHIFT; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 217 | 		DUMP_WRITE(dump_start, dump_size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | 	} | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 219 | 	/* | 
 | 220 | 	 * Finally dump the task struct.  Not be used by gdb, but | 
 | 221 | 	 * could be useful | 
 | 222 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | 	set_fs(KERNEL_DS); | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 224 | 	DUMP_WRITE(current, sizeof(*current)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | end_coredump: | 
 | 226 | 	set_fs(fs); | 
 | 227 | 	return has_dumped; | 
 | 228 | } | 
 | 229 | #endif | 
 | 230 |  | 
 | 231 | /* | 
 | 232 |  * create_aout_tables() parses the env- and arg-strings in new user | 
 | 233 |  * memory and creates the pointer tables from them, and puts their | 
 | 234 |  * addresses on the "stack", returning the new stack pointer value. | 
 | 235 |  */ | 
 | 236 | static u32 __user *create_aout_tables(char __user *p, struct linux_binprm *bprm) | 
 | 237 | { | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 238 | 	u32 __user *argv, *envp, *sp; | 
 | 239 | 	int argc = bprm->argc, envc = bprm->envc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 |  | 
 | 241 | 	sp = (u32 __user *) ((-(unsigned long)sizeof(u32)) & (unsigned long) p); | 
 | 242 | 	sp -= envc+1; | 
 | 243 | 	envp = sp; | 
 | 244 | 	sp -= argc+1; | 
 | 245 | 	argv = sp; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 246 | 	put_user((unsigned long) envp, --sp); | 
 | 247 | 	put_user((unsigned long) argv, --sp); | 
 | 248 | 	put_user(argc, --sp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | 	current->mm->arg_start = (unsigned long) p; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 250 | 	while (argc-- > 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | 		char c; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 252 |  | 
 | 253 | 		put_user((u32)(unsigned long)p, argv++); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | 		do { | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 255 | 			get_user(c, p++); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | 		} while (c); | 
 | 257 | 	} | 
| Andi Kleen | 7401969 | 2007-01-11 01:52:45 +0100 | [diff] [blame] | 258 | 	put_user(0, argv); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | 	current->mm->arg_end = current->mm->env_start = (unsigned long) p; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 260 | 	while (envc-- > 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | 		char c; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 262 |  | 
 | 263 | 		put_user((u32)(unsigned long)p, envp++); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | 		do { | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 265 | 			get_user(c, p++); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | 		} while (c); | 
 | 267 | 	} | 
| Andi Kleen | 7401969 | 2007-01-11 01:52:45 +0100 | [diff] [blame] | 268 | 	put_user(0, envp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | 	current->mm->env_end = (unsigned long) p; | 
 | 270 | 	return sp; | 
 | 271 | } | 
 | 272 |  | 
 | 273 | /* | 
 | 274 |  * These are the functions used to load a.out style executables and shared | 
 | 275 |  * libraries.  There is no binary dependent code anywhere else. | 
 | 276 |  */ | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 277 | static int load_aout_binary(struct linux_binprm *bprm, struct pt_regs *regs) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | { | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 279 | 	unsigned long error, fd_offset, rlim; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | 	struct exec ex; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | 	int retval; | 
 | 282 |  | 
 | 283 | 	ex = *((struct exec *) bprm->buf);		/* exec-header */ | 
 | 284 | 	if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != OMAGIC && | 
 | 285 | 	     N_MAGIC(ex) != QMAGIC && N_MAGIC(ex) != NMAGIC) || | 
 | 286 | 	    N_TRSIZE(ex) || N_DRSIZE(ex) || | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 287 | 	    i_size_read(bprm->file->f_path.dentry->d_inode) < | 
 | 288 | 	    ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | 		return -ENOEXEC; | 
 | 290 | 	} | 
 | 291 |  | 
 | 292 | 	fd_offset = N_TXTOFF(ex); | 
 | 293 |  | 
 | 294 | 	/* Check initial limits. This avoids letting people circumvent | 
 | 295 | 	 * size limits imposed on them by creating programs with large | 
 | 296 | 	 * arrays in the data or bss. | 
 | 297 | 	 */ | 
 | 298 | 	rlim = current->signal->rlim[RLIMIT_DATA].rlim_cur; | 
 | 299 | 	if (rlim >= RLIM_INFINITY) | 
 | 300 | 		rlim = ~0; | 
 | 301 | 	if (ex.a_data + ex.a_bss > rlim) | 
 | 302 | 		return -ENOMEM; | 
 | 303 |  | 
 | 304 | 	/* Flush all traces of the currently running executable */ | 
 | 305 | 	retval = flush_old_exec(bprm); | 
 | 306 | 	if (retval) | 
 | 307 | 		return retval; | 
 | 308 |  | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 309 | 	regs->cs = __USER32_CS; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | 	regs->r8 = regs->r9 = regs->r10 = regs->r11 = regs->r12 = | 
 | 311 | 		regs->r13 = regs->r14 = regs->r15 = 0; | 
 | 312 |  | 
 | 313 | 	/* OK, This is the point of no return */ | 
 | 314 | 	set_personality(PER_LINUX); | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 315 | 	set_thread_flag(TIF_IA32); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | 	clear_thread_flag(TIF_ABI_PENDING); | 
 | 317 |  | 
 | 318 | 	current->mm->end_code = ex.a_text + | 
 | 319 | 		(current->mm->start_code = N_TXTADDR(ex)); | 
 | 320 | 	current->mm->end_data = ex.a_data + | 
 | 321 | 		(current->mm->start_data = N_DATADDR(ex)); | 
 | 322 | 	current->mm->brk = ex.a_bss + | 
 | 323 | 		(current->mm->start_brk = N_BSSADDR(ex)); | 
 | 324 | 	current->mm->free_area_cache = TASK_UNMAPPED_BASE; | 
| Wolfgang Wander | 1363c3c | 2005-06-21 17:14:49 -0700 | [diff] [blame] | 325 | 	current->mm->cached_hole_size = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | 	current->mm->mmap = NULL; | 
 | 328 | 	compute_creds(bprm); | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 329 | 	current->flags &= ~PF_FORKNOEXEC; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 |  | 
 | 331 | 	if (N_MAGIC(ex) == OMAGIC) { | 
 | 332 | 		unsigned long text_addr, map_size; | 
 | 333 | 		loff_t pos; | 
 | 334 |  | 
 | 335 | 		text_addr = N_TXTADDR(ex); | 
 | 336 |  | 
 | 337 | 		pos = 32; | 
 | 338 | 		map_size = ex.a_text+ex.a_data; | 
 | 339 |  | 
 | 340 | 		down_write(¤t->mm->mmap_sem); | 
 | 341 | 		error = do_brk(text_addr & PAGE_MASK, map_size); | 
 | 342 | 		up_write(¤t->mm->mmap_sem); | 
 | 343 |  | 
 | 344 | 		if (error != (text_addr & PAGE_MASK)) { | 
 | 345 | 			send_sig(SIGKILL, current, 0); | 
 | 346 | 			return error; | 
 | 347 | 		} | 
 | 348 |  | 
| Andi Kleen | 52d522f | 2006-09-26 10:52:33 +0200 | [diff] [blame] | 349 | 		error = bprm->file->f_op->read(bprm->file, | 
 | 350 | 			 (char __user *)text_addr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | 			  ex.a_text+ex.a_data, &pos); | 
 | 352 | 		if ((signed long)error < 0) { | 
 | 353 | 			send_sig(SIGKILL, current, 0); | 
 | 354 | 			return error; | 
 | 355 | 		} | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 356 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | 		flush_icache_range(text_addr, text_addr+ex.a_text+ex.a_data); | 
 | 358 | 	} else { | 
 | 359 | #ifdef WARN_OLD | 
 | 360 | 		static unsigned long error_time, error_time2; | 
 | 361 | 		if ((ex.a_text & 0xfff || ex.a_data & 0xfff) && | 
| Julia Lawall | e5fc316 | 2008-01-30 13:32:17 +0100 | [diff] [blame] | 362 | 		    (N_MAGIC(ex) != NMAGIC) && | 
 | 363 | 				time_after(jiffies, error_time2 + 5*HZ)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | 			printk(KERN_NOTICE "executable not page aligned\n"); | 
 | 365 | 			error_time2 = jiffies; | 
 | 366 | 		} | 
 | 367 |  | 
 | 368 | 		if ((fd_offset & ~PAGE_MASK) != 0 && | 
| Julia Lawall | e5fc316 | 2008-01-30 13:32:17 +0100 | [diff] [blame] | 369 | 			    time_after(jiffies, error_time + 5*HZ)) { | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 370 | 			printk(KERN_WARNING | 
 | 371 | 			       "fd_offset is not page aligned. Please convert " | 
 | 372 | 			       "program: %s\n", | 
| Josef "Jeff" Sipek | c941192 | 2006-12-08 02:36:43 -0800 | [diff] [blame] | 373 | 			       bprm->file->f_path.dentry->d_name.name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | 			error_time = jiffies; | 
 | 375 | 		} | 
 | 376 | #endif | 
 | 377 |  | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 378 | 		if (!bprm->file->f_op->mmap || (fd_offset & ~PAGE_MASK) != 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | 			loff_t pos = fd_offset; | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 380 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | 			down_write(¤t->mm->mmap_sem); | 
 | 382 | 			do_brk(N_TXTADDR(ex), ex.a_text+ex.a_data); | 
 | 383 | 			up_write(¤t->mm->mmap_sem); | 
| Andi Kleen | 52d522f | 2006-09-26 10:52:33 +0200 | [diff] [blame] | 384 | 			bprm->file->f_op->read(bprm->file, | 
 | 385 | 					(char __user *)N_TXTADDR(ex), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | 					ex.a_text+ex.a_data, &pos); | 
 | 387 | 			flush_icache_range((unsigned long) N_TXTADDR(ex), | 
 | 388 | 					   (unsigned long) N_TXTADDR(ex) + | 
 | 389 | 					   ex.a_text+ex.a_data); | 
 | 390 | 			goto beyond_if; | 
 | 391 | 		} | 
 | 392 |  | 
 | 393 | 		down_write(¤t->mm->mmap_sem); | 
 | 394 | 		error = do_mmap(bprm->file, N_TXTADDR(ex), ex.a_text, | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 395 | 				PROT_READ | PROT_EXEC, | 
 | 396 | 				MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE | | 
 | 397 | 				MAP_EXECUTABLE | MAP_32BIT, | 
 | 398 | 				fd_offset); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | 		up_write(¤t->mm->mmap_sem); | 
 | 400 |  | 
 | 401 | 		if (error != N_TXTADDR(ex)) { | 
 | 402 | 			send_sig(SIGKILL, current, 0); | 
 | 403 | 			return error; | 
 | 404 | 		} | 
 | 405 |  | 
 | 406 | 		down_write(¤t->mm->mmap_sem); | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 407 | 		error = do_mmap(bprm->file, N_DATADDR(ex), ex.a_data, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | 				PROT_READ | PROT_WRITE | PROT_EXEC, | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 409 | 				MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE | | 
 | 410 | 				MAP_EXECUTABLE | MAP_32BIT, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | 				fd_offset + ex.a_text); | 
 | 412 | 		up_write(¤t->mm->mmap_sem); | 
 | 413 | 		if (error != N_DATADDR(ex)) { | 
 | 414 | 			send_sig(SIGKILL, current, 0); | 
 | 415 | 			return error; | 
 | 416 | 		} | 
 | 417 | 	} | 
 | 418 | beyond_if: | 
 | 419 | 	set_binfmt(&aout_format); | 
 | 420 |  | 
 | 421 | 	set_brk(current->mm->start_brk, current->mm->brk); | 
 | 422 |  | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 423 | 	retval = setup_arg_pages(bprm, IA32_STACK_TOP, EXSTACK_DEFAULT); | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 424 | 	if (retval < 0) { | 
 | 425 | 		/* Someone check-me: is this error path enough? */ | 
 | 426 | 		send_sig(SIGKILL, current, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | 		return retval; | 
 | 428 | 	} | 
 | 429 |  | 
 | 430 | 	current->mm->start_stack = | 
 | 431 | 		(unsigned long)create_aout_tables((char __user *)bprm->p, bprm); | 
 | 432 | 	/* start thread */ | 
 | 433 | 	asm volatile("movl %0,%%fs" :: "r" (0)); \ | 
 | 434 | 	asm volatile("movl %0,%%es; movl %0,%%ds": :"r" (__USER32_DS)); | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 435 | 	load_gs_index(0); | 
| H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 436 | 	(regs)->ip = ex.a_entry; | 
 | 437 | 	(regs)->sp = current->mm->start_stack; | 
 | 438 | 	(regs)->flags = 0x200; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | 	(regs)->cs = __USER32_CS; | 
 | 440 | 	(regs)->ss = __USER32_DS; | 
| Andi Kleen | f891dd1 | 2007-10-17 18:04:33 +0200 | [diff] [blame] | 441 | 	regs->r8 = regs->r9 = regs->r10 = regs->r11 = | 
 | 442 | 	regs->r12 = regs->r13 = regs->r14 = regs->r15 = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | 	set_fs(USER_DS); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | 	return 0; | 
 | 445 | } | 
 | 446 |  | 
 | 447 | static int load_aout_library(struct file *file) | 
 | 448 | { | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 449 | 	struct inode *inode; | 
 | 450 | 	unsigned long bss, start_addr, len, error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | 	int retval; | 
 | 452 | 	struct exec ex; | 
 | 453 |  | 
| Josef "Jeff" Sipek | c941192 | 2006-12-08 02:36:43 -0800 | [diff] [blame] | 454 | 	inode = file->f_path.dentry->d_inode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 |  | 
 | 456 | 	retval = -ENOEXEC; | 
 | 457 | 	error = kernel_read(file, 0, (char *) &ex, sizeof(ex)); | 
 | 458 | 	if (error != sizeof(ex)) | 
 | 459 | 		goto out; | 
 | 460 |  | 
 | 461 | 	/* We come in here for the regular a.out style of shared libraries */ | 
 | 462 | 	if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != QMAGIC) || N_TRSIZE(ex) || | 
 | 463 | 	    N_DRSIZE(ex) || ((ex.a_entry & 0xfff) && N_MAGIC(ex) == ZMAGIC) || | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 464 | 	    i_size_read(inode) < | 
 | 465 | 	    ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | 		goto out; | 
 | 467 | 	} | 
 | 468 |  | 
 | 469 | 	if (N_FLAGS(ex)) | 
 | 470 | 		goto out; | 
 | 471 |  | 
 | 472 | 	/* For  QMAGIC, the starting address is 0x20 into the page.  We mask | 
 | 473 | 	   this off to get the starting address for the page */ | 
 | 474 |  | 
 | 475 | 	start_addr =  ex.a_entry & 0xfffff000; | 
 | 476 |  | 
 | 477 | 	if ((N_TXTOFF(ex) & ~PAGE_MASK) != 0) { | 
 | 478 | 		loff_t pos = N_TXTOFF(ex); | 
 | 479 |  | 
 | 480 | #ifdef WARN_OLD | 
 | 481 | 		static unsigned long error_time; | 
| Julia Lawall | e5fc316 | 2008-01-30 13:32:17 +0100 | [diff] [blame] | 482 | 		if (time_after(jiffies, error_time + 5*HZ)) { | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 483 | 			printk(KERN_WARNING | 
 | 484 | 			       "N_TXTOFF is not page aligned. Please convert " | 
 | 485 | 			       "library: %s\n", | 
| Josef "Jeff" Sipek | c941192 | 2006-12-08 02:36:43 -0800 | [diff] [blame] | 486 | 			       file->f_path.dentry->d_name.name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | 			error_time = jiffies; | 
 | 488 | 		} | 
 | 489 | #endif | 
 | 490 | 		down_write(¤t->mm->mmap_sem); | 
 | 491 | 		do_brk(start_addr, ex.a_text + ex.a_data + ex.a_bss); | 
 | 492 | 		up_write(¤t->mm->mmap_sem); | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 493 |  | 
| Andi Kleen | 52d522f | 2006-09-26 10:52:33 +0200 | [diff] [blame] | 494 | 		file->f_op->read(file, (char __user *)start_addr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | 			ex.a_text + ex.a_data, &pos); | 
 | 496 | 		flush_icache_range((unsigned long) start_addr, | 
| Thomas Gleixner | 8edf8be | 2008-01-30 13:30:07 +0100 | [diff] [blame] | 497 | 				   (unsigned long) start_addr + ex.a_text + | 
 | 498 | 				   ex.a_data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 |  | 
 | 500 | 		retval = 0; | 
 | 501 | 		goto out; | 
 | 502 | 	} | 
 | 503 | 	/* Now use mmap to map the library into memory. */ | 
 | 504 | 	down_write(¤t->mm->mmap_sem); | 
 | 505 | 	error = do_mmap(file, start_addr, ex.a_text + ex.a_data, | 
 | 506 | 			PROT_READ | PROT_WRITE | PROT_EXEC, | 
 | 507 | 			MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE | MAP_32BIT, | 
 | 508 | 			N_TXTOFF(ex)); | 
 | 509 | 	up_write(¤t->mm->mmap_sem); | 
 | 510 | 	retval = error; | 
 | 511 | 	if (error != start_addr) | 
 | 512 | 		goto out; | 
 | 513 |  | 
 | 514 | 	len = PAGE_ALIGN(ex.a_text + ex.a_data); | 
 | 515 | 	bss = ex.a_text + ex.a_data + ex.a_bss; | 
 | 516 | 	if (bss > len) { | 
 | 517 | 		down_write(¤t->mm->mmap_sem); | 
 | 518 | 		error = do_brk(start_addr + len, bss - len); | 
 | 519 | 		up_write(¤t->mm->mmap_sem); | 
 | 520 | 		retval = error; | 
 | 521 | 		if (error != start_addr + len) | 
 | 522 | 			goto out; | 
 | 523 | 	} | 
 | 524 | 	retval = 0; | 
 | 525 | out: | 
 | 526 | 	return retval; | 
 | 527 | } | 
 | 528 |  | 
 | 529 | static int __init init_aout_binfmt(void) | 
 | 530 | { | 
 | 531 | 	return register_binfmt(&aout_format); | 
 | 532 | } | 
 | 533 |  | 
 | 534 | static void __exit exit_aout_binfmt(void) | 
 | 535 | { | 
 | 536 | 	unregister_binfmt(&aout_format); | 
 | 537 | } | 
 | 538 |  | 
 | 539 | module_init(init_aout_binfmt); | 
 | 540 | module_exit(exit_aout_binfmt); | 
 | 541 | MODULE_LICENSE("GPL"); |