blob: b2efbaead6c3154fd0f12b364cdea9b42fa5f65d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/binfmt_elf.c
3 *
4 * These are the functions used to load ELF format executables as used
5 * on SVr4 machines. Information on the format may be found in the book
6 * "UNIX SYSTEM V RELEASE 4 Programmers Guide: Ansi C and Programming Support
7 * Tools".
8 *
9 * Copyright 1993, 1994: Eric Youngdale (ericy@cais.com).
10 */
11
12#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/fs.h>
15#include <linux/stat.h>
16#include <linux/time.h>
17#include <linux/mm.h>
18#include <linux/mman.h>
19#include <linux/a.out.h>
20#include <linux/errno.h>
21#include <linux/signal.h>
22#include <linux/binfmts.h>
23#include <linux/string.h>
24#include <linux/file.h>
25#include <linux/fcntl.h>
26#include <linux/ptrace.h>
27#include <linux/slab.h>
28#include <linux/shm.h>
29#include <linux/personality.h>
30#include <linux/elfcore.h>
31#include <linux/init.h>
32#include <linux/highuid.h>
33#include <linux/smp.h>
34#include <linux/smp_lock.h>
35#include <linux/compiler.h>
36#include <linux/highmem.h>
37#include <linux/pagemap.h>
38#include <linux/security.h>
39#include <linux/syscalls.h>
40#include <linux/random.h>
Jesper Juhlf4e5cc22006-06-23 02:05:35 -070041#include <linux/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/uaccess.h>
43#include <asm/param.h>
44#include <asm/page.h>
45
Jesper Juhlf4e5cc22006-06-23 02:05:35 -070046static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs);
47static int load_elf_library(struct file *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static unsigned long elf_map (struct file *, unsigned long, struct elf_phdr *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#ifndef elf_addr_t
51#define elf_addr_t unsigned long
52#endif
53
54/*
55 * If we don't support core dumping, then supply a NULL so we
56 * don't even try.
57 */
Matt Mackall708e9a72006-01-08 01:05:25 -080058#if defined(USE_ELF_CORE_DUMP) && defined(CONFIG_ELF_CORE)
Jesper Juhlf4e5cc22006-06-23 02:05:35 -070059static int elf_core_dump(long signr, struct pt_regs *regs, struct file *file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#else
61#define elf_core_dump NULL
62#endif
63
64#if ELF_EXEC_PAGESIZE > PAGE_SIZE
Jesper Juhlf4e5cc22006-06-23 02:05:35 -070065#define ELF_MIN_ALIGN ELF_EXEC_PAGESIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#else
Jesper Juhlf4e5cc22006-06-23 02:05:35 -070067#define ELF_MIN_ALIGN PAGE_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#endif
69
70#ifndef ELF_CORE_EFLAGS
71#define ELF_CORE_EFLAGS 0
72#endif
73
74#define ELF_PAGESTART(_v) ((_v) & ~(unsigned long)(ELF_MIN_ALIGN-1))
75#define ELF_PAGEOFFSET(_v) ((_v) & (ELF_MIN_ALIGN-1))
76#define ELF_PAGEALIGN(_v) (((_v) + ELF_MIN_ALIGN - 1) & ~(ELF_MIN_ALIGN - 1))
77
78static struct linux_binfmt elf_format = {
79 .module = THIS_MODULE,
80 .load_binary = load_elf_binary,
81 .load_shlib = load_elf_library,
82 .core_dump = elf_core_dump,
83 .min_coredump = ELF_EXEC_PAGESIZE
84};
85
Chuck Ebbertce510592006-07-03 00:24:14 -070086#define BAD_ADDR(x) ((unsigned long)(x) >= TASK_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88static int set_brk(unsigned long start, unsigned long end)
89{
90 start = ELF_PAGEALIGN(start);
91 end = ELF_PAGEALIGN(end);
92 if (end > start) {
93 unsigned long addr;
94 down_write(&current->mm->mmap_sem);
95 addr = do_brk(start, end - start);
96 up_write(&current->mm->mmap_sem);
97 if (BAD_ADDR(addr))
98 return addr;
99 }
100 current->mm->start_brk = current->mm->brk = end;
101 return 0;
102}
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/* We need to explicitly zero any fractional pages
105 after the data section (i.e. bss). This would
106 contain the junk from the file that should not
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700107 be in memory
108 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static int padzero(unsigned long elf_bss)
110{
111 unsigned long nbyte;
112
113 nbyte = ELF_PAGEOFFSET(elf_bss);
114 if (nbyte) {
115 nbyte = ELF_MIN_ALIGN - nbyte;
116 if (clear_user((void __user *) elf_bss, nbyte))
117 return -EFAULT;
118 }
119 return 0;
120}
121
122/* Let's use some macros to make this stack manipulation a litle clearer */
123#ifdef CONFIG_STACK_GROWSUP
124#define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) + (items))
125#define STACK_ROUND(sp, items) \
126 ((15 + (unsigned long) ((sp) + (items))) &~ 15UL)
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700127#define STACK_ALLOC(sp, len) ({ \
128 elf_addr_t __user *old_sp = (elf_addr_t __user *)sp; sp += len; \
129 old_sp; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#else
131#define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) - (items))
132#define STACK_ROUND(sp, items) \
133 (((unsigned long) (sp - items)) &~ 15UL)
134#define STACK_ALLOC(sp, len) ({ sp -= len ; sp; })
135#endif
136
137static int
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700138create_elf_tables(struct linux_binprm *bprm, struct elfhdr *exec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 int interp_aout, unsigned long load_addr,
140 unsigned long interp_load_addr)
141{
142 unsigned long p = bprm->p;
143 int argc = bprm->argc;
144 int envc = bprm->envc;
145 elf_addr_t __user *argv;
146 elf_addr_t __user *envp;
147 elf_addr_t __user *sp;
148 elf_addr_t __user *u_platform;
149 const char *k_platform = ELF_PLATFORM;
150 int items;
151 elf_addr_t *elf_info;
152 int ei_index = 0;
153 struct task_struct *tsk = current;
154
155 /*
156 * If this architecture has a platform capability string, copy it
157 * to userspace. In some cases (Sparc), this info is impossible
158 * for userspace to get any other way, in others (i386) it is
159 * merely difficult.
160 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 u_platform = NULL;
162 if (k_platform) {
163 size_t len = strlen(k_platform) + 1;
164
165 /*
166 * In some cases (e.g. Hyper-Threading), we want to avoid L1
167 * evictions by the processes running on the same package. One
168 * thing we can do is to shuffle the initial stack for them.
169 */
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 p = arch_align_stack(p);
172
173 u_platform = (elf_addr_t __user *)STACK_ALLOC(p, len);
174 if (__copy_to_user(u_platform, k_platform, len))
175 return -EFAULT;
176 }
177
178 /* Create the ELF interpreter info */
Jesper Juhl785d5572006-06-23 02:05:35 -0700179 elf_info = (elf_addr_t *)current->mm->saved_auxv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#define NEW_AUX_ENT(id, val) \
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700181 do { \
Jesper Juhl785d5572006-06-23 02:05:35 -0700182 elf_info[ei_index++] = id; \
183 elf_info[ei_index++] = val; \
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700184 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186#ifdef ARCH_DLINFO
187 /*
188 * ARCH_DLINFO must come first so PPC can do its special alignment of
189 * AUXV.
190 */
191 ARCH_DLINFO;
192#endif
193 NEW_AUX_ENT(AT_HWCAP, ELF_HWCAP);
194 NEW_AUX_ENT(AT_PAGESZ, ELF_EXEC_PAGESIZE);
195 NEW_AUX_ENT(AT_CLKTCK, CLOCKS_PER_SEC);
196 NEW_AUX_ENT(AT_PHDR, load_addr + exec->e_phoff);
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700197 NEW_AUX_ENT(AT_PHENT, sizeof(struct elf_phdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 NEW_AUX_ENT(AT_PHNUM, exec->e_phnum);
199 NEW_AUX_ENT(AT_BASE, interp_load_addr);
200 NEW_AUX_ENT(AT_FLAGS, 0);
201 NEW_AUX_ENT(AT_ENTRY, exec->e_entry);
Jesper Juhl785d5572006-06-23 02:05:35 -0700202 NEW_AUX_ENT(AT_UID, tsk->uid);
203 NEW_AUX_ENT(AT_EUID, tsk->euid);
204 NEW_AUX_ENT(AT_GID, tsk->gid);
205 NEW_AUX_ENT(AT_EGID, tsk->egid);
206 NEW_AUX_ENT(AT_SECURE, security_bprm_secureexec(bprm));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (k_platform) {
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700208 NEW_AUX_ENT(AT_PLATFORM,
Jesper Juhl785d5572006-06-23 02:05:35 -0700209 (elf_addr_t)(unsigned long)u_platform);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211 if (bprm->interp_flags & BINPRM_FLAGS_EXECFD) {
Jesper Juhl785d5572006-06-23 02:05:35 -0700212 NEW_AUX_ENT(AT_EXECFD, bprm->interp_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214#undef NEW_AUX_ENT
215 /* AT_NULL is zero; clear the rest too */
216 memset(&elf_info[ei_index], 0,
217 sizeof current->mm->saved_auxv - ei_index * sizeof elf_info[0]);
218
219 /* And advance past the AT_NULL entry. */
220 ei_index += 2;
221
222 sp = STACK_ADD(p, ei_index);
223
224 items = (argc + 1) + (envc + 1);
225 if (interp_aout) {
226 items += 3; /* a.out interpreters require argv & envp too */
227 } else {
228 items += 1; /* ELF interpreters only put argc on the stack */
229 }
230 bprm->p = STACK_ROUND(sp, items);
231
232 /* Point sp at the lowest address on the stack */
233#ifdef CONFIG_STACK_GROWSUP
234 sp = (elf_addr_t __user *)bprm->p - items - ei_index;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700235 bprm->exec = (unsigned long)sp; /* XXX: PARISC HACK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236#else
237 sp = (elf_addr_t __user *)bprm->p;
238#endif
239
240 /* Now, let's put argc (and argv, envp if appropriate) on the stack */
241 if (__put_user(argc, sp++))
242 return -EFAULT;
243 if (interp_aout) {
244 argv = sp + 2;
245 envp = argv + argc + 1;
246 __put_user((elf_addr_t)(unsigned long)argv, sp++);
247 __put_user((elf_addr_t)(unsigned long)envp, sp++);
248 } else {
249 argv = sp;
250 envp = argv + argc + 1;
251 }
252
253 /* Populate argv and envp */
Greg Kroah-Hartmana84a5052005-05-11 00:10:44 -0700254 p = current->mm->arg_end = current->mm->arg_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 while (argc-- > 0) {
256 size_t len;
257 __put_user((elf_addr_t)p, argv++);
258 len = strnlen_user((void __user *)p, PAGE_SIZE*MAX_ARG_PAGES);
259 if (!len || len > PAGE_SIZE*MAX_ARG_PAGES)
260 return 0;
261 p += len;
262 }
263 if (__put_user(0, argv))
264 return -EFAULT;
265 current->mm->arg_end = current->mm->env_start = p;
266 while (envc-- > 0) {
267 size_t len;
268 __put_user((elf_addr_t)p, envp++);
269 len = strnlen_user((void __user *)p, PAGE_SIZE*MAX_ARG_PAGES);
270 if (!len || len > PAGE_SIZE*MAX_ARG_PAGES)
271 return 0;
272 p += len;
273 }
274 if (__put_user(0, envp))
275 return -EFAULT;
276 current->mm->env_end = p;
277
278 /* Put the elf_info on the stack in the right place. */
279 sp = (elf_addr_t __user *)envp + 1;
280 if (copy_to_user(sp, elf_info, ei_index * sizeof(elf_addr_t)))
281 return -EFAULT;
282 return 0;
283}
284
285#ifndef elf_map
286
287static unsigned long elf_map(struct file *filep, unsigned long addr,
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700288 struct elf_phdr *eppnt, int prot, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 unsigned long map_addr;
David Gibsondda6ebd2006-01-08 01:03:35 -0800291 unsigned long pageoffset = ELF_PAGEOFFSET(eppnt->p_vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 down_write(&current->mm->mmap_sem);
David Gibsondda6ebd2006-01-08 01:03:35 -0800294 /* mmap() will return -EINVAL if given a zero size, but a
295 * segment with zero filesize is perfectly valid */
296 if (eppnt->p_filesz + pageoffset)
297 map_addr = do_mmap(filep, ELF_PAGESTART(addr),
298 eppnt->p_filesz + pageoffset, prot, type,
299 eppnt->p_offset - pageoffset);
300 else
301 map_addr = ELF_PAGESTART(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 up_write(&current->mm->mmap_sem);
303 return(map_addr);
304}
305
306#endif /* !elf_map */
307
308/* This is much more generalized than the library routine read function,
309 so we keep this separate. Technically the library read function
310 is only provided so that we can read a.out libraries that have
311 an ELF header */
312
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700313static unsigned long load_elf_interp(struct elfhdr *interp_elf_ex,
314 struct file *interpreter, unsigned long *interp_load_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
316 struct elf_phdr *elf_phdata;
317 struct elf_phdr *eppnt;
318 unsigned long load_addr = 0;
319 int load_addr_set = 0;
320 unsigned long last_bss = 0, elf_bss = 0;
321 unsigned long error = ~0UL;
322 int retval, i, size;
323
324 /* First of all, some simple consistency checks */
325 if (interp_elf_ex->e_type != ET_EXEC &&
326 interp_elf_ex->e_type != ET_DYN)
327 goto out;
328 if (!elf_check_arch(interp_elf_ex))
329 goto out;
330 if (!interpreter->f_op || !interpreter->f_op->mmap)
331 goto out;
332
333 /*
334 * If the size of this structure has changed, then punt, since
335 * we will be doing the wrong thing.
336 */
337 if (interp_elf_ex->e_phentsize != sizeof(struct elf_phdr))
338 goto out;
339 if (interp_elf_ex->e_phnum < 1 ||
340 interp_elf_ex->e_phnum > 65536U / sizeof(struct elf_phdr))
341 goto out;
342
343 /* Now read in all of the header information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 size = sizeof(struct elf_phdr) * interp_elf_ex->e_phnum;
345 if (size > ELF_MIN_ALIGN)
346 goto out;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700347 elf_phdata = kmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (!elf_phdata)
349 goto out;
350
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700351 retval = kernel_read(interpreter, interp_elf_ex->e_phoff,
352 (char *)elf_phdata,size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 error = -EIO;
354 if (retval != size) {
355 if (retval < 0)
356 error = retval;
357 goto out_close;
358 }
359
360 eppnt = elf_phdata;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700361 for (i = 0; i < interp_elf_ex->e_phnum; i++, eppnt++) {
362 if (eppnt->p_type == PT_LOAD) {
363 int elf_type = MAP_PRIVATE | MAP_DENYWRITE;
364 int elf_prot = 0;
365 unsigned long vaddr = 0;
366 unsigned long k, map_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700368 if (eppnt->p_flags & PF_R)
369 elf_prot = PROT_READ;
370 if (eppnt->p_flags & PF_W)
371 elf_prot |= PROT_WRITE;
372 if (eppnt->p_flags & PF_X)
373 elf_prot |= PROT_EXEC;
374 vaddr = eppnt->p_vaddr;
375 if (interp_elf_ex->e_type == ET_EXEC || load_addr_set)
376 elf_type |= MAP_FIXED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700378 map_addr = elf_map(interpreter, load_addr + vaddr,
379 eppnt, elf_prot, elf_type);
380 error = map_addr;
381 if (BAD_ADDR(map_addr))
382 goto out_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700384 if (!load_addr_set &&
385 interp_elf_ex->e_type == ET_DYN) {
386 load_addr = map_addr - ELF_PAGESTART(vaddr);
387 load_addr_set = 1;
388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700390 /*
391 * Check to see if the section's size will overflow the
392 * allowed task size. Note that p_filesz must always be
393 * <= p_memsize so it's only necessary to check p_memsz.
394 */
395 k = load_addr + eppnt->p_vaddr;
Chuck Ebbertce510592006-07-03 00:24:14 -0700396 if (BAD_ADDR(k) ||
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700397 eppnt->p_filesz > eppnt->p_memsz ||
398 eppnt->p_memsz > TASK_SIZE ||
399 TASK_SIZE - eppnt->p_memsz < k) {
400 error = -ENOMEM;
401 goto out_close;
402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700404 /*
405 * Find the end of the file mapping for this phdr, and
406 * keep track of the largest address we see for this.
407 */
408 k = load_addr + eppnt->p_vaddr + eppnt->p_filesz;
409 if (k > elf_bss)
410 elf_bss = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700412 /*
413 * Do the same thing for the memory mapping - between
414 * elf_bss and last_bss is the bss section.
415 */
416 k = load_addr + eppnt->p_memsz + eppnt->p_vaddr;
417 if (k > last_bss)
418 last_bss = k;
419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
422 /*
423 * Now fill out the bss section. First pad the last page up
424 * to the page boundary, and then perform a mmap to make sure
425 * that there are zero-mapped pages up to and including the
426 * last bss page.
427 */
428 if (padzero(elf_bss)) {
429 error = -EFAULT;
430 goto out_close;
431 }
432
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700433 /* What we have mapped so far */
434 elf_bss = ELF_PAGESTART(elf_bss + ELF_MIN_ALIGN - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 /* Map the last of the bss segment */
437 if (last_bss > elf_bss) {
438 down_write(&current->mm->mmap_sem);
439 error = do_brk(elf_bss, last_bss - elf_bss);
440 up_write(&current->mm->mmap_sem);
441 if (BAD_ADDR(error))
442 goto out_close;
443 }
444
445 *interp_load_addr = load_addr;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700446 error = ((unsigned long)interp_elf_ex->e_entry) + load_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448out_close:
449 kfree(elf_phdata);
450out:
451 return error;
452}
453
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700454static unsigned long load_aout_interp(struct exec *interp_ex,
455 struct file *interpreter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 unsigned long text_data, elf_entry = ~0UL;
458 char __user * addr;
459 loff_t offset;
460
461 current->mm->end_code = interp_ex->a_text;
462 text_data = interp_ex->a_text + interp_ex->a_data;
463 current->mm->end_data = text_data;
464 current->mm->brk = interp_ex->a_bss + text_data;
465
466 switch (N_MAGIC(*interp_ex)) {
467 case OMAGIC:
468 offset = 32;
469 addr = (char __user *)0;
470 break;
471 case ZMAGIC:
472 case QMAGIC:
473 offset = N_TXTOFF(*interp_ex);
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700474 addr = (char __user *)N_TXTADDR(*interp_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
476 default:
477 goto out;
478 }
479
480 down_write(&current->mm->mmap_sem);
481 do_brk(0, text_data);
482 up_write(&current->mm->mmap_sem);
483 if (!interpreter->f_op || !interpreter->f_op->read)
484 goto out;
485 if (interpreter->f_op->read(interpreter, addr, text_data, &offset) < 0)
486 goto out;
487 flush_icache_range((unsigned long)addr,
488 (unsigned long)addr + text_data);
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 down_write(&current->mm->mmap_sem);
491 do_brk(ELF_PAGESTART(text_data + ELF_MIN_ALIGN - 1),
492 interp_ex->a_bss);
493 up_write(&current->mm->mmap_sem);
494 elf_entry = interp_ex->a_entry;
495
496out:
497 return elf_entry;
498}
499
500/*
501 * These are the functions used to load ELF style executables and shared
502 * libraries. There is no binary dependent code anywhere else.
503 */
504
505#define INTERPRETER_NONE 0
506#define INTERPRETER_AOUT 1
507#define INTERPRETER_ELF 2
508
Andi Kleen913bd902006-03-25 16:29:09 +0100509#ifndef STACK_RND_MASK
510#define STACK_RND_MASK 0x7ff /* with 4K pages 8MB of VA */
511#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513static unsigned long randomize_stack_top(unsigned long stack_top)
514{
515 unsigned int random_variable = 0;
516
Andi Kleenc16b63e2006-09-26 10:52:28 +0200517 if ((current->flags & PF_RANDOMIZE) &&
518 !(current->personality & ADDR_NO_RANDOMIZE)) {
Andi Kleen913bd902006-03-25 16:29:09 +0100519 random_variable = get_random_int() & STACK_RND_MASK;
520 random_variable <<= PAGE_SHIFT;
521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522#ifdef CONFIG_STACK_GROWSUP
Andi Kleen913bd902006-03-25 16:29:09 +0100523 return PAGE_ALIGN(stack_top) + random_variable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524#else
Andi Kleen913bd902006-03-25 16:29:09 +0100525 return PAGE_ALIGN(stack_top) - random_variable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526#endif
527}
528
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700529static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 struct file *interpreter = NULL; /* to shut gcc up */
532 unsigned long load_addr = 0, load_bias = 0;
533 int load_addr_set = 0;
534 char * elf_interpreter = NULL;
535 unsigned int interpreter_type = INTERPRETER_NONE;
536 unsigned char ibcs2_interpreter = 0;
537 unsigned long error;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700538 struct elf_phdr *elf_ppnt, *elf_phdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 unsigned long elf_bss, elf_brk;
540 int elf_exec_fileno;
541 int retval, i;
542 unsigned int size;
543 unsigned long elf_entry, interp_load_addr = 0;
544 unsigned long start_code, end_code, start_data, end_data;
545 unsigned long reloc_func_desc = 0;
546 char passed_fileno[6];
547 struct files_struct *files;
548 int have_pt_gnu_stack, executable_stack = EXSTACK_DEFAULT;
549 unsigned long def_flags = 0;
550 struct {
551 struct elfhdr elf_ex;
552 struct elfhdr interp_elf_ex;
553 struct exec interp_ex;
554 } *loc;
555
556 loc = kmalloc(sizeof(*loc), GFP_KERNEL);
557 if (!loc) {
558 retval = -ENOMEM;
559 goto out_ret;
560 }
561
562 /* Get the exec-header */
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700563 loc->elf_ex = *((struct elfhdr *)bprm->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 retval = -ENOEXEC;
566 /* First of all, some simple consistency checks */
567 if (memcmp(loc->elf_ex.e_ident, ELFMAG, SELFMAG) != 0)
568 goto out;
569
570 if (loc->elf_ex.e_type != ET_EXEC && loc->elf_ex.e_type != ET_DYN)
571 goto out;
572 if (!elf_check_arch(&loc->elf_ex))
573 goto out;
574 if (!bprm->file->f_op||!bprm->file->f_op->mmap)
575 goto out;
576
577 /* Now read in all of the header information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (loc->elf_ex.e_phentsize != sizeof(struct elf_phdr))
579 goto out;
580 if (loc->elf_ex.e_phnum < 1 ||
581 loc->elf_ex.e_phnum > 65536U / sizeof(struct elf_phdr))
582 goto out;
583 size = loc->elf_ex.e_phnum * sizeof(struct elf_phdr);
584 retval = -ENOMEM;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700585 elf_phdata = kmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (!elf_phdata)
587 goto out;
588
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700589 retval = kernel_read(bprm->file, loc->elf_ex.e_phoff,
590 (char *)elf_phdata, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (retval != size) {
592 if (retval >= 0)
593 retval = -EIO;
594 goto out_free_ph;
595 }
596
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700597 files = current->files; /* Refcounted so ok */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 retval = unshare_files();
599 if (retval < 0)
600 goto out_free_ph;
601 if (files == current->files) {
602 put_files_struct(files);
603 files = NULL;
604 }
605
606 /* exec will make our files private anyway, but for the a.out
607 loader stuff we need to do it earlier */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 retval = get_unused_fd();
609 if (retval < 0)
610 goto out_free_fh;
611 get_file(bprm->file);
612 fd_install(elf_exec_fileno = retval, bprm->file);
613
614 elf_ppnt = elf_phdata;
615 elf_bss = 0;
616 elf_brk = 0;
617
618 start_code = ~0UL;
619 end_code = 0;
620 start_data = 0;
621 end_data = 0;
622
623 for (i = 0; i < loc->elf_ex.e_phnum; i++) {
624 if (elf_ppnt->p_type == PT_INTERP) {
625 /* This is the program interpreter used for
626 * shared libraries - for now assume that this
627 * is an a.out format binary
628 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 retval = -ENOEXEC;
630 if (elf_ppnt->p_filesz > PATH_MAX ||
631 elf_ppnt->p_filesz < 2)
632 goto out_free_file;
633
634 retval = -ENOMEM;
Jesper Juhl792db3a2006-01-09 20:54:45 -0800635 elf_interpreter = kmalloc(elf_ppnt->p_filesz,
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700636 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (!elf_interpreter)
638 goto out_free_file;
639
640 retval = kernel_read(bprm->file, elf_ppnt->p_offset,
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700641 elf_interpreter,
642 elf_ppnt->p_filesz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (retval != elf_ppnt->p_filesz) {
644 if (retval >= 0)
645 retval = -EIO;
646 goto out_free_interp;
647 }
648 /* make sure path is NULL terminated */
649 retval = -ENOEXEC;
650 if (elf_interpreter[elf_ppnt->p_filesz - 1] != '\0')
651 goto out_free_interp;
652
653 /* If the program interpreter is one of these two,
654 * then assume an iBCS2 image. Otherwise assume
655 * a native linux image.
656 */
657 if (strcmp(elf_interpreter,"/usr/lib/libc.so.1") == 0 ||
658 strcmp(elf_interpreter,"/usr/lib/ld.so.1") == 0)
659 ibcs2_interpreter = 1;
660
661 /*
662 * The early SET_PERSONALITY here is so that the lookup
663 * for the interpreter happens in the namespace of the
664 * to-be-execed image. SET_PERSONALITY can select an
665 * alternate root.
666 *
667 * However, SET_PERSONALITY is NOT allowed to switch
668 * this task into the new images's memory mapping
669 * policy - that is, TASK_SIZE must still evaluate to
670 * that which is appropriate to the execing application.
671 * This is because exit_mmap() needs to have TASK_SIZE
672 * evaluate to the size of the old image.
673 *
674 * So if (say) a 64-bit application is execing a 32-bit
675 * application it is the architecture's responsibility
676 * to defer changing the value of TASK_SIZE until the
677 * switch really is going to happen - do this in
678 * flush_thread(). - akpm
679 */
680 SET_PERSONALITY(loc->elf_ex, ibcs2_interpreter);
681
682 interpreter = open_exec(elf_interpreter);
683 retval = PTR_ERR(interpreter);
684 if (IS_ERR(interpreter))
685 goto out_free_interp;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700686 retval = kernel_read(interpreter, 0, bprm->buf,
687 BINPRM_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (retval != BINPRM_BUF_SIZE) {
689 if (retval >= 0)
690 retval = -EIO;
691 goto out_free_dentry;
692 }
693
694 /* Get the exec headers */
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700695 loc->interp_ex = *((struct exec *)bprm->buf);
696 loc->interp_elf_ex = *((struct elfhdr *)bprm->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 break;
698 }
699 elf_ppnt++;
700 }
701
702 elf_ppnt = elf_phdata;
703 for (i = 0; i < loc->elf_ex.e_phnum; i++, elf_ppnt++)
704 if (elf_ppnt->p_type == PT_GNU_STACK) {
705 if (elf_ppnt->p_flags & PF_X)
706 executable_stack = EXSTACK_ENABLE_X;
707 else
708 executable_stack = EXSTACK_DISABLE_X;
709 break;
710 }
711 have_pt_gnu_stack = (i < loc->elf_ex.e_phnum);
712
713 /* Some simple consistency checks for the interpreter */
714 if (elf_interpreter) {
715 interpreter_type = INTERPRETER_ELF | INTERPRETER_AOUT;
716
717 /* Now figure out which format our binary is */
718 if ((N_MAGIC(loc->interp_ex) != OMAGIC) &&
719 (N_MAGIC(loc->interp_ex) != ZMAGIC) &&
720 (N_MAGIC(loc->interp_ex) != QMAGIC))
721 interpreter_type = INTERPRETER_ELF;
722
723 if (memcmp(loc->interp_elf_ex.e_ident, ELFMAG, SELFMAG) != 0)
724 interpreter_type &= ~INTERPRETER_ELF;
725
726 retval = -ELIBBAD;
727 if (!interpreter_type)
728 goto out_free_dentry;
729
730 /* Make sure only one type was selected */
731 if ((interpreter_type & INTERPRETER_ELF) &&
732 interpreter_type != INTERPRETER_ELF) {
733 // FIXME - ratelimit this before re-enabling
734 // printk(KERN_WARNING "ELF: Ambiguous type, using ELF\n");
735 interpreter_type = INTERPRETER_ELF;
736 }
737 /* Verify the interpreter has a valid arch */
738 if ((interpreter_type == INTERPRETER_ELF) &&
739 !elf_check_arch(&loc->interp_elf_ex))
740 goto out_free_dentry;
741 } else {
742 /* Executables without an interpreter also need a personality */
743 SET_PERSONALITY(loc->elf_ex, ibcs2_interpreter);
744 }
745
746 /* OK, we are done with that, now set up the arg stuff,
747 and then start this sucker up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if ((!bprm->sh_bang) && (interpreter_type == INTERPRETER_AOUT)) {
749 char *passed_p = passed_fileno;
750 sprintf(passed_fileno, "%d", elf_exec_fileno);
751
752 if (elf_interpreter) {
753 retval = copy_strings_kernel(1, &passed_p, bprm);
754 if (retval)
755 goto out_free_dentry;
756 bprm->argc++;
757 }
758 }
759
760 /* Flush all traces of the currently running executable */
761 retval = flush_old_exec(bprm);
762 if (retval)
763 goto out_free_dentry;
764
765 /* Discard our unneeded old files struct */
766 if (files) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 put_files_struct(files);
768 files = NULL;
769 }
770
771 /* OK, This is the point of no return */
772 current->mm->start_data = 0;
773 current->mm->end_data = 0;
774 current->mm->end_code = 0;
775 current->mm->mmap = NULL;
776 current->flags &= ~PF_FORKNOEXEC;
777 current->mm->def_flags = def_flags;
778
779 /* Do this immediately, since STACK_TOP as used in setup_arg_pages
780 may depend on the personality. */
781 SET_PERSONALITY(loc->elf_ex, ibcs2_interpreter);
782 if (elf_read_implies_exec(loc->elf_ex, executable_stack))
783 current->personality |= READ_IMPLIES_EXEC;
784
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700785 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 current->flags |= PF_RANDOMIZE;
787 arch_pick_mmap_layout(current->mm);
788
789 /* Do this so that we can load the interpreter, if need be. We will
790 change some of these later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 current->mm->free_area_cache = current->mm->mmap_base;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -0700792 current->mm->cached_hole_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 retval = setup_arg_pages(bprm, randomize_stack_top(STACK_TOP),
794 executable_stack);
795 if (retval < 0) {
796 send_sig(SIGKILL, current, 0);
797 goto out_free_dentry;
798 }
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 current->mm->start_stack = bprm->p;
801
802 /* Now we do a little grungy work by mmaping the ELF image into
803 the correct location in memory. At this point, we assume that
804 the image should be loaded at fixed address, not at a variable
805 address. */
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700806 for(i = 0, elf_ppnt = elf_phdata;
807 i < loc->elf_ex.e_phnum; i++, elf_ppnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 int elf_prot = 0, elf_flags;
809 unsigned long k, vaddr;
810
811 if (elf_ppnt->p_type != PT_LOAD)
812 continue;
813
814 if (unlikely (elf_brk > elf_bss)) {
815 unsigned long nbyte;
816
817 /* There was a PT_LOAD segment with p_memsz > p_filesz
818 before this one. Map anonymous pages, if needed,
819 and clear the area. */
820 retval = set_brk (elf_bss + load_bias,
821 elf_brk + load_bias);
822 if (retval) {
823 send_sig(SIGKILL, current, 0);
824 goto out_free_dentry;
825 }
826 nbyte = ELF_PAGEOFFSET(elf_bss);
827 if (nbyte) {
828 nbyte = ELF_MIN_ALIGN - nbyte;
829 if (nbyte > elf_brk - elf_bss)
830 nbyte = elf_brk - elf_bss;
831 if (clear_user((void __user *)elf_bss +
832 load_bias, nbyte)) {
833 /*
834 * This bss-zeroing can fail if the ELF
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700835 * file specifies odd protections. So
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 * we don't check the return value
837 */
838 }
839 }
840 }
841
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700842 if (elf_ppnt->p_flags & PF_R)
843 elf_prot |= PROT_READ;
844 if (elf_ppnt->p_flags & PF_W)
845 elf_prot |= PROT_WRITE;
846 if (elf_ppnt->p_flags & PF_X)
847 elf_prot |= PROT_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700849 elf_flags = MAP_PRIVATE | MAP_DENYWRITE | MAP_EXECUTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 vaddr = elf_ppnt->p_vaddr;
852 if (loc->elf_ex.e_type == ET_EXEC || load_addr_set) {
853 elf_flags |= MAP_FIXED;
854 } else if (loc->elf_ex.e_type == ET_DYN) {
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700855 /* Try and get dynamic programs out of the way of the
856 * default mmap base, as well as whatever program they
857 * might try to exec. This is because the brk will
858 * follow the loader, and is not movable. */
Marcus Meissner59287c02006-12-06 20:36:24 -0800859 if (current->flags & PF_RANDOMIZE)
860 load_bias = randomize_range(0x10000,
861 ELF_ET_DYN_BASE,
862 0);
863 else
864 load_bias = ELF_ET_DYN_BASE;
865 load_bias = ELF_PAGESTART(load_bias - vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700868 error = elf_map(bprm->file, load_bias + vaddr, elf_ppnt,
869 elf_prot, elf_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (BAD_ADDR(error)) {
871 send_sig(SIGKILL, current, 0);
872 goto out_free_dentry;
873 }
874
875 if (!load_addr_set) {
876 load_addr_set = 1;
877 load_addr = (elf_ppnt->p_vaddr - elf_ppnt->p_offset);
878 if (loc->elf_ex.e_type == ET_DYN) {
879 load_bias += error -
880 ELF_PAGESTART(load_bias + vaddr);
881 load_addr += load_bias;
882 reloc_func_desc = load_bias;
883 }
884 }
885 k = elf_ppnt->p_vaddr;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700886 if (k < start_code)
887 start_code = k;
888 if (start_data < k)
889 start_data = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 /*
892 * Check to see if the section's size will overflow the
893 * allowed task size. Note that p_filesz must always be
894 * <= p_memsz so it is only necessary to check p_memsz.
895 */
Chuck Ebbertce510592006-07-03 00:24:14 -0700896 if (BAD_ADDR(k) || elf_ppnt->p_filesz > elf_ppnt->p_memsz ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 elf_ppnt->p_memsz > TASK_SIZE ||
898 TASK_SIZE - elf_ppnt->p_memsz < k) {
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700899 /* set_brk can never work. Avoid overflows. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 send_sig(SIGKILL, current, 0);
901 goto out_free_dentry;
902 }
903
904 k = elf_ppnt->p_vaddr + elf_ppnt->p_filesz;
905
906 if (k > elf_bss)
907 elf_bss = k;
908 if ((elf_ppnt->p_flags & PF_X) && end_code < k)
909 end_code = k;
910 if (end_data < k)
911 end_data = k;
912 k = elf_ppnt->p_vaddr + elf_ppnt->p_memsz;
913 if (k > elf_brk)
914 elf_brk = k;
915 }
916
917 loc->elf_ex.e_entry += load_bias;
918 elf_bss += load_bias;
919 elf_brk += load_bias;
920 start_code += load_bias;
921 end_code += load_bias;
922 start_data += load_bias;
923 end_data += load_bias;
924
925 /* Calling set_brk effectively mmaps the pages that we need
926 * for the bss and break sections. We must do this before
927 * mapping in the interpreter, to make sure it doesn't wind
928 * up getting placed where the bss needs to go.
929 */
930 retval = set_brk(elf_bss, elf_brk);
931 if (retval) {
932 send_sig(SIGKILL, current, 0);
933 goto out_free_dentry;
934 }
akpm@osdl.org6de50512005-10-11 08:29:08 -0700935 if (likely(elf_bss != elf_brk) && unlikely(padzero(elf_bss))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 send_sig(SIGSEGV, current, 0);
937 retval = -EFAULT; /* Nobody gets to see this, but.. */
938 goto out_free_dentry;
939 }
940
941 if (elf_interpreter) {
942 if (interpreter_type == INTERPRETER_AOUT)
943 elf_entry = load_aout_interp(&loc->interp_ex,
944 interpreter);
945 else
946 elf_entry = load_elf_interp(&loc->interp_elf_ex,
947 interpreter,
948 &interp_load_addr);
949 if (BAD_ADDR(elf_entry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 force_sig(SIGSEGV, current);
Chuck Ebbertce510592006-07-03 00:24:14 -0700951 retval = IS_ERR((void *)elf_entry) ?
952 (int)elf_entry : -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 goto out_free_dentry;
954 }
955 reloc_func_desc = interp_load_addr;
956
957 allow_write_access(interpreter);
958 fput(interpreter);
959 kfree(elf_interpreter);
960 } else {
961 elf_entry = loc->elf_ex.e_entry;
Suresh Siddha5342fba2006-02-26 04:18:28 +0100962 if (BAD_ADDR(elf_entry)) {
Chuck Ebbertce510592006-07-03 00:24:14 -0700963 force_sig(SIGSEGV, current);
964 retval = -EINVAL;
Suresh Siddha5342fba2006-02-26 04:18:28 +0100965 goto out_free_dentry;
966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 }
968
969 kfree(elf_phdata);
970
971 if (interpreter_type != INTERPRETER_AOUT)
972 sys_close(elf_exec_fileno);
973
974 set_binfmt(&elf_format);
975
Benjamin Herrenschmidt547ee842005-04-16 15:24:35 -0700976#ifdef ARCH_HAS_SETUP_ADDITIONAL_PAGES
977 retval = arch_setup_additional_pages(bprm, executable_stack);
978 if (retval < 0) {
979 send_sig(SIGKILL, current, 0);
Roland McGrath18c8baf2005-04-28 15:17:19 -0700980 goto out;
Benjamin Herrenschmidt547ee842005-04-16 15:24:35 -0700981 }
982#endif /* ARCH_HAS_SETUP_ADDITIONAL_PAGES */
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 compute_creds(bprm);
985 current->flags &= ~PF_FORKNOEXEC;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700986 create_elf_tables(bprm, &loc->elf_ex,
987 (interpreter_type == INTERPRETER_AOUT),
988 load_addr, interp_load_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 /* N.B. passed_fileno might not be initialized? */
990 if (interpreter_type == INTERPRETER_AOUT)
991 current->mm->arg_start += strlen(passed_fileno) + 1;
992 current->mm->end_code = end_code;
993 current->mm->start_code = start_code;
994 current->mm->start_data = start_data;
995 current->mm->end_data = end_data;
996 current->mm->start_stack = bprm->p;
997
998 if (current->personality & MMAP_PAGE_ZERO) {
999 /* Why this, you ask??? Well SVr4 maps page 0 as read-only,
1000 and some applications "depend" upon this behavior.
1001 Since we do not have the power to recompile these, we
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001002 emulate the SVr4 behavior. Sigh. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 down_write(&current->mm->mmap_sem);
1004 error = do_mmap(NULL, 0, PAGE_SIZE, PROT_READ | PROT_EXEC,
1005 MAP_FIXED | MAP_PRIVATE, 0);
1006 up_write(&current->mm->mmap_sem);
1007 }
1008
1009#ifdef ELF_PLAT_INIT
1010 /*
1011 * The ABI may specify that certain registers be set up in special
1012 * ways (on i386 %edx is the address of a DT_FINI function, for
1013 * example. In addition, it may also specify (eg, PowerPC64 ELF)
1014 * that the e_entry field is the address of the function descriptor
1015 * for the startup routine, rather than the address of the startup
1016 * routine itself. This macro performs whatever initialization to
1017 * the regs structure is required as well as any relocations to the
1018 * function descriptor entries when executing dynamically links apps.
1019 */
1020 ELF_PLAT_INIT(regs, reloc_func_desc);
1021#endif
1022
1023 start_thread(regs, elf_entry, bprm->p);
1024 if (unlikely(current->ptrace & PT_PTRACED)) {
1025 if (current->ptrace & PT_TRACE_EXEC)
1026 ptrace_notify ((PTRACE_EVENT_EXEC << 8) | SIGTRAP);
1027 else
1028 send_sig(SIGTRAP, current, 0);
1029 }
1030 retval = 0;
1031out:
1032 kfree(loc);
1033out_ret:
1034 return retval;
1035
1036 /* error cleanup */
1037out_free_dentry:
1038 allow_write_access(interpreter);
1039 if (interpreter)
1040 fput(interpreter);
1041out_free_interp:
Jesper Juhlf99d49a2005-11-07 01:01:34 -08001042 kfree(elf_interpreter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043out_free_file:
1044 sys_close(elf_exec_fileno);
1045out_free_fh:
Kirill Korotaev3b9b8ab2006-09-29 02:00:05 -07001046 if (files)
1047 reset_files_struct(current, files);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048out_free_ph:
1049 kfree(elf_phdata);
1050 goto out;
1051}
1052
1053/* This is really simpleminded and specialized - we are loading an
1054 a.out library that is given an ELF header. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055static int load_elf_library(struct file *file)
1056{
1057 struct elf_phdr *elf_phdata;
1058 struct elf_phdr *eppnt;
1059 unsigned long elf_bss, bss, len;
1060 int retval, error, i, j;
1061 struct elfhdr elf_ex;
1062
1063 error = -ENOEXEC;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001064 retval = kernel_read(file, 0, (char *)&elf_ex, sizeof(elf_ex));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (retval != sizeof(elf_ex))
1066 goto out;
1067
1068 if (memcmp(elf_ex.e_ident, ELFMAG, SELFMAG) != 0)
1069 goto out;
1070
1071 /* First of all, some simple consistency checks */
1072 if (elf_ex.e_type != ET_EXEC || elf_ex.e_phnum > 2 ||
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001073 !elf_check_arch(&elf_ex) || !file->f_op || !file->f_op->mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 goto out;
1075
1076 /* Now read in all of the header information */
1077
1078 j = sizeof(struct elf_phdr) * elf_ex.e_phnum;
1079 /* j < ELF_MIN_ALIGN because elf_ex.e_phnum <= 2 */
1080
1081 error = -ENOMEM;
1082 elf_phdata = kmalloc(j, GFP_KERNEL);
1083 if (!elf_phdata)
1084 goto out;
1085
1086 eppnt = elf_phdata;
1087 error = -ENOEXEC;
1088 retval = kernel_read(file, elf_ex.e_phoff, (char *)eppnt, j);
1089 if (retval != j)
1090 goto out_free_ph;
1091
1092 for (j = 0, i = 0; i<elf_ex.e_phnum; i++)
1093 if ((eppnt + i)->p_type == PT_LOAD)
1094 j++;
1095 if (j != 1)
1096 goto out_free_ph;
1097
1098 while (eppnt->p_type != PT_LOAD)
1099 eppnt++;
1100
1101 /* Now use mmap to map the library into memory. */
1102 down_write(&current->mm->mmap_sem);
1103 error = do_mmap(file,
1104 ELF_PAGESTART(eppnt->p_vaddr),
1105 (eppnt->p_filesz +
1106 ELF_PAGEOFFSET(eppnt->p_vaddr)),
1107 PROT_READ | PROT_WRITE | PROT_EXEC,
1108 MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE,
1109 (eppnt->p_offset -
1110 ELF_PAGEOFFSET(eppnt->p_vaddr)));
1111 up_write(&current->mm->mmap_sem);
1112 if (error != ELF_PAGESTART(eppnt->p_vaddr))
1113 goto out_free_ph;
1114
1115 elf_bss = eppnt->p_vaddr + eppnt->p_filesz;
1116 if (padzero(elf_bss)) {
1117 error = -EFAULT;
1118 goto out_free_ph;
1119 }
1120
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001121 len = ELF_PAGESTART(eppnt->p_filesz + eppnt->p_vaddr +
1122 ELF_MIN_ALIGN - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 bss = eppnt->p_memsz + eppnt->p_vaddr;
1124 if (bss > len) {
1125 down_write(&current->mm->mmap_sem);
1126 do_brk(len, bss - len);
1127 up_write(&current->mm->mmap_sem);
1128 }
1129 error = 0;
1130
1131out_free_ph:
1132 kfree(elf_phdata);
1133out:
1134 return error;
1135}
1136
1137/*
1138 * Note that some platforms still use traditional core dumps and not
1139 * the ELF core dump. Each platform can select it as appropriate.
1140 */
Matt Mackall708e9a72006-01-08 01:05:25 -08001141#if defined(USE_ELF_CORE_DUMP) && defined(CONFIG_ELF_CORE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143/*
1144 * ELF core dumper
1145 *
1146 * Modelled on fs/exec.c:aout_core_dump()
1147 * Jeremy Fitzhardinge <jeremy@sw.oz.au>
1148 */
1149/*
1150 * These are the only things you should do on a core-file: use only these
1151 * functions to write out all the necessary info.
1152 */
1153static int dump_write(struct file *file, const void *addr, int nr)
1154{
1155 return file->f_op->write(file, addr, nr, &file->f_pos) == nr;
1156}
1157
Daniel Jacobowitz5db92852005-06-15 22:26:34 -07001158static int dump_seek(struct file *file, loff_t off)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Andi Kleend025c9d2006-09-30 23:29:28 -07001160 if (file->f_op->llseek && file->f_op->llseek != no_llseek) {
Petr Vandrovec7f14daa2006-10-13 04:13:16 +02001161 if (file->f_op->llseek(file, off, SEEK_CUR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return 0;
Andi Kleend025c9d2006-09-30 23:29:28 -07001163 } else {
1164 char *buf = (char *)get_zeroed_page(GFP_KERNEL);
1165 if (!buf)
1166 return 0;
1167 while (off > 0) {
1168 unsigned long n = off;
1169 if (n > PAGE_SIZE)
1170 n = PAGE_SIZE;
1171 if (!dump_write(file, buf, n))
1172 return 0;
1173 off -= n;
1174 }
1175 free_page((unsigned long)buf);
1176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return 1;
1178}
1179
1180/*
1181 * Decide whether a segment is worth dumping; default is yes to be
1182 * sure (missing info is worse than too much; etc).
1183 * Personally I'd include everything, and use the coredump limit...
1184 *
1185 * I think we should skip something. But I am not sure how. H.J.
1186 */
1187static int maydump(struct vm_area_struct *vma)
1188{
1189 /* Do not dump I/O mapped devices or special mappings */
1190 if (vma->vm_flags & (VM_IO | VM_RESERVED))
1191 return 0;
1192
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001193 /* Dump shared memory only if mapped from an anonymous file. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (vma->vm_flags & VM_SHARED)
1195 return vma->vm_file->f_dentry->d_inode->i_nlink == 0;
1196
1197 /* If it hasn't been written to, don't write it out */
1198 if (!vma->anon_vma)
1199 return 0;
1200
1201 return 1;
1202}
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204/* An ELF note in memory */
1205struct memelfnote
1206{
1207 const char *name;
1208 int type;
1209 unsigned int datasz;
1210 void *data;
1211};
1212
1213static int notesize(struct memelfnote *en)
1214{
1215 int sz;
1216
1217 sz = sizeof(struct elf_note);
1218 sz += roundup(strlen(en->name) + 1, 4);
1219 sz += roundup(en->datasz, 4);
1220
1221 return sz;
1222}
1223
Andi Kleend025c9d2006-09-30 23:29:28 -07001224#define DUMP_WRITE(addr, nr, foffset) \
1225 do { if (!dump_write(file, (addr), (nr))) return 0; *foffset += (nr); } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Andi Kleend025c9d2006-09-30 23:29:28 -07001227static int alignfile(struct file *file, loff_t *foffset)
1228{
Petr Vandroveca7a0d862006-10-13 18:42:07 +02001229 static const char buf[4] = { 0, };
Andi Kleend025c9d2006-09-30 23:29:28 -07001230 DUMP_WRITE(buf, roundup(*foffset, 4) - *foffset, foffset);
1231 return 1;
1232}
1233
1234static int writenote(struct memelfnote *men, struct file *file,
1235 loff_t *foffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
1237 struct elf_note en;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 en.n_namesz = strlen(men->name) + 1;
1239 en.n_descsz = men->datasz;
1240 en.n_type = men->type;
1241
Andi Kleend025c9d2006-09-30 23:29:28 -07001242 DUMP_WRITE(&en, sizeof(en), foffset);
1243 DUMP_WRITE(men->name, en.n_namesz, foffset);
1244 if (!alignfile(file, foffset))
1245 return 0;
1246 DUMP_WRITE(men->data, men->datasz, foffset);
1247 if (!alignfile(file, foffset))
1248 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 return 1;
1251}
1252#undef DUMP_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254#define DUMP_WRITE(addr, nr) \
1255 if ((size += (nr)) > limit || !dump_write(file, (addr), (nr))) \
1256 goto end_coredump;
1257#define DUMP_SEEK(off) \
1258 if (!dump_seek(file, (off))) \
1259 goto end_coredump;
1260
Arjan van de Ven858119e2006-01-14 13:20:43 -08001261static void fill_elf_header(struct elfhdr *elf, int segs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
1263 memcpy(elf->e_ident, ELFMAG, SELFMAG);
1264 elf->e_ident[EI_CLASS] = ELF_CLASS;
1265 elf->e_ident[EI_DATA] = ELF_DATA;
1266 elf->e_ident[EI_VERSION] = EV_CURRENT;
1267 elf->e_ident[EI_OSABI] = ELF_OSABI;
1268 memset(elf->e_ident+EI_PAD, 0, EI_NIDENT-EI_PAD);
1269
1270 elf->e_type = ET_CORE;
1271 elf->e_machine = ELF_ARCH;
1272 elf->e_version = EV_CURRENT;
1273 elf->e_entry = 0;
1274 elf->e_phoff = sizeof(struct elfhdr);
1275 elf->e_shoff = 0;
1276 elf->e_flags = ELF_CORE_EFLAGS;
1277 elf->e_ehsize = sizeof(struct elfhdr);
1278 elf->e_phentsize = sizeof(struct elf_phdr);
1279 elf->e_phnum = segs;
1280 elf->e_shentsize = 0;
1281 elf->e_shnum = 0;
1282 elf->e_shstrndx = 0;
1283 return;
1284}
1285
Andrew Morton8d6b5eee2006-09-25 23:32:04 -07001286static void fill_elf_note_phdr(struct elf_phdr *phdr, int sz, loff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
1288 phdr->p_type = PT_NOTE;
1289 phdr->p_offset = offset;
1290 phdr->p_vaddr = 0;
1291 phdr->p_paddr = 0;
1292 phdr->p_filesz = sz;
1293 phdr->p_memsz = 0;
1294 phdr->p_flags = 0;
1295 phdr->p_align = 0;
1296 return;
1297}
1298
1299static void fill_note(struct memelfnote *note, const char *name, int type,
1300 unsigned int sz, void *data)
1301{
1302 note->name = name;
1303 note->type = type;
1304 note->datasz = sz;
1305 note->data = data;
1306 return;
1307}
1308
1309/*
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001310 * fill up all the fields in prstatus from the given task struct, except
1311 * registers which need to be filled up separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 */
1313static void fill_prstatus(struct elf_prstatus *prstatus,
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001314 struct task_struct *p, long signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
1316 prstatus->pr_info.si_signo = prstatus->pr_cursig = signr;
1317 prstatus->pr_sigpend = p->pending.signal.sig[0];
1318 prstatus->pr_sighold = p->blocked.sig[0];
1319 prstatus->pr_pid = p->pid;
1320 prstatus->pr_ppid = p->parent->pid;
1321 prstatus->pr_pgrp = process_group(p);
1322 prstatus->pr_sid = p->signal->session;
1323 if (thread_group_leader(p)) {
1324 /*
1325 * This is the record for the group leader. Add in the
1326 * cumulative times of previous dead threads. This total
1327 * won't include the time of each live thread whose state
1328 * is included in the core dump. The final total reported
1329 * to our parent process when it calls wait4 will include
1330 * those sums as well as the little bit more time it takes
1331 * this and each other thread to finish dying after the
1332 * core dump synchronization phase.
1333 */
1334 cputime_to_timeval(cputime_add(p->utime, p->signal->utime),
1335 &prstatus->pr_utime);
1336 cputime_to_timeval(cputime_add(p->stime, p->signal->stime),
1337 &prstatus->pr_stime);
1338 } else {
1339 cputime_to_timeval(p->utime, &prstatus->pr_utime);
1340 cputime_to_timeval(p->stime, &prstatus->pr_stime);
1341 }
1342 cputime_to_timeval(p->signal->cutime, &prstatus->pr_cutime);
1343 cputime_to_timeval(p->signal->cstime, &prstatus->pr_cstime);
1344}
1345
1346static int fill_psinfo(struct elf_prpsinfo *psinfo, struct task_struct *p,
1347 struct mm_struct *mm)
1348{
Greg Kroah-Hartmana84a5052005-05-11 00:10:44 -07001349 unsigned int i, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 /* first copy the parameters from user space */
1352 memset(psinfo, 0, sizeof(struct elf_prpsinfo));
1353
1354 len = mm->arg_end - mm->arg_start;
1355 if (len >= ELF_PRARGSZ)
1356 len = ELF_PRARGSZ-1;
1357 if (copy_from_user(&psinfo->pr_psargs,
1358 (const char __user *)mm->arg_start, len))
1359 return -EFAULT;
1360 for(i = 0; i < len; i++)
1361 if (psinfo->pr_psargs[i] == 0)
1362 psinfo->pr_psargs[i] = ' ';
1363 psinfo->pr_psargs[len] = 0;
1364
1365 psinfo->pr_pid = p->pid;
1366 psinfo->pr_ppid = p->parent->pid;
1367 psinfo->pr_pgrp = process_group(p);
1368 psinfo->pr_sid = p->signal->session;
1369
1370 i = p->state ? ffz(~p->state) + 1 : 0;
1371 psinfo->pr_state = i;
Carsten Otte55148542006-03-25 03:08:22 -08001372 psinfo->pr_sname = (i > 5) ? '.' : "RSDTZW"[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 psinfo->pr_zomb = psinfo->pr_sname == 'Z';
1374 psinfo->pr_nice = task_nice(p);
1375 psinfo->pr_flag = p->flags;
1376 SET_UID(psinfo->pr_uid, p->uid);
1377 SET_GID(psinfo->pr_gid, p->gid);
1378 strncpy(psinfo->pr_fname, p->comm, sizeof(psinfo->pr_fname));
1379
1380 return 0;
1381}
1382
1383/* Here is the structure in which status of each thread is captured. */
1384struct elf_thread_status
1385{
1386 struct list_head list;
1387 struct elf_prstatus prstatus; /* NT_PRSTATUS */
1388 elf_fpregset_t fpu; /* NT_PRFPREG */
1389 struct task_struct *thread;
1390#ifdef ELF_CORE_COPY_XFPREGS
1391 elf_fpxregset_t xfpu; /* NT_PRXFPREG */
1392#endif
1393 struct memelfnote notes[3];
1394 int num_notes;
1395};
1396
1397/*
1398 * In order to add the specific thread information for the elf file format,
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001399 * we need to keep a linked list of every threads pr_status and then create
1400 * a single section for them in the final core file.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 */
1402static int elf_dump_thread_status(long signr, struct elf_thread_status *t)
1403{
1404 int sz = 0;
1405 struct task_struct *p = t->thread;
1406 t->num_notes = 0;
1407
1408 fill_prstatus(&t->prstatus, p, signr);
1409 elf_core_copy_task_regs(p, &t->prstatus.pr_reg);
1410
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001411 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus),
1412 &(t->prstatus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 t->num_notes++;
1414 sz += notesize(&t->notes[0]);
1415
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001416 if ((t->prstatus.pr_fpvalid = elf_core_copy_task_fpregs(p, NULL,
1417 &t->fpu))) {
1418 fill_note(&t->notes[1], "CORE", NT_PRFPREG, sizeof(t->fpu),
1419 &(t->fpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 t->num_notes++;
1421 sz += notesize(&t->notes[1]);
1422 }
1423
1424#ifdef ELF_CORE_COPY_XFPREGS
1425 if (elf_core_copy_task_xfpregs(p, &t->xfpu)) {
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001426 fill_note(&t->notes[2], "LINUX", NT_PRXFPREG, sizeof(t->xfpu),
1427 &t->xfpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 t->num_notes++;
1429 sz += notesize(&t->notes[2]);
1430 }
1431#endif
1432 return sz;
1433}
1434
1435/*
1436 * Actual dumper
1437 *
1438 * This is a two-pass process; first we find the offsets of the bits,
1439 * and then they are actually written out. If we run out of core limit
1440 * we just truncate.
1441 */
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001442static int elf_core_dump(long signr, struct pt_regs *regs, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
1444#define NUM_NOTES 6
1445 int has_dumped = 0;
1446 mm_segment_t fs;
1447 int segs;
1448 size_t size = 0;
1449 int i;
1450 struct vm_area_struct *vma;
1451 struct elfhdr *elf = NULL;
Andi Kleend025c9d2006-09-30 23:29:28 -07001452 loff_t offset = 0, dataoff, foffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 unsigned long limit = current->signal->rlim[RLIMIT_CORE].rlim_cur;
1454 int numnote;
1455 struct memelfnote *notes = NULL;
1456 struct elf_prstatus *prstatus = NULL; /* NT_PRSTATUS */
1457 struct elf_prpsinfo *psinfo = NULL; /* NT_PRPSINFO */
1458 struct task_struct *g, *p;
1459 LIST_HEAD(thread_list);
1460 struct list_head *t;
1461 elf_fpregset_t *fpu = NULL;
1462#ifdef ELF_CORE_COPY_XFPREGS
1463 elf_fpxregset_t *xfpu = NULL;
1464#endif
1465 int thread_status_size = 0;
1466 elf_addr_t *auxv;
1467
1468 /*
1469 * We no longer stop all VM operations.
1470 *
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001471 * This is because those proceses that could possibly change map_count
1472 * or the mmap / vma pages are now blocked in do_exit on current
1473 * finishing this core dump.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 *
1475 * Only ptrace can touch these memory addresses, but it doesn't change
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001476 * the map_count or the pages allocated. So no possibility of crashing
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 * exists while dumping the mm->vm_next areas to the core file.
1478 */
1479
1480 /* alloc memory for large data structures: too large to be on stack */
1481 elf = kmalloc(sizeof(*elf), GFP_KERNEL);
1482 if (!elf)
1483 goto cleanup;
1484 prstatus = kmalloc(sizeof(*prstatus), GFP_KERNEL);
1485 if (!prstatus)
1486 goto cleanup;
1487 psinfo = kmalloc(sizeof(*psinfo), GFP_KERNEL);
1488 if (!psinfo)
1489 goto cleanup;
1490 notes = kmalloc(NUM_NOTES * sizeof(struct memelfnote), GFP_KERNEL);
1491 if (!notes)
1492 goto cleanup;
1493 fpu = kmalloc(sizeof(*fpu), GFP_KERNEL);
1494 if (!fpu)
1495 goto cleanup;
1496#ifdef ELF_CORE_COPY_XFPREGS
1497 xfpu = kmalloc(sizeof(*xfpu), GFP_KERNEL);
1498 if (!xfpu)
1499 goto cleanup;
1500#endif
1501
1502 if (signr) {
1503 struct elf_thread_status *tmp;
Oleg Nesterov486ccb02006-09-29 02:00:24 -07001504 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 do_each_thread(g,p)
1506 if (current->mm == p->mm && current != p) {
Oliver Neukum11b0b5a2006-03-25 03:08:13 -08001507 tmp = kzalloc(sizeof(*tmp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 if (!tmp) {
Oleg Nesterov486ccb02006-09-29 02:00:24 -07001509 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 goto cleanup;
1511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 tmp->thread = p;
1513 list_add(&tmp->list, &thread_list);
1514 }
1515 while_each_thread(g,p);
Oleg Nesterov486ccb02006-09-29 02:00:24 -07001516 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 list_for_each(t, &thread_list) {
1518 struct elf_thread_status *tmp;
1519 int sz;
1520
1521 tmp = list_entry(t, struct elf_thread_status, list);
1522 sz = elf_dump_thread_status(signr, tmp);
1523 thread_status_size += sz;
1524 }
1525 }
1526 /* now collect the dump for the current */
1527 memset(prstatus, 0, sizeof(*prstatus));
1528 fill_prstatus(prstatus, current, signr);
1529 elf_core_copy_regs(&prstatus->pr_reg, regs);
1530
1531 segs = current->mm->map_count;
1532#ifdef ELF_CORE_EXTRA_PHDRS
1533 segs += ELF_CORE_EXTRA_PHDRS;
1534#endif
1535
1536 /* Set up header */
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001537 fill_elf_header(elf, segs + 1); /* including notes section */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 has_dumped = 1;
1540 current->flags |= PF_DUMPCORE;
1541
1542 /*
1543 * Set up the notes in similar form to SVR4 core dumps made
1544 * with info from their /proc.
1545 */
1546
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001547 fill_note(notes + 0, "CORE", NT_PRSTATUS, sizeof(*prstatus), prstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 fill_psinfo(psinfo, current->group_leader, current->mm);
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001549 fill_note(notes + 1, "CORE", NT_PRPSINFO, sizeof(*psinfo), psinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Eric W. Biedermana9289722005-10-30 15:02:08 -08001551 numnote = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001553 auxv = (elf_addr_t *)current->mm->saved_auxv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
1555 i = 0;
1556 do
1557 i += 2;
1558 while (auxv[i - 2] != AT_NULL);
1559 fill_note(&notes[numnote++], "CORE", NT_AUXV,
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001560 i * sizeof(elf_addr_t), auxv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562 /* Try to dump the FPU. */
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001563 if ((prstatus->pr_fpvalid =
1564 elf_core_copy_task_fpregs(current, regs, fpu)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 fill_note(notes + numnote++,
1566 "CORE", NT_PRFPREG, sizeof(*fpu), fpu);
1567#ifdef ELF_CORE_COPY_XFPREGS
1568 if (elf_core_copy_task_xfpregs(current, xfpu))
1569 fill_note(notes + numnote++,
1570 "LINUX", NT_PRXFPREG, sizeof(*xfpu), xfpu);
1571#endif
1572
1573 fs = get_fs();
1574 set_fs(KERNEL_DS);
1575
1576 DUMP_WRITE(elf, sizeof(*elf));
1577 offset += sizeof(*elf); /* Elf header */
Petr Vandroveca7a0d862006-10-13 18:42:07 +02001578 offset += (segs + 1) * sizeof(struct elf_phdr); /* Program headers */
1579 foffset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 /* Write notes phdr entry */
1582 {
1583 struct elf_phdr phdr;
1584 int sz = 0;
1585
1586 for (i = 0; i < numnote; i++)
1587 sz += notesize(notes + i);
1588
1589 sz += thread_status_size;
1590
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001591#ifdef ELF_CORE_WRITE_EXTRA_NOTES
1592 sz += ELF_CORE_EXTRA_NOTES_SIZE;
1593#endif
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 fill_elf_note_phdr(&phdr, sz, offset);
1596 offset += sz;
1597 DUMP_WRITE(&phdr, sizeof(phdr));
1598 }
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 dataoff = offset = roundup(offset, ELF_EXEC_PAGESIZE);
1601
1602 /* Write program headers for segments dump */
1603 for (vma = current->mm->mmap; vma != NULL; vma = vma->vm_next) {
1604 struct elf_phdr phdr;
1605 size_t sz;
1606
1607 sz = vma->vm_end - vma->vm_start;
1608
1609 phdr.p_type = PT_LOAD;
1610 phdr.p_offset = offset;
1611 phdr.p_vaddr = vma->vm_start;
1612 phdr.p_paddr = 0;
1613 phdr.p_filesz = maydump(vma) ? sz : 0;
1614 phdr.p_memsz = sz;
1615 offset += phdr.p_filesz;
1616 phdr.p_flags = vma->vm_flags & VM_READ ? PF_R : 0;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001617 if (vma->vm_flags & VM_WRITE)
1618 phdr.p_flags |= PF_W;
1619 if (vma->vm_flags & VM_EXEC)
1620 phdr.p_flags |= PF_X;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 phdr.p_align = ELF_EXEC_PAGESIZE;
1622
1623 DUMP_WRITE(&phdr, sizeof(phdr));
1624 }
1625
1626#ifdef ELF_CORE_WRITE_EXTRA_PHDRS
1627 ELF_CORE_WRITE_EXTRA_PHDRS;
1628#endif
1629
1630 /* write out the notes section */
1631 for (i = 0; i < numnote; i++)
Andi Kleend025c9d2006-09-30 23:29:28 -07001632 if (!writenote(notes + i, file, &foffset))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 goto end_coredump;
1634
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001635#ifdef ELF_CORE_WRITE_EXTRA_NOTES
1636 ELF_CORE_WRITE_EXTRA_NOTES;
1637#endif
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 /* write out the thread status notes section */
1640 list_for_each(t, &thread_list) {
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001641 struct elf_thread_status *tmp =
1642 list_entry(t, struct elf_thread_status, list);
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 for (i = 0; i < tmp->num_notes; i++)
Andi Kleend025c9d2006-09-30 23:29:28 -07001645 if (!writenote(&tmp->notes[i], file, &foffset))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 goto end_coredump;
1647 }
Andi Kleend025c9d2006-09-30 23:29:28 -07001648
1649 /* Align to page */
1650 DUMP_SEEK(dataoff - foffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 for (vma = current->mm->mmap; vma != NULL; vma = vma->vm_next) {
1653 unsigned long addr;
1654
1655 if (!maydump(vma))
1656 continue;
1657
1658 for (addr = vma->vm_start;
1659 addr < vma->vm_end;
1660 addr += PAGE_SIZE) {
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001661 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 struct vm_area_struct *vma;
1663
1664 if (get_user_pages(current, current->mm, addr, 1, 0, 1,
1665 &page, &vma) <= 0) {
Andi Kleend025c9d2006-09-30 23:29:28 -07001666 DUMP_SEEK(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 } else {
1668 if (page == ZERO_PAGE(addr)) {
Andi Kleend025c9d2006-09-30 23:29:28 -07001669 DUMP_SEEK(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 } else {
1671 void *kaddr;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001672 flush_cache_page(vma, addr,
1673 page_to_pfn(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 kaddr = kmap(page);
1675 if ((size += PAGE_SIZE) > limit ||
1676 !dump_write(file, kaddr,
1677 PAGE_SIZE)) {
1678 kunmap(page);
1679 page_cache_release(page);
1680 goto end_coredump;
1681 }
1682 kunmap(page);
1683 }
1684 page_cache_release(page);
1685 }
1686 }
1687 }
1688
1689#ifdef ELF_CORE_WRITE_EXTRA_DATA
1690 ELF_CORE_WRITE_EXTRA_DATA;
1691#endif
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693end_coredump:
1694 set_fs(fs);
1695
1696cleanup:
Jesper Juhl74da6cd2006-01-11 01:51:26 +01001697 while (!list_empty(&thread_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 struct list_head *tmp = thread_list.next;
1699 list_del(tmp);
1700 kfree(list_entry(tmp, struct elf_thread_status, list));
1701 }
1702
1703 kfree(elf);
1704 kfree(prstatus);
1705 kfree(psinfo);
1706 kfree(notes);
1707 kfree(fpu);
1708#ifdef ELF_CORE_COPY_XFPREGS
1709 kfree(xfpu);
1710#endif
1711 return has_dumped;
1712#undef NUM_NOTES
1713}
1714
1715#endif /* USE_ELF_CORE_DUMP */
1716
1717static int __init init_elf_binfmt(void)
1718{
1719 return register_binfmt(&elf_format);
1720}
1721
1722static void __exit exit_elf_binfmt(void)
1723{
1724 /* Remove the COFF and ELF loaders. */
1725 unregister_binfmt(&elf_format);
1726}
1727
1728core_initcall(init_elf_binfmt);
1729module_exit(exit_elf_binfmt);
1730MODULE_LICENSE("GPL");