blob: 20462069e513ea7683616bb80d8b93af116155bf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* binfmt_elf_fdpic.c: FDPIC ELF binary format
2 *
David Howells8a2ab7f2006-07-10 04:44:53 -07003 * Copyright (C) 2003, 2004, 2006 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Written by David Howells (dhowells@redhat.com)
5 * Derived from binfmt_elf.c
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
13#include <linux/module.h>
14
15#include <linux/fs.h>
16#include <linux/stat.h>
17#include <linux/sched.h>
18#include <linux/mm.h>
19#include <linux/mman.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/slab.h>
David Howells6d8c4e32006-07-10 04:44:55 -070027#include <linux/pagemap.h>
Paul Mundt5edc2a52008-10-15 22:04:16 -070028#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/highmem.h>
David Howells6d8c4e32006-07-10 04:44:55 -070030#include <linux/highuid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/personality.h>
32#include <linux/ptrace.h>
33#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/elf.h>
35#include <linux/elf-fdpic.h>
36#include <linux/elfcore.h>
Daisuke HATAYAMA088e7af2010-03-05 13:44:06 -080037#include <linux/coredump.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/uaccess.h>
40#include <asm/param.h>
41#include <asm/pgalloc.h>
42
43typedef char *elf_caddr_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#if 0
46#define kdebug(fmt, ...) printk("FDPIC "fmt"\n" ,##__VA_ARGS__ )
47#else
48#define kdebug(fmt, ...) do {} while(0)
49#endif
50
David Howells6d8c4e32006-07-10 04:44:55 -070051#if 0
52#define kdcore(fmt, ...) printk("FDPIC "fmt"\n" ,##__VA_ARGS__ )
53#else
54#define kdcore(fmt, ...) do {} while(0)
55#endif
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057MODULE_LICENSE("GPL");
58
Al Viro71613c32012-10-20 22:00:48 -040059static int load_elf_fdpic_binary(struct linux_binprm *);
David Howells8a2ab7f2006-07-10 04:44:53 -070060static int elf_fdpic_fetch_phdrs(struct elf_fdpic_params *, struct file *);
61static int elf_fdpic_map_file(struct elf_fdpic_params *, struct file *,
62 struct mm_struct *, const char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
David Howells8a2ab7f2006-07-10 04:44:53 -070064static int create_elf_fdpic_tables(struct linux_binprm *, struct mm_struct *,
65 struct elf_fdpic_params *,
66 struct elf_fdpic_params *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#ifndef CONFIG_MMU
David Howells8a2ab7f2006-07-10 04:44:53 -070069static int elf_fdpic_transfer_args_to_stack(struct linux_binprm *,
70 unsigned long *);
71static int elf_fdpic_map_file_constdisp_on_uclinux(struct elf_fdpic_params *,
72 struct file *,
73 struct mm_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#endif
75
David Howells8a2ab7f2006-07-10 04:44:53 -070076static int elf_fdpic_map_file_by_direct_mmap(struct elf_fdpic_params *,
77 struct file *, struct mm_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Christoph Hellwig698ba7b2009-12-15 16:47:37 -080079#ifdef CONFIG_ELF_CORE
Masami Hiramatsuf6151df2009-12-17 15:27:16 -080080static int elf_fdpic_core_dump(struct coredump_params *cprm);
David Howells6d8c4e32006-07-10 04:44:55 -070081#endif
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static struct linux_binfmt elf_fdpic_format = {
84 .module = THIS_MODULE,
85 .load_binary = load_elf_fdpic_binary,
Christoph Hellwig698ba7b2009-12-15 16:47:37 -080086#ifdef CONFIG_ELF_CORE
David Howells6d8c4e32006-07-10 04:44:55 -070087 .core_dump = elf_fdpic_core_dump,
88#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 .min_coredump = ELF_EXEC_PAGESIZE,
90};
91
David Howells8a2ab7f2006-07-10 04:44:53 -070092static int __init init_elf_fdpic_binfmt(void)
93{
Al Viro8fc3dc52012-03-17 03:05:16 -040094 register_binfmt(&elf_fdpic_format);
95 return 0;
David Howells8a2ab7f2006-07-10 04:44:53 -070096}
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
David Howells8a2ab7f2006-07-10 04:44:53 -070098static void __exit exit_elf_fdpic_binfmt(void)
99{
100 unregister_binfmt(&elf_fdpic_format);
101}
102
David Howells6d8c4e32006-07-10 04:44:55 -0700103core_initcall(init_elf_fdpic_binfmt);
David Howells8a2ab7f2006-07-10 04:44:53 -0700104module_exit(exit_elf_fdpic_binfmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Rich Felker1bde9252015-11-09 14:59:01 -0800106static int is_elf(struct elfhdr *hdr, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0)
109 return 0;
110 if (hdr->e_type != ET_EXEC && hdr->e_type != ET_DYN)
111 return 0;
Rich Felker1bde9252015-11-09 14:59:01 -0800112 if (!elf_check_arch(hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return 0;
Al Viro72c2d532013-09-22 16:27:52 -0400114 if (!file->f_op->mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return 0;
116 return 1;
117}
118
Rich Felker1bde9252015-11-09 14:59:01 -0800119#ifndef elf_check_fdpic
120#define elf_check_fdpic(x) 0
121#endif
122
123#ifndef elf_check_const_displacement
124#define elf_check_const_displacement(x) 0
125#endif
126
127static int is_constdisp(struct elfhdr *hdr)
128{
129 if (!elf_check_fdpic(hdr))
130 return 1;
131 if (elf_check_const_displacement(hdr))
132 return 1;
133 return 0;
134}
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/*****************************************************************************/
137/*
138 * read the program headers table into memory
139 */
David Howells8a2ab7f2006-07-10 04:44:53 -0700140static int elf_fdpic_fetch_phdrs(struct elf_fdpic_params *params,
141 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 struct elf32_phdr *phdr;
144 unsigned long size;
145 int retval, loop;
146
147 if (params->hdr.e_phentsize != sizeof(struct elf_phdr))
148 return -ENOMEM;
149 if (params->hdr.e_phnum > 65536U / sizeof(struct elf_phdr))
150 return -ENOMEM;
151
152 size = params->hdr.e_phnum * sizeof(struct elf_phdr);
153 params->phdrs = kmalloc(size, GFP_KERNEL);
154 if (!params->phdrs)
155 return -ENOMEM;
156
David Howells8a2ab7f2006-07-10 04:44:53 -0700157 retval = kernel_read(file, params->hdr.e_phoff,
158 (char *) params->phdrs, size);
David Howellse1d2c8b2008-04-29 00:59:34 -0700159 if (unlikely(retval != size))
160 return retval < 0 ? retval : -ENOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 /* determine stack size for this binary */
163 phdr = params->phdrs;
164 for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
165 if (phdr->p_type != PT_GNU_STACK)
166 continue;
167
168 if (phdr->p_flags & PF_X)
169 params->flags |= ELF_FDPIC_FLAG_EXEC_STACK;
170 else
171 params->flags |= ELF_FDPIC_FLAG_NOEXEC_STACK;
172
173 params->stack_size = phdr->p_memsz;
174 break;
175 }
176
177 return 0;
David Howells8a2ab7f2006-07-10 04:44:53 -0700178}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180/*****************************************************************************/
181/*
182 * load an fdpic binary into various bits of memory
183 */
Al Viro71613c32012-10-20 22:00:48 -0400184static int load_elf_fdpic_binary(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
186 struct elf_fdpic_params exec_params, interp_params;
Al Viro71613c32012-10-20 22:00:48 -0400187 struct pt_regs *regs = current_pt_regs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 struct elf_phdr *phdr;
David Howells8a2ab7f2006-07-10 04:44:53 -0700189 unsigned long stack_size, entryaddr;
David Howells8a2ab7f2006-07-10 04:44:53 -0700190#ifdef ELF_FDPIC_PLAT_INIT
191 unsigned long dynaddr;
192#endif
Mike Frysinger04e4f2b2010-01-06 17:23:17 +0000193#ifndef CONFIG_MMU
194 unsigned long stack_prot;
195#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 struct file *interpreter = NULL; /* to shut gcc up */
197 char *interpreter_name = NULL;
198 int executable_stack;
199 int retval, i;
200
David Howellsaa289b42007-03-23 00:10:00 -0700201 kdebug("____ LOAD %d ____", current->pid);
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 memset(&exec_params, 0, sizeof(exec_params));
204 memset(&interp_params, 0, sizeof(interp_params));
205
206 exec_params.hdr = *(struct elfhdr *) bprm->buf;
207 exec_params.flags = ELF_FDPIC_FLAG_PRESENT | ELF_FDPIC_FLAG_EXECUTABLE;
208
209 /* check that this is a binary we know how to deal with */
210 retval = -ENOEXEC;
Rich Felker1bde9252015-11-09 14:59:01 -0800211 if (!is_elf(&exec_params.hdr, bprm->file))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 goto error;
Rich Felker1bde9252015-11-09 14:59:01 -0800213 if (!elf_check_fdpic(&exec_params.hdr)) {
214#ifdef CONFIG_MMU
215 /* binfmt_elf handles non-fdpic elf except on nommu */
216 goto error;
217#else
218 /* nommu can only load ET_DYN (PIE) ELF */
219 if (exec_params.hdr.e_type != ET_DYN)
220 goto error;
221#endif
222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 /* read the program header table */
225 retval = elf_fdpic_fetch_phdrs(&exec_params, bprm->file);
226 if (retval < 0)
227 goto error;
228
229 /* scan for a program header that specifies an interpreter */
230 phdr = exec_params.phdrs;
231
232 for (i = 0; i < exec_params.hdr.e_phnum; i++, phdr++) {
233 switch (phdr->p_type) {
234 case PT_INTERP:
235 retval = -ENOMEM;
236 if (phdr->p_filesz > PATH_MAX)
237 goto error;
238 retval = -ENOENT;
239 if (phdr->p_filesz < 2)
240 goto error;
241
242 /* read the name of the interpreter into memory */
Jesper Juhl792db3a2006-01-09 20:54:45 -0800243 interpreter_name = kmalloc(phdr->p_filesz, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (!interpreter_name)
245 goto error;
246
247 retval = kernel_read(bprm->file,
248 phdr->p_offset,
249 interpreter_name,
250 phdr->p_filesz);
David Howellse1d2c8b2008-04-29 00:59:34 -0700251 if (unlikely(retval != phdr->p_filesz)) {
252 if (retval >= 0)
253 retval = -ENOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 goto error;
David Howellse1d2c8b2008-04-29 00:59:34 -0700255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 retval = -ENOENT;
258 if (interpreter_name[phdr->p_filesz - 1] != '\0')
259 goto error;
260
261 kdebug("Using ELF interpreter %s", interpreter_name);
262
263 /* replace the program with the interpreter */
264 interpreter = open_exec(interpreter_name);
265 retval = PTR_ERR(interpreter);
266 if (IS_ERR(interpreter)) {
267 interpreter = NULL;
268 goto error;
269 }
270
Alexey Dobriyan1fb84492007-01-26 00:57:16 -0800271 /*
272 * If the binary is not readable then enforce
273 * mm->dumpable = 0 regardless of the interpreter's
274 * permissions.
275 */
Al Viro1b5d7832011-06-19 12:49:47 -0400276 would_dump(bprm, interpreter);
Alexey Dobriyan1fb84492007-01-26 00:57:16 -0800277
David Howells8a2ab7f2006-07-10 04:44:53 -0700278 retval = kernel_read(interpreter, 0, bprm->buf,
279 BINPRM_BUF_SIZE);
David Howellse1d2c8b2008-04-29 00:59:34 -0700280 if (unlikely(retval != BINPRM_BUF_SIZE)) {
281 if (retval >= 0)
282 retval = -ENOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 goto error;
David Howellse1d2c8b2008-04-29 00:59:34 -0700284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 interp_params.hdr = *((struct elfhdr *) bprm->buf);
287 break;
288
289 case PT_LOAD:
290#ifdef CONFIG_MMU
291 if (exec_params.load_addr == 0)
292 exec_params.load_addr = phdr->p_vaddr;
293#endif
294 break;
295 }
296
297 }
298
Rich Felker1bde9252015-11-09 14:59:01 -0800299 if (is_constdisp(&exec_params.hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 exec_params.flags |= ELF_FDPIC_FLAG_CONSTDISP;
301
302 /* perform insanity checks on the interpreter */
303 if (interpreter_name) {
304 retval = -ELIBBAD;
Rich Felker1bde9252015-11-09 14:59:01 -0800305 if (!is_elf(&interp_params.hdr, interpreter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 goto error;
307
308 interp_params.flags = ELF_FDPIC_FLAG_PRESENT;
309
310 /* read the interpreter's program header table */
311 retval = elf_fdpic_fetch_phdrs(&interp_params, interpreter);
312 if (retval < 0)
313 goto error;
314 }
315
316 stack_size = exec_params.stack_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (exec_params.flags & ELF_FDPIC_FLAG_EXEC_STACK)
318 executable_stack = EXSTACK_ENABLE_X;
319 else if (exec_params.flags & ELF_FDPIC_FLAG_NOEXEC_STACK)
320 executable_stack = EXSTACK_DISABLE_X;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 else
322 executable_stack = EXSTACK_DEFAULT;
323
David Howells8e8b63a2009-09-23 15:57:06 -0700324 if (stack_size == 0) {
325 stack_size = interp_params.stack_size;
326 if (interp_params.flags & ELF_FDPIC_FLAG_EXEC_STACK)
327 executable_stack = EXSTACK_ENABLE_X;
328 else if (interp_params.flags & ELF_FDPIC_FLAG_NOEXEC_STACK)
329 executable_stack = EXSTACK_DISABLE_X;
330 else
331 executable_stack = EXSTACK_DEFAULT;
332 }
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 retval = -ENOEXEC;
335 if (stack_size == 0)
Rich Felker1bde9252015-11-09 14:59:01 -0800336 stack_size = 131072UL; /* same as exec.c's default commit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Rich Felker1bde9252015-11-09 14:59:01 -0800338 if (is_constdisp(&interp_params.hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 interp_params.flags |= ELF_FDPIC_FLAG_CONSTDISP;
340
341 /* flush all traces of the currently running executable */
342 retval = flush_old_exec(bprm);
343 if (retval)
344 goto error;
345
346 /* there's now no turning back... the old userspace image is dead,
Al Viro19d860a2014-05-04 20:11:36 -0400347 * defunct, deceased, etc.
348 */
Rich Felker1bde9252015-11-09 14:59:01 -0800349 if (elf_check_fdpic(&exec_params.hdr))
350 set_personality(PER_LINUX_FDPIC);
351 else
352 set_personality(PER_LINUX);
Mike Frysinger04e4f2b2010-01-06 17:23:17 +0000353 if (elf_read_implies_exec(&exec_params.hdr, executable_stack))
354 current->personality |= READ_IMPLIES_EXEC;
Linus Torvalds221af7f2010-01-28 22:14:42 -0800355
356 setup_new_exec(bprm);
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 set_binfmt(&elf_fdpic_format);
359
360 current->mm->start_code = 0;
361 current->mm->end_code = 0;
362 current->mm->start_stack = 0;
363 current->mm->start_data = 0;
364 current->mm->end_data = 0;
365 current->mm->context.exec_fdpic_loadmap = 0;
366 current->mm->context.interp_fdpic_loadmap = 0;
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368#ifdef CONFIG_MMU
369 elf_fdpic_arch_lay_out_mm(&exec_params,
370 &interp_params,
371 &current->mm->start_stack,
372 &current->mm->start_brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
David Howells8a2ab7f2006-07-10 04:44:53 -0700374 retval = setup_arg_pages(bprm, current->mm->start_stack,
375 executable_stack);
Al Viro19d860a2014-05-04 20:11:36 -0400376 if (retval < 0)
377 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378#endif
379
380 /* load the executable and interpreter into memory */
David Howells8a2ab7f2006-07-10 04:44:53 -0700381 retval = elf_fdpic_map_file(&exec_params, bprm->file, current->mm,
382 "executable");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (retval < 0)
Al Viro19d860a2014-05-04 20:11:36 -0400384 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 if (interpreter_name) {
387 retval = elf_fdpic_map_file(&interp_params, interpreter,
388 current->mm, "interpreter");
389 if (retval < 0) {
390 printk(KERN_ERR "Unable to load interpreter\n");
Al Viro19d860a2014-05-04 20:11:36 -0400391 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393
394 allow_write_access(interpreter);
395 fput(interpreter);
396 interpreter = NULL;
397 }
398
399#ifdef CONFIG_MMU
400 if (!current->mm->start_brk)
401 current->mm->start_brk = current->mm->end_data;
402
David Howells8a2ab7f2006-07-10 04:44:53 -0700403 current->mm->brk = current->mm->start_brk =
404 PAGE_ALIGN(current->mm->start_brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406#else
407 /* create a stack and brk area big enough for everyone
408 * - the brk heap starts at the bottom and works up
409 * - the stack starts at the top and works down
410 */
411 stack_size = (stack_size + PAGE_SIZE - 1) & PAGE_MASK;
412 if (stack_size < PAGE_SIZE * 2)
413 stack_size = PAGE_SIZE * 2;
414
Mike Frysinger04e4f2b2010-01-06 17:23:17 +0000415 stack_prot = PROT_READ | PROT_WRITE;
416 if (executable_stack == EXSTACK_ENABLE_X ||
417 (executable_stack == EXSTACK_DEFAULT && VM_STACK_FLAGS & VM_EXEC))
418 stack_prot |= PROT_EXEC;
419
Linus Torvalds6be5ceb2012-04-20 17:13:58 -0700420 current->mm->start_brk = vm_mmap(NULL, 0, stack_size, stack_prot,
Jie Zhangea637632009-12-14 18:00:02 -0800421 MAP_PRIVATE | MAP_ANONYMOUS |
422 MAP_UNINITIALIZED | MAP_GROWSDOWN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 0);
424
David Howells8a2ab7f2006-07-10 04:44:53 -0700425 if (IS_ERR_VALUE(current->mm->start_brk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 retval = current->mm->start_brk;
427 current->mm->start_brk = 0;
Al Viro19d860a2014-05-04 20:11:36 -0400428 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 current->mm->brk = current->mm->start_brk;
432 current->mm->context.end_brk = current->mm->start_brk;
David Howells8a2ab7f2006-07-10 04:44:53 -0700433 current->mm->context.end_brk +=
434 (stack_size > PAGE_SIZE) ? (stack_size - PAGE_SIZE) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 current->mm->start_stack = current->mm->start_brk + stack_size;
436#endif
437
David Howellsa6f76f22008-11-14 10:39:24 +1100438 install_exec_creds(bprm);
David Howells8a2ab7f2006-07-10 04:44:53 -0700439 if (create_elf_fdpic_tables(bprm, current->mm,
440 &exec_params, &interp_params) < 0)
Al Viro19d860a2014-05-04 20:11:36 -0400441 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
David Howells8a2ab7f2006-07-10 04:44:53 -0700443 kdebug("- start_code %lx", current->mm->start_code);
444 kdebug("- end_code %lx", current->mm->end_code);
445 kdebug("- start_data %lx", current->mm->start_data);
446 kdebug("- end_data %lx", current->mm->end_data);
447 kdebug("- start_brk %lx", current->mm->start_brk);
448 kdebug("- brk %lx", current->mm->brk);
449 kdebug("- start_stack %lx", current->mm->start_stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451#ifdef ELF_FDPIC_PLAT_INIT
452 /*
453 * The ABI may specify that certain registers be set up in special
454 * ways (on i386 %edx is the address of a DT_FINI function, for
455 * example. This macro performs whatever initialization to
456 * the regs structure is required.
457 */
David Howells8a2ab7f2006-07-10 04:44:53 -0700458 dynaddr = interp_params.dynamic_addr ?: exec_params.dynamic_addr;
459 ELF_FDPIC_PLAT_INIT(regs, exec_params.map_addr, interp_params.map_addr,
460 dynaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461#endif
462
463 /* everything is now ready... get the userspace context ready to roll */
David Howells8a2ab7f2006-07-10 04:44:53 -0700464 entryaddr = interp_params.entry_addr ?: exec_params.entry_addr;
465 start_thread(regs, entryaddr, current->mm->start_stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 retval = 0;
468
469error:
470 if (interpreter) {
471 allow_write_access(interpreter);
472 fput(interpreter);
473 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800474 kfree(interpreter_name);
475 kfree(exec_params.phdrs);
476 kfree(exec_params.loadmap);
477 kfree(interp_params.phdrs);
478 kfree(interp_params.loadmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return retval;
David Howells8a2ab7f2006-07-10 04:44:53 -0700480}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482/*****************************************************************************/
Paul Mundtec238472008-10-15 22:04:15 -0700483
484#ifndef ELF_BASE_PLATFORM
485/*
486 * AT_BASE_PLATFORM indicates the "real" hardware/microarchitecture.
487 * If the arch defines ELF_BASE_PLATFORM (in asm/elf.h), the value
488 * will be copied to the user stack in the same manner as AT_PLATFORM.
489 */
490#define ELF_BASE_PLATFORM NULL
491#endif
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493/*
Paul Mundtc7637942008-10-15 22:04:15 -0700494 * present useful information to the program by shovelling it onto the new
495 * process's stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 */
497static int create_elf_fdpic_tables(struct linux_binprm *bprm,
498 struct mm_struct *mm,
499 struct elf_fdpic_params *exec_params,
500 struct elf_fdpic_params *interp_params)
501{
David Howells86a264a2008-11-14 10:39:18 +1100502 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 unsigned long sp, csp, nitems;
Al Viro530018b2006-06-23 02:04:05 -0700504 elf_caddr_t __user *argv, *envp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 size_t platform_len = 0, len;
Paul Mundtec238472008-10-15 22:04:15 -0700506 char *k_platform, *k_base_platform;
507 char __user *u_platform, *u_base_platform, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 int loop;
Paul Mundt9b14ec32008-05-19 13:34:45 +0900509 int nr; /* reset for each csp adjustment */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511#ifdef CONFIG_MMU
Paul Mundtc7637942008-10-15 22:04:15 -0700512 /* In some cases (e.g. Hyper-Threading), we want to avoid L1 evictions
513 * by the processes running on the same package. One thing we can do is
514 * to shuffle the initial stack for them, so we give the architecture
515 * an opportunity to do so here.
516 */
517 sp = arch_align_stack(bprm->p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518#else
519 sp = mm->start_stack;
520
521 /* stack the program arguments and environment */
522 if (elf_fdpic_transfer_args_to_stack(bprm, &sp) < 0)
523 return -EFAULT;
524#endif
525
Paul Mundtec238472008-10-15 22:04:15 -0700526 /*
527 * If this architecture has a platform capability string, copy it
528 * to userspace. In some cases (Sparc), this info is impossible
529 * for userspace to get any other way, in others (i386) it is
530 * merely difficult.
531 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 k_platform = ELF_PLATFORM;
David Howells1aeb21d2006-07-10 04:44:50 -0700533 u_platform = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 if (k_platform) {
536 platform_len = strlen(k_platform) + 1;
537 sp -= platform_len;
Al Viro530018b2006-06-23 02:04:05 -0700538 u_platform = (char __user *) sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (__copy_to_user(u_platform, k_platform, platform_len) != 0)
540 return -EFAULT;
541 }
542
Paul Mundtec238472008-10-15 22:04:15 -0700543 /*
544 * If this architecture has a "base" platform capability
545 * string, copy it to userspace.
546 */
547 k_base_platform = ELF_BASE_PLATFORM;
548 u_base_platform = NULL;
549
550 if (k_base_platform) {
551 platform_len = strlen(k_base_platform) + 1;
552 sp -= platform_len;
553 u_base_platform = (char __user *) sp;
554 if (__copy_to_user(u_base_platform, k_base_platform, platform_len) != 0)
555 return -EFAULT;
556 }
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 sp &= ~7UL;
559
560 /* stack the load map(s) */
561 len = sizeof(struct elf32_fdpic_loadmap);
562 len += sizeof(struct elf32_fdpic_loadseg) * exec_params->loadmap->nsegs;
563 sp = (sp - len) & ~7UL;
564 exec_params->map_addr = sp;
565
Al Viro530018b2006-06-23 02:04:05 -0700566 if (copy_to_user((void __user *) sp, exec_params->loadmap, len) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return -EFAULT;
568
569 current->mm->context.exec_fdpic_loadmap = (unsigned long) sp;
570
571 if (interp_params->loadmap) {
572 len = sizeof(struct elf32_fdpic_loadmap);
David Howells8a2ab7f2006-07-10 04:44:53 -0700573 len += sizeof(struct elf32_fdpic_loadseg) *
574 interp_params->loadmap->nsegs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 sp = (sp - len) & ~7UL;
576 interp_params->map_addr = sp;
577
David Howells8a2ab7f2006-07-10 04:44:53 -0700578 if (copy_to_user((void __user *) sp, interp_params->loadmap,
579 len) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return -EFAULT;
581
582 current->mm->context.interp_fdpic_loadmap = (unsigned long) sp;
583 }
584
585 /* force 16 byte _final_ alignment here for generality */
Paul Mundt5edc2a52008-10-15 22:04:16 -0700586#define DLINFO_ITEMS 15
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Paul Mundtec238472008-10-15 22:04:15 -0700588 nitems = 1 + DLINFO_ITEMS + (k_platform ? 1 : 0) +
589 (k_base_platform ? 1 : 0) + AT_VECTOR_SIZE_ARCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Paul Mundt5edc2a52008-10-15 22:04:16 -0700591 if (bprm->interp_flags & BINPRM_FLAGS_EXECFD)
592 nitems++;
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 csp = sp;
595 sp -= nitems * 2 * sizeof(unsigned long);
596 sp -= (bprm->envc + 1) * sizeof(char *); /* envv[] */
597 sp -= (bprm->argc + 1) * sizeof(char *); /* argv[] */
598 sp -= 1 * sizeof(unsigned long); /* argc */
599
600 csp -= sp & 15UL;
601 sp -= sp & 15UL;
602
603 /* put the ELF interpreter info on the stack */
Paul Mundt9b14ec32008-05-19 13:34:45 +0900604#define NEW_AUX_ENT(id, val) \
David Howells8a2ab7f2006-07-10 04:44:53 -0700605 do { \
606 struct { unsigned long _id, _val; } __user *ent; \
607 \
608 ent = (void __user *) csp; \
609 __put_user((id), &ent[nr]._id); \
610 __put_user((val), &ent[nr]._val); \
Paul Mundt9b14ec32008-05-19 13:34:45 +0900611 nr++; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 } while (0)
613
Paul Mundt9b14ec32008-05-19 13:34:45 +0900614 nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 csp -= 2 * sizeof(unsigned long);
Paul Mundt9b14ec32008-05-19 13:34:45 +0900616 NEW_AUX_ENT(AT_NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (k_platform) {
Paul Mundt9b14ec32008-05-19 13:34:45 +0900618 nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 csp -= 2 * sizeof(unsigned long);
Paul Mundt9b14ec32008-05-19 13:34:45 +0900620 NEW_AUX_ENT(AT_PLATFORM,
David Howells8a2ab7f2006-07-10 04:44:53 -0700621 (elf_addr_t) (unsigned long) u_platform);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623
Paul Mundtec238472008-10-15 22:04:15 -0700624 if (k_base_platform) {
625 nr = 0;
626 csp -= 2 * sizeof(unsigned long);
627 NEW_AUX_ENT(AT_BASE_PLATFORM,
628 (elf_addr_t) (unsigned long) u_base_platform);
629 }
630
Paul Mundt5edc2a52008-10-15 22:04:16 -0700631 if (bprm->interp_flags & BINPRM_FLAGS_EXECFD) {
632 nr = 0;
633 csp -= 2 * sizeof(unsigned long);
634 NEW_AUX_ENT(AT_EXECFD, bprm->interp_data);
635 }
636
Paul Mundt9b14ec32008-05-19 13:34:45 +0900637 nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 csp -= DLINFO_ITEMS * 2 * sizeof(unsigned long);
Michael Neuling21713642013-04-17 17:33:11 +0000639 NEW_AUX_ENT(AT_HWCAP, ELF_HWCAP);
640#ifdef ELF_HWCAP2
641 NEW_AUX_ENT(AT_HWCAP2, ELF_HWCAP2);
642#endif
Paul Mundt9b14ec32008-05-19 13:34:45 +0900643 NEW_AUX_ENT(AT_PAGESZ, PAGE_SIZE);
644 NEW_AUX_ENT(AT_CLKTCK, CLOCKS_PER_SEC);
645 NEW_AUX_ENT(AT_PHDR, exec_params->ph_addr);
646 NEW_AUX_ENT(AT_PHENT, sizeof(struct elf_phdr));
647 NEW_AUX_ENT(AT_PHNUM, exec_params->hdr.e_phnum);
648 NEW_AUX_ENT(AT_BASE, interp_params->elfhdr_addr);
649 NEW_AUX_ENT(AT_FLAGS, 0);
650 NEW_AUX_ENT(AT_ENTRY, exec_params->entry_addr);
Eric W. Biedermanebc887b2012-02-07 18:36:10 -0800651 NEW_AUX_ENT(AT_UID, (elf_addr_t) from_kuid_munged(cred->user_ns, cred->uid));
652 NEW_AUX_ENT(AT_EUID, (elf_addr_t) from_kuid_munged(cred->user_ns, cred->euid));
653 NEW_AUX_ENT(AT_GID, (elf_addr_t) from_kgid_munged(cred->user_ns, cred->gid));
654 NEW_AUX_ENT(AT_EGID, (elf_addr_t) from_kgid_munged(cred->user_ns, cred->egid));
Paul Mundt5edc2a52008-10-15 22:04:16 -0700655 NEW_AUX_ENT(AT_SECURE, security_bprm_secureexec(bprm));
656 NEW_AUX_ENT(AT_EXECFN, bprm->exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658#ifdef ARCH_DLINFO
Paul Mundt9b14ec32008-05-19 13:34:45 +0900659 nr = 0;
660 csp -= AT_VECTOR_SIZE_ARCH * 2 * sizeof(unsigned long);
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 /* ARCH_DLINFO must come last so platform specific code can enforce
663 * special alignment requirements on the AUXV if necessary (eg. PPC).
664 */
665 ARCH_DLINFO;
666#endif
667#undef NEW_AUX_ENT
668
669 /* allocate room for argv[] and envv[] */
670 csp -= (bprm->envc + 1) * sizeof(elf_caddr_t);
Al Viro530018b2006-06-23 02:04:05 -0700671 envp = (elf_caddr_t __user *) csp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 csp -= (bprm->argc + 1) * sizeof(elf_caddr_t);
Al Viro530018b2006-06-23 02:04:05 -0700673 argv = (elf_caddr_t __user *) csp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 /* stack argc */
676 csp -= sizeof(unsigned long);
Al Viro530018b2006-06-23 02:04:05 -0700677 __put_user(bprm->argc, (unsigned long __user *) csp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Eric Sesterhenn88bcd512006-03-24 18:38:48 +0100679 BUG_ON(csp != sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 /* fill in the argv[] array */
682#ifdef CONFIG_MMU
683 current->mm->arg_start = bprm->p;
684#else
David Howells8a2ab7f2006-07-10 04:44:53 -0700685 current->mm->arg_start = current->mm->start_stack -
686 (MAX_ARG_PAGES * PAGE_SIZE - bprm->p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687#endif
688
Al Viro530018b2006-06-23 02:04:05 -0700689 p = (char __user *) current->mm->arg_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 for (loop = bprm->argc; loop > 0; loop--) {
691 __put_user((elf_caddr_t) p, argv++);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700692 len = strnlen_user(p, MAX_ARG_STRLEN);
693 if (!len || len > MAX_ARG_STRLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return -EINVAL;
695 p += len;
696 }
697 __put_user(NULL, argv);
698 current->mm->arg_end = (unsigned long) p;
699
700 /* fill in the envv[] array */
701 current->mm->env_start = (unsigned long) p;
702 for (loop = bprm->envc; loop > 0; loop--) {
703 __put_user((elf_caddr_t)(unsigned long) p, envp++);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700704 len = strnlen_user(p, MAX_ARG_STRLEN);
705 if (!len || len > MAX_ARG_STRLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return -EINVAL;
707 p += len;
708 }
709 __put_user(NULL, envp);
710 current->mm->env_end = (unsigned long) p;
711
712 mm->start_stack = (unsigned long) sp;
713 return 0;
David Howells8a2ab7f2006-07-10 04:44:53 -0700714}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716/*****************************************************************************/
717/*
718 * transfer the program arguments and environment from the holding pages onto
719 * the stack
720 */
721#ifndef CONFIG_MMU
David Howells8a2ab7f2006-07-10 04:44:53 -0700722static int elf_fdpic_transfer_args_to_stack(struct linux_binprm *bprm,
723 unsigned long *_sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
725 unsigned long index, stop, sp;
726 char *src;
727 int ret = 0;
728
729 stop = bprm->p >> PAGE_SHIFT;
730 sp = *_sp;
731
732 for (index = MAX_ARG_PAGES - 1; index >= stop; index--) {
733 src = kmap(bprm->page[index]);
734 sp -= PAGE_SIZE;
735 if (copy_to_user((void *) sp, src, PAGE_SIZE) != 0)
736 ret = -EFAULT;
737 kunmap(bprm->page[index]);
738 if (ret < 0)
739 goto out;
740 }
741
742 *_sp = (*_sp - (MAX_ARG_PAGES * PAGE_SIZE - bprm->p)) & ~15;
743
David Howells8a2ab7f2006-07-10 04:44:53 -0700744out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return ret;
David Howells8a2ab7f2006-07-10 04:44:53 -0700746}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747#endif
748
749/*****************************************************************************/
750/*
751 * load the appropriate binary image (executable or interpreter) into memory
752 * - we assume no MMU is available
753 * - if no other PIC bits are set in params->hdr->e_flags
754 * - we assume that the LOADable segments in the binary are independently relocatable
755 * - we assume R/O executable segments are shareable
756 * - else
757 * - we assume the loadable parts of the image to require fixed displacement
758 * - the image is not shareable
759 */
760static int elf_fdpic_map_file(struct elf_fdpic_params *params,
761 struct file *file,
762 struct mm_struct *mm,
763 const char *what)
764{
765 struct elf32_fdpic_loadmap *loadmap;
766#ifdef CONFIG_MMU
767 struct elf32_fdpic_loadseg *mseg;
768#endif
769 struct elf32_fdpic_loadseg *seg;
770 struct elf32_phdr *phdr;
771 unsigned long load_addr, stop;
772 unsigned nloads, tmp;
773 size_t size;
774 int loop, ret;
775
776 /* allocate a load map table */
777 nloads = 0;
778 for (loop = 0; loop < params->hdr.e_phnum; loop++)
779 if (params->phdrs[loop].p_type == PT_LOAD)
780 nloads++;
781
782 if (nloads == 0)
783 return -ELIBBAD;
784
785 size = sizeof(*loadmap) + nloads * sizeof(*seg);
Robert P. J. Dayb87576d2006-12-12 20:07:35 +0100786 loadmap = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (!loadmap)
788 return -ENOMEM;
789
790 params->loadmap = loadmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 loadmap->version = ELF32_FDPIC_LOADMAP_VERSION;
793 loadmap->nsegs = nloads;
794
795 load_addr = params->load_addr;
796 seg = loadmap->segs;
797
798 /* map the requested LOADs into the memory space */
799 switch (params->flags & ELF_FDPIC_FLAG_ARRANGEMENT) {
800 case ELF_FDPIC_FLAG_CONSTDISP:
801 case ELF_FDPIC_FLAG_CONTIGUOUS:
802#ifndef CONFIG_MMU
803 ret = elf_fdpic_map_file_constdisp_on_uclinux(params, file, mm);
804 if (ret < 0)
805 return ret;
806 break;
807#endif
808 default:
809 ret = elf_fdpic_map_file_by_direct_mmap(params, file, mm);
810 if (ret < 0)
811 return ret;
812 break;
813 }
814
815 /* map the entry point */
816 if (params->hdr.e_entry) {
817 seg = loadmap->segs;
818 for (loop = loadmap->nsegs; loop > 0; loop--, seg++) {
819 if (params->hdr.e_entry >= seg->p_vaddr &&
David Howells8a2ab7f2006-07-10 04:44:53 -0700820 params->hdr.e_entry < seg->p_vaddr + seg->p_memsz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 params->entry_addr =
David Howells8a2ab7f2006-07-10 04:44:53 -0700822 (params->hdr.e_entry - seg->p_vaddr) +
823 seg->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 break;
825 }
826 }
827 }
828
829 /* determine where the program header table has wound up if mapped */
David Howells8a2ab7f2006-07-10 04:44:53 -0700830 stop = params->hdr.e_phoff;
831 stop += params->hdr.e_phnum * sizeof (struct elf_phdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 phdr = params->phdrs;
833
834 for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
835 if (phdr->p_type != PT_LOAD)
836 continue;
837
838 if (phdr->p_offset > params->hdr.e_phoff ||
839 phdr->p_offset + phdr->p_filesz < stop)
840 continue;
841
842 seg = loadmap->segs;
843 for (loop = loadmap->nsegs; loop > 0; loop--, seg++) {
844 if (phdr->p_vaddr >= seg->p_vaddr &&
David Howells8a2ab7f2006-07-10 04:44:53 -0700845 phdr->p_vaddr + phdr->p_filesz <=
846 seg->p_vaddr + seg->p_memsz) {
847 params->ph_addr =
848 (phdr->p_vaddr - seg->p_vaddr) +
849 seg->addr +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 params->hdr.e_phoff - phdr->p_offset;
851 break;
852 }
853 }
854 break;
855 }
856
857 /* determine where the dynamic section has wound up if there is one */
858 phdr = params->phdrs;
859 for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
860 if (phdr->p_type != PT_DYNAMIC)
861 continue;
862
863 seg = loadmap->segs;
864 for (loop = loadmap->nsegs; loop > 0; loop--, seg++) {
865 if (phdr->p_vaddr >= seg->p_vaddr &&
David Howells8a2ab7f2006-07-10 04:44:53 -0700866 phdr->p_vaddr + phdr->p_memsz <=
867 seg->p_vaddr + seg->p_memsz) {
868 params->dynamic_addr =
869 (phdr->p_vaddr - seg->p_vaddr) +
870 seg->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
David Howells8a2ab7f2006-07-10 04:44:53 -0700872 /* check the dynamic section contains at least
873 * one item, and that the last item is a NULL
874 * entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (phdr->p_memsz == 0 ||
876 phdr->p_memsz % sizeof(Elf32_Dyn) != 0)
877 goto dynamic_error;
878
879 tmp = phdr->p_memsz / sizeof(Elf32_Dyn);
David Howells8a2ab7f2006-07-10 04:44:53 -0700880 if (((Elf32_Dyn *)
881 params->dynamic_addr)[tmp - 1].d_tag != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 goto dynamic_error;
883 break;
884 }
885 }
886 break;
887 }
888
889 /* now elide adjacent segments in the load map on MMU linux
David Howells8a2ab7f2006-07-10 04:44:53 -0700890 * - on uClinux the holes between may actually be filled with system
891 * stuff or stuff from other processes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 */
893#ifdef CONFIG_MMU
894 nloads = loadmap->nsegs;
895 mseg = loadmap->segs;
896 seg = mseg + 1;
897 for (loop = 1; loop < nloads; loop++) {
898 /* see if we have a candidate for merging */
899 if (seg->p_vaddr - mseg->p_vaddr == seg->addr - mseg->addr) {
900 load_addr = PAGE_ALIGN(mseg->addr + mseg->p_memsz);
901 if (load_addr == (seg->addr & PAGE_MASK)) {
David Howells8a2ab7f2006-07-10 04:44:53 -0700902 mseg->p_memsz +=
903 load_addr -
904 (mseg->addr + mseg->p_memsz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 mseg->p_memsz += seg->addr & ~PAGE_MASK;
906 mseg->p_memsz += seg->p_memsz;
907 loadmap->nsegs--;
908 continue;
909 }
910 }
911
912 mseg++;
913 if (mseg != seg)
914 *mseg = *seg;
915 }
916#endif
917
918 kdebug("Mapped Object [%s]:", what);
919 kdebug("- elfhdr : %lx", params->elfhdr_addr);
920 kdebug("- entry : %lx", params->entry_addr);
921 kdebug("- PHDR[] : %lx", params->ph_addr);
922 kdebug("- DYNAMIC[]: %lx", params->dynamic_addr);
923 seg = loadmap->segs;
924 for (loop = 0; loop < loadmap->nsegs; loop++, seg++)
925 kdebug("- LOAD[%d] : %08x-%08x [va=%x ms=%x]",
926 loop,
927 seg->addr, seg->addr + seg->p_memsz - 1,
928 seg->p_vaddr, seg->p_memsz);
929
930 return 0;
931
David Howells8a2ab7f2006-07-10 04:44:53 -0700932dynamic_error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 printk("ELF FDPIC %s with invalid DYNAMIC section (inode=%lu)\n",
Al Viro496ad9a2013-01-23 17:07:38 -0500934 what, file_inode(file)->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return -ELIBBAD;
David Howells8a2ab7f2006-07-10 04:44:53 -0700936}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938/*****************************************************************************/
939/*
940 * map a file with constant displacement under uClinux
941 */
942#ifndef CONFIG_MMU
David Howells8a2ab7f2006-07-10 04:44:53 -0700943static int elf_fdpic_map_file_constdisp_on_uclinux(
944 struct elf_fdpic_params *params,
945 struct file *file,
946 struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 struct elf32_fdpic_loadseg *seg;
949 struct elf32_phdr *phdr;
950 unsigned long load_addr, base = ULONG_MAX, top = 0, maddr = 0, mflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 int loop, ret;
952
953 load_addr = params->load_addr;
954 seg = params->loadmap->segs;
955
David Howells8a2ab7f2006-07-10 04:44:53 -0700956 /* determine the bounds of the contiguous overall allocation we must
957 * make */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 phdr = params->phdrs;
959 for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
960 if (params->phdrs[loop].p_type != PT_LOAD)
961 continue;
962
963 if (base > phdr->p_vaddr)
964 base = phdr->p_vaddr;
965 if (top < phdr->p_vaddr + phdr->p_memsz)
966 top = phdr->p_vaddr + phdr->p_memsz;
967 }
968
969 /* allocate one big anon block for everything */
970 mflags = MAP_PRIVATE;
971 if (params->flags & ELF_FDPIC_FLAG_EXECUTABLE)
972 mflags |= MAP_EXECUTABLE;
973
Linus Torvalds6be5ceb2012-04-20 17:13:58 -0700974 maddr = vm_mmap(NULL, load_addr, top - base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 PROT_READ | PROT_WRITE | PROT_EXEC, mflags, 0);
David Howells8a2ab7f2006-07-10 04:44:53 -0700976 if (IS_ERR_VALUE(maddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 return (int) maddr;
978
979 if (load_addr != 0)
980 load_addr += PAGE_ALIGN(top - base);
981
982 /* and then load the file segments into it */
983 phdr = params->phdrs;
984 for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
985 if (params->phdrs[loop].p_type != PT_LOAD)
986 continue;
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 seg->addr = maddr + (phdr->p_vaddr - base);
989 seg->p_vaddr = phdr->p_vaddr;
990 seg->p_memsz = phdr->p_memsz;
991
Al Viro3dc20cb2013-04-13 20:31:37 -0400992 ret = read_code(file, seg->addr, phdr->p_offset,
993 phdr->p_filesz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (ret < 0)
995 return ret;
996
997 /* map the ELF header address if in this segment */
998 if (phdr->p_offset == 0)
999 params->elfhdr_addr = seg->addr;
1000
1001 /* clear any space allocated but not loaded */
Mike Frysingerab4ad552009-04-02 16:58:28 -07001002 if (phdr->p_filesz < phdr->p_memsz) {
Takuya Yoshikawae30c7c32010-06-01 14:10:47 +01001003 if (clear_user((void *) (seg->addr + phdr->p_filesz),
1004 phdr->p_memsz - phdr->p_filesz))
1005 return -EFAULT;
Mike Frysingerab4ad552009-04-02 16:58:28 -07001006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 if (mm) {
1009 if (phdr->p_flags & PF_X) {
David Howellsaa289b42007-03-23 00:10:00 -07001010 if (!mm->start_code) {
1011 mm->start_code = seg->addr;
1012 mm->end_code = seg->addr +
1013 phdr->p_memsz;
1014 }
David Howells8a2ab7f2006-07-10 04:44:53 -07001015 } else if (!mm->start_data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 mm->start_data = seg->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 mm->end_data = seg->addr + phdr->p_memsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020
1021 seg++;
1022 }
1023
1024 return 0;
David Howells8a2ab7f2006-07-10 04:44:53 -07001025}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026#endif
1027
1028/*****************************************************************************/
1029/*
1030 * map a binary by direct mmap() of the individual PT_LOAD segments
1031 */
1032static int elf_fdpic_map_file_by_direct_mmap(struct elf_fdpic_params *params,
1033 struct file *file,
1034 struct mm_struct *mm)
1035{
1036 struct elf32_fdpic_loadseg *seg;
1037 struct elf32_phdr *phdr;
1038 unsigned long load_addr, delta_vaddr;
Takuya Yoshikawae30c7c32010-06-01 14:10:47 +01001039 int loop, dvset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 load_addr = params->load_addr;
1042 delta_vaddr = 0;
1043 dvset = 0;
1044
1045 seg = params->loadmap->segs;
1046
1047 /* deal with each load segment separately */
1048 phdr = params->phdrs;
1049 for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
1050 unsigned long maddr, disp, excess, excess1;
1051 int prot = 0, flags;
1052
1053 if (phdr->p_type != PT_LOAD)
1054 continue;
1055
1056 kdebug("[LOAD] va=%lx of=%lx fs=%lx ms=%lx",
1057 (unsigned long) phdr->p_vaddr,
1058 (unsigned long) phdr->p_offset,
1059 (unsigned long) phdr->p_filesz,
1060 (unsigned long) phdr->p_memsz);
1061
1062 /* determine the mapping parameters */
1063 if (phdr->p_flags & PF_R) prot |= PROT_READ;
1064 if (phdr->p_flags & PF_W) prot |= PROT_WRITE;
1065 if (phdr->p_flags & PF_X) prot |= PROT_EXEC;
1066
1067 flags = MAP_PRIVATE | MAP_DENYWRITE;
1068 if (params->flags & ELF_FDPIC_FLAG_EXECUTABLE)
1069 flags |= MAP_EXECUTABLE;
1070
1071 maddr = 0;
1072
1073 switch (params->flags & ELF_FDPIC_FLAG_ARRANGEMENT) {
1074 case ELF_FDPIC_FLAG_INDEPENDENT:
1075 /* PT_LOADs are independently locatable */
1076 break;
1077
1078 case ELF_FDPIC_FLAG_HONOURVADDR:
1079 /* the specified virtual address must be honoured */
1080 maddr = phdr->p_vaddr;
1081 flags |= MAP_FIXED;
1082 break;
1083
1084 case ELF_FDPIC_FLAG_CONSTDISP:
1085 /* constant displacement
David Howells8a2ab7f2006-07-10 04:44:53 -07001086 * - can be mapped anywhere, but must be mapped as a
1087 * unit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 */
1089 if (!dvset) {
1090 maddr = load_addr;
1091 delta_vaddr = phdr->p_vaddr;
1092 dvset = 1;
David Howells8a2ab7f2006-07-10 04:44:53 -07001093 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 maddr = load_addr + phdr->p_vaddr - delta_vaddr;
1095 flags |= MAP_FIXED;
1096 }
1097 break;
1098
1099 case ELF_FDPIC_FLAG_CONTIGUOUS:
1100 /* contiguity handled later */
1101 break;
1102
1103 default:
1104 BUG();
1105 }
1106
1107 maddr &= PAGE_MASK;
1108
1109 /* create the mapping */
1110 disp = phdr->p_vaddr & ~PAGE_MASK;
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001111 maddr = vm_mmap(file, maddr, phdr->p_memsz + disp, prot, flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 phdr->p_offset - disp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 kdebug("mmap[%d] <file> sz=%lx pr=%x fl=%x of=%lx --> %08lx",
David Howells8a2ab7f2006-07-10 04:44:53 -07001115 loop, phdr->p_memsz + disp, prot, flags,
1116 phdr->p_offset - disp, maddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
David Howells8a2ab7f2006-07-10 04:44:53 -07001118 if (IS_ERR_VALUE(maddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return (int) maddr;
1120
David Howells8a2ab7f2006-07-10 04:44:53 -07001121 if ((params->flags & ELF_FDPIC_FLAG_ARRANGEMENT) ==
1122 ELF_FDPIC_FLAG_CONTIGUOUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 load_addr += PAGE_ALIGN(phdr->p_memsz + disp);
1124
1125 seg->addr = maddr + disp;
1126 seg->p_vaddr = phdr->p_vaddr;
1127 seg->p_memsz = phdr->p_memsz;
1128
1129 /* map the ELF header address if in this segment */
1130 if (phdr->p_offset == 0)
1131 params->elfhdr_addr = seg->addr;
1132
David Howells8a2ab7f2006-07-10 04:44:53 -07001133 /* clear the bit between beginning of mapping and beginning of
1134 * PT_LOAD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (prot & PROT_WRITE && disp > 0) {
1136 kdebug("clear[%d] ad=%lx sz=%lx", loop, maddr, disp);
Takuya Yoshikawae30c7c32010-06-01 14:10:47 +01001137 if (clear_user((void __user *) maddr, disp))
1138 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 maddr += disp;
1140 }
1141
1142 /* clear any space allocated but not loaded
1143 * - on uClinux we can just clear the lot
1144 * - on MMU linux we'll get a SIGBUS beyond the last page
1145 * extant in the file
1146 */
1147 excess = phdr->p_memsz - phdr->p_filesz;
1148 excess1 = PAGE_SIZE - ((maddr + phdr->p_filesz) & ~PAGE_MASK);
1149
1150#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (excess > excess1) {
1152 unsigned long xaddr = maddr + phdr->p_filesz + excess1;
1153 unsigned long xmaddr;
1154
1155 flags |= MAP_FIXED | MAP_ANONYMOUS;
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001156 xmaddr = vm_mmap(NULL, xaddr, excess - excess1,
David Howells8a2ab7f2006-07-10 04:44:53 -07001157 prot, flags, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 kdebug("mmap[%d] <anon>"
1160 " ad=%lx sz=%lx pr=%x fl=%x of=0 --> %08lx",
David Howells8a2ab7f2006-07-10 04:44:53 -07001161 loop, xaddr, excess - excess1, prot, flags,
1162 xmaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 if (xmaddr != xaddr)
1165 return -ENOMEM;
1166 }
1167
1168 if (prot & PROT_WRITE && excess1 > 0) {
1169 kdebug("clear[%d] ad=%lx sz=%lx",
1170 loop, maddr + phdr->p_filesz, excess1);
Takuya Yoshikawae30c7c32010-06-01 14:10:47 +01001171 if (clear_user((void __user *) maddr + phdr->p_filesz,
1172 excess1))
1173 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
1175
1176#else
1177 if (excess > 0) {
1178 kdebug("clear[%d] ad=%lx sz=%lx",
1179 loop, maddr + phdr->p_filesz, excess);
Takuya Yoshikawae30c7c32010-06-01 14:10:47 +01001180 if (clear_user((void *) maddr + phdr->p_filesz, excess))
1181 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183#endif
1184
1185 if (mm) {
1186 if (phdr->p_flags & PF_X) {
David Howellsaa289b42007-03-23 00:10:00 -07001187 if (!mm->start_code) {
1188 mm->start_code = maddr;
1189 mm->end_code = maddr + phdr->p_memsz;
1190 }
David Howells8a2ab7f2006-07-10 04:44:53 -07001191 } else if (!mm->start_data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 mm->start_data = maddr;
1193 mm->end_data = maddr + phdr->p_memsz;
1194 }
1195 }
1196
1197 seg++;
1198 }
1199
1200 return 0;
David Howells8a2ab7f2006-07-10 04:44:53 -07001201}
David Howells6d8c4e32006-07-10 04:44:55 -07001202
1203/*****************************************************************************/
1204/*
1205 * ELF-FDPIC core dumper
1206 *
1207 * Modelled on fs/exec.c:aout_core_dump()
1208 * Jeremy Fitzhardinge <jeremy@sw.oz.au>
1209 *
1210 * Modelled on fs/binfmt_elf.c core dumper
1211 */
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08001212#ifdef CONFIG_ELF_CORE
David Howells6d8c4e32006-07-10 04:44:55 -07001213
1214/*
David Howells6d8c4e32006-07-10 04:44:55 -07001215 * Decide whether a segment is worth dumping; default is yes to be
1216 * sure (missing info is worse than too much; etc).
1217 * Personally I'd include everything, and use the coredump limit...
1218 *
1219 * I think we should skip something. But I am not sure how. H.J.
1220 */
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001221static int maydump(struct vm_area_struct *vma, unsigned long mm_flags)
David Howells6d8c4e32006-07-10 04:44:55 -07001222{
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001223 int dump_ok;
1224
David Howells6d8c4e32006-07-10 04:44:55 -07001225 /* Do not dump I/O mapped devices or special mappings */
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001226 if (vma->vm_flags & VM_IO) {
David Howells6d8c4e32006-07-10 04:44:55 -07001227 kdcore("%08lx: %08lx: no (IO)", vma->vm_start, vma->vm_flags);
1228 return 0;
1229 }
1230
1231 /* If we may not read the contents, don't allow us to dump
1232 * them either. "dump_write()" can't handle it anyway.
1233 */
1234 if (!(vma->vm_flags & VM_READ)) {
1235 kdcore("%08lx: %08lx: no (!read)", vma->vm_start, vma->vm_flags);
1236 return 0;
1237 }
1238
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001239 /* By default, dump shared memory if mapped from an anonymous file. */
David Howells6d8c4e32006-07-10 04:44:55 -07001240 if (vma->vm_flags & VM_SHARED) {
Al Viro496ad9a2013-01-23 17:07:38 -05001241 if (file_inode(vma->vm_file)->i_nlink == 0) {
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001242 dump_ok = test_bit(MMF_DUMP_ANON_SHARED, &mm_flags);
1243 kdcore("%08lx: %08lx: %s (share)", vma->vm_start,
1244 vma->vm_flags, dump_ok ? "yes" : "no");
1245 return dump_ok;
David Howells6d8c4e32006-07-10 04:44:55 -07001246 }
1247
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001248 dump_ok = test_bit(MMF_DUMP_MAPPED_SHARED, &mm_flags);
1249 kdcore("%08lx: %08lx: %s (share)", vma->vm_start,
1250 vma->vm_flags, dump_ok ? "yes" : "no");
1251 return dump_ok;
David Howells6d8c4e32006-07-10 04:44:55 -07001252 }
1253
1254#ifdef CONFIG_MMU
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001255 /* By default, if it hasn't been written to, don't write it out */
David Howells6d8c4e32006-07-10 04:44:55 -07001256 if (!vma->anon_vma) {
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001257 dump_ok = test_bit(MMF_DUMP_MAPPED_PRIVATE, &mm_flags);
1258 kdcore("%08lx: %08lx: %s (!anon)", vma->vm_start,
1259 vma->vm_flags, dump_ok ? "yes" : "no");
1260 return dump_ok;
David Howells6d8c4e32006-07-10 04:44:55 -07001261 }
1262#endif
1263
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001264 dump_ok = test_bit(MMF_DUMP_ANON_PRIVATE, &mm_flags);
1265 kdcore("%08lx: %08lx: %s", vma->vm_start, vma->vm_flags,
1266 dump_ok ? "yes" : "no");
1267 return dump_ok;
David Howells6d8c4e32006-07-10 04:44:55 -07001268}
1269
1270/* An ELF note in memory */
1271struct memelfnote
1272{
1273 const char *name;
1274 int type;
1275 unsigned int datasz;
1276 void *data;
1277};
1278
1279static int notesize(struct memelfnote *en)
1280{
1281 int sz;
1282
1283 sz = sizeof(struct elf_note);
1284 sz += roundup(strlen(en->name) + 1, 4);
1285 sz += roundup(en->datasz, 4);
1286
1287 return sz;
1288}
1289
1290/* #define DEBUG */
1291
Al Viroe6c1baa2013-10-05 18:58:47 -04001292static int writenote(struct memelfnote *men, struct coredump_params *cprm)
David Howells6d8c4e32006-07-10 04:44:55 -07001293{
1294 struct elf_note en;
David Howells6d8c4e32006-07-10 04:44:55 -07001295 en.n_namesz = strlen(men->name) + 1;
1296 en.n_descsz = men->datasz;
1297 en.n_type = men->type;
1298
Al Viroe6c1baa2013-10-05 18:58:47 -04001299 return dump_emit(cprm, &en, sizeof(en)) &&
Al Viro22a8cb82013-10-08 11:05:01 -04001300 dump_emit(cprm, men->name, en.n_namesz) && dump_align(cprm, 4) &&
1301 dump_emit(cprm, men->data, men->datasz) && dump_align(cprm, 4);
David Howells6d8c4e32006-07-10 04:44:55 -07001302}
David Howells6d8c4e32006-07-10 04:44:55 -07001303
David Howells6d8c4e32006-07-10 04:44:55 -07001304static inline void fill_elf_fdpic_header(struct elfhdr *elf, int segs)
1305{
1306 memcpy(elf->e_ident, ELFMAG, SELFMAG);
1307 elf->e_ident[EI_CLASS] = ELF_CLASS;
1308 elf->e_ident[EI_DATA] = ELF_DATA;
1309 elf->e_ident[EI_VERSION] = EV_CURRENT;
1310 elf->e_ident[EI_OSABI] = ELF_OSABI;
1311 memset(elf->e_ident+EI_PAD, 0, EI_NIDENT-EI_PAD);
1312
1313 elf->e_type = ET_CORE;
1314 elf->e_machine = ELF_ARCH;
1315 elf->e_version = EV_CURRENT;
1316 elf->e_entry = 0;
1317 elf->e_phoff = sizeof(struct elfhdr);
1318 elf->e_shoff = 0;
1319 elf->e_flags = ELF_FDPIC_CORE_EFLAGS;
1320 elf->e_ehsize = sizeof(struct elfhdr);
1321 elf->e_phentsize = sizeof(struct elf_phdr);
1322 elf->e_phnum = segs;
1323 elf->e_shentsize = 0;
1324 elf->e_shnum = 0;
1325 elf->e_shstrndx = 0;
1326 return;
1327}
1328
1329static inline void fill_elf_note_phdr(struct elf_phdr *phdr, int sz, loff_t offset)
1330{
1331 phdr->p_type = PT_NOTE;
1332 phdr->p_offset = offset;
1333 phdr->p_vaddr = 0;
1334 phdr->p_paddr = 0;
1335 phdr->p_filesz = sz;
1336 phdr->p_memsz = 0;
1337 phdr->p_flags = 0;
1338 phdr->p_align = 0;
1339 return;
1340}
1341
1342static inline void fill_note(struct memelfnote *note, const char *name, int type,
1343 unsigned int sz, void *data)
1344{
1345 note->name = name;
1346 note->type = type;
1347 note->datasz = sz;
1348 note->data = data;
1349 return;
1350}
1351
1352/*
1353 * fill up all the fields in prstatus from the given task struct, except
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001354 * registers which need to be filled up separately.
David Howells6d8c4e32006-07-10 04:44:55 -07001355 */
1356static void fill_prstatus(struct elf_prstatus *prstatus,
1357 struct task_struct *p, long signr)
1358{
1359 prstatus->pr_info.si_signo = prstatus->pr_cursig = signr;
1360 prstatus->pr_sigpend = p->pending.signal.sig[0];
1361 prstatus->pr_sighold = p->blocked.sig[0];
Oleg Nesterov3b34fc52009-06-17 16:27:38 -07001362 rcu_read_lock();
1363 prstatus->pr_ppid = task_pid_vnr(rcu_dereference(p->real_parent));
1364 rcu_read_unlock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001365 prstatus->pr_pid = task_pid_vnr(p);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001366 prstatus->pr_pgrp = task_pgrp_vnr(p);
1367 prstatus->pr_sid = task_session_vnr(p);
David Howells6d8c4e32006-07-10 04:44:55 -07001368 if (thread_group_leader(p)) {
Paul Mundt2515ddc2008-10-21 12:07:40 +09001369 struct task_cputime cputime;
1370
David Howells6d8c4e32006-07-10 04:44:55 -07001371 /*
Paul Mundt2515ddc2008-10-21 12:07:40 +09001372 * This is the record for the group leader. It shows the
1373 * group-wide total, not its individual thread total.
David Howells6d8c4e32006-07-10 04:44:55 -07001374 */
Paul Mundt2515ddc2008-10-21 12:07:40 +09001375 thread_group_cputime(p, &cputime);
1376 cputime_to_timeval(cputime.utime, &prstatus->pr_utime);
1377 cputime_to_timeval(cputime.stime, &prstatus->pr_stime);
David Howells6d8c4e32006-07-10 04:44:55 -07001378 } else {
Frederic Weisbecker6fac4822012-11-13 14:20:55 +01001379 cputime_t utime, stime;
1380
1381 task_cputime(p, &utime, &stime);
1382 cputime_to_timeval(utime, &prstatus->pr_utime);
1383 cputime_to_timeval(stime, &prstatus->pr_stime);
David Howells6d8c4e32006-07-10 04:44:55 -07001384 }
1385 cputime_to_timeval(p->signal->cutime, &prstatus->pr_cutime);
1386 cputime_to_timeval(p->signal->cstime, &prstatus->pr_cstime);
1387
1388 prstatus->pr_exec_fdpic_loadmap = p->mm->context.exec_fdpic_loadmap;
1389 prstatus->pr_interp_fdpic_loadmap = p->mm->context.interp_fdpic_loadmap;
1390}
1391
1392static int fill_psinfo(struct elf_prpsinfo *psinfo, struct task_struct *p,
1393 struct mm_struct *mm)
1394{
David Howellsc69e8d92008-11-14 10:39:19 +11001395 const struct cred *cred;
David Howells6d8c4e32006-07-10 04:44:55 -07001396 unsigned int i, len;
1397
1398 /* first copy the parameters from user space */
1399 memset(psinfo, 0, sizeof(struct elf_prpsinfo));
1400
1401 len = mm->arg_end - mm->arg_start;
1402 if (len >= ELF_PRARGSZ)
1403 len = ELF_PRARGSZ - 1;
1404 if (copy_from_user(&psinfo->pr_psargs,
1405 (const char __user *) mm->arg_start, len))
1406 return -EFAULT;
1407 for (i = 0; i < len; i++)
1408 if (psinfo->pr_psargs[i] == 0)
1409 psinfo->pr_psargs[i] = ' ';
1410 psinfo->pr_psargs[len] = 0;
1411
Oleg Nesterov3b34fc52009-06-17 16:27:38 -07001412 rcu_read_lock();
1413 psinfo->pr_ppid = task_pid_vnr(rcu_dereference(p->real_parent));
1414 rcu_read_unlock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001415 psinfo->pr_pid = task_pid_vnr(p);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001416 psinfo->pr_pgrp = task_pgrp_vnr(p);
1417 psinfo->pr_sid = task_session_vnr(p);
David Howells6d8c4e32006-07-10 04:44:55 -07001418
1419 i = p->state ? ffz(~p->state) + 1 : 0;
1420 psinfo->pr_state = i;
1421 psinfo->pr_sname = (i > 5) ? '.' : "RSDTZW"[i];
1422 psinfo->pr_zomb = psinfo->pr_sname == 'Z';
1423 psinfo->pr_nice = task_nice(p);
1424 psinfo->pr_flag = p->flags;
David Howellsc69e8d92008-11-14 10:39:19 +11001425 rcu_read_lock();
1426 cred = __task_cred(p);
Eric W. Biedermanebc887b2012-02-07 18:36:10 -08001427 SET_UID(psinfo->pr_uid, from_kuid_munged(cred->user_ns, cred->uid));
1428 SET_GID(psinfo->pr_gid, from_kgid_munged(cred->user_ns, cred->gid));
David Howellsc69e8d92008-11-14 10:39:19 +11001429 rcu_read_unlock();
David Howells6d8c4e32006-07-10 04:44:55 -07001430 strncpy(psinfo->pr_fname, p->comm, sizeof(psinfo->pr_fname));
1431
1432 return 0;
1433}
1434
1435/* Here is the structure in which status of each thread is captured. */
1436struct elf_thread_status
1437{
1438 struct list_head list;
1439 struct elf_prstatus prstatus; /* NT_PRSTATUS */
1440 elf_fpregset_t fpu; /* NT_PRFPREG */
1441 struct task_struct *thread;
1442#ifdef ELF_CORE_COPY_XFPREGS
Mark Nelson5b20cd82007-10-16 23:25:39 -07001443 elf_fpxregset_t xfpu; /* ELF_CORE_XFPREG_TYPE */
David Howells6d8c4e32006-07-10 04:44:55 -07001444#endif
1445 struct memelfnote notes[3];
1446 int num_notes;
1447};
1448
1449/*
1450 * In order to add the specific thread information for the elf file format,
1451 * we need to keep a linked list of every thread's pr_status and then create
1452 * a single section for them in the final core file.
1453 */
1454static int elf_dump_thread_status(long signr, struct elf_thread_status *t)
1455{
1456 struct task_struct *p = t->thread;
1457 int sz = 0;
1458
1459 t->num_notes = 0;
1460
1461 fill_prstatus(&t->prstatus, p, signr);
1462 elf_core_copy_task_regs(p, &t->prstatus.pr_reg);
1463
1464 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus),
1465 &t->prstatus);
1466 t->num_notes++;
1467 sz += notesize(&t->notes[0]);
1468
1469 t->prstatus.pr_fpvalid = elf_core_copy_task_fpregs(p, NULL, &t->fpu);
1470 if (t->prstatus.pr_fpvalid) {
1471 fill_note(&t->notes[1], "CORE", NT_PRFPREG, sizeof(t->fpu),
1472 &t->fpu);
1473 t->num_notes++;
1474 sz += notesize(&t->notes[1]);
1475 }
1476
1477#ifdef ELF_CORE_COPY_XFPREGS
1478 if (elf_core_copy_task_xfpregs(p, &t->xfpu)) {
Mark Nelson5b20cd82007-10-16 23:25:39 -07001479 fill_note(&t->notes[2], "LINUX", ELF_CORE_XFPREG_TYPE,
1480 sizeof(t->xfpu), &t->xfpu);
David Howells6d8c4e32006-07-10 04:44:55 -07001481 t->num_notes++;
1482 sz += notesize(&t->notes[2]);
1483 }
1484#endif
1485 return sz;
1486}
1487
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001488static void fill_extnum_info(struct elfhdr *elf, struct elf_shdr *shdr4extnum,
1489 elf_addr_t e_shoff, int segs)
1490{
1491 elf->e_shoff = e_shoff;
1492 elf->e_shentsize = sizeof(*shdr4extnum);
1493 elf->e_shnum = 1;
1494 elf->e_shstrndx = SHN_UNDEF;
1495
1496 memset(shdr4extnum, 0, sizeof(*shdr4extnum));
1497
1498 shdr4extnum->sh_type = SHT_NULL;
1499 shdr4extnum->sh_size = elf->e_shnum;
1500 shdr4extnum->sh_link = elf->e_shstrndx;
1501 shdr4extnum->sh_info = segs;
1502}
1503
David Howells6d8c4e32006-07-10 04:44:55 -07001504/*
1505 * dump the segments for an MMU process
1506 */
Al Viroe6c1baa2013-10-05 18:58:47 -04001507static bool elf_fdpic_dump_segments(struct coredump_params *cprm)
David Howells6d8c4e32006-07-10 04:44:55 -07001508{
1509 struct vm_area_struct *vma;
1510
1511 for (vma = current->mm->mmap; vma; vma = vma->vm_next) {
1512 unsigned long addr;
1513
Al Viroe6c1baa2013-10-05 18:58:47 -04001514 if (!maydump(vma, cprm->mm_flags))
David Howells6d8c4e32006-07-10 04:44:55 -07001515 continue;
1516
Al Viroe6c1baa2013-10-05 18:58:47 -04001517#ifdef CONFIG_MMU
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07001518 for (addr = vma->vm_start; addr < vma->vm_end;
1519 addr += PAGE_SIZE) {
Al Viroe6c1baa2013-10-05 18:58:47 -04001520 bool res;
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07001521 struct page *page = get_dump_page(addr);
1522 if (page) {
1523 void *kaddr = kmap(page);
Al Viroe6c1baa2013-10-05 18:58:47 -04001524 res = dump_emit(cprm, kaddr, PAGE_SIZE);
David Howells6d8c4e32006-07-10 04:44:55 -07001525 kunmap(page);
1526 page_cache_release(page);
Al Viroe6c1baa2013-10-05 18:58:47 -04001527 } else {
Al Viro9b56d542013-10-08 09:26:08 -04001528 res = dump_skip(cprm, PAGE_SIZE);
Al Viroe6c1baa2013-10-05 18:58:47 -04001529 }
1530 if (!res)
1531 return false;
David Howells6d8c4e32006-07-10 04:44:55 -07001532 }
Al Viroe6c1baa2013-10-05 18:58:47 -04001533#else
1534 if (!dump_emit(cprm, (void *) vma->vm_start,
David Howells6d8c4e32006-07-10 04:44:55 -07001535 vma->vm_end - vma->vm_start))
Al Viroe6c1baa2013-10-05 18:58:47 -04001536 return false;
David Howells6d8c4e32006-07-10 04:44:55 -07001537#endif
Al Viroe6c1baa2013-10-05 18:58:47 -04001538 }
1539 return true;
1540}
David Howells6d8c4e32006-07-10 04:44:55 -07001541
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001542static size_t elf_core_vma_data_size(unsigned long mm_flags)
1543{
1544 struct vm_area_struct *vma;
1545 size_t size = 0;
1546
David Howells47568d42010-03-24 17:02:28 +00001547 for (vma = current->mm->mmap; vma; vma = vma->vm_next)
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001548 if (maydump(vma, mm_flags))
1549 size += vma->vm_end - vma->vm_start;
1550 return size;
1551}
1552
David Howells6d8c4e32006-07-10 04:44:55 -07001553/*
1554 * Actual dumper
1555 *
1556 * This is a two-pass process; first we find the offsets of the bits,
1557 * and then they are actually written out. If we run out of core limit
1558 * we just truncate.
1559 */
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001560static int elf_fdpic_core_dump(struct coredump_params *cprm)
David Howells6d8c4e32006-07-10 04:44:55 -07001561{
1562#define NUM_NOTES 6
1563 int has_dumped = 0;
1564 mm_segment_t fs;
1565 int segs;
David Howells6d8c4e32006-07-10 04:44:55 -07001566 int i;
1567 struct vm_area_struct *vma;
1568 struct elfhdr *elf = NULL;
Al Viro9b56d542013-10-08 09:26:08 -04001569 loff_t offset = 0, dataoff;
David Howells6d8c4e32006-07-10 04:44:55 -07001570 int numnote;
1571 struct memelfnote *notes = NULL;
1572 struct elf_prstatus *prstatus = NULL; /* NT_PRSTATUS */
1573 struct elf_prpsinfo *psinfo = NULL; /* NT_PRPSINFO */
David Howells6d8c4e32006-07-10 04:44:55 -07001574 LIST_HEAD(thread_list);
1575 struct list_head *t;
1576 elf_fpregset_t *fpu = NULL;
1577#ifdef ELF_CORE_COPY_XFPREGS
1578 elf_fpxregset_t *xfpu = NULL;
1579#endif
1580 int thread_status_size = 0;
David Howells6d8c4e32006-07-10 04:44:55 -07001581 elf_addr_t *auxv;
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001582 struct elf_phdr *phdr4note = NULL;
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001583 struct elf_shdr *shdr4extnum = NULL;
1584 Elf_Half e_phnum;
1585 elf_addr_t e_shoff;
Al Viroafabada2013-10-14 07:39:56 -04001586 struct core_thread *ct;
1587 struct elf_thread_status *tmp;
David Howells6d8c4e32006-07-10 04:44:55 -07001588
1589 /*
1590 * We no longer stop all VM operations.
1591 *
1592 * This is because those proceses that could possibly change map_count
1593 * or the mmap / vma pages are now blocked in do_exit on current
1594 * finishing this core dump.
1595 *
1596 * Only ptrace can touch these memory addresses, but it doesn't change
1597 * the map_count or the pages allocated. So no possibility of crashing
1598 * exists while dumping the mm->vm_next areas to the core file.
1599 */
1600
1601 /* alloc memory for large data structures: too large to be on stack */
1602 elf = kmalloc(sizeof(*elf), GFP_KERNEL);
1603 if (!elf)
1604 goto cleanup;
1605 prstatus = kzalloc(sizeof(*prstatus), GFP_KERNEL);
1606 if (!prstatus)
1607 goto cleanup;
1608 psinfo = kmalloc(sizeof(*psinfo), GFP_KERNEL);
1609 if (!psinfo)
1610 goto cleanup;
1611 notes = kmalloc(NUM_NOTES * sizeof(struct memelfnote), GFP_KERNEL);
1612 if (!notes)
1613 goto cleanup;
1614 fpu = kmalloc(sizeof(*fpu), GFP_KERNEL);
1615 if (!fpu)
1616 goto cleanup;
1617#ifdef ELF_CORE_COPY_XFPREGS
1618 xfpu = kmalloc(sizeof(*xfpu), GFP_KERNEL);
1619 if (!xfpu)
1620 goto cleanup;
1621#endif
1622
Al Viroafabada2013-10-14 07:39:56 -04001623 for (ct = current->mm->core_state->dumper.next;
1624 ct; ct = ct->next) {
1625 tmp = kzalloc(sizeof(*tmp), GFP_KERNEL);
1626 if (!tmp)
1627 goto cleanup;
1628
1629 tmp->thread = ct->task;
1630 list_add(&tmp->list, &thread_list);
1631 }
1632
1633 list_for_each(t, &thread_list) {
David Howells6d8c4e32006-07-10 04:44:55 -07001634 struct elf_thread_status *tmp;
Al Viroafabada2013-10-14 07:39:56 -04001635 int sz;
Oleg Nesterov24d52882008-07-25 01:47:40 -07001636
Al Viroafabada2013-10-14 07:39:56 -04001637 tmp = list_entry(t, struct elf_thread_status, list);
1638 sz = elf_dump_thread_status(cprm->siginfo->si_signo, tmp);
1639 thread_status_size += sz;
David Howells6d8c4e32006-07-10 04:44:55 -07001640 }
1641
1642 /* now collect the dump for the current */
Denys Vlasenko5ab1c302012-10-04 17:15:29 -07001643 fill_prstatus(prstatus, current, cprm->siginfo->si_signo);
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001644 elf_core_copy_regs(&prstatus->pr_reg, cprm->regs);
David Howells6d8c4e32006-07-10 04:44:55 -07001645
David Howells6d8c4e32006-07-10 04:44:55 -07001646 segs = current->mm->map_count;
Daisuke HATAYAMA1fcccba2010-03-05 13:44:07 -08001647 segs += elf_core_extra_phdrs();
David Howells6d8c4e32006-07-10 04:44:55 -07001648
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001649 /* for notes section */
1650 segs++;
1651
1652 /* If segs > PN_XNUM(0xffff), then e_phnum overflows. To avoid
1653 * this, kernel supports extended numbering. Have a look at
1654 * include/linux/elf.h for further information. */
1655 e_phnum = segs > PN_XNUM ? PN_XNUM : segs;
1656
David Howells6d8c4e32006-07-10 04:44:55 -07001657 /* Set up header */
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001658 fill_elf_fdpic_header(elf, e_phnum);
David Howells6d8c4e32006-07-10 04:44:55 -07001659
1660 has_dumped = 1;
David Howells6d8c4e32006-07-10 04:44:55 -07001661 /*
1662 * Set up the notes in similar form to SVR4 core dumps made
1663 * with info from their /proc.
1664 */
1665
1666 fill_note(notes + 0, "CORE", NT_PRSTATUS, sizeof(*prstatus), prstatus);
1667 fill_psinfo(psinfo, current->group_leader, current->mm);
1668 fill_note(notes + 1, "CORE", NT_PRPSINFO, sizeof(*psinfo), psinfo);
1669
1670 numnote = 2;
1671
1672 auxv = (elf_addr_t *) current->mm->saved_auxv;
1673
1674 i = 0;
1675 do
1676 i += 2;
1677 while (auxv[i - 2] != AT_NULL);
1678 fill_note(&notes[numnote++], "CORE", NT_AUXV,
1679 i * sizeof(elf_addr_t), auxv);
1680
1681 /* Try to dump the FPU. */
1682 if ((prstatus->pr_fpvalid =
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001683 elf_core_copy_task_fpregs(current, cprm->regs, fpu)))
David Howells6d8c4e32006-07-10 04:44:55 -07001684 fill_note(notes + numnote++,
1685 "CORE", NT_PRFPREG, sizeof(*fpu), fpu);
1686#ifdef ELF_CORE_COPY_XFPREGS
1687 if (elf_core_copy_task_xfpregs(current, xfpu))
1688 fill_note(notes + numnote++,
Mark Nelson5b20cd82007-10-16 23:25:39 -07001689 "LINUX", ELF_CORE_XFPREG_TYPE, sizeof(*xfpu), xfpu);
David Howells6d8c4e32006-07-10 04:44:55 -07001690#endif
1691
1692 fs = get_fs();
1693 set_fs(KERNEL_DS);
1694
David Howells6d8c4e32006-07-10 04:44:55 -07001695 offset += sizeof(*elf); /* Elf header */
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001696 offset += segs * sizeof(struct elf_phdr); /* Program headers */
David Howells6d8c4e32006-07-10 04:44:55 -07001697
1698 /* Write notes phdr entry */
1699 {
David Howells6d8c4e32006-07-10 04:44:55 -07001700 int sz = 0;
1701
1702 for (i = 0; i < numnote; i++)
1703 sz += notesize(notes + i);
1704
1705 sz += thread_status_size;
1706
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001707 phdr4note = kmalloc(sizeof(*phdr4note), GFP_KERNEL);
1708 if (!phdr4note)
Daisuke HATAYAMA088e7af2010-03-05 13:44:06 -08001709 goto end_coredump;
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001710
1711 fill_elf_note_phdr(phdr4note, sz, offset);
1712 offset += sz;
David Howells6d8c4e32006-07-10 04:44:55 -07001713 }
1714
1715 /* Page-align dumped data */
1716 dataoff = offset = roundup(offset, ELF_EXEC_PAGESIZE);
1717
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001718 offset += elf_core_vma_data_size(cprm->mm_flags);
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001719 offset += elf_core_extra_data_size();
1720 e_shoff = offset;
1721
1722 if (e_phnum == PN_XNUM) {
1723 shdr4extnum = kmalloc(sizeof(*shdr4extnum), GFP_KERNEL);
1724 if (!shdr4extnum)
1725 goto end_coredump;
1726 fill_extnum_info(elf, shdr4extnum, e_shoff, segs);
1727 }
1728
1729 offset = dataoff;
1730
Al Viroe6c1baa2013-10-05 18:58:47 -04001731 if (!dump_emit(cprm, elf, sizeof(*elf)))
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001732 goto end_coredump;
1733
Al Viroe6c1baa2013-10-05 18:58:47 -04001734 if (!dump_emit(cprm, phdr4note, sizeof(*phdr4note)))
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001735 goto end_coredump;
1736
David Howells6d8c4e32006-07-10 04:44:55 -07001737 /* write program headers for segments dump */
David Howells8feae132009-01-08 12:04:47 +00001738 for (vma = current->mm->mmap; vma; vma = vma->vm_next) {
David Howells6d8c4e32006-07-10 04:44:55 -07001739 struct elf_phdr phdr;
1740 size_t sz;
1741
David Howells6d8c4e32006-07-10 04:44:55 -07001742 sz = vma->vm_end - vma->vm_start;
1743
1744 phdr.p_type = PT_LOAD;
1745 phdr.p_offset = offset;
1746 phdr.p_vaddr = vma->vm_start;
1747 phdr.p_paddr = 0;
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001748 phdr.p_filesz = maydump(vma, cprm->mm_flags) ? sz : 0;
David Howells6d8c4e32006-07-10 04:44:55 -07001749 phdr.p_memsz = sz;
1750 offset += phdr.p_filesz;
1751 phdr.p_flags = vma->vm_flags & VM_READ ? PF_R : 0;
1752 if (vma->vm_flags & VM_WRITE)
1753 phdr.p_flags |= PF_W;
1754 if (vma->vm_flags & VM_EXEC)
1755 phdr.p_flags |= PF_X;
1756 phdr.p_align = ELF_EXEC_PAGESIZE;
1757
Al Viroe6c1baa2013-10-05 18:58:47 -04001758 if (!dump_emit(cprm, &phdr, sizeof(phdr)))
Daisuke HATAYAMA088e7af2010-03-05 13:44:06 -08001759 goto end_coredump;
David Howells6d8c4e32006-07-10 04:44:55 -07001760 }
1761
Al Viro506f21c2013-10-05 17:22:57 -04001762 if (!elf_core_write_extra_phdrs(cprm, offset))
Daisuke HATAYAMA1fcccba2010-03-05 13:44:07 -08001763 goto end_coredump;
David Howells6d8c4e32006-07-10 04:44:55 -07001764
1765 /* write out the notes section */
1766 for (i = 0; i < numnote; i++)
Al Viroe6c1baa2013-10-05 18:58:47 -04001767 if (!writenote(notes + i, cprm))
David Howells6d8c4e32006-07-10 04:44:55 -07001768 goto end_coredump;
1769
1770 /* write out the thread status notes section */
1771 list_for_each(t, &thread_list) {
1772 struct elf_thread_status *tmp =
1773 list_entry(t, struct elf_thread_status, list);
1774
1775 for (i = 0; i < tmp->num_notes; i++)
Al Viroe6c1baa2013-10-05 18:58:47 -04001776 if (!writenote(&tmp->notes[i], cprm))
David Howells6d8c4e32006-07-10 04:44:55 -07001777 goto end_coredump;
1778 }
1779
Al Viro9b56d542013-10-08 09:26:08 -04001780 if (!dump_skip(cprm, dataoff - cprm->written))
David Howells6d8c4e32006-07-10 04:44:55 -07001781 goto end_coredump;
1782
Al Viroe6c1baa2013-10-05 18:58:47 -04001783 if (!elf_fdpic_dump_segments(cprm))
1784 goto end_coredump;
1785
Al Viroaa3e7ea2013-10-05 17:50:15 -04001786 if (!elf_core_write_extra_data(cprm))
Daisuke HATAYAMA1fcccba2010-03-05 13:44:07 -08001787 goto end_coredump;
David Howells6d8c4e32006-07-10 04:44:55 -07001788
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001789 if (e_phnum == PN_XNUM) {
Al Viroe6c1baa2013-10-05 18:58:47 -04001790 if (!dump_emit(cprm, shdr4extnum, sizeof(*shdr4extnum)))
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001791 goto end_coredump;
1792 }
1793
Daisuke HATAYAMA2f489122010-01-04 15:42:14 +09001794 if (cprm->file->f_pos != offset) {
David Howells6d8c4e32006-07-10 04:44:55 -07001795 /* Sanity check */
1796 printk(KERN_WARNING
1797 "elf_core_dump: file->f_pos (%lld) != offset (%lld)\n",
Daisuke HATAYAMA2f489122010-01-04 15:42:14 +09001798 cprm->file->f_pos, offset);
David Howells6d8c4e32006-07-10 04:44:55 -07001799 }
1800
1801end_coredump:
1802 set_fs(fs);
1803
1804cleanup:
1805 while (!list_empty(&thread_list)) {
1806 struct list_head *tmp = thread_list.next;
1807 list_del(tmp);
1808 kfree(list_entry(tmp, struct elf_thread_status, list));
1809 }
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001810 kfree(phdr4note);
David Howells6d8c4e32006-07-10 04:44:55 -07001811 kfree(elf);
1812 kfree(prstatus);
1813 kfree(psinfo);
1814 kfree(notes);
1815 kfree(fpu);
Davidlohr Buesobcb65a72011-07-06 12:26:05 +01001816 kfree(shdr4extnum);
David Howells6d8c4e32006-07-10 04:44:55 -07001817#ifdef ELF_CORE_COPY_XFPREGS
1818 kfree(xfpu);
1819#endif
1820 return has_dumped;
1821#undef NUM_NOTES
1822}
1823
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08001824#endif /* CONFIG_ELF_CORE */