blob: d2b079afed0e627e817d061c8861da4bcb4755df [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
106static int is_elf_fdpic(struct elfhdr *hdr, struct file *file)
107{
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;
112 if (!elf_check_arch(hdr) || !elf_check_fdpic(hdr))
113 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
119/*****************************************************************************/
120/*
121 * read the program headers table into memory
122 */
David Howells8a2ab7f2006-07-10 04:44:53 -0700123static int elf_fdpic_fetch_phdrs(struct elf_fdpic_params *params,
124 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 struct elf32_phdr *phdr;
127 unsigned long size;
128 int retval, loop;
129
130 if (params->hdr.e_phentsize != sizeof(struct elf_phdr))
131 return -ENOMEM;
132 if (params->hdr.e_phnum > 65536U / sizeof(struct elf_phdr))
133 return -ENOMEM;
134
135 size = params->hdr.e_phnum * sizeof(struct elf_phdr);
136 params->phdrs = kmalloc(size, GFP_KERNEL);
137 if (!params->phdrs)
138 return -ENOMEM;
139
David Howells8a2ab7f2006-07-10 04:44:53 -0700140 retval = kernel_read(file, params->hdr.e_phoff,
141 (char *) params->phdrs, size);
David Howellse1d2c8b2008-04-29 00:59:34 -0700142 if (unlikely(retval != size))
143 return retval < 0 ? retval : -ENOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 /* determine stack size for this binary */
146 phdr = params->phdrs;
147 for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
148 if (phdr->p_type != PT_GNU_STACK)
149 continue;
150
151 if (phdr->p_flags & PF_X)
152 params->flags |= ELF_FDPIC_FLAG_EXEC_STACK;
153 else
154 params->flags |= ELF_FDPIC_FLAG_NOEXEC_STACK;
155
156 params->stack_size = phdr->p_memsz;
157 break;
158 }
159
160 return 0;
David Howells8a2ab7f2006-07-10 04:44:53 -0700161}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163/*****************************************************************************/
164/*
165 * load an fdpic binary into various bits of memory
166 */
Al Viro71613c32012-10-20 22:00:48 -0400167static int load_elf_fdpic_binary(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 struct elf_fdpic_params exec_params, interp_params;
Al Viro71613c32012-10-20 22:00:48 -0400170 struct pt_regs *regs = current_pt_regs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 struct elf_phdr *phdr;
David Howells8a2ab7f2006-07-10 04:44:53 -0700172 unsigned long stack_size, entryaddr;
David Howells8a2ab7f2006-07-10 04:44:53 -0700173#ifdef ELF_FDPIC_PLAT_INIT
174 unsigned long dynaddr;
175#endif
Mike Frysinger04e4f2b2010-01-06 17:23:17 +0000176#ifndef CONFIG_MMU
177 unsigned long stack_prot;
178#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 struct file *interpreter = NULL; /* to shut gcc up */
180 char *interpreter_name = NULL;
181 int executable_stack;
182 int retval, i;
183
David Howellsaa289b42007-03-23 00:10:00 -0700184 kdebug("____ LOAD %d ____", current->pid);
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 memset(&exec_params, 0, sizeof(exec_params));
187 memset(&interp_params, 0, sizeof(interp_params));
188
189 exec_params.hdr = *(struct elfhdr *) bprm->buf;
190 exec_params.flags = ELF_FDPIC_FLAG_PRESENT | ELF_FDPIC_FLAG_EXECUTABLE;
191
192 /* check that this is a binary we know how to deal with */
193 retval = -ENOEXEC;
194 if (!is_elf_fdpic(&exec_params.hdr, bprm->file))
195 goto error;
196
197 /* read the program header table */
198 retval = elf_fdpic_fetch_phdrs(&exec_params, bprm->file);
199 if (retval < 0)
200 goto error;
201
202 /* scan for a program header that specifies an interpreter */
203 phdr = exec_params.phdrs;
204
205 for (i = 0; i < exec_params.hdr.e_phnum; i++, phdr++) {
206 switch (phdr->p_type) {
207 case PT_INTERP:
208 retval = -ENOMEM;
209 if (phdr->p_filesz > PATH_MAX)
210 goto error;
211 retval = -ENOENT;
212 if (phdr->p_filesz < 2)
213 goto error;
214
215 /* read the name of the interpreter into memory */
Jesper Juhl792db3a2006-01-09 20:54:45 -0800216 interpreter_name = kmalloc(phdr->p_filesz, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (!interpreter_name)
218 goto error;
219
220 retval = kernel_read(bprm->file,
221 phdr->p_offset,
222 interpreter_name,
223 phdr->p_filesz);
David Howellse1d2c8b2008-04-29 00:59:34 -0700224 if (unlikely(retval != phdr->p_filesz)) {
225 if (retval >= 0)
226 retval = -ENOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 goto error;
David Howellse1d2c8b2008-04-29 00:59:34 -0700228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 retval = -ENOENT;
231 if (interpreter_name[phdr->p_filesz - 1] != '\0')
232 goto error;
233
234 kdebug("Using ELF interpreter %s", interpreter_name);
235
236 /* replace the program with the interpreter */
237 interpreter = open_exec(interpreter_name);
238 retval = PTR_ERR(interpreter);
239 if (IS_ERR(interpreter)) {
240 interpreter = NULL;
241 goto error;
242 }
243
Alexey Dobriyan1fb84492007-01-26 00:57:16 -0800244 /*
245 * If the binary is not readable then enforce
246 * mm->dumpable = 0 regardless of the interpreter's
247 * permissions.
248 */
Al Viro1b5d7832011-06-19 12:49:47 -0400249 would_dump(bprm, interpreter);
Alexey Dobriyan1fb84492007-01-26 00:57:16 -0800250
David Howells8a2ab7f2006-07-10 04:44:53 -0700251 retval = kernel_read(interpreter, 0, bprm->buf,
252 BINPRM_BUF_SIZE);
David Howellse1d2c8b2008-04-29 00:59:34 -0700253 if (unlikely(retval != BINPRM_BUF_SIZE)) {
254 if (retval >= 0)
255 retval = -ENOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 goto error;
David Howellse1d2c8b2008-04-29 00:59:34 -0700257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 interp_params.hdr = *((struct elfhdr *) bprm->buf);
260 break;
261
262 case PT_LOAD:
263#ifdef CONFIG_MMU
264 if (exec_params.load_addr == 0)
265 exec_params.load_addr = phdr->p_vaddr;
266#endif
267 break;
268 }
269
270 }
271
272 if (elf_check_const_displacement(&exec_params.hdr))
273 exec_params.flags |= ELF_FDPIC_FLAG_CONSTDISP;
274
275 /* perform insanity checks on the interpreter */
276 if (interpreter_name) {
277 retval = -ELIBBAD;
278 if (!is_elf_fdpic(&interp_params.hdr, interpreter))
279 goto error;
280
281 interp_params.flags = ELF_FDPIC_FLAG_PRESENT;
282
283 /* read the interpreter's program header table */
284 retval = elf_fdpic_fetch_phdrs(&interp_params, interpreter);
285 if (retval < 0)
286 goto error;
287 }
288
289 stack_size = exec_params.stack_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (exec_params.flags & ELF_FDPIC_FLAG_EXEC_STACK)
291 executable_stack = EXSTACK_ENABLE_X;
292 else if (exec_params.flags & ELF_FDPIC_FLAG_NOEXEC_STACK)
293 executable_stack = EXSTACK_DISABLE_X;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 else
295 executable_stack = EXSTACK_DEFAULT;
296
David Howells8e8b63a2009-09-23 15:57:06 -0700297 if (stack_size == 0) {
298 stack_size = interp_params.stack_size;
299 if (interp_params.flags & ELF_FDPIC_FLAG_EXEC_STACK)
300 executable_stack = EXSTACK_ENABLE_X;
301 else if (interp_params.flags & ELF_FDPIC_FLAG_NOEXEC_STACK)
302 executable_stack = EXSTACK_DISABLE_X;
303 else
304 executable_stack = EXSTACK_DEFAULT;
305 }
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 retval = -ENOEXEC;
308 if (stack_size == 0)
309 goto error;
310
311 if (elf_check_const_displacement(&interp_params.hdr))
312 interp_params.flags |= ELF_FDPIC_FLAG_CONSTDISP;
313
314 /* flush all traces of the currently running executable */
315 retval = flush_old_exec(bprm);
316 if (retval)
317 goto error;
318
319 /* there's now no turning back... the old userspace image is dead,
Al Viro19d860a2014-05-04 20:11:36 -0400320 * defunct, deceased, etc.
321 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 set_personality(PER_LINUX_FDPIC);
Mike Frysinger04e4f2b2010-01-06 17:23:17 +0000323 if (elf_read_implies_exec(&exec_params.hdr, executable_stack))
324 current->personality |= READ_IMPLIES_EXEC;
Linus Torvalds221af7f2010-01-28 22:14:42 -0800325
326 setup_new_exec(bprm);
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 set_binfmt(&elf_fdpic_format);
329
330 current->mm->start_code = 0;
331 current->mm->end_code = 0;
332 current->mm->start_stack = 0;
333 current->mm->start_data = 0;
334 current->mm->end_data = 0;
335 current->mm->context.exec_fdpic_loadmap = 0;
336 current->mm->context.interp_fdpic_loadmap = 0;
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338#ifdef CONFIG_MMU
339 elf_fdpic_arch_lay_out_mm(&exec_params,
340 &interp_params,
341 &current->mm->start_stack,
342 &current->mm->start_brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
David Howells8a2ab7f2006-07-10 04:44:53 -0700344 retval = setup_arg_pages(bprm, current->mm->start_stack,
345 executable_stack);
Al Viro19d860a2014-05-04 20:11:36 -0400346 if (retval < 0)
347 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348#endif
349
350 /* load the executable and interpreter into memory */
David Howells8a2ab7f2006-07-10 04:44:53 -0700351 retval = elf_fdpic_map_file(&exec_params, bprm->file, current->mm,
352 "executable");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (retval < 0)
Al Viro19d860a2014-05-04 20:11:36 -0400354 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 if (interpreter_name) {
357 retval = elf_fdpic_map_file(&interp_params, interpreter,
358 current->mm, "interpreter");
359 if (retval < 0) {
360 printk(KERN_ERR "Unable to load interpreter\n");
Al Viro19d860a2014-05-04 20:11:36 -0400361 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
363
364 allow_write_access(interpreter);
365 fput(interpreter);
366 interpreter = NULL;
367 }
368
369#ifdef CONFIG_MMU
370 if (!current->mm->start_brk)
371 current->mm->start_brk = current->mm->end_data;
372
David Howells8a2ab7f2006-07-10 04:44:53 -0700373 current->mm->brk = current->mm->start_brk =
374 PAGE_ALIGN(current->mm->start_brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376#else
Rich Felker4ac31312015-08-20 15:11:06 -0400377 /* create a stack area and zero-size brk area */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 stack_size = (stack_size + PAGE_SIZE - 1) & PAGE_MASK;
379 if (stack_size < PAGE_SIZE * 2)
380 stack_size = PAGE_SIZE * 2;
381
Mike Frysinger04e4f2b2010-01-06 17:23:17 +0000382 stack_prot = PROT_READ | PROT_WRITE;
383 if (executable_stack == EXSTACK_ENABLE_X ||
384 (executable_stack == EXSTACK_DEFAULT && VM_STACK_FLAGS & VM_EXEC))
385 stack_prot |= PROT_EXEC;
386
Linus Torvalds6be5ceb2012-04-20 17:13:58 -0700387 current->mm->start_brk = vm_mmap(NULL, 0, stack_size, stack_prot,
Jie Zhangea637632009-12-14 18:00:02 -0800388 MAP_PRIVATE | MAP_ANONYMOUS |
389 MAP_UNINITIALIZED | MAP_GROWSDOWN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 0);
391
David Howells8a2ab7f2006-07-10 04:44:53 -0700392 if (IS_ERR_VALUE(current->mm->start_brk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 retval = current->mm->start_brk;
394 current->mm->start_brk = 0;
Al Viro19d860a2014-05-04 20:11:36 -0400395 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 current->mm->brk = current->mm->start_brk;
399 current->mm->context.end_brk = current->mm->start_brk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 current->mm->start_stack = current->mm->start_brk + stack_size;
401#endif
402
David Howellsa6f76f22008-11-14 10:39:24 +1100403 install_exec_creds(bprm);
David Howells8a2ab7f2006-07-10 04:44:53 -0700404 if (create_elf_fdpic_tables(bprm, current->mm,
405 &exec_params, &interp_params) < 0)
Al Viro19d860a2014-05-04 20:11:36 -0400406 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
David Howells8a2ab7f2006-07-10 04:44:53 -0700408 kdebug("- start_code %lx", current->mm->start_code);
409 kdebug("- end_code %lx", current->mm->end_code);
410 kdebug("- start_data %lx", current->mm->start_data);
411 kdebug("- end_data %lx", current->mm->end_data);
412 kdebug("- start_brk %lx", current->mm->start_brk);
413 kdebug("- brk %lx", current->mm->brk);
414 kdebug("- start_stack %lx", current->mm->start_stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416#ifdef ELF_FDPIC_PLAT_INIT
417 /*
418 * The ABI may specify that certain registers be set up in special
419 * ways (on i386 %edx is the address of a DT_FINI function, for
420 * example. This macro performs whatever initialization to
421 * the regs structure is required.
422 */
David Howells8a2ab7f2006-07-10 04:44:53 -0700423 dynaddr = interp_params.dynamic_addr ?: exec_params.dynamic_addr;
424 ELF_FDPIC_PLAT_INIT(regs, exec_params.map_addr, interp_params.map_addr,
425 dynaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#endif
427
428 /* everything is now ready... get the userspace context ready to roll */
David Howells8a2ab7f2006-07-10 04:44:53 -0700429 entryaddr = interp_params.entry_addr ?: exec_params.entry_addr;
430 start_thread(regs, entryaddr, current->mm->start_stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 retval = 0;
433
434error:
435 if (interpreter) {
436 allow_write_access(interpreter);
437 fput(interpreter);
438 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800439 kfree(interpreter_name);
440 kfree(exec_params.phdrs);
441 kfree(exec_params.loadmap);
442 kfree(interp_params.phdrs);
443 kfree(interp_params.loadmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return retval;
David Howells8a2ab7f2006-07-10 04:44:53 -0700445}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447/*****************************************************************************/
Paul Mundtec238472008-10-15 22:04:15 -0700448
449#ifndef ELF_BASE_PLATFORM
450/*
451 * AT_BASE_PLATFORM indicates the "real" hardware/microarchitecture.
452 * If the arch defines ELF_BASE_PLATFORM (in asm/elf.h), the value
453 * will be copied to the user stack in the same manner as AT_PLATFORM.
454 */
455#define ELF_BASE_PLATFORM NULL
456#endif
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458/*
Paul Mundtc7637942008-10-15 22:04:15 -0700459 * present useful information to the program by shovelling it onto the new
460 * process's stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 */
462static int create_elf_fdpic_tables(struct linux_binprm *bprm,
463 struct mm_struct *mm,
464 struct elf_fdpic_params *exec_params,
465 struct elf_fdpic_params *interp_params)
466{
David Howells86a264a2008-11-14 10:39:18 +1100467 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 unsigned long sp, csp, nitems;
Al Viro530018b2006-06-23 02:04:05 -0700469 elf_caddr_t __user *argv, *envp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 size_t platform_len = 0, len;
Paul Mundtec238472008-10-15 22:04:15 -0700471 char *k_platform, *k_base_platform;
472 char __user *u_platform, *u_base_platform, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 int loop;
Paul Mundt9b14ec32008-05-19 13:34:45 +0900474 int nr; /* reset for each csp adjustment */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476#ifdef CONFIG_MMU
Paul Mundtc7637942008-10-15 22:04:15 -0700477 /* In some cases (e.g. Hyper-Threading), we want to avoid L1 evictions
478 * by the processes running on the same package. One thing we can do is
479 * to shuffle the initial stack for them, so we give the architecture
480 * an opportunity to do so here.
481 */
482 sp = arch_align_stack(bprm->p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483#else
484 sp = mm->start_stack;
485
486 /* stack the program arguments and environment */
487 if (elf_fdpic_transfer_args_to_stack(bprm, &sp) < 0)
488 return -EFAULT;
489#endif
490
Paul Mundtec238472008-10-15 22:04:15 -0700491 /*
492 * If this architecture has a platform capability string, copy it
493 * to userspace. In some cases (Sparc), this info is impossible
494 * for userspace to get any other way, in others (i386) it is
495 * merely difficult.
496 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 k_platform = ELF_PLATFORM;
David Howells1aeb21d2006-07-10 04:44:50 -0700498 u_platform = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 if (k_platform) {
501 platform_len = strlen(k_platform) + 1;
502 sp -= platform_len;
Al Viro530018b2006-06-23 02:04:05 -0700503 u_platform = (char __user *) sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (__copy_to_user(u_platform, k_platform, platform_len) != 0)
505 return -EFAULT;
506 }
507
Paul Mundtec238472008-10-15 22:04:15 -0700508 /*
509 * If this architecture has a "base" platform capability
510 * string, copy it to userspace.
511 */
512 k_base_platform = ELF_BASE_PLATFORM;
513 u_base_platform = NULL;
514
515 if (k_base_platform) {
516 platform_len = strlen(k_base_platform) + 1;
517 sp -= platform_len;
518 u_base_platform = (char __user *) sp;
519 if (__copy_to_user(u_base_platform, k_base_platform, platform_len) != 0)
520 return -EFAULT;
521 }
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 sp &= ~7UL;
524
525 /* stack the load map(s) */
526 len = sizeof(struct elf32_fdpic_loadmap);
527 len += sizeof(struct elf32_fdpic_loadseg) * exec_params->loadmap->nsegs;
528 sp = (sp - len) & ~7UL;
529 exec_params->map_addr = sp;
530
Al Viro530018b2006-06-23 02:04:05 -0700531 if (copy_to_user((void __user *) sp, exec_params->loadmap, len) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return -EFAULT;
533
534 current->mm->context.exec_fdpic_loadmap = (unsigned long) sp;
535
536 if (interp_params->loadmap) {
537 len = sizeof(struct elf32_fdpic_loadmap);
David Howells8a2ab7f2006-07-10 04:44:53 -0700538 len += sizeof(struct elf32_fdpic_loadseg) *
539 interp_params->loadmap->nsegs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 sp = (sp - len) & ~7UL;
541 interp_params->map_addr = sp;
542
David Howells8a2ab7f2006-07-10 04:44:53 -0700543 if (copy_to_user((void __user *) sp, interp_params->loadmap,
544 len) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return -EFAULT;
546
547 current->mm->context.interp_fdpic_loadmap = (unsigned long) sp;
548 }
549
550 /* force 16 byte _final_ alignment here for generality */
Paul Mundt5edc2a52008-10-15 22:04:16 -0700551#define DLINFO_ITEMS 15
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Paul Mundtec238472008-10-15 22:04:15 -0700553 nitems = 1 + DLINFO_ITEMS + (k_platform ? 1 : 0) +
554 (k_base_platform ? 1 : 0) + AT_VECTOR_SIZE_ARCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Paul Mundt5edc2a52008-10-15 22:04:16 -0700556 if (bprm->interp_flags & BINPRM_FLAGS_EXECFD)
557 nitems++;
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 csp = sp;
560 sp -= nitems * 2 * sizeof(unsigned long);
561 sp -= (bprm->envc + 1) * sizeof(char *); /* envv[] */
562 sp -= (bprm->argc + 1) * sizeof(char *); /* argv[] */
563 sp -= 1 * sizeof(unsigned long); /* argc */
564
565 csp -= sp & 15UL;
566 sp -= sp & 15UL;
567
568 /* put the ELF interpreter info on the stack */
Paul Mundt9b14ec32008-05-19 13:34:45 +0900569#define NEW_AUX_ENT(id, val) \
David Howells8a2ab7f2006-07-10 04:44:53 -0700570 do { \
571 struct { unsigned long _id, _val; } __user *ent; \
572 \
573 ent = (void __user *) csp; \
574 __put_user((id), &ent[nr]._id); \
575 __put_user((val), &ent[nr]._val); \
Paul Mundt9b14ec32008-05-19 13:34:45 +0900576 nr++; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 } while (0)
578
Paul Mundt9b14ec32008-05-19 13:34:45 +0900579 nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 csp -= 2 * sizeof(unsigned long);
Paul Mundt9b14ec32008-05-19 13:34:45 +0900581 NEW_AUX_ENT(AT_NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (k_platform) {
Paul Mundt9b14ec32008-05-19 13:34:45 +0900583 nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 csp -= 2 * sizeof(unsigned long);
Paul Mundt9b14ec32008-05-19 13:34:45 +0900585 NEW_AUX_ENT(AT_PLATFORM,
David Howells8a2ab7f2006-07-10 04:44:53 -0700586 (elf_addr_t) (unsigned long) u_platform);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588
Paul Mundtec238472008-10-15 22:04:15 -0700589 if (k_base_platform) {
590 nr = 0;
591 csp -= 2 * sizeof(unsigned long);
592 NEW_AUX_ENT(AT_BASE_PLATFORM,
593 (elf_addr_t) (unsigned long) u_base_platform);
594 }
595
Paul Mundt5edc2a52008-10-15 22:04:16 -0700596 if (bprm->interp_flags & BINPRM_FLAGS_EXECFD) {
597 nr = 0;
598 csp -= 2 * sizeof(unsigned long);
599 NEW_AUX_ENT(AT_EXECFD, bprm->interp_data);
600 }
601
Paul Mundt9b14ec32008-05-19 13:34:45 +0900602 nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 csp -= DLINFO_ITEMS * 2 * sizeof(unsigned long);
Michael Neuling21713642013-04-17 17:33:11 +0000604 NEW_AUX_ENT(AT_HWCAP, ELF_HWCAP);
605#ifdef ELF_HWCAP2
606 NEW_AUX_ENT(AT_HWCAP2, ELF_HWCAP2);
607#endif
Paul Mundt9b14ec32008-05-19 13:34:45 +0900608 NEW_AUX_ENT(AT_PAGESZ, PAGE_SIZE);
609 NEW_AUX_ENT(AT_CLKTCK, CLOCKS_PER_SEC);
610 NEW_AUX_ENT(AT_PHDR, exec_params->ph_addr);
611 NEW_AUX_ENT(AT_PHENT, sizeof(struct elf_phdr));
612 NEW_AUX_ENT(AT_PHNUM, exec_params->hdr.e_phnum);
613 NEW_AUX_ENT(AT_BASE, interp_params->elfhdr_addr);
614 NEW_AUX_ENT(AT_FLAGS, 0);
615 NEW_AUX_ENT(AT_ENTRY, exec_params->entry_addr);
Eric W. Biedermanebc887b2012-02-07 18:36:10 -0800616 NEW_AUX_ENT(AT_UID, (elf_addr_t) from_kuid_munged(cred->user_ns, cred->uid));
617 NEW_AUX_ENT(AT_EUID, (elf_addr_t) from_kuid_munged(cred->user_ns, cred->euid));
618 NEW_AUX_ENT(AT_GID, (elf_addr_t) from_kgid_munged(cred->user_ns, cred->gid));
619 NEW_AUX_ENT(AT_EGID, (elf_addr_t) from_kgid_munged(cred->user_ns, cred->egid));
Paul Mundt5edc2a52008-10-15 22:04:16 -0700620 NEW_AUX_ENT(AT_SECURE, security_bprm_secureexec(bprm));
621 NEW_AUX_ENT(AT_EXECFN, bprm->exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623#ifdef ARCH_DLINFO
Paul Mundt9b14ec32008-05-19 13:34:45 +0900624 nr = 0;
625 csp -= AT_VECTOR_SIZE_ARCH * 2 * sizeof(unsigned long);
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* ARCH_DLINFO must come last so platform specific code can enforce
628 * special alignment requirements on the AUXV if necessary (eg. PPC).
629 */
630 ARCH_DLINFO;
631#endif
632#undef NEW_AUX_ENT
633
634 /* allocate room for argv[] and envv[] */
635 csp -= (bprm->envc + 1) * sizeof(elf_caddr_t);
Al Viro530018b2006-06-23 02:04:05 -0700636 envp = (elf_caddr_t __user *) csp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 csp -= (bprm->argc + 1) * sizeof(elf_caddr_t);
Al Viro530018b2006-06-23 02:04:05 -0700638 argv = (elf_caddr_t __user *) csp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 /* stack argc */
641 csp -= sizeof(unsigned long);
Al Viro530018b2006-06-23 02:04:05 -0700642 __put_user(bprm->argc, (unsigned long __user *) csp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Eric Sesterhenn88bcd512006-03-24 18:38:48 +0100644 BUG_ON(csp != sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 /* fill in the argv[] array */
647#ifdef CONFIG_MMU
648 current->mm->arg_start = bprm->p;
649#else
David Howells8a2ab7f2006-07-10 04:44:53 -0700650 current->mm->arg_start = current->mm->start_stack -
651 (MAX_ARG_PAGES * PAGE_SIZE - bprm->p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652#endif
653
Al Viro530018b2006-06-23 02:04:05 -0700654 p = (char __user *) current->mm->arg_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 for (loop = bprm->argc; loop > 0; loop--) {
656 __put_user((elf_caddr_t) p, argv++);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700657 len = strnlen_user(p, MAX_ARG_STRLEN);
658 if (!len || len > MAX_ARG_STRLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return -EINVAL;
660 p += len;
661 }
662 __put_user(NULL, argv);
663 current->mm->arg_end = (unsigned long) p;
664
665 /* fill in the envv[] array */
666 current->mm->env_start = (unsigned long) p;
667 for (loop = bprm->envc; loop > 0; loop--) {
668 __put_user((elf_caddr_t)(unsigned long) p, envp++);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700669 len = strnlen_user(p, MAX_ARG_STRLEN);
670 if (!len || len > MAX_ARG_STRLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return -EINVAL;
672 p += len;
673 }
674 __put_user(NULL, envp);
675 current->mm->env_end = (unsigned long) p;
676
677 mm->start_stack = (unsigned long) sp;
678 return 0;
David Howells8a2ab7f2006-07-10 04:44:53 -0700679}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681/*****************************************************************************/
682/*
683 * transfer the program arguments and environment from the holding pages onto
684 * the stack
685 */
686#ifndef CONFIG_MMU
David Howells8a2ab7f2006-07-10 04:44:53 -0700687static int elf_fdpic_transfer_args_to_stack(struct linux_binprm *bprm,
688 unsigned long *_sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 unsigned long index, stop, sp;
691 char *src;
692 int ret = 0;
693
694 stop = bprm->p >> PAGE_SHIFT;
695 sp = *_sp;
696
697 for (index = MAX_ARG_PAGES - 1; index >= stop; index--) {
698 src = kmap(bprm->page[index]);
699 sp -= PAGE_SIZE;
700 if (copy_to_user((void *) sp, src, PAGE_SIZE) != 0)
701 ret = -EFAULT;
702 kunmap(bprm->page[index]);
703 if (ret < 0)
704 goto out;
705 }
706
707 *_sp = (*_sp - (MAX_ARG_PAGES * PAGE_SIZE - bprm->p)) & ~15;
708
David Howells8a2ab7f2006-07-10 04:44:53 -0700709out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return ret;
David Howells8a2ab7f2006-07-10 04:44:53 -0700711}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712#endif
713
714/*****************************************************************************/
715/*
716 * load the appropriate binary image (executable or interpreter) into memory
717 * - we assume no MMU is available
718 * - if no other PIC bits are set in params->hdr->e_flags
719 * - we assume that the LOADable segments in the binary are independently relocatable
720 * - we assume R/O executable segments are shareable
721 * - else
722 * - we assume the loadable parts of the image to require fixed displacement
723 * - the image is not shareable
724 */
725static int elf_fdpic_map_file(struct elf_fdpic_params *params,
726 struct file *file,
727 struct mm_struct *mm,
728 const char *what)
729{
730 struct elf32_fdpic_loadmap *loadmap;
731#ifdef CONFIG_MMU
732 struct elf32_fdpic_loadseg *mseg;
733#endif
734 struct elf32_fdpic_loadseg *seg;
735 struct elf32_phdr *phdr;
736 unsigned long load_addr, stop;
737 unsigned nloads, tmp;
738 size_t size;
739 int loop, ret;
740
741 /* allocate a load map table */
742 nloads = 0;
743 for (loop = 0; loop < params->hdr.e_phnum; loop++)
744 if (params->phdrs[loop].p_type == PT_LOAD)
745 nloads++;
746
747 if (nloads == 0)
748 return -ELIBBAD;
749
750 size = sizeof(*loadmap) + nloads * sizeof(*seg);
Robert P. J. Dayb87576d2006-12-12 20:07:35 +0100751 loadmap = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (!loadmap)
753 return -ENOMEM;
754
755 params->loadmap = loadmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 loadmap->version = ELF32_FDPIC_LOADMAP_VERSION;
758 loadmap->nsegs = nloads;
759
760 load_addr = params->load_addr;
761 seg = loadmap->segs;
762
763 /* map the requested LOADs into the memory space */
764 switch (params->flags & ELF_FDPIC_FLAG_ARRANGEMENT) {
765 case ELF_FDPIC_FLAG_CONSTDISP:
766 case ELF_FDPIC_FLAG_CONTIGUOUS:
767#ifndef CONFIG_MMU
768 ret = elf_fdpic_map_file_constdisp_on_uclinux(params, file, mm);
769 if (ret < 0)
770 return ret;
771 break;
772#endif
773 default:
774 ret = elf_fdpic_map_file_by_direct_mmap(params, file, mm);
775 if (ret < 0)
776 return ret;
777 break;
778 }
779
780 /* map the entry point */
781 if (params->hdr.e_entry) {
782 seg = loadmap->segs;
783 for (loop = loadmap->nsegs; loop > 0; loop--, seg++) {
784 if (params->hdr.e_entry >= seg->p_vaddr &&
David Howells8a2ab7f2006-07-10 04:44:53 -0700785 params->hdr.e_entry < seg->p_vaddr + seg->p_memsz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 params->entry_addr =
David Howells8a2ab7f2006-07-10 04:44:53 -0700787 (params->hdr.e_entry - seg->p_vaddr) +
788 seg->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 break;
790 }
791 }
792 }
793
794 /* determine where the program header table has wound up if mapped */
David Howells8a2ab7f2006-07-10 04:44:53 -0700795 stop = params->hdr.e_phoff;
796 stop += params->hdr.e_phnum * sizeof (struct elf_phdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 phdr = params->phdrs;
798
799 for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
800 if (phdr->p_type != PT_LOAD)
801 continue;
802
803 if (phdr->p_offset > params->hdr.e_phoff ||
804 phdr->p_offset + phdr->p_filesz < stop)
805 continue;
806
807 seg = loadmap->segs;
808 for (loop = loadmap->nsegs; loop > 0; loop--, seg++) {
809 if (phdr->p_vaddr >= seg->p_vaddr &&
David Howells8a2ab7f2006-07-10 04:44:53 -0700810 phdr->p_vaddr + phdr->p_filesz <=
811 seg->p_vaddr + seg->p_memsz) {
812 params->ph_addr =
813 (phdr->p_vaddr - seg->p_vaddr) +
814 seg->addr +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 params->hdr.e_phoff - phdr->p_offset;
816 break;
817 }
818 }
819 break;
820 }
821
822 /* determine where the dynamic section has wound up if there is one */
823 phdr = params->phdrs;
824 for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
825 if (phdr->p_type != PT_DYNAMIC)
826 continue;
827
828 seg = loadmap->segs;
829 for (loop = loadmap->nsegs; loop > 0; loop--, seg++) {
830 if (phdr->p_vaddr >= seg->p_vaddr &&
David Howells8a2ab7f2006-07-10 04:44:53 -0700831 phdr->p_vaddr + phdr->p_memsz <=
832 seg->p_vaddr + seg->p_memsz) {
833 params->dynamic_addr =
834 (phdr->p_vaddr - seg->p_vaddr) +
835 seg->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
David Howells8a2ab7f2006-07-10 04:44:53 -0700837 /* check the dynamic section contains at least
838 * one item, and that the last item is a NULL
839 * entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (phdr->p_memsz == 0 ||
841 phdr->p_memsz % sizeof(Elf32_Dyn) != 0)
842 goto dynamic_error;
843
844 tmp = phdr->p_memsz / sizeof(Elf32_Dyn);
David Howells8a2ab7f2006-07-10 04:44:53 -0700845 if (((Elf32_Dyn *)
846 params->dynamic_addr)[tmp - 1].d_tag != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 goto dynamic_error;
848 break;
849 }
850 }
851 break;
852 }
853
854 /* now elide adjacent segments in the load map on MMU linux
David Howells8a2ab7f2006-07-10 04:44:53 -0700855 * - on uClinux the holes between may actually be filled with system
856 * stuff or stuff from other processes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 */
858#ifdef CONFIG_MMU
859 nloads = loadmap->nsegs;
860 mseg = loadmap->segs;
861 seg = mseg + 1;
862 for (loop = 1; loop < nloads; loop++) {
863 /* see if we have a candidate for merging */
864 if (seg->p_vaddr - mseg->p_vaddr == seg->addr - mseg->addr) {
865 load_addr = PAGE_ALIGN(mseg->addr + mseg->p_memsz);
866 if (load_addr == (seg->addr & PAGE_MASK)) {
David Howells8a2ab7f2006-07-10 04:44:53 -0700867 mseg->p_memsz +=
868 load_addr -
869 (mseg->addr + mseg->p_memsz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 mseg->p_memsz += seg->addr & ~PAGE_MASK;
871 mseg->p_memsz += seg->p_memsz;
872 loadmap->nsegs--;
873 continue;
874 }
875 }
876
877 mseg++;
878 if (mseg != seg)
879 *mseg = *seg;
880 }
881#endif
882
883 kdebug("Mapped Object [%s]:", what);
884 kdebug("- elfhdr : %lx", params->elfhdr_addr);
885 kdebug("- entry : %lx", params->entry_addr);
886 kdebug("- PHDR[] : %lx", params->ph_addr);
887 kdebug("- DYNAMIC[]: %lx", params->dynamic_addr);
888 seg = loadmap->segs;
889 for (loop = 0; loop < loadmap->nsegs; loop++, seg++)
890 kdebug("- LOAD[%d] : %08x-%08x [va=%x ms=%x]",
891 loop,
892 seg->addr, seg->addr + seg->p_memsz - 1,
893 seg->p_vaddr, seg->p_memsz);
894
895 return 0;
896
David Howells8a2ab7f2006-07-10 04:44:53 -0700897dynamic_error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 printk("ELF FDPIC %s with invalid DYNAMIC section (inode=%lu)\n",
Al Viro496ad9a2013-01-23 17:07:38 -0500899 what, file_inode(file)->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return -ELIBBAD;
David Howells8a2ab7f2006-07-10 04:44:53 -0700901}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903/*****************************************************************************/
904/*
905 * map a file with constant displacement under uClinux
906 */
907#ifndef CONFIG_MMU
David Howells8a2ab7f2006-07-10 04:44:53 -0700908static int elf_fdpic_map_file_constdisp_on_uclinux(
909 struct elf_fdpic_params *params,
910 struct file *file,
911 struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 struct elf32_fdpic_loadseg *seg;
914 struct elf32_phdr *phdr;
915 unsigned long load_addr, base = ULONG_MAX, top = 0, maddr = 0, mflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 int loop, ret;
917
918 load_addr = params->load_addr;
919 seg = params->loadmap->segs;
920
David Howells8a2ab7f2006-07-10 04:44:53 -0700921 /* determine the bounds of the contiguous overall allocation we must
922 * make */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 phdr = params->phdrs;
924 for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
925 if (params->phdrs[loop].p_type != PT_LOAD)
926 continue;
927
928 if (base > phdr->p_vaddr)
929 base = phdr->p_vaddr;
930 if (top < phdr->p_vaddr + phdr->p_memsz)
931 top = phdr->p_vaddr + phdr->p_memsz;
932 }
933
934 /* allocate one big anon block for everything */
935 mflags = MAP_PRIVATE;
936 if (params->flags & ELF_FDPIC_FLAG_EXECUTABLE)
937 mflags |= MAP_EXECUTABLE;
938
Linus Torvalds6be5ceb2012-04-20 17:13:58 -0700939 maddr = vm_mmap(NULL, load_addr, top - base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 PROT_READ | PROT_WRITE | PROT_EXEC, mflags, 0);
David Howells8a2ab7f2006-07-10 04:44:53 -0700941 if (IS_ERR_VALUE(maddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 return (int) maddr;
943
944 if (load_addr != 0)
945 load_addr += PAGE_ALIGN(top - base);
946
947 /* and then load the file segments into it */
948 phdr = params->phdrs;
949 for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
950 if (params->phdrs[loop].p_type != PT_LOAD)
951 continue;
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 seg->addr = maddr + (phdr->p_vaddr - base);
954 seg->p_vaddr = phdr->p_vaddr;
955 seg->p_memsz = phdr->p_memsz;
956
Al Viro3dc20cb2013-04-13 20:31:37 -0400957 ret = read_code(file, seg->addr, phdr->p_offset,
958 phdr->p_filesz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (ret < 0)
960 return ret;
961
962 /* map the ELF header address if in this segment */
963 if (phdr->p_offset == 0)
964 params->elfhdr_addr = seg->addr;
965
966 /* clear any space allocated but not loaded */
Mike Frysingerab4ad552009-04-02 16:58:28 -0700967 if (phdr->p_filesz < phdr->p_memsz) {
Takuya Yoshikawae30c7c32010-06-01 14:10:47 +0100968 if (clear_user((void *) (seg->addr + phdr->p_filesz),
969 phdr->p_memsz - phdr->p_filesz))
970 return -EFAULT;
Mike Frysingerab4ad552009-04-02 16:58:28 -0700971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 if (mm) {
974 if (phdr->p_flags & PF_X) {
David Howellsaa289b42007-03-23 00:10:00 -0700975 if (!mm->start_code) {
976 mm->start_code = seg->addr;
977 mm->end_code = seg->addr +
978 phdr->p_memsz;
979 }
David Howells8a2ab7f2006-07-10 04:44:53 -0700980 } else if (!mm->start_data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 mm->start_data = seg->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 mm->end_data = seg->addr + phdr->p_memsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
985
986 seg++;
987 }
988
989 return 0;
David Howells8a2ab7f2006-07-10 04:44:53 -0700990}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991#endif
992
993/*****************************************************************************/
994/*
995 * map a binary by direct mmap() of the individual PT_LOAD segments
996 */
997static int elf_fdpic_map_file_by_direct_mmap(struct elf_fdpic_params *params,
998 struct file *file,
999 struct mm_struct *mm)
1000{
1001 struct elf32_fdpic_loadseg *seg;
1002 struct elf32_phdr *phdr;
1003 unsigned long load_addr, delta_vaddr;
Takuya Yoshikawae30c7c32010-06-01 14:10:47 +01001004 int loop, dvset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 load_addr = params->load_addr;
1007 delta_vaddr = 0;
1008 dvset = 0;
1009
1010 seg = params->loadmap->segs;
1011
1012 /* deal with each load segment separately */
1013 phdr = params->phdrs;
1014 for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
1015 unsigned long maddr, disp, excess, excess1;
1016 int prot = 0, flags;
1017
1018 if (phdr->p_type != PT_LOAD)
1019 continue;
1020
1021 kdebug("[LOAD] va=%lx of=%lx fs=%lx ms=%lx",
1022 (unsigned long) phdr->p_vaddr,
1023 (unsigned long) phdr->p_offset,
1024 (unsigned long) phdr->p_filesz,
1025 (unsigned long) phdr->p_memsz);
1026
1027 /* determine the mapping parameters */
1028 if (phdr->p_flags & PF_R) prot |= PROT_READ;
1029 if (phdr->p_flags & PF_W) prot |= PROT_WRITE;
1030 if (phdr->p_flags & PF_X) prot |= PROT_EXEC;
1031
1032 flags = MAP_PRIVATE | MAP_DENYWRITE;
1033 if (params->flags & ELF_FDPIC_FLAG_EXECUTABLE)
1034 flags |= MAP_EXECUTABLE;
1035
1036 maddr = 0;
1037
1038 switch (params->flags & ELF_FDPIC_FLAG_ARRANGEMENT) {
1039 case ELF_FDPIC_FLAG_INDEPENDENT:
1040 /* PT_LOADs are independently locatable */
1041 break;
1042
1043 case ELF_FDPIC_FLAG_HONOURVADDR:
1044 /* the specified virtual address must be honoured */
1045 maddr = phdr->p_vaddr;
1046 flags |= MAP_FIXED;
1047 break;
1048
1049 case ELF_FDPIC_FLAG_CONSTDISP:
1050 /* constant displacement
David Howells8a2ab7f2006-07-10 04:44:53 -07001051 * - can be mapped anywhere, but must be mapped as a
1052 * unit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 */
1054 if (!dvset) {
1055 maddr = load_addr;
1056 delta_vaddr = phdr->p_vaddr;
1057 dvset = 1;
David Howells8a2ab7f2006-07-10 04:44:53 -07001058 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 maddr = load_addr + phdr->p_vaddr - delta_vaddr;
1060 flags |= MAP_FIXED;
1061 }
1062 break;
1063
1064 case ELF_FDPIC_FLAG_CONTIGUOUS:
1065 /* contiguity handled later */
1066 break;
1067
1068 default:
1069 BUG();
1070 }
1071
1072 maddr &= PAGE_MASK;
1073
1074 /* create the mapping */
1075 disp = phdr->p_vaddr & ~PAGE_MASK;
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001076 maddr = vm_mmap(file, maddr, phdr->p_memsz + disp, prot, flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 phdr->p_offset - disp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 kdebug("mmap[%d] <file> sz=%lx pr=%x fl=%x of=%lx --> %08lx",
David Howells8a2ab7f2006-07-10 04:44:53 -07001080 loop, phdr->p_memsz + disp, prot, flags,
1081 phdr->p_offset - disp, maddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
David Howells8a2ab7f2006-07-10 04:44:53 -07001083 if (IS_ERR_VALUE(maddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return (int) maddr;
1085
David Howells8a2ab7f2006-07-10 04:44:53 -07001086 if ((params->flags & ELF_FDPIC_FLAG_ARRANGEMENT) ==
1087 ELF_FDPIC_FLAG_CONTIGUOUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 load_addr += PAGE_ALIGN(phdr->p_memsz + disp);
1089
1090 seg->addr = maddr + disp;
1091 seg->p_vaddr = phdr->p_vaddr;
1092 seg->p_memsz = phdr->p_memsz;
1093
1094 /* map the ELF header address if in this segment */
1095 if (phdr->p_offset == 0)
1096 params->elfhdr_addr = seg->addr;
1097
David Howells8a2ab7f2006-07-10 04:44:53 -07001098 /* clear the bit between beginning of mapping and beginning of
1099 * PT_LOAD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (prot & PROT_WRITE && disp > 0) {
1101 kdebug("clear[%d] ad=%lx sz=%lx", loop, maddr, disp);
Takuya Yoshikawae30c7c32010-06-01 14:10:47 +01001102 if (clear_user((void __user *) maddr, disp))
1103 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 maddr += disp;
1105 }
1106
1107 /* clear any space allocated but not loaded
1108 * - on uClinux we can just clear the lot
1109 * - on MMU linux we'll get a SIGBUS beyond the last page
1110 * extant in the file
1111 */
1112 excess = phdr->p_memsz - phdr->p_filesz;
1113 excess1 = PAGE_SIZE - ((maddr + phdr->p_filesz) & ~PAGE_MASK);
1114
1115#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 if (excess > excess1) {
1117 unsigned long xaddr = maddr + phdr->p_filesz + excess1;
1118 unsigned long xmaddr;
1119
1120 flags |= MAP_FIXED | MAP_ANONYMOUS;
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001121 xmaddr = vm_mmap(NULL, xaddr, excess - excess1,
David Howells8a2ab7f2006-07-10 04:44:53 -07001122 prot, flags, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 kdebug("mmap[%d] <anon>"
1125 " ad=%lx sz=%lx pr=%x fl=%x of=0 --> %08lx",
David Howells8a2ab7f2006-07-10 04:44:53 -07001126 loop, xaddr, excess - excess1, prot, flags,
1127 xmaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 if (xmaddr != xaddr)
1130 return -ENOMEM;
1131 }
1132
1133 if (prot & PROT_WRITE && excess1 > 0) {
1134 kdebug("clear[%d] ad=%lx sz=%lx",
1135 loop, maddr + phdr->p_filesz, excess1);
Takuya Yoshikawae30c7c32010-06-01 14:10:47 +01001136 if (clear_user((void __user *) maddr + phdr->p_filesz,
1137 excess1))
1138 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140
1141#else
1142 if (excess > 0) {
1143 kdebug("clear[%d] ad=%lx sz=%lx",
1144 loop, maddr + phdr->p_filesz, excess);
Takuya Yoshikawae30c7c32010-06-01 14:10:47 +01001145 if (clear_user((void *) maddr + phdr->p_filesz, excess))
1146 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148#endif
1149
1150 if (mm) {
1151 if (phdr->p_flags & PF_X) {
David Howellsaa289b42007-03-23 00:10:00 -07001152 if (!mm->start_code) {
1153 mm->start_code = maddr;
1154 mm->end_code = maddr + phdr->p_memsz;
1155 }
David Howells8a2ab7f2006-07-10 04:44:53 -07001156 } else if (!mm->start_data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 mm->start_data = maddr;
1158 mm->end_data = maddr + phdr->p_memsz;
1159 }
1160 }
1161
1162 seg++;
1163 }
1164
1165 return 0;
David Howells8a2ab7f2006-07-10 04:44:53 -07001166}
David Howells6d8c4e32006-07-10 04:44:55 -07001167
1168/*****************************************************************************/
1169/*
1170 * ELF-FDPIC core dumper
1171 *
1172 * Modelled on fs/exec.c:aout_core_dump()
1173 * Jeremy Fitzhardinge <jeremy@sw.oz.au>
1174 *
1175 * Modelled on fs/binfmt_elf.c core dumper
1176 */
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08001177#ifdef CONFIG_ELF_CORE
David Howells6d8c4e32006-07-10 04:44:55 -07001178
1179/*
David Howells6d8c4e32006-07-10 04:44:55 -07001180 * Decide whether a segment is worth dumping; default is yes to be
1181 * sure (missing info is worse than too much; etc).
1182 * Personally I'd include everything, and use the coredump limit...
1183 *
1184 * I think we should skip something. But I am not sure how. H.J.
1185 */
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001186static int maydump(struct vm_area_struct *vma, unsigned long mm_flags)
David Howells6d8c4e32006-07-10 04:44:55 -07001187{
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001188 int dump_ok;
1189
David Howells6d8c4e32006-07-10 04:44:55 -07001190 /* Do not dump I/O mapped devices or special mappings */
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001191 if (vma->vm_flags & VM_IO) {
David Howells6d8c4e32006-07-10 04:44:55 -07001192 kdcore("%08lx: %08lx: no (IO)", vma->vm_start, vma->vm_flags);
1193 return 0;
1194 }
1195
1196 /* If we may not read the contents, don't allow us to dump
1197 * them either. "dump_write()" can't handle it anyway.
1198 */
1199 if (!(vma->vm_flags & VM_READ)) {
1200 kdcore("%08lx: %08lx: no (!read)", vma->vm_start, vma->vm_flags);
1201 return 0;
1202 }
1203
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001204 /* By default, dump shared memory if mapped from an anonymous file. */
David Howells6d8c4e32006-07-10 04:44:55 -07001205 if (vma->vm_flags & VM_SHARED) {
Al Viro496ad9a2013-01-23 17:07:38 -05001206 if (file_inode(vma->vm_file)->i_nlink == 0) {
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001207 dump_ok = test_bit(MMF_DUMP_ANON_SHARED, &mm_flags);
1208 kdcore("%08lx: %08lx: %s (share)", vma->vm_start,
1209 vma->vm_flags, dump_ok ? "yes" : "no");
1210 return dump_ok;
David Howells6d8c4e32006-07-10 04:44:55 -07001211 }
1212
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001213 dump_ok = test_bit(MMF_DUMP_MAPPED_SHARED, &mm_flags);
1214 kdcore("%08lx: %08lx: %s (share)", vma->vm_start,
1215 vma->vm_flags, dump_ok ? "yes" : "no");
1216 return dump_ok;
David Howells6d8c4e32006-07-10 04:44:55 -07001217 }
1218
1219#ifdef CONFIG_MMU
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001220 /* By default, if it hasn't been written to, don't write it out */
David Howells6d8c4e32006-07-10 04:44:55 -07001221 if (!vma->anon_vma) {
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001222 dump_ok = test_bit(MMF_DUMP_MAPPED_PRIVATE, &mm_flags);
1223 kdcore("%08lx: %08lx: %s (!anon)", vma->vm_start,
1224 vma->vm_flags, dump_ok ? "yes" : "no");
1225 return dump_ok;
David Howells6d8c4e32006-07-10 04:44:55 -07001226 }
1227#endif
1228
Kawai, Hidehiroee78b0a2007-07-19 01:48:30 -07001229 dump_ok = test_bit(MMF_DUMP_ANON_PRIVATE, &mm_flags);
1230 kdcore("%08lx: %08lx: %s", vma->vm_start, vma->vm_flags,
1231 dump_ok ? "yes" : "no");
1232 return dump_ok;
David Howells6d8c4e32006-07-10 04:44:55 -07001233}
1234
1235/* An ELF note in memory */
1236struct memelfnote
1237{
1238 const char *name;
1239 int type;
1240 unsigned int datasz;
1241 void *data;
1242};
1243
1244static int notesize(struct memelfnote *en)
1245{
1246 int sz;
1247
1248 sz = sizeof(struct elf_note);
1249 sz += roundup(strlen(en->name) + 1, 4);
1250 sz += roundup(en->datasz, 4);
1251
1252 return sz;
1253}
1254
1255/* #define DEBUG */
1256
Al Viroe6c1baa2013-10-05 18:58:47 -04001257static int writenote(struct memelfnote *men, struct coredump_params *cprm)
David Howells6d8c4e32006-07-10 04:44:55 -07001258{
1259 struct elf_note en;
David Howells6d8c4e32006-07-10 04:44:55 -07001260 en.n_namesz = strlen(men->name) + 1;
1261 en.n_descsz = men->datasz;
1262 en.n_type = men->type;
1263
Al Viroe6c1baa2013-10-05 18:58:47 -04001264 return dump_emit(cprm, &en, sizeof(en)) &&
Al Viro22a8cb82013-10-08 11:05:01 -04001265 dump_emit(cprm, men->name, en.n_namesz) && dump_align(cprm, 4) &&
1266 dump_emit(cprm, men->data, men->datasz) && dump_align(cprm, 4);
David Howells6d8c4e32006-07-10 04:44:55 -07001267}
David Howells6d8c4e32006-07-10 04:44:55 -07001268
David Howells6d8c4e32006-07-10 04:44:55 -07001269static inline void fill_elf_fdpic_header(struct elfhdr *elf, int segs)
1270{
1271 memcpy(elf->e_ident, ELFMAG, SELFMAG);
1272 elf->e_ident[EI_CLASS] = ELF_CLASS;
1273 elf->e_ident[EI_DATA] = ELF_DATA;
1274 elf->e_ident[EI_VERSION] = EV_CURRENT;
1275 elf->e_ident[EI_OSABI] = ELF_OSABI;
1276 memset(elf->e_ident+EI_PAD, 0, EI_NIDENT-EI_PAD);
1277
1278 elf->e_type = ET_CORE;
1279 elf->e_machine = ELF_ARCH;
1280 elf->e_version = EV_CURRENT;
1281 elf->e_entry = 0;
1282 elf->e_phoff = sizeof(struct elfhdr);
1283 elf->e_shoff = 0;
1284 elf->e_flags = ELF_FDPIC_CORE_EFLAGS;
1285 elf->e_ehsize = sizeof(struct elfhdr);
1286 elf->e_phentsize = sizeof(struct elf_phdr);
1287 elf->e_phnum = segs;
1288 elf->e_shentsize = 0;
1289 elf->e_shnum = 0;
1290 elf->e_shstrndx = 0;
1291 return;
1292}
1293
1294static inline void fill_elf_note_phdr(struct elf_phdr *phdr, int sz, loff_t offset)
1295{
1296 phdr->p_type = PT_NOTE;
1297 phdr->p_offset = offset;
1298 phdr->p_vaddr = 0;
1299 phdr->p_paddr = 0;
1300 phdr->p_filesz = sz;
1301 phdr->p_memsz = 0;
1302 phdr->p_flags = 0;
1303 phdr->p_align = 0;
1304 return;
1305}
1306
1307static inline void fill_note(struct memelfnote *note, const char *name, int type,
1308 unsigned int sz, void *data)
1309{
1310 note->name = name;
1311 note->type = type;
1312 note->datasz = sz;
1313 note->data = data;
1314 return;
1315}
1316
1317/*
1318 * fill up all the fields in prstatus from the given task struct, except
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001319 * registers which need to be filled up separately.
David Howells6d8c4e32006-07-10 04:44:55 -07001320 */
1321static void fill_prstatus(struct elf_prstatus *prstatus,
1322 struct task_struct *p, long signr)
1323{
1324 prstatus->pr_info.si_signo = prstatus->pr_cursig = signr;
1325 prstatus->pr_sigpend = p->pending.signal.sig[0];
1326 prstatus->pr_sighold = p->blocked.sig[0];
Oleg Nesterov3b34fc52009-06-17 16:27:38 -07001327 rcu_read_lock();
1328 prstatus->pr_ppid = task_pid_vnr(rcu_dereference(p->real_parent));
1329 rcu_read_unlock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001330 prstatus->pr_pid = task_pid_vnr(p);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001331 prstatus->pr_pgrp = task_pgrp_vnr(p);
1332 prstatus->pr_sid = task_session_vnr(p);
David Howells6d8c4e32006-07-10 04:44:55 -07001333 if (thread_group_leader(p)) {
Paul Mundt2515ddc2008-10-21 12:07:40 +09001334 struct task_cputime cputime;
1335
David Howells6d8c4e32006-07-10 04:44:55 -07001336 /*
Paul Mundt2515ddc2008-10-21 12:07:40 +09001337 * This is the record for the group leader. It shows the
1338 * group-wide total, not its individual thread total.
David Howells6d8c4e32006-07-10 04:44:55 -07001339 */
Paul Mundt2515ddc2008-10-21 12:07:40 +09001340 thread_group_cputime(p, &cputime);
1341 cputime_to_timeval(cputime.utime, &prstatus->pr_utime);
1342 cputime_to_timeval(cputime.stime, &prstatus->pr_stime);
David Howells6d8c4e32006-07-10 04:44:55 -07001343 } else {
Frederic Weisbecker6fac4822012-11-13 14:20:55 +01001344 cputime_t utime, stime;
1345
1346 task_cputime(p, &utime, &stime);
1347 cputime_to_timeval(utime, &prstatus->pr_utime);
1348 cputime_to_timeval(stime, &prstatus->pr_stime);
David Howells6d8c4e32006-07-10 04:44:55 -07001349 }
1350 cputime_to_timeval(p->signal->cutime, &prstatus->pr_cutime);
1351 cputime_to_timeval(p->signal->cstime, &prstatus->pr_cstime);
1352
1353 prstatus->pr_exec_fdpic_loadmap = p->mm->context.exec_fdpic_loadmap;
1354 prstatus->pr_interp_fdpic_loadmap = p->mm->context.interp_fdpic_loadmap;
1355}
1356
1357static int fill_psinfo(struct elf_prpsinfo *psinfo, struct task_struct *p,
1358 struct mm_struct *mm)
1359{
David Howellsc69e8d92008-11-14 10:39:19 +11001360 const struct cred *cred;
David Howells6d8c4e32006-07-10 04:44:55 -07001361 unsigned int i, len;
1362
1363 /* first copy the parameters from user space */
1364 memset(psinfo, 0, sizeof(struct elf_prpsinfo));
1365
1366 len = mm->arg_end - mm->arg_start;
1367 if (len >= ELF_PRARGSZ)
1368 len = ELF_PRARGSZ - 1;
1369 if (copy_from_user(&psinfo->pr_psargs,
1370 (const char __user *) mm->arg_start, len))
1371 return -EFAULT;
1372 for (i = 0; i < len; i++)
1373 if (psinfo->pr_psargs[i] == 0)
1374 psinfo->pr_psargs[i] = ' ';
1375 psinfo->pr_psargs[len] = 0;
1376
Oleg Nesterov3b34fc52009-06-17 16:27:38 -07001377 rcu_read_lock();
1378 psinfo->pr_ppid = task_pid_vnr(rcu_dereference(p->real_parent));
1379 rcu_read_unlock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001380 psinfo->pr_pid = task_pid_vnr(p);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001381 psinfo->pr_pgrp = task_pgrp_vnr(p);
1382 psinfo->pr_sid = task_session_vnr(p);
David Howells6d8c4e32006-07-10 04:44:55 -07001383
1384 i = p->state ? ffz(~p->state) + 1 : 0;
1385 psinfo->pr_state = i;
1386 psinfo->pr_sname = (i > 5) ? '.' : "RSDTZW"[i];
1387 psinfo->pr_zomb = psinfo->pr_sname == 'Z';
1388 psinfo->pr_nice = task_nice(p);
1389 psinfo->pr_flag = p->flags;
David Howellsc69e8d92008-11-14 10:39:19 +11001390 rcu_read_lock();
1391 cred = __task_cred(p);
Eric W. Biedermanebc887b2012-02-07 18:36:10 -08001392 SET_UID(psinfo->pr_uid, from_kuid_munged(cred->user_ns, cred->uid));
1393 SET_GID(psinfo->pr_gid, from_kgid_munged(cred->user_ns, cred->gid));
David Howellsc69e8d92008-11-14 10:39:19 +11001394 rcu_read_unlock();
David Howells6d8c4e32006-07-10 04:44:55 -07001395 strncpy(psinfo->pr_fname, p->comm, sizeof(psinfo->pr_fname));
1396
1397 return 0;
1398}
1399
1400/* Here is the structure in which status of each thread is captured. */
1401struct elf_thread_status
1402{
1403 struct list_head list;
1404 struct elf_prstatus prstatus; /* NT_PRSTATUS */
1405 elf_fpregset_t fpu; /* NT_PRFPREG */
1406 struct task_struct *thread;
1407#ifdef ELF_CORE_COPY_XFPREGS
Mark Nelson5b20cd82007-10-16 23:25:39 -07001408 elf_fpxregset_t xfpu; /* ELF_CORE_XFPREG_TYPE */
David Howells6d8c4e32006-07-10 04:44:55 -07001409#endif
1410 struct memelfnote notes[3];
1411 int num_notes;
1412};
1413
1414/*
1415 * In order to add the specific thread information for the elf file format,
1416 * we need to keep a linked list of every thread's pr_status and then create
1417 * a single section for them in the final core file.
1418 */
1419static int elf_dump_thread_status(long signr, struct elf_thread_status *t)
1420{
1421 struct task_struct *p = t->thread;
1422 int sz = 0;
1423
1424 t->num_notes = 0;
1425
1426 fill_prstatus(&t->prstatus, p, signr);
1427 elf_core_copy_task_regs(p, &t->prstatus.pr_reg);
1428
1429 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus),
1430 &t->prstatus);
1431 t->num_notes++;
1432 sz += notesize(&t->notes[0]);
1433
1434 t->prstatus.pr_fpvalid = elf_core_copy_task_fpregs(p, NULL, &t->fpu);
1435 if (t->prstatus.pr_fpvalid) {
1436 fill_note(&t->notes[1], "CORE", NT_PRFPREG, sizeof(t->fpu),
1437 &t->fpu);
1438 t->num_notes++;
1439 sz += notesize(&t->notes[1]);
1440 }
1441
1442#ifdef ELF_CORE_COPY_XFPREGS
1443 if (elf_core_copy_task_xfpregs(p, &t->xfpu)) {
Mark Nelson5b20cd82007-10-16 23:25:39 -07001444 fill_note(&t->notes[2], "LINUX", ELF_CORE_XFPREG_TYPE,
1445 sizeof(t->xfpu), &t->xfpu);
David Howells6d8c4e32006-07-10 04:44:55 -07001446 t->num_notes++;
1447 sz += notesize(&t->notes[2]);
1448 }
1449#endif
1450 return sz;
1451}
1452
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001453static void fill_extnum_info(struct elfhdr *elf, struct elf_shdr *shdr4extnum,
1454 elf_addr_t e_shoff, int segs)
1455{
1456 elf->e_shoff = e_shoff;
1457 elf->e_shentsize = sizeof(*shdr4extnum);
1458 elf->e_shnum = 1;
1459 elf->e_shstrndx = SHN_UNDEF;
1460
1461 memset(shdr4extnum, 0, sizeof(*shdr4extnum));
1462
1463 shdr4extnum->sh_type = SHT_NULL;
1464 shdr4extnum->sh_size = elf->e_shnum;
1465 shdr4extnum->sh_link = elf->e_shstrndx;
1466 shdr4extnum->sh_info = segs;
1467}
1468
David Howells6d8c4e32006-07-10 04:44:55 -07001469/*
1470 * dump the segments for an MMU process
1471 */
Al Viroe6c1baa2013-10-05 18:58:47 -04001472static bool elf_fdpic_dump_segments(struct coredump_params *cprm)
David Howells6d8c4e32006-07-10 04:44:55 -07001473{
1474 struct vm_area_struct *vma;
1475
1476 for (vma = current->mm->mmap; vma; vma = vma->vm_next) {
1477 unsigned long addr;
1478
Al Viroe6c1baa2013-10-05 18:58:47 -04001479 if (!maydump(vma, cprm->mm_flags))
David Howells6d8c4e32006-07-10 04:44:55 -07001480 continue;
1481
Al Viroe6c1baa2013-10-05 18:58:47 -04001482#ifdef CONFIG_MMU
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07001483 for (addr = vma->vm_start; addr < vma->vm_end;
1484 addr += PAGE_SIZE) {
Al Viroe6c1baa2013-10-05 18:58:47 -04001485 bool res;
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07001486 struct page *page = get_dump_page(addr);
1487 if (page) {
1488 void *kaddr = kmap(page);
Al Viroe6c1baa2013-10-05 18:58:47 -04001489 res = dump_emit(cprm, kaddr, PAGE_SIZE);
David Howells6d8c4e32006-07-10 04:44:55 -07001490 kunmap(page);
1491 page_cache_release(page);
Al Viroe6c1baa2013-10-05 18:58:47 -04001492 } else {
Al Viro9b56d542013-10-08 09:26:08 -04001493 res = dump_skip(cprm, PAGE_SIZE);
Al Viroe6c1baa2013-10-05 18:58:47 -04001494 }
1495 if (!res)
1496 return false;
David Howells6d8c4e32006-07-10 04:44:55 -07001497 }
Al Viroe6c1baa2013-10-05 18:58:47 -04001498#else
1499 if (!dump_emit(cprm, (void *) vma->vm_start,
David Howells6d8c4e32006-07-10 04:44:55 -07001500 vma->vm_end - vma->vm_start))
Al Viroe6c1baa2013-10-05 18:58:47 -04001501 return false;
David Howells6d8c4e32006-07-10 04:44:55 -07001502#endif
Al Viroe6c1baa2013-10-05 18:58:47 -04001503 }
1504 return true;
1505}
David Howells6d8c4e32006-07-10 04:44:55 -07001506
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001507static size_t elf_core_vma_data_size(unsigned long mm_flags)
1508{
1509 struct vm_area_struct *vma;
1510 size_t size = 0;
1511
David Howells47568d42010-03-24 17:02:28 +00001512 for (vma = current->mm->mmap; vma; vma = vma->vm_next)
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001513 if (maydump(vma, mm_flags))
1514 size += vma->vm_end - vma->vm_start;
1515 return size;
1516}
1517
David Howells6d8c4e32006-07-10 04:44:55 -07001518/*
1519 * Actual dumper
1520 *
1521 * This is a two-pass process; first we find the offsets of the bits,
1522 * and then they are actually written out. If we run out of core limit
1523 * we just truncate.
1524 */
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001525static int elf_fdpic_core_dump(struct coredump_params *cprm)
David Howells6d8c4e32006-07-10 04:44:55 -07001526{
1527#define NUM_NOTES 6
1528 int has_dumped = 0;
1529 mm_segment_t fs;
1530 int segs;
David Howells6d8c4e32006-07-10 04:44:55 -07001531 int i;
1532 struct vm_area_struct *vma;
1533 struct elfhdr *elf = NULL;
Al Viro9b56d542013-10-08 09:26:08 -04001534 loff_t offset = 0, dataoff;
David Howells6d8c4e32006-07-10 04:44:55 -07001535 int numnote;
1536 struct memelfnote *notes = NULL;
1537 struct elf_prstatus *prstatus = NULL; /* NT_PRSTATUS */
1538 struct elf_prpsinfo *psinfo = NULL; /* NT_PRPSINFO */
David Howells6d8c4e32006-07-10 04:44:55 -07001539 LIST_HEAD(thread_list);
1540 struct list_head *t;
1541 elf_fpregset_t *fpu = NULL;
1542#ifdef ELF_CORE_COPY_XFPREGS
1543 elf_fpxregset_t *xfpu = NULL;
1544#endif
1545 int thread_status_size = 0;
David Howells6d8c4e32006-07-10 04:44:55 -07001546 elf_addr_t *auxv;
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001547 struct elf_phdr *phdr4note = NULL;
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001548 struct elf_shdr *shdr4extnum = NULL;
1549 Elf_Half e_phnum;
1550 elf_addr_t e_shoff;
Al Viroafabada2013-10-14 07:39:56 -04001551 struct core_thread *ct;
1552 struct elf_thread_status *tmp;
David Howells6d8c4e32006-07-10 04:44:55 -07001553
1554 /*
1555 * We no longer stop all VM operations.
1556 *
1557 * This is because those proceses that could possibly change map_count
1558 * or the mmap / vma pages are now blocked in do_exit on current
1559 * finishing this core dump.
1560 *
1561 * Only ptrace can touch these memory addresses, but it doesn't change
1562 * the map_count or the pages allocated. So no possibility of crashing
1563 * exists while dumping the mm->vm_next areas to the core file.
1564 */
1565
1566 /* alloc memory for large data structures: too large to be on stack */
1567 elf = kmalloc(sizeof(*elf), GFP_KERNEL);
1568 if (!elf)
1569 goto cleanup;
1570 prstatus = kzalloc(sizeof(*prstatus), GFP_KERNEL);
1571 if (!prstatus)
1572 goto cleanup;
1573 psinfo = kmalloc(sizeof(*psinfo), GFP_KERNEL);
1574 if (!psinfo)
1575 goto cleanup;
1576 notes = kmalloc(NUM_NOTES * sizeof(struct memelfnote), GFP_KERNEL);
1577 if (!notes)
1578 goto cleanup;
1579 fpu = kmalloc(sizeof(*fpu), GFP_KERNEL);
1580 if (!fpu)
1581 goto cleanup;
1582#ifdef ELF_CORE_COPY_XFPREGS
1583 xfpu = kmalloc(sizeof(*xfpu), GFP_KERNEL);
1584 if (!xfpu)
1585 goto cleanup;
1586#endif
1587
Al Viroafabada2013-10-14 07:39:56 -04001588 for (ct = current->mm->core_state->dumper.next;
1589 ct; ct = ct->next) {
1590 tmp = kzalloc(sizeof(*tmp), GFP_KERNEL);
1591 if (!tmp)
1592 goto cleanup;
1593
1594 tmp->thread = ct->task;
1595 list_add(&tmp->list, &thread_list);
1596 }
1597
1598 list_for_each(t, &thread_list) {
David Howells6d8c4e32006-07-10 04:44:55 -07001599 struct elf_thread_status *tmp;
Al Viroafabada2013-10-14 07:39:56 -04001600 int sz;
Oleg Nesterov24d52882008-07-25 01:47:40 -07001601
Al Viroafabada2013-10-14 07:39:56 -04001602 tmp = list_entry(t, struct elf_thread_status, list);
1603 sz = elf_dump_thread_status(cprm->siginfo->si_signo, tmp);
1604 thread_status_size += sz;
David Howells6d8c4e32006-07-10 04:44:55 -07001605 }
1606
1607 /* now collect the dump for the current */
Denys Vlasenko5ab1c302012-10-04 17:15:29 -07001608 fill_prstatus(prstatus, current, cprm->siginfo->si_signo);
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001609 elf_core_copy_regs(&prstatus->pr_reg, cprm->regs);
David Howells6d8c4e32006-07-10 04:44:55 -07001610
David Howells6d8c4e32006-07-10 04:44:55 -07001611 segs = current->mm->map_count;
Daisuke HATAYAMA1fcccba2010-03-05 13:44:07 -08001612 segs += elf_core_extra_phdrs();
David Howells6d8c4e32006-07-10 04:44:55 -07001613
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001614 /* for notes section */
1615 segs++;
1616
1617 /* If segs > PN_XNUM(0xffff), then e_phnum overflows. To avoid
1618 * this, kernel supports extended numbering. Have a look at
1619 * include/linux/elf.h for further information. */
1620 e_phnum = segs > PN_XNUM ? PN_XNUM : segs;
1621
David Howells6d8c4e32006-07-10 04:44:55 -07001622 /* Set up header */
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001623 fill_elf_fdpic_header(elf, e_phnum);
David Howells6d8c4e32006-07-10 04:44:55 -07001624
1625 has_dumped = 1;
David Howells6d8c4e32006-07-10 04:44:55 -07001626 /*
1627 * Set up the notes in similar form to SVR4 core dumps made
1628 * with info from their /proc.
1629 */
1630
1631 fill_note(notes + 0, "CORE", NT_PRSTATUS, sizeof(*prstatus), prstatus);
1632 fill_psinfo(psinfo, current->group_leader, current->mm);
1633 fill_note(notes + 1, "CORE", NT_PRPSINFO, sizeof(*psinfo), psinfo);
1634
1635 numnote = 2;
1636
1637 auxv = (elf_addr_t *) current->mm->saved_auxv;
1638
1639 i = 0;
1640 do
1641 i += 2;
1642 while (auxv[i - 2] != AT_NULL);
1643 fill_note(&notes[numnote++], "CORE", NT_AUXV,
1644 i * sizeof(elf_addr_t), auxv);
1645
1646 /* Try to dump the FPU. */
1647 if ((prstatus->pr_fpvalid =
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001648 elf_core_copy_task_fpregs(current, cprm->regs, fpu)))
David Howells6d8c4e32006-07-10 04:44:55 -07001649 fill_note(notes + numnote++,
1650 "CORE", NT_PRFPREG, sizeof(*fpu), fpu);
1651#ifdef ELF_CORE_COPY_XFPREGS
1652 if (elf_core_copy_task_xfpregs(current, xfpu))
1653 fill_note(notes + numnote++,
Mark Nelson5b20cd82007-10-16 23:25:39 -07001654 "LINUX", ELF_CORE_XFPREG_TYPE, sizeof(*xfpu), xfpu);
David Howells6d8c4e32006-07-10 04:44:55 -07001655#endif
1656
1657 fs = get_fs();
1658 set_fs(KERNEL_DS);
1659
David Howells6d8c4e32006-07-10 04:44:55 -07001660 offset += sizeof(*elf); /* Elf header */
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001661 offset += segs * sizeof(struct elf_phdr); /* Program headers */
David Howells6d8c4e32006-07-10 04:44:55 -07001662
1663 /* Write notes phdr entry */
1664 {
David Howells6d8c4e32006-07-10 04:44:55 -07001665 int sz = 0;
1666
1667 for (i = 0; i < numnote; i++)
1668 sz += notesize(notes + i);
1669
1670 sz += thread_status_size;
1671
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001672 phdr4note = kmalloc(sizeof(*phdr4note), GFP_KERNEL);
1673 if (!phdr4note)
Daisuke HATAYAMA088e7af2010-03-05 13:44:06 -08001674 goto end_coredump;
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001675
1676 fill_elf_note_phdr(phdr4note, sz, offset);
1677 offset += sz;
David Howells6d8c4e32006-07-10 04:44:55 -07001678 }
1679
1680 /* Page-align dumped data */
1681 dataoff = offset = roundup(offset, ELF_EXEC_PAGESIZE);
1682
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001683 offset += elf_core_vma_data_size(cprm->mm_flags);
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001684 offset += elf_core_extra_data_size();
1685 e_shoff = offset;
1686
1687 if (e_phnum == PN_XNUM) {
1688 shdr4extnum = kmalloc(sizeof(*shdr4extnum), GFP_KERNEL);
1689 if (!shdr4extnum)
1690 goto end_coredump;
1691 fill_extnum_info(elf, shdr4extnum, e_shoff, segs);
1692 }
1693
1694 offset = dataoff;
1695
Al Viroe6c1baa2013-10-05 18:58:47 -04001696 if (!dump_emit(cprm, elf, sizeof(*elf)))
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001697 goto end_coredump;
1698
Al Viroe6c1baa2013-10-05 18:58:47 -04001699 if (!dump_emit(cprm, phdr4note, sizeof(*phdr4note)))
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001700 goto end_coredump;
1701
David Howells6d8c4e32006-07-10 04:44:55 -07001702 /* write program headers for segments dump */
David Howells8feae132009-01-08 12:04:47 +00001703 for (vma = current->mm->mmap; vma; vma = vma->vm_next) {
David Howells6d8c4e32006-07-10 04:44:55 -07001704 struct elf_phdr phdr;
1705 size_t sz;
1706
David Howells6d8c4e32006-07-10 04:44:55 -07001707 sz = vma->vm_end - vma->vm_start;
1708
1709 phdr.p_type = PT_LOAD;
1710 phdr.p_offset = offset;
1711 phdr.p_vaddr = vma->vm_start;
1712 phdr.p_paddr = 0;
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001713 phdr.p_filesz = maydump(vma, cprm->mm_flags) ? sz : 0;
David Howells6d8c4e32006-07-10 04:44:55 -07001714 phdr.p_memsz = sz;
1715 offset += phdr.p_filesz;
1716 phdr.p_flags = vma->vm_flags & VM_READ ? PF_R : 0;
1717 if (vma->vm_flags & VM_WRITE)
1718 phdr.p_flags |= PF_W;
1719 if (vma->vm_flags & VM_EXEC)
1720 phdr.p_flags |= PF_X;
1721 phdr.p_align = ELF_EXEC_PAGESIZE;
1722
Al Viroe6c1baa2013-10-05 18:58:47 -04001723 if (!dump_emit(cprm, &phdr, sizeof(phdr)))
Daisuke HATAYAMA088e7af2010-03-05 13:44:06 -08001724 goto end_coredump;
David Howells6d8c4e32006-07-10 04:44:55 -07001725 }
1726
Al Viro506f21c2013-10-05 17:22:57 -04001727 if (!elf_core_write_extra_phdrs(cprm, offset))
Daisuke HATAYAMA1fcccba2010-03-05 13:44:07 -08001728 goto end_coredump;
David Howells6d8c4e32006-07-10 04:44:55 -07001729
1730 /* write out the notes section */
1731 for (i = 0; i < numnote; i++)
Al Viroe6c1baa2013-10-05 18:58:47 -04001732 if (!writenote(notes + i, cprm))
David Howells6d8c4e32006-07-10 04:44:55 -07001733 goto end_coredump;
1734
1735 /* write out the thread status notes section */
1736 list_for_each(t, &thread_list) {
1737 struct elf_thread_status *tmp =
1738 list_entry(t, struct elf_thread_status, list);
1739
1740 for (i = 0; i < tmp->num_notes; i++)
Al Viroe6c1baa2013-10-05 18:58:47 -04001741 if (!writenote(&tmp->notes[i], cprm))
David Howells6d8c4e32006-07-10 04:44:55 -07001742 goto end_coredump;
1743 }
1744
Al Viro9b56d542013-10-08 09:26:08 -04001745 if (!dump_skip(cprm, dataoff - cprm->written))
David Howells6d8c4e32006-07-10 04:44:55 -07001746 goto end_coredump;
1747
Al Viroe6c1baa2013-10-05 18:58:47 -04001748 if (!elf_fdpic_dump_segments(cprm))
1749 goto end_coredump;
1750
Al Viroaa3e7ea2013-10-05 17:50:15 -04001751 if (!elf_core_write_extra_data(cprm))
Daisuke HATAYAMA1fcccba2010-03-05 13:44:07 -08001752 goto end_coredump;
David Howells6d8c4e32006-07-10 04:44:55 -07001753
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001754 if (e_phnum == PN_XNUM) {
Al Viroe6c1baa2013-10-05 18:58:47 -04001755 if (!dump_emit(cprm, shdr4extnum, sizeof(*shdr4extnum)))
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001756 goto end_coredump;
1757 }
1758
Daisuke HATAYAMA2f489122010-01-04 15:42:14 +09001759 if (cprm->file->f_pos != offset) {
David Howells6d8c4e32006-07-10 04:44:55 -07001760 /* Sanity check */
1761 printk(KERN_WARNING
1762 "elf_core_dump: file->f_pos (%lld) != offset (%lld)\n",
Daisuke HATAYAMA2f489122010-01-04 15:42:14 +09001763 cprm->file->f_pos, offset);
David Howells6d8c4e32006-07-10 04:44:55 -07001764 }
1765
1766end_coredump:
1767 set_fs(fs);
1768
1769cleanup:
1770 while (!list_empty(&thread_list)) {
1771 struct list_head *tmp = thread_list.next;
1772 list_del(tmp);
1773 kfree(list_entry(tmp, struct elf_thread_status, list));
1774 }
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001775 kfree(phdr4note);
David Howells6d8c4e32006-07-10 04:44:55 -07001776 kfree(elf);
1777 kfree(prstatus);
1778 kfree(psinfo);
1779 kfree(notes);
1780 kfree(fpu);
Davidlohr Buesobcb65a72011-07-06 12:26:05 +01001781 kfree(shdr4extnum);
David Howells6d8c4e32006-07-10 04:44:55 -07001782#ifdef ELF_CORE_COPY_XFPREGS
1783 kfree(xfpu);
1784#endif
1785 return has_dumped;
1786#undef NUM_NOTES
1787}
1788
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08001789#endif /* CONFIG_ELF_CORE */