blob: 865f9be6a2d3d52064912083ee4cbf243c46515a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/binfmt_elf.c
3 *
4 * These are the functions used to load ELF format executables as used
5 * on SVr4 machines. Information on the format may be found in the book
6 * "UNIX SYSTEM V RELEASE 4 Programmers Guide: Ansi C and Programming Support
7 * Tools".
8 *
9 * Copyright 1993, 1994: Eric Youngdale (ericy@cais.com).
10 */
11
12#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/mm.h>
16#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/errno.h>
18#include <linux/signal.h>
19#include <linux/binfmts.h>
20#include <linux/string.h>
21#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/personality.h>
24#include <linux/elfcore.h>
25#include <linux/init.h>
26#include <linux/highuid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/compiler.h>
28#include <linux/highmem.h>
29#include <linux/pagemap.h>
30#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/random.h>
Jesper Juhlf4e5cc22006-06-23 02:05:35 -070032#include <linux/elf.h>
Alexey Dobriyan7e80d0d2007-05-08 00:28:59 -070033#include <linux/utsname.h>
Daisuke HATAYAMA088e7af2010-03-05 13:44:06 -080034#include <linux/coredump.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
36#include <asm/param.h>
37#include <asm/page.h>
David Howells96f951e2012-03-28 18:30:03 +010038#include <asm/exec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Denys Vlasenko49ae4d42012-10-04 17:15:35 -070040#ifndef user_siginfo_t
41#define user_siginfo_t siginfo_t
42#endif
43
Jesper Juhlf4e5cc22006-06-23 02:05:35 -070044static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs);
45static int load_elf_library(struct file *);
Andrew Mortonbb1ad822008-01-30 13:31:07 +010046static unsigned long elf_map(struct file *, unsigned long, struct elf_phdr *,
47 int, int, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*
50 * If we don't support core dumping, then supply a NULL so we
51 * don't even try.
52 */
Christoph Hellwig698ba7b2009-12-15 16:47:37 -080053#ifdef CONFIG_ELF_CORE
Masami Hiramatsuf6151df2009-12-17 15:27:16 -080054static int elf_core_dump(struct coredump_params *cprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#else
56#define elf_core_dump NULL
57#endif
58
59#if ELF_EXEC_PAGESIZE > PAGE_SIZE
Jesper Juhlf4e5cc22006-06-23 02:05:35 -070060#define ELF_MIN_ALIGN ELF_EXEC_PAGESIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#else
Jesper Juhlf4e5cc22006-06-23 02:05:35 -070062#define ELF_MIN_ALIGN PAGE_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#endif
64
65#ifndef ELF_CORE_EFLAGS
66#define ELF_CORE_EFLAGS 0
67#endif
68
69#define ELF_PAGESTART(_v) ((_v) & ~(unsigned long)(ELF_MIN_ALIGN-1))
70#define ELF_PAGEOFFSET(_v) ((_v) & (ELF_MIN_ALIGN-1))
71#define ELF_PAGEALIGN(_v) (((_v) + ELF_MIN_ALIGN - 1) & ~(ELF_MIN_ALIGN - 1))
72
73static struct linux_binfmt elf_format = {
Mikael Petterssonf670d0e2011-01-12 17:00:02 -080074 .module = THIS_MODULE,
75 .load_binary = load_elf_binary,
76 .load_shlib = load_elf_library,
77 .core_dump = elf_core_dump,
78 .min_coredump = ELF_EXEC_PAGESIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
80
Andrew Mortond4e3cc32007-07-21 04:37:32 -070081#define BAD_ADDR(x) ((unsigned long)(x) >= TASK_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83static int set_brk(unsigned long start, unsigned long end)
84{
85 start = ELF_PAGEALIGN(start);
86 end = ELF_PAGEALIGN(end);
87 if (end > start) {
88 unsigned long addr;
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -070089 addr = vm_brk(start, end - start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (BAD_ADDR(addr))
91 return addr;
92 }
93 current->mm->start_brk = current->mm->brk = end;
94 return 0;
95}
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/* We need to explicitly zero any fractional pages
98 after the data section (i.e. bss). This would
99 contain the junk from the file that should not
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700100 be in memory
101 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static int padzero(unsigned long elf_bss)
103{
104 unsigned long nbyte;
105
106 nbyte = ELF_PAGEOFFSET(elf_bss);
107 if (nbyte) {
108 nbyte = ELF_MIN_ALIGN - nbyte;
109 if (clear_user((void __user *) elf_bss, nbyte))
110 return -EFAULT;
111 }
112 return 0;
113}
114
Ohad Ben-Cohen09c6dd32008-02-03 18:05:15 +0200115/* Let's use some macros to make this stack manipulation a little clearer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#ifdef CONFIG_STACK_GROWSUP
117#define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) + (items))
118#define STACK_ROUND(sp, items) \
119 ((15 + (unsigned long) ((sp) + (items))) &~ 15UL)
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700120#define STACK_ALLOC(sp, len) ({ \
121 elf_addr_t __user *old_sp = (elf_addr_t __user *)sp; sp += len; \
122 old_sp; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#else
124#define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) - (items))
125#define STACK_ROUND(sp, items) \
126 (((unsigned long) (sp - items)) &~ 15UL)
127#define STACK_ALLOC(sp, len) ({ sp -= len ; sp; })
128#endif
129
Nathan Lynch483fad12008-07-22 04:48:46 +1000130#ifndef ELF_BASE_PLATFORM
131/*
132 * AT_BASE_PLATFORM indicates the "real" hardware/microarchitecture.
133 * If the arch defines ELF_BASE_PLATFORM (in asm/elf.h), the value
134 * will be copied to the user stack in the same manner as AT_PLATFORM.
135 */
136#define ELF_BASE_PLATFORM NULL
137#endif
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static int
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700140create_elf_tables(struct linux_binprm *bprm, struct elfhdr *exec,
Andi Kleend20894a2008-02-08 04:21:54 -0800141 unsigned long load_addr, unsigned long interp_load_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 unsigned long p = bprm->p;
144 int argc = bprm->argc;
145 int envc = bprm->envc;
146 elf_addr_t __user *argv;
147 elf_addr_t __user *envp;
148 elf_addr_t __user *sp;
149 elf_addr_t __user *u_platform;
Nathan Lynch483fad12008-07-22 04:48:46 +1000150 elf_addr_t __user *u_base_platform;
Kees Cookf06295b2009-01-07 18:08:52 -0800151 elf_addr_t __user *u_rand_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 const char *k_platform = ELF_PLATFORM;
Nathan Lynch483fad12008-07-22 04:48:46 +1000153 const char *k_base_platform = ELF_BASE_PLATFORM;
Kees Cookf06295b2009-01-07 18:08:52 -0800154 unsigned char k_rand_bytes[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 int items;
156 elf_addr_t *elf_info;
157 int ei_index = 0;
David Howells86a264a2008-11-14 10:39:18 +1100158 const struct cred *cred = current_cred();
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700159 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 /*
Franck Bui-Huud68c9d62007-10-16 23:30:24 -0700162 * In some cases (e.g. Hyper-Threading), we want to avoid L1
163 * evictions by the processes running on the same package. One
164 * thing we can do is to shuffle the initial stack for them.
165 */
166
167 p = arch_align_stack(p);
168
169 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * If this architecture has a platform capability string, copy it
171 * to userspace. In some cases (Sparc), this info is impossible
172 * for userspace to get any other way, in others (i386) it is
173 * merely difficult.
174 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 u_platform = NULL;
176 if (k_platform) {
177 size_t len = strlen(k_platform) + 1;
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 u_platform = (elf_addr_t __user *)STACK_ALLOC(p, len);
180 if (__copy_to_user(u_platform, k_platform, len))
181 return -EFAULT;
182 }
183
Nathan Lynch483fad12008-07-22 04:48:46 +1000184 /*
185 * If this architecture has a "base" platform capability
186 * string, copy it to userspace.
187 */
188 u_base_platform = NULL;
189 if (k_base_platform) {
190 size_t len = strlen(k_base_platform) + 1;
191
192 u_base_platform = (elf_addr_t __user *)STACK_ALLOC(p, len);
193 if (__copy_to_user(u_base_platform, k_base_platform, len))
194 return -EFAULT;
195 }
196
Kees Cookf06295b2009-01-07 18:08:52 -0800197 /*
198 * Generate 16 random bytes for userspace PRNG seeding.
199 */
200 get_random_bytes(k_rand_bytes, sizeof(k_rand_bytes));
201 u_rand_bytes = (elf_addr_t __user *)
202 STACK_ALLOC(p, sizeof(k_rand_bytes));
203 if (__copy_to_user(u_rand_bytes, k_rand_bytes, sizeof(k_rand_bytes)))
204 return -EFAULT;
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 /* Create the ELF interpreter info */
Jesper Juhl785d5572006-06-23 02:05:35 -0700207 elf_info = (elf_addr_t *)current->mm->saved_auxv;
Olaf Hering4f9a58d2007-10-16 23:30:12 -0700208 /* update AT_VECTOR_SIZE_BASE if the number of NEW_AUX_ENT() changes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209#define NEW_AUX_ENT(id, val) \
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700210 do { \
Jesper Juhl785d5572006-06-23 02:05:35 -0700211 elf_info[ei_index++] = id; \
212 elf_info[ei_index++] = val; \
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700213 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215#ifdef ARCH_DLINFO
216 /*
217 * ARCH_DLINFO must come first so PPC can do its special alignment of
218 * AUXV.
Olaf Hering4f9a58d2007-10-16 23:30:12 -0700219 * update AT_VECTOR_SIZE_ARCH if the number of NEW_AUX_ENT() in
220 * ARCH_DLINFO changes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 */
222 ARCH_DLINFO;
223#endif
224 NEW_AUX_ENT(AT_HWCAP, ELF_HWCAP);
225 NEW_AUX_ENT(AT_PAGESZ, ELF_EXEC_PAGESIZE);
226 NEW_AUX_ENT(AT_CLKTCK, CLOCKS_PER_SEC);
227 NEW_AUX_ENT(AT_PHDR, load_addr + exec->e_phoff);
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700228 NEW_AUX_ENT(AT_PHENT, sizeof(struct elf_phdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 NEW_AUX_ENT(AT_PHNUM, exec->e_phnum);
230 NEW_AUX_ENT(AT_BASE, interp_load_addr);
231 NEW_AUX_ENT(AT_FLAGS, 0);
232 NEW_AUX_ENT(AT_ENTRY, exec->e_entry);
Eric W. Biedermanebc887b2012-02-07 18:36:10 -0800233 NEW_AUX_ENT(AT_UID, from_kuid_munged(cred->user_ns, cred->uid));
234 NEW_AUX_ENT(AT_EUID, from_kuid_munged(cred->user_ns, cred->euid));
235 NEW_AUX_ENT(AT_GID, from_kgid_munged(cred->user_ns, cred->gid));
236 NEW_AUX_ENT(AT_EGID, from_kgid_munged(cred->user_ns, cred->egid));
Jesper Juhl785d5572006-06-23 02:05:35 -0700237 NEW_AUX_ENT(AT_SECURE, security_bprm_secureexec(bprm));
Kees Cookf06295b2009-01-07 18:08:52 -0800238 NEW_AUX_ENT(AT_RANDOM, (elf_addr_t)(unsigned long)u_rand_bytes);
John Reiser65191082008-07-21 14:21:32 -0700239 NEW_AUX_ENT(AT_EXECFN, bprm->exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (k_platform) {
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700241 NEW_AUX_ENT(AT_PLATFORM,
Jesper Juhl785d5572006-06-23 02:05:35 -0700242 (elf_addr_t)(unsigned long)u_platform);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
Nathan Lynch483fad12008-07-22 04:48:46 +1000244 if (k_base_platform) {
245 NEW_AUX_ENT(AT_BASE_PLATFORM,
246 (elf_addr_t)(unsigned long)u_base_platform);
247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (bprm->interp_flags & BINPRM_FLAGS_EXECFD) {
Jesper Juhl785d5572006-06-23 02:05:35 -0700249 NEW_AUX_ENT(AT_EXECFD, bprm->interp_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251#undef NEW_AUX_ENT
252 /* AT_NULL is zero; clear the rest too */
253 memset(&elf_info[ei_index], 0,
254 sizeof current->mm->saved_auxv - ei_index * sizeof elf_info[0]);
255
256 /* And advance past the AT_NULL entry. */
257 ei_index += 2;
258
259 sp = STACK_ADD(p, ei_index);
260
Andi Kleend20894a2008-02-08 04:21:54 -0800261 items = (argc + 1) + (envc + 1) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 bprm->p = STACK_ROUND(sp, items);
263
264 /* Point sp at the lowest address on the stack */
265#ifdef CONFIG_STACK_GROWSUP
266 sp = (elf_addr_t __user *)bprm->p - items - ei_index;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700267 bprm->exec = (unsigned long)sp; /* XXX: PARISC HACK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268#else
269 sp = (elf_addr_t __user *)bprm->p;
270#endif
271
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700272
273 /*
274 * Grow the stack manually; some architectures have a limit on how
275 * far ahead a user-space access may be in order to grow the stack.
276 */
277 vma = find_extend_vma(current->mm, bprm->p);
278 if (!vma)
279 return -EFAULT;
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /* Now, let's put argc (and argv, envp if appropriate) on the stack */
282 if (__put_user(argc, sp++))
283 return -EFAULT;
Andi Kleend20894a2008-02-08 04:21:54 -0800284 argv = sp;
285 envp = argv + argc + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 /* Populate argv and envp */
Greg Kroah-Hartmana84a5052005-05-11 00:10:44 -0700288 p = current->mm->arg_end = current->mm->arg_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 while (argc-- > 0) {
290 size_t len;
Heiko Carstens841d5fb2006-12-06 20:36:35 -0800291 if (__put_user((elf_addr_t)p, argv++))
292 return -EFAULT;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700293 len = strnlen_user((void __user *)p, MAX_ARG_STRLEN);
294 if (!len || len > MAX_ARG_STRLEN)
WANG Cong23c49712008-05-08 21:52:33 +0800295 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 p += len;
297 }
298 if (__put_user(0, argv))
299 return -EFAULT;
300 current->mm->arg_end = current->mm->env_start = p;
301 while (envc-- > 0) {
302 size_t len;
Heiko Carstens841d5fb2006-12-06 20:36:35 -0800303 if (__put_user((elf_addr_t)p, envp++))
304 return -EFAULT;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700305 len = strnlen_user((void __user *)p, MAX_ARG_STRLEN);
306 if (!len || len > MAX_ARG_STRLEN)
WANG Cong23c49712008-05-08 21:52:33 +0800307 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 p += len;
309 }
310 if (__put_user(0, envp))
311 return -EFAULT;
312 current->mm->env_end = p;
313
314 /* Put the elf_info on the stack in the right place. */
315 sp = (elf_addr_t __user *)envp + 1;
316 if (copy_to_user(sp, elf_info, ei_index * sizeof(elf_addr_t)))
317 return -EFAULT;
318 return 0;
319}
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321static unsigned long elf_map(struct file *filep, unsigned long addr,
Jiri Kosinacc503c12008-01-30 13:31:07 +0100322 struct elf_phdr *eppnt, int prot, int type,
323 unsigned long total_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 unsigned long map_addr;
Jiri Kosinacc503c12008-01-30 13:31:07 +0100326 unsigned long size = eppnt->p_filesz + ELF_PAGEOFFSET(eppnt->p_vaddr);
327 unsigned long off = eppnt->p_offset - ELF_PAGEOFFSET(eppnt->p_vaddr);
328 addr = ELF_PAGESTART(addr);
329 size = ELF_PAGEALIGN(size);
Jan Kratochvil60bfba72007-07-15 23:40:06 -0700330
Andrew Mortond4e3cc32007-07-21 04:37:32 -0700331 /* mmap() will return -EINVAL if given a zero size, but a
332 * segment with zero filesize is perfectly valid */
Jiri Kosinacc503c12008-01-30 13:31:07 +0100333 if (!size)
334 return addr;
335
Jiri Kosinacc503c12008-01-30 13:31:07 +0100336 /*
337 * total_size is the size of the ELF (interpreter) image.
338 * The _first_ mmap needs to know the full size, otherwise
339 * randomization might put this image into an overlapping
340 * position with the ELF binary image. (since size < total_size)
341 * So we first map the 'big' image - and unmap the remainder at
342 * the end. (which unmap is needed for ELF images with holes.)
343 */
344 if (total_size) {
345 total_size = ELF_PAGEALIGN(total_size);
Al Viro5a5e4c22012-05-30 01:49:38 -0400346 map_addr = vm_mmap(filep, addr, total_size, prot, type, off);
Jiri Kosinacc503c12008-01-30 13:31:07 +0100347 if (!BAD_ADDR(map_addr))
Al Viro5a5e4c22012-05-30 01:49:38 -0400348 vm_munmap(map_addr+size, total_size-size);
Jiri Kosinacc503c12008-01-30 13:31:07 +0100349 } else
Al Viro5a5e4c22012-05-30 01:49:38 -0400350 map_addr = vm_mmap(filep, addr, size, prot, type, off);
Jiri Kosinacc503c12008-01-30 13:31:07 +0100351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return(map_addr);
353}
354
Jiri Kosinacc503c12008-01-30 13:31:07 +0100355static unsigned long total_mapping_size(struct elf_phdr *cmds, int nr)
356{
357 int i, first_idx = -1, last_idx = -1;
358
359 for (i = 0; i < nr; i++) {
360 if (cmds[i].p_type == PT_LOAD) {
361 last_idx = i;
362 if (first_idx == -1)
363 first_idx = i;
364 }
365 }
366 if (first_idx == -1)
367 return 0;
368
369 return cmds[last_idx].p_vaddr + cmds[last_idx].p_memsz -
370 ELF_PAGESTART(cmds[first_idx].p_vaddr);
371}
372
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/* This is much more generalized than the library routine read function,
375 so we keep this separate. Technically the library read function
376 is only provided so that we can read a.out libraries that have
377 an ELF header */
378
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700379static unsigned long load_elf_interp(struct elfhdr *interp_elf_ex,
Jiri Kosinacc503c12008-01-30 13:31:07 +0100380 struct file *interpreter, unsigned long *interp_map_addr,
381 unsigned long no_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 struct elf_phdr *elf_phdata;
384 struct elf_phdr *eppnt;
385 unsigned long load_addr = 0;
386 int load_addr_set = 0;
387 unsigned long last_bss = 0, elf_bss = 0;
388 unsigned long error = ~0UL;
Jiri Kosinacc503c12008-01-30 13:31:07 +0100389 unsigned long total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 int retval, i, size;
391
392 /* First of all, some simple consistency checks */
393 if (interp_elf_ex->e_type != ET_EXEC &&
394 interp_elf_ex->e_type != ET_DYN)
395 goto out;
396 if (!elf_check_arch(interp_elf_ex))
397 goto out;
398 if (!interpreter->f_op || !interpreter->f_op->mmap)
399 goto out;
400
401 /*
402 * If the size of this structure has changed, then punt, since
403 * we will be doing the wrong thing.
404 */
405 if (interp_elf_ex->e_phentsize != sizeof(struct elf_phdr))
406 goto out;
407 if (interp_elf_ex->e_phnum < 1 ||
408 interp_elf_ex->e_phnum > 65536U / sizeof(struct elf_phdr))
409 goto out;
410
411 /* Now read in all of the header information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 size = sizeof(struct elf_phdr) * interp_elf_ex->e_phnum;
413 if (size > ELF_MIN_ALIGN)
414 goto out;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700415 elf_phdata = kmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (!elf_phdata)
417 goto out;
418
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700419 retval = kernel_read(interpreter, interp_elf_ex->e_phoff,
Mikael Petterssonf670d0e2011-01-12 17:00:02 -0800420 (char *)elf_phdata, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 error = -EIO;
422 if (retval != size) {
423 if (retval < 0)
424 error = retval;
425 goto out_close;
426 }
427
Jiri Kosinacc503c12008-01-30 13:31:07 +0100428 total_size = total_mapping_size(elf_phdata, interp_elf_ex->e_phnum);
429 if (!total_size) {
430 error = -EINVAL;
431 goto out_close;
432 }
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 eppnt = elf_phdata;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700435 for (i = 0; i < interp_elf_ex->e_phnum; i++, eppnt++) {
436 if (eppnt->p_type == PT_LOAD) {
437 int elf_type = MAP_PRIVATE | MAP_DENYWRITE;
438 int elf_prot = 0;
439 unsigned long vaddr = 0;
440 unsigned long k, map_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700442 if (eppnt->p_flags & PF_R)
443 elf_prot = PROT_READ;
444 if (eppnt->p_flags & PF_W)
445 elf_prot |= PROT_WRITE;
446 if (eppnt->p_flags & PF_X)
447 elf_prot |= PROT_EXEC;
448 vaddr = eppnt->p_vaddr;
449 if (interp_elf_ex->e_type == ET_EXEC || load_addr_set)
450 elf_type |= MAP_FIXED;
Jiri Kosinacc503c12008-01-30 13:31:07 +0100451 else if (no_base && interp_elf_ex->e_type == ET_DYN)
452 load_addr = -vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700454 map_addr = elf_map(interpreter, load_addr + vaddr,
Andrew Mortonbb1ad822008-01-30 13:31:07 +0100455 eppnt, elf_prot, elf_type, total_size);
Jiri Kosinacc503c12008-01-30 13:31:07 +0100456 total_size = 0;
457 if (!*interp_map_addr)
458 *interp_map_addr = map_addr;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700459 error = map_addr;
460 if (BAD_ADDR(map_addr))
461 goto out_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700463 if (!load_addr_set &&
464 interp_elf_ex->e_type == ET_DYN) {
465 load_addr = map_addr - ELF_PAGESTART(vaddr);
466 load_addr_set = 1;
467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700469 /*
470 * Check to see if the section's size will overflow the
471 * allowed task size. Note that p_filesz must always be
472 * <= p_memsize so it's only necessary to check p_memsz.
473 */
474 k = load_addr + eppnt->p_vaddr;
Chuck Ebbertce510592006-07-03 00:24:14 -0700475 if (BAD_ADDR(k) ||
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700476 eppnt->p_filesz > eppnt->p_memsz ||
477 eppnt->p_memsz > TASK_SIZE ||
478 TASK_SIZE - eppnt->p_memsz < k) {
479 error = -ENOMEM;
480 goto out_close;
481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700483 /*
484 * Find the end of the file mapping for this phdr, and
485 * keep track of the largest address we see for this.
486 */
487 k = load_addr + eppnt->p_vaddr + eppnt->p_filesz;
488 if (k > elf_bss)
489 elf_bss = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700491 /*
492 * Do the same thing for the memory mapping - between
493 * elf_bss and last_bss is the bss section.
494 */
495 k = load_addr + eppnt->p_memsz + eppnt->p_vaddr;
496 if (k > last_bss)
497 last_bss = k;
498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (last_bss > elf_bss) {
Roland McGrath752015d2009-09-08 19:49:40 -0700502 /*
503 * Now fill out the bss section. First pad the last page up
504 * to the page boundary, and then perform a mmap to make sure
505 * that there are zero-mapped pages up to and including the
506 * last bss page.
507 */
508 if (padzero(elf_bss)) {
509 error = -EFAULT;
510 goto out_close;
511 }
512
513 /* What we have mapped so far */
514 elf_bss = ELF_PAGESTART(elf_bss + ELF_MIN_ALIGN - 1);
515
516 /* Map the last of the bss segment */
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -0700517 error = vm_brk(elf_bss, last_bss - elf_bss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (BAD_ADDR(error))
519 goto out_close;
520 }
521
Jiri Kosinacc503c12008-01-30 13:31:07 +0100522 error = load_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524out_close:
525 kfree(elf_phdata);
526out:
527 return error;
528}
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530/*
531 * These are the functions used to load ELF style executables and shared
532 * libraries. There is no binary dependent code anywhere else.
533 */
534
535#define INTERPRETER_NONE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536#define INTERPRETER_ELF 2
537
Andi Kleen913bd902006-03-25 16:29:09 +0100538#ifndef STACK_RND_MASK
James Bottomleyd1cabd632007-03-16 13:38:35 -0800539#define STACK_RND_MASK (0x7ff >> (PAGE_SHIFT - 12)) /* 8MB of VA */
Andi Kleen913bd902006-03-25 16:29:09 +0100540#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542static unsigned long randomize_stack_top(unsigned long stack_top)
543{
544 unsigned int random_variable = 0;
545
Andi Kleenc16b63e02006-09-26 10:52:28 +0200546 if ((current->flags & PF_RANDOMIZE) &&
547 !(current->personality & ADDR_NO_RANDOMIZE)) {
Andi Kleen913bd902006-03-25 16:29:09 +0100548 random_variable = get_random_int() & STACK_RND_MASK;
549 random_variable <<= PAGE_SHIFT;
550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551#ifdef CONFIG_STACK_GROWSUP
Andi Kleen913bd902006-03-25 16:29:09 +0100552 return PAGE_ALIGN(stack_top) + random_variable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553#else
Andi Kleen913bd902006-03-25 16:29:09 +0100554 return PAGE_ALIGN(stack_top) - random_variable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555#endif
556}
557
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700558static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 struct file *interpreter = NULL; /* to shut gcc up */
561 unsigned long load_addr = 0, load_bias = 0;
562 int load_addr_set = 0;
563 char * elf_interpreter = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 unsigned long error;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700565 struct elf_phdr *elf_ppnt, *elf_phdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 unsigned long elf_bss, elf_brk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 int retval, i;
568 unsigned int size;
Jiri Kosinacc503c12008-01-30 13:31:07 +0100569 unsigned long elf_entry;
570 unsigned long interp_load_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 unsigned long start_code, end_code, start_data, end_data;
David Daney1a530a62011-03-22 16:34:48 -0700572 unsigned long reloc_func_desc __maybe_unused = 0;
David Rientjes8de61e62006-12-06 20:40:16 -0800573 int executable_stack = EXSTACK_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 unsigned long def_flags = 0;
575 struct {
576 struct elfhdr elf_ex;
577 struct elfhdr interp_elf_ex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 } *loc;
579
580 loc = kmalloc(sizeof(*loc), GFP_KERNEL);
581 if (!loc) {
582 retval = -ENOMEM;
583 goto out_ret;
584 }
585
586 /* Get the exec-header */
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700587 loc->elf_ex = *((struct elfhdr *)bprm->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 retval = -ENOEXEC;
590 /* First of all, some simple consistency checks */
591 if (memcmp(loc->elf_ex.e_ident, ELFMAG, SELFMAG) != 0)
592 goto out;
593
594 if (loc->elf_ex.e_type != ET_EXEC && loc->elf_ex.e_type != ET_DYN)
595 goto out;
596 if (!elf_check_arch(&loc->elf_ex))
597 goto out;
Mikael Petterssonf670d0e2011-01-12 17:00:02 -0800598 if (!bprm->file->f_op || !bprm->file->f_op->mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 goto out;
600
601 /* Now read in all of the header information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (loc->elf_ex.e_phentsize != sizeof(struct elf_phdr))
603 goto out;
604 if (loc->elf_ex.e_phnum < 1 ||
605 loc->elf_ex.e_phnum > 65536U / sizeof(struct elf_phdr))
606 goto out;
607 size = loc->elf_ex.e_phnum * sizeof(struct elf_phdr);
608 retval = -ENOMEM;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700609 elf_phdata = kmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (!elf_phdata)
611 goto out;
612
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700613 retval = kernel_read(bprm->file, loc->elf_ex.e_phoff,
614 (char *)elf_phdata, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (retval != size) {
616 if (retval >= 0)
617 retval = -EIO;
618 goto out_free_ph;
619 }
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 elf_ppnt = elf_phdata;
622 elf_bss = 0;
623 elf_brk = 0;
624
625 start_code = ~0UL;
626 end_code = 0;
627 start_data = 0;
628 end_data = 0;
629
630 for (i = 0; i < loc->elf_ex.e_phnum; i++) {
631 if (elf_ppnt->p_type == PT_INTERP) {
632 /* This is the program interpreter used for
633 * shared libraries - for now assume that this
634 * is an a.out format binary
635 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 retval = -ENOEXEC;
637 if (elf_ppnt->p_filesz > PATH_MAX ||
638 elf_ppnt->p_filesz < 2)
Al Viroe7b9b552009-03-29 16:31:16 -0400639 goto out_free_ph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 retval = -ENOMEM;
Jesper Juhl792db3a2006-01-09 20:54:45 -0800642 elf_interpreter = kmalloc(elf_ppnt->p_filesz,
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700643 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (!elf_interpreter)
Al Viroe7b9b552009-03-29 16:31:16 -0400645 goto out_free_ph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 retval = kernel_read(bprm->file, elf_ppnt->p_offset,
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700648 elf_interpreter,
649 elf_ppnt->p_filesz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (retval != elf_ppnt->p_filesz) {
651 if (retval >= 0)
652 retval = -EIO;
653 goto out_free_interp;
654 }
655 /* make sure path is NULL terminated */
656 retval = -ENOEXEC;
657 if (elf_interpreter[elf_ppnt->p_filesz - 1] != '\0')
658 goto out_free_interp;
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 interpreter = open_exec(elf_interpreter);
661 retval = PTR_ERR(interpreter);
662 if (IS_ERR(interpreter))
663 goto out_free_interp;
Alexey Dobriyan1fb84492007-01-26 00:57:16 -0800664
665 /*
666 * If the binary is not readable then enforce
667 * mm->dumpable = 0 regardless of the interpreter's
668 * permissions.
669 */
Al Viro1b5d7832011-06-19 12:49:47 -0400670 would_dump(bprm, interpreter);
Alexey Dobriyan1fb84492007-01-26 00:57:16 -0800671
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700672 retval = kernel_read(interpreter, 0, bprm->buf,
673 BINPRM_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (retval != BINPRM_BUF_SIZE) {
675 if (retval >= 0)
676 retval = -EIO;
677 goto out_free_dentry;
678 }
679
680 /* Get the exec headers */
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700681 loc->interp_elf_ex = *((struct elfhdr *)bprm->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 break;
683 }
684 elf_ppnt++;
685 }
686
687 elf_ppnt = elf_phdata;
688 for (i = 0; i < loc->elf_ex.e_phnum; i++, elf_ppnt++)
689 if (elf_ppnt->p_type == PT_GNU_STACK) {
690 if (elf_ppnt->p_flags & PF_X)
691 executable_stack = EXSTACK_ENABLE_X;
692 else
693 executable_stack = EXSTACK_DISABLE_X;
694 break;
695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 /* Some simple consistency checks for the interpreter */
698 if (elf_interpreter) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 retval = -ELIBBAD;
Andi Kleend20894a2008-02-08 04:21:54 -0800700 /* Not an ELF interpreter */
701 if (memcmp(loc->interp_elf_ex.e_ident, ELFMAG, SELFMAG) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 goto out_free_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /* Verify the interpreter has a valid arch */
Andi Kleend20894a2008-02-08 04:21:54 -0800704 if (!elf_check_arch(&loc->interp_elf_ex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 goto out_free_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 /* Flush all traces of the currently running executable */
709 retval = flush_old_exec(bprm);
710 if (retval)
711 goto out_free_dentry;
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* OK, This is the point of no return */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 current->mm->def_flags = def_flags;
715
716 /* Do this immediately, since STACK_TOP as used in setup_arg_pages
717 may depend on the personality. */
Martin Schwidefsky0b592682008-10-16 15:39:57 +0200718 SET_PERSONALITY(loc->elf_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (elf_read_implies_exec(loc->elf_ex, executable_stack))
720 current->personality |= READ_IMPLIES_EXEC;
721
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700722 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 current->flags |= PF_RANDOMIZE;
Linus Torvalds221af7f2010-01-28 22:14:42 -0800724
725 setup_new_exec(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 /* Do this so that we can load the interpreter, if need be. We will
728 change some of these later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 current->mm->free_area_cache = current->mm->mmap_base;
Wolfgang Wander1363c3c2005-06-21 17:14:49 -0700730 current->mm->cached_hole_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 retval = setup_arg_pages(bprm, randomize_stack_top(STACK_TOP),
732 executable_stack);
733 if (retval < 0) {
734 send_sig(SIGKILL, current, 0);
735 goto out_free_dentry;
736 }
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 current->mm->start_stack = bprm->p;
739
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200740 /* Now we do a little grungy work by mmapping the ELF image into
Jiri Kosinacc503c12008-01-30 13:31:07 +0100741 the correct location in memory. */
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700742 for(i = 0, elf_ppnt = elf_phdata;
743 i < loc->elf_ex.e_phnum; i++, elf_ppnt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 int elf_prot = 0, elf_flags;
745 unsigned long k, vaddr;
746
747 if (elf_ppnt->p_type != PT_LOAD)
748 continue;
749
750 if (unlikely (elf_brk > elf_bss)) {
751 unsigned long nbyte;
752
753 /* There was a PT_LOAD segment with p_memsz > p_filesz
754 before this one. Map anonymous pages, if needed,
755 and clear the area. */
Mikael Petterssonf670d0e2011-01-12 17:00:02 -0800756 retval = set_brk(elf_bss + load_bias,
757 elf_brk + load_bias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (retval) {
759 send_sig(SIGKILL, current, 0);
760 goto out_free_dentry;
761 }
762 nbyte = ELF_PAGEOFFSET(elf_bss);
763 if (nbyte) {
764 nbyte = ELF_MIN_ALIGN - nbyte;
765 if (nbyte > elf_brk - elf_bss)
766 nbyte = elf_brk - elf_bss;
767 if (clear_user((void __user *)elf_bss +
768 load_bias, nbyte)) {
769 /*
770 * This bss-zeroing can fail if the ELF
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700771 * file specifies odd protections. So
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 * we don't check the return value
773 */
774 }
775 }
776 }
777
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700778 if (elf_ppnt->p_flags & PF_R)
779 elf_prot |= PROT_READ;
780 if (elf_ppnt->p_flags & PF_W)
781 elf_prot |= PROT_WRITE;
782 if (elf_ppnt->p_flags & PF_X)
783 elf_prot |= PROT_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700785 elf_flags = MAP_PRIVATE | MAP_DENYWRITE | MAP_EXECUTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 vaddr = elf_ppnt->p_vaddr;
788 if (loc->elf_ex.e_type == ET_EXEC || load_addr_set) {
789 elf_flags |= MAP_FIXED;
790 } else if (loc->elf_ex.e_type == ET_DYN) {
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700791 /* Try and get dynamic programs out of the way of the
792 * default mmap base, as well as whatever program they
793 * might try to exec. This is because the brk will
794 * follow the loader, and is not movable. */
David Daneye39f5602012-01-10 15:10:21 -0800795#ifdef CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE
Jiri Kosinaa3defbe2011-11-02 13:37:41 -0700796 /* Memory randomization might have been switched off
797 * in runtime via sysctl.
798 * If that is the case, retain the original non-zero
799 * load_bias value in order to establish proper
800 * non-randomized mappings.
801 */
802 if (current->flags & PF_RANDOMIZE)
803 load_bias = 0;
804 else
805 load_bias = ELF_PAGESTART(ELF_ET_DYN_BASE - vaddr);
Jiri Kosinacc503c12008-01-30 13:31:07 +0100806#else
Linus Torvalds90cb28e2007-01-06 13:28:21 -0800807 load_bias = ELF_PAGESTART(ELF_ET_DYN_BASE - vaddr);
Jiri Kosinacc503c12008-01-30 13:31:07 +0100808#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700811 error = elf_map(bprm->file, load_bias + vaddr, elf_ppnt,
Andrew Mortonbb1ad822008-01-30 13:31:07 +0100812 elf_prot, elf_flags, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (BAD_ADDR(error)) {
814 send_sig(SIGKILL, current, 0);
Alexey Kuznetsovb140f2512007-05-08 00:31:57 -0700815 retval = IS_ERR((void *)error) ?
816 PTR_ERR((void*)error) : -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 goto out_free_dentry;
818 }
819
820 if (!load_addr_set) {
821 load_addr_set = 1;
822 load_addr = (elf_ppnt->p_vaddr - elf_ppnt->p_offset);
823 if (loc->elf_ex.e_type == ET_DYN) {
824 load_bias += error -
825 ELF_PAGESTART(load_bias + vaddr);
826 load_addr += load_bias;
827 reloc_func_desc = load_bias;
828 }
829 }
830 k = elf_ppnt->p_vaddr;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700831 if (k < start_code)
832 start_code = k;
833 if (start_data < k)
834 start_data = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 /*
837 * Check to see if the section's size will overflow the
838 * allowed task size. Note that p_filesz must always be
839 * <= p_memsz so it is only necessary to check p_memsz.
840 */
Chuck Ebbertce510592006-07-03 00:24:14 -0700841 if (BAD_ADDR(k) || elf_ppnt->p_filesz > elf_ppnt->p_memsz ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 elf_ppnt->p_memsz > TASK_SIZE ||
843 TASK_SIZE - elf_ppnt->p_memsz < k) {
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700844 /* set_brk can never work. Avoid overflows. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 send_sig(SIGKILL, current, 0);
Alexey Kuznetsovb140f2512007-05-08 00:31:57 -0700846 retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 goto out_free_dentry;
848 }
849
850 k = elf_ppnt->p_vaddr + elf_ppnt->p_filesz;
851
852 if (k > elf_bss)
853 elf_bss = k;
854 if ((elf_ppnt->p_flags & PF_X) && end_code < k)
855 end_code = k;
856 if (end_data < k)
857 end_data = k;
858 k = elf_ppnt->p_vaddr + elf_ppnt->p_memsz;
859 if (k > elf_brk)
860 elf_brk = k;
861 }
862
863 loc->elf_ex.e_entry += load_bias;
864 elf_bss += load_bias;
865 elf_brk += load_bias;
866 start_code += load_bias;
867 end_code += load_bias;
868 start_data += load_bias;
869 end_data += load_bias;
870
871 /* Calling set_brk effectively mmaps the pages that we need
872 * for the bss and break sections. We must do this before
873 * mapping in the interpreter, to make sure it doesn't wind
874 * up getting placed where the bss needs to go.
875 */
876 retval = set_brk(elf_bss, elf_brk);
877 if (retval) {
878 send_sig(SIGKILL, current, 0);
879 goto out_free_dentry;
880 }
akpm@osdl.org6de50512005-10-11 08:29:08 -0700881 if (likely(elf_bss != elf_brk) && unlikely(padzero(elf_bss))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 send_sig(SIGSEGV, current, 0);
883 retval = -EFAULT; /* Nobody gets to see this, but.. */
884 goto out_free_dentry;
885 }
886
887 if (elf_interpreter) {
Alan Cox6eec4822012-10-04 17:13:42 -0700888 unsigned long interp_map_addr = 0;
Jiri Kosinacc503c12008-01-30 13:31:07 +0100889
Andi Kleend20894a2008-02-08 04:21:54 -0800890 elf_entry = load_elf_interp(&loc->interp_elf_ex,
891 interpreter,
892 &interp_map_addr,
893 load_bias);
894 if (!IS_ERR((void *)elf_entry)) {
895 /*
896 * load_elf_interp() returns relocation
897 * adjustment
898 */
899 interp_load_addr = elf_entry;
900 elf_entry += loc->interp_elf_ex.e_entry;
Jiri Kosinacc503c12008-01-30 13:31:07 +0100901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (BAD_ADDR(elf_entry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 force_sig(SIGSEGV, current);
Chuck Ebbertce510592006-07-03 00:24:14 -0700904 retval = IS_ERR((void *)elf_entry) ?
905 (int)elf_entry : -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 goto out_free_dentry;
907 }
908 reloc_func_desc = interp_load_addr;
909
910 allow_write_access(interpreter);
911 fput(interpreter);
912 kfree(elf_interpreter);
913 } else {
914 elf_entry = loc->elf_ex.e_entry;
Suresh Siddha5342fba2006-02-26 04:18:28 +0100915 if (BAD_ADDR(elf_entry)) {
Chuck Ebbertce510592006-07-03 00:24:14 -0700916 force_sig(SIGSEGV, current);
917 retval = -EINVAL;
Suresh Siddha5342fba2006-02-26 04:18:28 +0100918 goto out_free_dentry;
919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
921
922 kfree(elf_phdata);
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 set_binfmt(&elf_format);
925
Benjamin Herrenschmidt547ee842005-04-16 15:24:35 -0700926#ifdef ARCH_HAS_SETUP_ADDITIONAL_PAGES
Martin Schwidefskyfc5243d2008-12-25 13:38:35 +0100927 retval = arch_setup_additional_pages(bprm, !!elf_interpreter);
Benjamin Herrenschmidt547ee842005-04-16 15:24:35 -0700928 if (retval < 0) {
929 send_sig(SIGKILL, current, 0);
Roland McGrath18c8baff2005-04-28 15:17:19 -0700930 goto out;
Benjamin Herrenschmidt547ee842005-04-16 15:24:35 -0700931 }
932#endif /* ARCH_HAS_SETUP_ADDITIONAL_PAGES */
933
David Howellsa6f76f22008-11-14 10:39:24 +1100934 install_exec_creds(bprm);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700935 retval = create_elf_tables(bprm, &loc->elf_ex,
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700936 load_addr, interp_load_addr);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700937 if (retval < 0) {
938 send_sig(SIGKILL, current, 0);
939 goto out;
940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 /* N.B. passed_fileno might not be initialized? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 current->mm->end_code = end_code;
943 current->mm->start_code = start_code;
944 current->mm->start_data = start_data;
945 current->mm->end_data = end_data;
946 current->mm->start_stack = bprm->p;
947
Jiri Kosinac1d171a2008-01-30 13:30:40 +0100948#ifdef arch_randomize_brk
Jiri Kosina4471a672011-04-14 15:22:09 -0700949 if ((current->flags & PF_RANDOMIZE) && (randomize_va_space > 1)) {
Jiri Kosinac1d171a2008-01-30 13:30:40 +0100950 current->mm->brk = current->mm->start_brk =
951 arch_randomize_brk(current->mm);
Jiri Kosina4471a672011-04-14 15:22:09 -0700952#ifdef CONFIG_COMPAT_BRK
953 current->brk_randomized = 1;
954#endif
955 }
Jiri Kosinac1d171a2008-01-30 13:30:40 +0100956#endif
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if (current->personality & MMAP_PAGE_ZERO) {
959 /* Why this, you ask??? Well SVr4 maps page 0 as read-only,
960 and some applications "depend" upon this behavior.
961 Since we do not have the power to recompile these, we
Jesper Juhlf4e5cc22006-06-23 02:05:35 -0700962 emulate the SVr4 behavior. Sigh. */
Linus Torvalds6be5ceb2012-04-20 17:13:58 -0700963 error = vm_mmap(NULL, 0, PAGE_SIZE, PROT_READ | PROT_EXEC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 MAP_FIXED | MAP_PRIVATE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966
967#ifdef ELF_PLAT_INIT
968 /*
969 * The ABI may specify that certain registers be set up in special
970 * ways (on i386 %edx is the address of a DT_FINI function, for
971 * example. In addition, it may also specify (eg, PowerPC64 ELF)
972 * that the e_entry field is the address of the function descriptor
973 * for the startup routine, rather than the address of the startup
974 * routine itself. This macro performs whatever initialization to
975 * the regs structure is required as well as any relocations to the
976 * function descriptor entries when executing dynamically links apps.
977 */
978 ELF_PLAT_INIT(regs, reloc_func_desc);
979#endif
980
981 start_thread(regs, elf_entry, bprm->p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 retval = 0;
983out:
984 kfree(loc);
985out_ret:
986 return retval;
987
988 /* error cleanup */
989out_free_dentry:
990 allow_write_access(interpreter);
991 if (interpreter)
992 fput(interpreter);
993out_free_interp:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800994 kfree(elf_interpreter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995out_free_ph:
996 kfree(elf_phdata);
997 goto out;
998}
999
1000/* This is really simpleminded and specialized - we are loading an
1001 a.out library that is given an ELF header. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002static int load_elf_library(struct file *file)
1003{
1004 struct elf_phdr *elf_phdata;
1005 struct elf_phdr *eppnt;
1006 unsigned long elf_bss, bss, len;
1007 int retval, error, i, j;
1008 struct elfhdr elf_ex;
1009
1010 error = -ENOEXEC;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001011 retval = kernel_read(file, 0, (char *)&elf_ex, sizeof(elf_ex));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (retval != sizeof(elf_ex))
1013 goto out;
1014
1015 if (memcmp(elf_ex.e_ident, ELFMAG, SELFMAG) != 0)
1016 goto out;
1017
1018 /* First of all, some simple consistency checks */
1019 if (elf_ex.e_type != ET_EXEC || elf_ex.e_phnum > 2 ||
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001020 !elf_check_arch(&elf_ex) || !file->f_op || !file->f_op->mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 goto out;
1022
1023 /* Now read in all of the header information */
1024
1025 j = sizeof(struct elf_phdr) * elf_ex.e_phnum;
1026 /* j < ELF_MIN_ALIGN because elf_ex.e_phnum <= 2 */
1027
1028 error = -ENOMEM;
1029 elf_phdata = kmalloc(j, GFP_KERNEL);
1030 if (!elf_phdata)
1031 goto out;
1032
1033 eppnt = elf_phdata;
1034 error = -ENOEXEC;
1035 retval = kernel_read(file, elf_ex.e_phoff, (char *)eppnt, j);
1036 if (retval != j)
1037 goto out_free_ph;
1038
1039 for (j = 0, i = 0; i<elf_ex.e_phnum; i++)
1040 if ((eppnt + i)->p_type == PT_LOAD)
1041 j++;
1042 if (j != 1)
1043 goto out_free_ph;
1044
1045 while (eppnt->p_type != PT_LOAD)
1046 eppnt++;
1047
1048 /* Now use mmap to map the library into memory. */
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001049 error = vm_mmap(file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 ELF_PAGESTART(eppnt->p_vaddr),
1051 (eppnt->p_filesz +
1052 ELF_PAGEOFFSET(eppnt->p_vaddr)),
1053 PROT_READ | PROT_WRITE | PROT_EXEC,
1054 MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE,
1055 (eppnt->p_offset -
1056 ELF_PAGEOFFSET(eppnt->p_vaddr)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (error != ELF_PAGESTART(eppnt->p_vaddr))
1058 goto out_free_ph;
1059
1060 elf_bss = eppnt->p_vaddr + eppnt->p_filesz;
1061 if (padzero(elf_bss)) {
1062 error = -EFAULT;
1063 goto out_free_ph;
1064 }
1065
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001066 len = ELF_PAGESTART(eppnt->p_filesz + eppnt->p_vaddr +
1067 ELF_MIN_ALIGN - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 bss = eppnt->p_memsz + eppnt->p_vaddr;
Linus Torvaldse4eb1ff2012-04-20 15:35:40 -07001069 if (bss > len)
1070 vm_brk(len, bss - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 error = 0;
1072
1073out_free_ph:
1074 kfree(elf_phdata);
1075out:
1076 return error;
1077}
1078
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08001079#ifdef CONFIG_ELF_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080/*
1081 * ELF core dumper
1082 *
1083 * Modelled on fs/exec.c:aout_core_dump()
1084 * Jeremy Fitzhardinge <jeremy@sw.oz.au>
1085 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087/*
Jason Baron909af762012-03-23 15:02:51 -07001088 * The purpose of always_dump_vma() is to make sure that special kernel mappings
1089 * that are useful for post-mortem analysis are included in every core dump.
1090 * In that way we ensure that the core dump is fully interpretable later
1091 * without matching up the same kernel and hardware config to see what PC values
1092 * meant. These special mappings include - vDSO, vsyscall, and other
1093 * architecture specific mappings
1094 */
1095static bool always_dump_vma(struct vm_area_struct *vma)
1096{
1097 /* Any vsyscall mappings? */
1098 if (vma == get_gate_vma(vma->vm_mm))
1099 return true;
1100 /*
1101 * arch_vma_name() returns non-NULL for special architecture mappings,
1102 * such as vDSO sections.
1103 */
1104 if (arch_vma_name(vma))
1105 return true;
1106
1107 return false;
1108}
1109
1110/*
Roland McGrath82df3972007-10-16 23:27:02 -07001111 * Decide what to dump of a segment, part, all or none.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 */
Roland McGrath82df3972007-10-16 23:27:02 -07001113static unsigned long vma_dump_size(struct vm_area_struct *vma,
1114 unsigned long mm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
KOSAKI Motohiroe575f112008-10-18 20:27:08 -07001116#define FILTER(type) (mm_flags & (1UL << MMF_DUMP_##type))
1117
Jason Baron909af762012-03-23 15:02:51 -07001118 /* always dump the vdso and vsyscall sections */
1119 if (always_dump_vma(vma))
Roland McGrath82df3972007-10-16 23:27:02 -07001120 goto whole;
Roland McGrathe5b97dd2007-01-26 00:56:48 -08001121
Jason Baronaccb61f2012-03-23 15:02:51 -07001122 if (vma->vm_flags & VM_NODUMP)
1123 return 0;
1124
KOSAKI Motohiroe575f112008-10-18 20:27:08 -07001125 /* Hugetlb memory check */
1126 if (vma->vm_flags & VM_HUGETLB) {
1127 if ((vma->vm_flags & VM_SHARED) && FILTER(HUGETLB_SHARED))
1128 goto whole;
1129 if (!(vma->vm_flags & VM_SHARED) && FILTER(HUGETLB_PRIVATE))
1130 goto whole;
1131 }
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 /* Do not dump I/O mapped devices or special mappings */
1134 if (vma->vm_flags & (VM_IO | VM_RESERVED))
1135 return 0;
1136
Kawai, Hidehiroa1b59e82007-07-19 01:48:29 -07001137 /* By default, dump shared memory if mapped from an anonymous file. */
1138 if (vma->vm_flags & VM_SHARED) {
Roland McGrath82df3972007-10-16 23:27:02 -07001139 if (vma->vm_file->f_path.dentry->d_inode->i_nlink == 0 ?
1140 FILTER(ANON_SHARED) : FILTER(MAPPED_SHARED))
1141 goto whole;
1142 return 0;
Kawai, Hidehiroa1b59e82007-07-19 01:48:29 -07001143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Roland McGrath82df3972007-10-16 23:27:02 -07001145 /* Dump segments that have been written to. */
1146 if (vma->anon_vma && FILTER(ANON_PRIVATE))
1147 goto whole;
1148 if (vma->vm_file == NULL)
1149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Roland McGrath82df3972007-10-16 23:27:02 -07001151 if (FILTER(MAPPED_PRIVATE))
1152 goto whole;
1153
1154 /*
1155 * If this looks like the beginning of a DSO or executable mapping,
1156 * check for an ELF header. If we find one, dump the first page to
1157 * aid in determining what was mapped here.
1158 */
Roland McGrath92dc07b2009-02-06 17:34:07 -08001159 if (FILTER(ELF_HEADERS) &&
1160 vma->vm_pgoff == 0 && (vma->vm_flags & VM_READ)) {
Roland McGrath82df3972007-10-16 23:27:02 -07001161 u32 __user *header = (u32 __user *) vma->vm_start;
1162 u32 word;
Roland McGrath92dc07b2009-02-06 17:34:07 -08001163 mm_segment_t fs = get_fs();
Roland McGrath82df3972007-10-16 23:27:02 -07001164 /*
1165 * Doing it this way gets the constant folded by GCC.
1166 */
1167 union {
1168 u32 cmp;
1169 char elfmag[SELFMAG];
1170 } magic;
1171 BUILD_BUG_ON(SELFMAG != sizeof word);
1172 magic.elfmag[EI_MAG0] = ELFMAG0;
1173 magic.elfmag[EI_MAG1] = ELFMAG1;
1174 magic.elfmag[EI_MAG2] = ELFMAG2;
1175 magic.elfmag[EI_MAG3] = ELFMAG3;
Roland McGrath92dc07b2009-02-06 17:34:07 -08001176 /*
1177 * Switch to the user "segment" for get_user(),
1178 * then put back what elf_core_dump() had in place.
1179 */
1180 set_fs(USER_DS);
1181 if (unlikely(get_user(word, header)))
1182 word = 0;
1183 set_fs(fs);
1184 if (word == magic.cmp)
Roland McGrath82df3972007-10-16 23:27:02 -07001185 return PAGE_SIZE;
1186 }
1187
1188#undef FILTER
1189
1190 return 0;
1191
1192whole:
1193 return vma->vm_end - vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194}
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196/* An ELF note in memory */
1197struct memelfnote
1198{
1199 const char *name;
1200 int type;
1201 unsigned int datasz;
1202 void *data;
1203};
1204
1205static int notesize(struct memelfnote *en)
1206{
1207 int sz;
1208
1209 sz = sizeof(struct elf_note);
1210 sz += roundup(strlen(en->name) + 1, 4);
1211 sz += roundup(en->datasz, 4);
1212
1213 return sz;
1214}
1215
Andi Kleend025c9d2006-09-30 23:29:28 -07001216#define DUMP_WRITE(addr, nr, foffset) \
1217 do { if (!dump_write(file, (addr), (nr))) return 0; *foffset += (nr); } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Andi Kleend025c9d2006-09-30 23:29:28 -07001219static int alignfile(struct file *file, loff_t *foffset)
1220{
Petr Vandroveca7a0d862006-10-13 18:42:07 +02001221 static const char buf[4] = { 0, };
Andi Kleend025c9d2006-09-30 23:29:28 -07001222 DUMP_WRITE(buf, roundup(*foffset, 4) - *foffset, foffset);
1223 return 1;
1224}
1225
1226static int writenote(struct memelfnote *men, struct file *file,
1227 loff_t *foffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
1229 struct elf_note en;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 en.n_namesz = strlen(men->name) + 1;
1231 en.n_descsz = men->datasz;
1232 en.n_type = men->type;
1233
Andi Kleend025c9d2006-09-30 23:29:28 -07001234 DUMP_WRITE(&en, sizeof(en), foffset);
1235 DUMP_WRITE(men->name, en.n_namesz, foffset);
1236 if (!alignfile(file, foffset))
1237 return 0;
1238 DUMP_WRITE(men->data, men->datasz, foffset);
1239 if (!alignfile(file, foffset))
1240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 return 1;
1243}
1244#undef DUMP_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Roland McGrath3aba4812008-01-30 13:31:44 +01001246static void fill_elf_header(struct elfhdr *elf, int segs,
1247 u16 machine, u32 flags, u8 osabi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Cyrill Gorcunov6970c8e2008-04-29 01:01:18 -07001249 memset(elf, 0, sizeof(*elf));
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 memcpy(elf->e_ident, ELFMAG, SELFMAG);
1252 elf->e_ident[EI_CLASS] = ELF_CLASS;
1253 elf->e_ident[EI_DATA] = ELF_DATA;
1254 elf->e_ident[EI_VERSION] = EV_CURRENT;
1255 elf->e_ident[EI_OSABI] = ELF_OSABI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 elf->e_type = ET_CORE;
Roland McGrath3aba4812008-01-30 13:31:44 +01001258 elf->e_machine = machine;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 elf->e_version = EV_CURRENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 elf->e_phoff = sizeof(struct elfhdr);
Roland McGrath3aba4812008-01-30 13:31:44 +01001261 elf->e_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 elf->e_ehsize = sizeof(struct elfhdr);
1263 elf->e_phentsize = sizeof(struct elf_phdr);
1264 elf->e_phnum = segs;
Cyrill Gorcunov6970c8e2008-04-29 01:01:18 -07001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return;
1267}
1268
Andrew Morton8d6b5eee2006-09-25 23:32:04 -07001269static void fill_elf_note_phdr(struct elf_phdr *phdr, int sz, loff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 phdr->p_type = PT_NOTE;
1272 phdr->p_offset = offset;
1273 phdr->p_vaddr = 0;
1274 phdr->p_paddr = 0;
1275 phdr->p_filesz = sz;
1276 phdr->p_memsz = 0;
1277 phdr->p_flags = 0;
1278 phdr->p_align = 0;
1279 return;
1280}
1281
1282static void fill_note(struct memelfnote *note, const char *name, int type,
1283 unsigned int sz, void *data)
1284{
1285 note->name = name;
1286 note->type = type;
1287 note->datasz = sz;
1288 note->data = data;
1289 return;
1290}
1291
1292/*
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001293 * fill up all the fields in prstatus from the given task struct, except
1294 * registers which need to be filled up separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 */
1296static void fill_prstatus(struct elf_prstatus *prstatus,
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001297 struct task_struct *p, long signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
1299 prstatus->pr_info.si_signo = prstatus->pr_cursig = signr;
1300 prstatus->pr_sigpend = p->pending.signal.sig[0];
1301 prstatus->pr_sighold = p->blocked.sig[0];
Oleg Nesterov3b34fc52009-06-17 16:27:38 -07001302 rcu_read_lock();
1303 prstatus->pr_ppid = task_pid_vnr(rcu_dereference(p->real_parent));
1304 rcu_read_unlock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001305 prstatus->pr_pid = task_pid_vnr(p);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001306 prstatus->pr_pgrp = task_pgrp_vnr(p);
1307 prstatus->pr_sid = task_session_vnr(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 if (thread_group_leader(p)) {
Frank Mayharf06febc2008-09-12 09:54:39 -07001309 struct task_cputime cputime;
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 /*
Frank Mayharf06febc2008-09-12 09:54:39 -07001312 * This is the record for the group leader. It shows the
1313 * group-wide total, not its individual thread total.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 */
Frank Mayharf06febc2008-09-12 09:54:39 -07001315 thread_group_cputime(p, &cputime);
1316 cputime_to_timeval(cputime.utime, &prstatus->pr_utime);
1317 cputime_to_timeval(cputime.stime, &prstatus->pr_stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 } else {
1319 cputime_to_timeval(p->utime, &prstatus->pr_utime);
1320 cputime_to_timeval(p->stime, &prstatus->pr_stime);
1321 }
1322 cputime_to_timeval(p->signal->cutime, &prstatus->pr_cutime);
1323 cputime_to_timeval(p->signal->cstime, &prstatus->pr_cstime);
1324}
1325
1326static int fill_psinfo(struct elf_prpsinfo *psinfo, struct task_struct *p,
1327 struct mm_struct *mm)
1328{
David Howellsc69e8d92008-11-14 10:39:19 +11001329 const struct cred *cred;
Greg Kroah-Hartmana84a5052005-05-11 00:10:44 -07001330 unsigned int i, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 /* first copy the parameters from user space */
1333 memset(psinfo, 0, sizeof(struct elf_prpsinfo));
1334
1335 len = mm->arg_end - mm->arg_start;
1336 if (len >= ELF_PRARGSZ)
1337 len = ELF_PRARGSZ-1;
1338 if (copy_from_user(&psinfo->pr_psargs,
1339 (const char __user *)mm->arg_start, len))
1340 return -EFAULT;
1341 for(i = 0; i < len; i++)
1342 if (psinfo->pr_psargs[i] == 0)
1343 psinfo->pr_psargs[i] = ' ';
1344 psinfo->pr_psargs[len] = 0;
1345
Oleg Nesterov3b34fc52009-06-17 16:27:38 -07001346 rcu_read_lock();
1347 psinfo->pr_ppid = task_pid_vnr(rcu_dereference(p->real_parent));
1348 rcu_read_unlock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001349 psinfo->pr_pid = task_pid_vnr(p);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001350 psinfo->pr_pgrp = task_pgrp_vnr(p);
1351 psinfo->pr_sid = task_session_vnr(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353 i = p->state ? ffz(~p->state) + 1 : 0;
1354 psinfo->pr_state = i;
Carsten Otte55148542006-03-25 03:08:22 -08001355 psinfo->pr_sname = (i > 5) ? '.' : "RSDTZW"[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 psinfo->pr_zomb = psinfo->pr_sname == 'Z';
1357 psinfo->pr_nice = task_nice(p);
1358 psinfo->pr_flag = p->flags;
David Howellsc69e8d92008-11-14 10:39:19 +11001359 rcu_read_lock();
1360 cred = __task_cred(p);
Eric W. Biedermanebc887b2012-02-07 18:36:10 -08001361 SET_UID(psinfo->pr_uid, from_kuid_munged(cred->user_ns, cred->uid));
1362 SET_GID(psinfo->pr_gid, from_kgid_munged(cred->user_ns, cred->gid));
David Howellsc69e8d92008-11-14 10:39:19 +11001363 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 strncpy(psinfo->pr_fname, p->comm, sizeof(psinfo->pr_fname));
1365
1366 return 0;
1367}
1368
Roland McGrath3aba4812008-01-30 13:31:44 +01001369static void fill_auxv_note(struct memelfnote *note, struct mm_struct *mm)
1370{
1371 elf_addr_t *auxv = (elf_addr_t *) mm->saved_auxv;
1372 int i = 0;
1373 do
1374 i += 2;
1375 while (auxv[i - 2] != AT_NULL);
1376 fill_note(note, "CORE", NT_AUXV, i * sizeof(elf_addr_t), auxv);
1377}
1378
Denys Vlasenko49ae4d42012-10-04 17:15:35 -07001379static void fill_siginfo_note(struct memelfnote *note, user_siginfo_t *csigdata,
1380 siginfo_t *siginfo)
1381{
1382 mm_segment_t old_fs = get_fs();
1383 set_fs(KERNEL_DS);
1384 copy_siginfo_to_user((user_siginfo_t __user *) csigdata, siginfo);
1385 set_fs(old_fs);
1386 fill_note(note, "CORE", NT_SIGINFO, sizeof(*csigdata), csigdata);
1387}
1388
Roland McGrath4206d3a2008-01-30 13:31:45 +01001389#ifdef CORE_DUMP_USE_REGSET
1390#include <linux/regset.h>
1391
1392struct elf_thread_core_info {
1393 struct elf_thread_core_info *next;
1394 struct task_struct *task;
1395 struct elf_prstatus prstatus;
1396 struct memelfnote notes[0];
1397};
1398
1399struct elf_note_info {
1400 struct elf_thread_core_info *thread;
1401 struct memelfnote psinfo;
Denys Vlasenko49ae4d42012-10-04 17:15:35 -07001402 struct memelfnote signote;
Roland McGrath4206d3a2008-01-30 13:31:45 +01001403 struct memelfnote auxv;
Denys Vlasenko49ae4d42012-10-04 17:15:35 -07001404 user_siginfo_t csigdata;
Roland McGrath4206d3a2008-01-30 13:31:45 +01001405 size_t size;
1406 int thread_notes;
1407};
1408
Roland McGrathd31472b2008-03-04 14:28:30 -08001409/*
1410 * When a regset has a writeback hook, we call it on each thread before
1411 * dumping user memory. On register window machines, this makes sure the
1412 * user memory backing the register data is up to date before we read it.
1413 */
1414static void do_thread_regset_writeback(struct task_struct *task,
1415 const struct user_regset *regset)
1416{
1417 if (regset->writeback)
1418 regset->writeback(task, regset, 1);
1419}
1420
H. J. Lu0953f65d2012-02-14 13:34:52 -08001421#ifndef PR_REG_SIZE
1422#define PR_REG_SIZE(S) sizeof(S)
1423#endif
1424
1425#ifndef PRSTATUS_SIZE
1426#define PRSTATUS_SIZE(S) sizeof(S)
1427#endif
1428
1429#ifndef PR_REG_PTR
1430#define PR_REG_PTR(S) (&((S)->pr_reg))
1431#endif
1432
1433#ifndef SET_PR_FPVALID
1434#define SET_PR_FPVALID(S, V) ((S)->pr_fpvalid = (V))
1435#endif
1436
Roland McGrath4206d3a2008-01-30 13:31:45 +01001437static int fill_thread_core_info(struct elf_thread_core_info *t,
1438 const struct user_regset_view *view,
1439 long signr, size_t *total)
1440{
1441 unsigned int i;
1442
1443 /*
1444 * NT_PRSTATUS is the one special case, because the regset data
1445 * goes into the pr_reg field inside the note contents, rather
1446 * than being the whole note contents. We fill the reset in here.
1447 * We assume that regset 0 is NT_PRSTATUS.
1448 */
1449 fill_prstatus(&t->prstatus, t->task, signr);
1450 (void) view->regsets[0].get(t->task, &view->regsets[0],
H. J. Lu0953f65d2012-02-14 13:34:52 -08001451 0, PR_REG_SIZE(t->prstatus.pr_reg),
1452 PR_REG_PTR(&t->prstatus), NULL);
Roland McGrath4206d3a2008-01-30 13:31:45 +01001453
1454 fill_note(&t->notes[0], "CORE", NT_PRSTATUS,
H. J. Lu0953f65d2012-02-14 13:34:52 -08001455 PRSTATUS_SIZE(t->prstatus), &t->prstatus);
Roland McGrath4206d3a2008-01-30 13:31:45 +01001456 *total += notesize(&t->notes[0]);
1457
Roland McGrathd31472b2008-03-04 14:28:30 -08001458 do_thread_regset_writeback(t->task, &view->regsets[0]);
1459
Roland McGrath4206d3a2008-01-30 13:31:45 +01001460 /*
1461 * Each other regset might generate a note too. For each regset
1462 * that has no core_note_type or is inactive, we leave t->notes[i]
1463 * all zero and we'll know to skip writing it later.
1464 */
1465 for (i = 1; i < view->n; ++i) {
1466 const struct user_regset *regset = &view->regsets[i];
Roland McGrathd31472b2008-03-04 14:28:30 -08001467 do_thread_regset_writeback(t->task, regset);
H. Peter Anvinc8e25252012-03-02 10:43:48 -08001468 if (regset->core_note_type && regset->get &&
Roland McGrath4206d3a2008-01-30 13:31:45 +01001469 (!regset->active || regset->active(t->task, regset))) {
1470 int ret;
1471 size_t size = regset->n * regset->size;
1472 void *data = kmalloc(size, GFP_KERNEL);
1473 if (unlikely(!data))
1474 return 0;
1475 ret = regset->get(t->task, regset,
1476 0, size, data, NULL);
1477 if (unlikely(ret))
1478 kfree(data);
1479 else {
1480 if (regset->core_note_type != NT_PRFPREG)
1481 fill_note(&t->notes[i], "LINUX",
1482 regset->core_note_type,
1483 size, data);
1484 else {
H. J. Lu0953f65d2012-02-14 13:34:52 -08001485 SET_PR_FPVALID(&t->prstatus, 1);
Roland McGrath4206d3a2008-01-30 13:31:45 +01001486 fill_note(&t->notes[i], "CORE",
1487 NT_PRFPREG, size, data);
1488 }
1489 *total += notesize(&t->notes[i]);
1490 }
1491 }
1492 }
1493
1494 return 1;
1495}
1496
1497static int fill_note_info(struct elfhdr *elf, int phdrs,
1498 struct elf_note_info *info,
Denys Vlasenko5ab1c302012-10-04 17:15:29 -07001499 siginfo_t *siginfo, struct pt_regs *regs)
Roland McGrath4206d3a2008-01-30 13:31:45 +01001500{
1501 struct task_struct *dump_task = current;
1502 const struct user_regset_view *view = task_user_regset_view(dump_task);
1503 struct elf_thread_core_info *t;
1504 struct elf_prpsinfo *psinfo;
Oleg Nesterov83914442008-07-25 01:47:45 -07001505 struct core_thread *ct;
Roland McGrath4206d3a2008-01-30 13:31:45 +01001506 unsigned int i;
1507
1508 info->size = 0;
1509 info->thread = NULL;
1510
1511 psinfo = kmalloc(sizeof(*psinfo), GFP_KERNEL);
Roland McGrath4206d3a2008-01-30 13:31:45 +01001512 if (psinfo == NULL)
1513 return 0;
1514
Amerigo Wange2dbe122009-07-01 01:06:26 -04001515 fill_note(&info->psinfo, "CORE", NT_PRPSINFO, sizeof(*psinfo), psinfo);
1516
Roland McGrath4206d3a2008-01-30 13:31:45 +01001517 /*
1518 * Figure out how many notes we're going to need for each thread.
1519 */
1520 info->thread_notes = 0;
1521 for (i = 0; i < view->n; ++i)
1522 if (view->regsets[i].core_note_type != 0)
1523 ++info->thread_notes;
1524
1525 /*
1526 * Sanity check. We rely on regset 0 being in NT_PRSTATUS,
1527 * since it is our one special case.
1528 */
1529 if (unlikely(info->thread_notes == 0) ||
1530 unlikely(view->regsets[0].core_note_type != NT_PRSTATUS)) {
1531 WARN_ON(1);
1532 return 0;
1533 }
1534
1535 /*
1536 * Initialize the ELF file header.
1537 */
1538 fill_elf_header(elf, phdrs,
1539 view->e_machine, view->e_flags, view->ei_osabi);
1540
1541 /*
1542 * Allocate a structure for each thread.
1543 */
Oleg Nesterov83914442008-07-25 01:47:45 -07001544 for (ct = &dump_task->mm->core_state->dumper; ct; ct = ct->next) {
1545 t = kzalloc(offsetof(struct elf_thread_core_info,
1546 notes[info->thread_notes]),
1547 GFP_KERNEL);
1548 if (unlikely(!t))
1549 return 0;
Oleg Nesterov24d52882008-07-25 01:47:40 -07001550
Oleg Nesterov83914442008-07-25 01:47:45 -07001551 t->task = ct->task;
1552 if (ct->task == dump_task || !info->thread) {
1553 t->next = info->thread;
1554 info->thread = t;
1555 } else {
1556 /*
1557 * Make sure to keep the original task at
1558 * the head of the list.
1559 */
1560 t->next = info->thread->next;
1561 info->thread->next = t;
Roland McGrath4206d3a2008-01-30 13:31:45 +01001562 }
Oleg Nesterov83914442008-07-25 01:47:45 -07001563 }
Roland McGrath4206d3a2008-01-30 13:31:45 +01001564
1565 /*
1566 * Now fill in each thread's information.
1567 */
1568 for (t = info->thread; t != NULL; t = t->next)
Denys Vlasenko5ab1c302012-10-04 17:15:29 -07001569 if (!fill_thread_core_info(t, view, siginfo->si_signo, &info->size))
Roland McGrath4206d3a2008-01-30 13:31:45 +01001570 return 0;
1571
1572 /*
1573 * Fill in the two process-wide notes.
1574 */
1575 fill_psinfo(psinfo, dump_task->group_leader, dump_task->mm);
1576 info->size += notesize(&info->psinfo);
1577
Denys Vlasenko49ae4d42012-10-04 17:15:35 -07001578 fill_siginfo_note(&info->signote, &info->csigdata, siginfo);
1579 info->size += notesize(&info->signote);
1580
Roland McGrath4206d3a2008-01-30 13:31:45 +01001581 fill_auxv_note(&info->auxv, current->mm);
1582 info->size += notesize(&info->auxv);
1583
1584 return 1;
1585}
1586
1587static size_t get_note_info_size(struct elf_note_info *info)
1588{
1589 return info->size;
1590}
1591
1592/*
1593 * Write all the notes for each thread. When writing the first thread, the
1594 * process-wide notes are interleaved after the first thread-specific note.
1595 */
1596static int write_note_info(struct elf_note_info *info,
1597 struct file *file, loff_t *foffset)
1598{
1599 bool first = 1;
1600 struct elf_thread_core_info *t = info->thread;
1601
1602 do {
1603 int i;
1604
1605 if (!writenote(&t->notes[0], file, foffset))
1606 return 0;
1607
1608 if (first && !writenote(&info->psinfo, file, foffset))
1609 return 0;
Denys Vlasenko49ae4d42012-10-04 17:15:35 -07001610 if (first && !writenote(&info->signote, file, foffset))
1611 return 0;
Roland McGrath4206d3a2008-01-30 13:31:45 +01001612 if (first && !writenote(&info->auxv, file, foffset))
1613 return 0;
1614
1615 for (i = 1; i < info->thread_notes; ++i)
1616 if (t->notes[i].data &&
1617 !writenote(&t->notes[i], file, foffset))
1618 return 0;
1619
1620 first = 0;
1621 t = t->next;
1622 } while (t);
1623
1624 return 1;
1625}
1626
1627static void free_note_info(struct elf_note_info *info)
1628{
1629 struct elf_thread_core_info *threads = info->thread;
1630 while (threads) {
1631 unsigned int i;
1632 struct elf_thread_core_info *t = threads;
1633 threads = t->next;
1634 WARN_ON(t->notes[0].data && t->notes[0].data != &t->prstatus);
1635 for (i = 1; i < info->thread_notes; ++i)
1636 kfree(t->notes[i].data);
1637 kfree(t);
1638 }
1639 kfree(info->psinfo.data);
1640}
1641
1642#else
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644/* Here is the structure in which status of each thread is captured. */
1645struct elf_thread_status
1646{
1647 struct list_head list;
1648 struct elf_prstatus prstatus; /* NT_PRSTATUS */
1649 elf_fpregset_t fpu; /* NT_PRFPREG */
1650 struct task_struct *thread;
1651#ifdef ELF_CORE_COPY_XFPREGS
Mark Nelson5b20cd82007-10-16 23:25:39 -07001652 elf_fpxregset_t xfpu; /* ELF_CORE_XFPREG_TYPE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653#endif
1654 struct memelfnote notes[3];
1655 int num_notes;
1656};
1657
1658/*
1659 * In order to add the specific thread information for the elf file format,
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001660 * we need to keep a linked list of every threads pr_status and then create
1661 * a single section for them in the final core file.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 */
1663static int elf_dump_thread_status(long signr, struct elf_thread_status *t)
1664{
1665 int sz = 0;
1666 struct task_struct *p = t->thread;
1667 t->num_notes = 0;
1668
1669 fill_prstatus(&t->prstatus, p, signr);
1670 elf_core_copy_task_regs(p, &t->prstatus.pr_reg);
1671
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001672 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus),
1673 &(t->prstatus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 t->num_notes++;
1675 sz += notesize(&t->notes[0]);
1676
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001677 if ((t->prstatus.pr_fpvalid = elf_core_copy_task_fpregs(p, NULL,
1678 &t->fpu))) {
1679 fill_note(&t->notes[1], "CORE", NT_PRFPREG, sizeof(t->fpu),
1680 &(t->fpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 t->num_notes++;
1682 sz += notesize(&t->notes[1]);
1683 }
1684
1685#ifdef ELF_CORE_COPY_XFPREGS
1686 if (elf_core_copy_task_xfpregs(p, &t->xfpu)) {
Mark Nelson5b20cd82007-10-16 23:25:39 -07001687 fill_note(&t->notes[2], "LINUX", ELF_CORE_XFPREG_TYPE,
1688 sizeof(t->xfpu), &t->xfpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 t->num_notes++;
1690 sz += notesize(&t->notes[2]);
1691 }
1692#endif
1693 return sz;
1694}
1695
Roland McGrath3aba4812008-01-30 13:31:44 +01001696struct elf_note_info {
1697 struct memelfnote *notes;
1698 struct elf_prstatus *prstatus; /* NT_PRSTATUS */
1699 struct elf_prpsinfo *psinfo; /* NT_PRPSINFO */
1700 struct list_head thread_list;
1701 elf_fpregset_t *fpu;
1702#ifdef ELF_CORE_COPY_XFPREGS
1703 elf_fpxregset_t *xfpu;
1704#endif
Denys Vlasenko49ae4d42012-10-04 17:15:35 -07001705 user_siginfo_t csigdata;
Roland McGrath3aba4812008-01-30 13:31:44 +01001706 int thread_status_size;
1707 int numnote;
1708};
1709
Amerigo Wang0cf062d2009-09-23 15:57:05 -07001710static int elf_note_info_init(struct elf_note_info *info)
Roland McGrath3aba4812008-01-30 13:31:44 +01001711{
Amerigo Wang0cf062d2009-09-23 15:57:05 -07001712 memset(info, 0, sizeof(*info));
Roland McGrath3aba4812008-01-30 13:31:44 +01001713 INIT_LIST_HEAD(&info->thread_list);
1714
Denys Vlasenko49ae4d42012-10-04 17:15:35 -07001715 /* Allocate space for ELF notes */
1716 info->notes = kmalloc(7 * sizeof(struct memelfnote), GFP_KERNEL);
Roland McGrath3aba4812008-01-30 13:31:44 +01001717 if (!info->notes)
1718 return 0;
1719 info->psinfo = kmalloc(sizeof(*info->psinfo), GFP_KERNEL);
1720 if (!info->psinfo)
Denys Vlasenkof34f9d12012-09-26 11:34:50 +10001721 return 0;
Roland McGrath3aba4812008-01-30 13:31:44 +01001722 info->prstatus = kmalloc(sizeof(*info->prstatus), GFP_KERNEL);
1723 if (!info->prstatus)
Denys Vlasenkof34f9d12012-09-26 11:34:50 +10001724 return 0;
Roland McGrath3aba4812008-01-30 13:31:44 +01001725 info->fpu = kmalloc(sizeof(*info->fpu), GFP_KERNEL);
1726 if (!info->fpu)
Denys Vlasenkof34f9d12012-09-26 11:34:50 +10001727 return 0;
Roland McGrath3aba4812008-01-30 13:31:44 +01001728#ifdef ELF_CORE_COPY_XFPREGS
1729 info->xfpu = kmalloc(sizeof(*info->xfpu), GFP_KERNEL);
1730 if (!info->xfpu)
Denys Vlasenkof34f9d12012-09-26 11:34:50 +10001731 return 0;
Roland McGrath3aba4812008-01-30 13:31:44 +01001732#endif
Amerigo Wang0cf062d2009-09-23 15:57:05 -07001733 return 1;
Amerigo Wang0cf062d2009-09-23 15:57:05 -07001734}
Roland McGrath3aba4812008-01-30 13:31:44 +01001735
Amerigo Wang0cf062d2009-09-23 15:57:05 -07001736static int fill_note_info(struct elfhdr *elf, int phdrs,
1737 struct elf_note_info *info,
Denys Vlasenko5ab1c302012-10-04 17:15:29 -07001738 siginfo_t *siginfo, struct pt_regs *regs)
Amerigo Wang0cf062d2009-09-23 15:57:05 -07001739{
1740 struct list_head *t;
1741
1742 if (!elf_note_info_init(info))
1743 return 0;
1744
Denys Vlasenko5ab1c302012-10-04 17:15:29 -07001745 if (siginfo->si_signo) {
Oleg Nesterov83914442008-07-25 01:47:45 -07001746 struct core_thread *ct;
WANG Cong4220b7f2008-04-29 01:01:18 -07001747 struct elf_thread_status *ets;
Oleg Nesterov24d52882008-07-25 01:47:40 -07001748
Oleg Nesterov83914442008-07-25 01:47:45 -07001749 for (ct = current->mm->core_state->dumper.next;
1750 ct; ct = ct->next) {
1751 ets = kzalloc(sizeof(*ets), GFP_KERNEL);
1752 if (!ets)
1753 return 0;
1754
1755 ets->thread = ct->task;
1756 list_add(&ets->list, &info->thread_list);
1757 }
1758
Roland McGrath3aba4812008-01-30 13:31:44 +01001759 list_for_each(t, &info->thread_list) {
Roland McGrath3aba4812008-01-30 13:31:44 +01001760 int sz;
1761
WANG Cong4220b7f2008-04-29 01:01:18 -07001762 ets = list_entry(t, struct elf_thread_status, list);
Denys Vlasenko5ab1c302012-10-04 17:15:29 -07001763 sz = elf_dump_thread_status(siginfo->si_signo, ets);
Roland McGrath3aba4812008-01-30 13:31:44 +01001764 info->thread_status_size += sz;
1765 }
1766 }
1767 /* now collect the dump for the current */
1768 memset(info->prstatus, 0, sizeof(*info->prstatus));
Denys Vlasenko5ab1c302012-10-04 17:15:29 -07001769 fill_prstatus(info->prstatus, current, siginfo->si_signo);
Roland McGrath3aba4812008-01-30 13:31:44 +01001770 elf_core_copy_regs(&info->prstatus->pr_reg, regs);
1771
1772 /* Set up header */
1773 fill_elf_header(elf, phdrs, ELF_ARCH, ELF_CORE_EFLAGS, ELF_OSABI);
1774
1775 /*
1776 * Set up the notes in similar form to SVR4 core dumps made
1777 * with info from their /proc.
1778 */
1779
1780 fill_note(info->notes + 0, "CORE", NT_PRSTATUS,
1781 sizeof(*info->prstatus), info->prstatus);
1782 fill_psinfo(info->psinfo, current->group_leader, current->mm);
1783 fill_note(info->notes + 1, "CORE", NT_PRPSINFO,
1784 sizeof(*info->psinfo), info->psinfo);
1785
1786 info->numnote = 2;
1787
Denys Vlasenko49ae4d42012-10-04 17:15:35 -07001788 fill_siginfo_note(&info->notes[info->numnote++], &info->csigdata, siginfo);
Roland McGrath3aba4812008-01-30 13:31:44 +01001789 fill_auxv_note(&info->notes[info->numnote++], current->mm);
1790
1791 /* Try to dump the FPU. */
1792 info->prstatus->pr_fpvalid = elf_core_copy_task_fpregs(current, regs,
1793 info->fpu);
1794 if (info->prstatus->pr_fpvalid)
1795 fill_note(info->notes + info->numnote++,
1796 "CORE", NT_PRFPREG, sizeof(*info->fpu), info->fpu);
1797#ifdef ELF_CORE_COPY_XFPREGS
1798 if (elf_core_copy_task_xfpregs(current, info->xfpu))
1799 fill_note(info->notes + info->numnote++,
1800 "LINUX", ELF_CORE_XFPREG_TYPE,
1801 sizeof(*info->xfpu), info->xfpu);
1802#endif
1803
1804 return 1;
Roland McGrath3aba4812008-01-30 13:31:44 +01001805}
1806
1807static size_t get_note_info_size(struct elf_note_info *info)
1808{
1809 int sz = 0;
1810 int i;
1811
1812 for (i = 0; i < info->numnote; i++)
1813 sz += notesize(info->notes + i);
1814
1815 sz += info->thread_status_size;
1816
1817 return sz;
1818}
1819
1820static int write_note_info(struct elf_note_info *info,
1821 struct file *file, loff_t *foffset)
1822{
1823 int i;
1824 struct list_head *t;
1825
1826 for (i = 0; i < info->numnote; i++)
1827 if (!writenote(info->notes + i, file, foffset))
1828 return 0;
1829
1830 /* write out the thread status notes section */
1831 list_for_each(t, &info->thread_list) {
1832 struct elf_thread_status *tmp =
1833 list_entry(t, struct elf_thread_status, list);
1834
1835 for (i = 0; i < tmp->num_notes; i++)
1836 if (!writenote(&tmp->notes[i], file, foffset))
1837 return 0;
1838 }
1839
1840 return 1;
1841}
1842
1843static void free_note_info(struct elf_note_info *info)
1844{
1845 while (!list_empty(&info->thread_list)) {
1846 struct list_head *tmp = info->thread_list.next;
1847 list_del(tmp);
1848 kfree(list_entry(tmp, struct elf_thread_status, list));
1849 }
1850
1851 kfree(info->prstatus);
1852 kfree(info->psinfo);
1853 kfree(info->notes);
1854 kfree(info->fpu);
1855#ifdef ELF_CORE_COPY_XFPREGS
1856 kfree(info->xfpu);
1857#endif
1858}
1859
Roland McGrath4206d3a2008-01-30 13:31:45 +01001860#endif
1861
Roland McGrathf47aef52007-01-26 00:56:49 -08001862static struct vm_area_struct *first_vma(struct task_struct *tsk,
1863 struct vm_area_struct *gate_vma)
1864{
1865 struct vm_area_struct *ret = tsk->mm->mmap;
1866
1867 if (ret)
1868 return ret;
1869 return gate_vma;
1870}
1871/*
1872 * Helper function for iterating across a vma list. It ensures that the caller
1873 * will visit `gate_vma' prior to terminating the search.
1874 */
1875static struct vm_area_struct *next_vma(struct vm_area_struct *this_vma,
1876 struct vm_area_struct *gate_vma)
1877{
1878 struct vm_area_struct *ret;
1879
1880 ret = this_vma->vm_next;
1881 if (ret)
1882 return ret;
1883 if (this_vma == gate_vma)
1884 return NULL;
1885 return gate_vma;
1886}
1887
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001888static void fill_extnum_info(struct elfhdr *elf, struct elf_shdr *shdr4extnum,
1889 elf_addr_t e_shoff, int segs)
1890{
1891 elf->e_shoff = e_shoff;
1892 elf->e_shentsize = sizeof(*shdr4extnum);
1893 elf->e_shnum = 1;
1894 elf->e_shstrndx = SHN_UNDEF;
1895
1896 memset(shdr4extnum, 0, sizeof(*shdr4extnum));
1897
1898 shdr4extnum->sh_type = SHT_NULL;
1899 shdr4extnum->sh_size = elf->e_shnum;
1900 shdr4extnum->sh_link = elf->e_shstrndx;
1901 shdr4extnum->sh_info = segs;
1902}
1903
1904static size_t elf_core_vma_data_size(struct vm_area_struct *gate_vma,
1905 unsigned long mm_flags)
1906{
1907 struct vm_area_struct *vma;
1908 size_t size = 0;
1909
1910 for (vma = first_vma(current, gate_vma); vma != NULL;
1911 vma = next_vma(vma, gate_vma))
1912 size += vma_dump_size(vma, mm_flags);
1913 return size;
1914}
1915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916/*
1917 * Actual dumper
1918 *
1919 * This is a two-pass process; first we find the offsets of the bits,
1920 * and then they are actually written out. If we run out of core limit
1921 * we just truncate.
1922 */
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001923static int elf_core_dump(struct coredump_params *cprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 int has_dumped = 0;
1926 mm_segment_t fs;
1927 int segs;
1928 size_t size = 0;
Roland McGrathf47aef52007-01-26 00:56:49 -08001929 struct vm_area_struct *vma, *gate_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 struct elfhdr *elf = NULL;
Andi Kleend025c9d2006-09-30 23:29:28 -07001931 loff_t offset = 0, dataoff, foffset;
Roland McGrath3aba4812008-01-30 13:31:44 +01001932 struct elf_note_info info;
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001933 struct elf_phdr *phdr4note = NULL;
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001934 struct elf_shdr *shdr4extnum = NULL;
1935 Elf_Half e_phnum;
1936 elf_addr_t e_shoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
1938 /*
1939 * We no longer stop all VM operations.
1940 *
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001941 * This is because those proceses that could possibly change map_count
1942 * or the mmap / vma pages are now blocked in do_exit on current
1943 * finishing this core dump.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 *
1945 * Only ptrace can touch these memory addresses, but it doesn't change
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07001946 * the map_count or the pages allocated. So no possibility of crashing
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 * exists while dumping the mm->vm_next areas to the core file.
1948 */
1949
1950 /* alloc memory for large data structures: too large to be on stack */
1951 elf = kmalloc(sizeof(*elf), GFP_KERNEL);
1952 if (!elf)
WANG Cong5f719552008-05-06 12:45:35 +08001953 goto out;
KAMEZAWA Hiroyuki341c87b2009-06-30 11:41:23 -07001954 /*
1955 * The number of segs are recored into ELF header as 16bit value.
1956 * Please check DEFAULT_MAX_MAP_COUNT definition when you modify here.
1957 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 segs = current->mm->map_count;
Daisuke HATAYAMA1fcccba2010-03-05 13:44:07 -08001959 segs += elf_core_extra_phdrs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Stephen Wilson31db58b2011-03-13 15:49:15 -04001961 gate_vma = get_gate_vma(current->mm);
Roland McGrathf47aef52007-01-26 00:56:49 -08001962 if (gate_vma != NULL)
1963 segs++;
1964
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001965 /* for notes section */
1966 segs++;
1967
1968 /* If segs > PN_XNUM(0xffff), then e_phnum overflows. To avoid
1969 * this, kernel supports extended numbering. Have a look at
1970 * include/linux/elf.h for further information. */
1971 e_phnum = segs > PN_XNUM ? PN_XNUM : segs;
1972
Roland McGrath3aba4812008-01-30 13:31:44 +01001973 /*
1974 * Collect all the non-memory information about the process for the
1975 * notes. This also sets up the file header.
1976 */
Denys Vlasenko5ab1c302012-10-04 17:15:29 -07001977 if (!fill_note_info(elf, e_phnum, &info, cprm->siginfo, cprm->regs))
Roland McGrath3aba4812008-01-30 13:31:44 +01001978 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 has_dumped = 1;
1981 current->flags |= PF_DUMPCORE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 fs = get_fs();
1984 set_fs(KERNEL_DS);
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 offset += sizeof(*elf); /* Elf header */
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08001987 offset += segs * sizeof(struct elf_phdr); /* Program headers */
Petr Vandroveca7a0d862006-10-13 18:42:07 +02001988 foffset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 /* Write notes phdr entry */
1991 {
Roland McGrath3aba4812008-01-30 13:31:44 +01001992 size_t sz = get_note_info_size(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
Michael Ellermane5501492007-09-19 14:38:12 +10001994 sz += elf_coredump_extra_notes_size();
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001995
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001996 phdr4note = kmalloc(sizeof(*phdr4note), GFP_KERNEL);
1997 if (!phdr4note)
Daisuke HATAYAMA088e7af2010-03-05 13:44:06 -08001998 goto end_coredump;
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08001999
2000 fill_elf_note_phdr(phdr4note, sz, offset);
2001 offset += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 }
2003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 dataoff = offset = roundup(offset, ELF_EXEC_PAGESIZE);
2005
Masami Hiramatsu30736a42010-03-05 13:44:12 -08002006 offset += elf_core_vma_data_size(gate_vma, cprm->mm_flags);
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08002007 offset += elf_core_extra_data_size();
2008 e_shoff = offset;
2009
2010 if (e_phnum == PN_XNUM) {
2011 shdr4extnum = kmalloc(sizeof(*shdr4extnum), GFP_KERNEL);
2012 if (!shdr4extnum)
2013 goto end_coredump;
2014 fill_extnum_info(elf, shdr4extnum, e_shoff, segs);
2015 }
2016
2017 offset = dataoff;
2018
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08002019 size += sizeof(*elf);
2020 if (size > cprm->limit || !dump_write(cprm->file, elf, sizeof(*elf)))
2021 goto end_coredump;
2022
2023 size += sizeof(*phdr4note);
2024 if (size > cprm->limit
2025 || !dump_write(cprm->file, phdr4note, sizeof(*phdr4note)))
2026 goto end_coredump;
2027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 /* Write program headers for segments dump */
Roland McGrathf47aef52007-01-26 00:56:49 -08002029 for (vma = first_vma(current, gate_vma); vma != NULL;
2030 vma = next_vma(vma, gate_vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 struct elf_phdr phdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033 phdr.p_type = PT_LOAD;
2034 phdr.p_offset = offset;
2035 phdr.p_vaddr = vma->vm_start;
2036 phdr.p_paddr = 0;
Masami Hiramatsu30736a42010-03-05 13:44:12 -08002037 phdr.p_filesz = vma_dump_size(vma, cprm->mm_flags);
Roland McGrath82df3972007-10-16 23:27:02 -07002038 phdr.p_memsz = vma->vm_end - vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 offset += phdr.p_filesz;
2040 phdr.p_flags = vma->vm_flags & VM_READ ? PF_R : 0;
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07002041 if (vma->vm_flags & VM_WRITE)
2042 phdr.p_flags |= PF_W;
2043 if (vma->vm_flags & VM_EXEC)
2044 phdr.p_flags |= PF_X;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 phdr.p_align = ELF_EXEC_PAGESIZE;
2046
Daisuke HATAYAMA088e7af2010-03-05 13:44:06 -08002047 size += sizeof(phdr);
2048 if (size > cprm->limit
2049 || !dump_write(cprm->file, &phdr, sizeof(phdr)))
2050 goto end_coredump;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 }
2052
Daisuke HATAYAMA1fcccba2010-03-05 13:44:07 -08002053 if (!elf_core_write_extra_phdrs(cprm->file, offset, &size, cprm->limit))
2054 goto end_coredump;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056 /* write out the notes section */
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08002057 if (!write_note_info(&info, cprm->file, &foffset))
Roland McGrath3aba4812008-01-30 13:31:44 +01002058 goto end_coredump;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08002060 if (elf_coredump_extra_notes_write(cprm->file, &foffset))
Michael Ellermane5501492007-09-19 14:38:12 +10002061 goto end_coredump;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002062
Andi Kleend025c9d2006-09-30 23:29:28 -07002063 /* Align to page */
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08002064 if (!dump_seek(cprm->file, dataoff - foffset))
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07002065 goto end_coredump;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Roland McGrathf47aef52007-01-26 00:56:49 -08002067 for (vma = first_vma(current, gate_vma); vma != NULL;
2068 vma = next_vma(vma, gate_vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 unsigned long addr;
Roland McGrath82df3972007-10-16 23:27:02 -07002070 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Masami Hiramatsu30736a42010-03-05 13:44:12 -08002072 end = vma->vm_start + vma_dump_size(vma, cprm->mm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Roland McGrath82df3972007-10-16 23:27:02 -07002074 for (addr = vma->vm_start; addr < end; addr += PAGE_SIZE) {
Jesper Juhlf4e5cc22006-06-23 02:05:35 -07002075 struct page *page;
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07002076 int stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07002078 page = get_dump_page(addr);
2079 if (page) {
2080 void *kaddr = kmap(page);
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08002081 stop = ((size += PAGE_SIZE) > cprm->limit) ||
2082 !dump_write(cprm->file, kaddr,
2083 PAGE_SIZE);
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07002084 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 page_cache_release(page);
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07002086 } else
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08002087 stop = !dump_seek(cprm->file, PAGE_SIZE);
Hugh Dickinsf3e8fcc2009-09-21 17:03:25 -07002088 if (stop)
2089 goto end_coredump;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 }
2091 }
2092
Daisuke HATAYAMA1fcccba2010-03-05 13:44:07 -08002093 if (!elf_core_write_extra_data(cprm->file, &size, cprm->limit))
2094 goto end_coredump;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08002096 if (e_phnum == PN_XNUM) {
2097 size += sizeof(*shdr4extnum);
2098 if (size > cprm->limit
2099 || !dump_write(cprm->file, shdr4extnum,
2100 sizeof(*shdr4extnum)))
2101 goto end_coredump;
2102 }
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104end_coredump:
2105 set_fs(fs);
2106
2107cleanup:
Roland McGrath3aba4812008-01-30 13:31:44 +01002108 free_note_info(&info);
Daisuke HATAYAMA8d9032b2010-03-05 13:44:10 -08002109 kfree(shdr4extnum);
Daisuke HATAYAMA93eb2112010-03-05 13:44:09 -08002110 kfree(phdr4note);
WANG Cong5f719552008-05-06 12:45:35 +08002111 kfree(elf);
2112out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 return has_dumped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114}
2115
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002116#endif /* CONFIG_ELF_CORE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118static int __init init_elf_binfmt(void)
2119{
Al Viro8fc3dc52012-03-17 03:05:16 -04002120 register_binfmt(&elf_format);
2121 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122}
2123
2124static void __exit exit_elf_binfmt(void)
2125{
2126 /* Remove the COFF and ELF loaders. */
2127 unregister_binfmt(&elf_format);
2128}
2129
2130core_initcall(init_elf_binfmt);
2131module_exit(exit_elf_binfmt);
2132MODULE_LICENSE("GPL");