blob: 3aa75b8888a14589f268f54a8a7b57c490cbcf9c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/exec.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * #!-checking implemented by tytso.
9 */
10/*
11 * Demand-loading implemented 01.12.91 - no need to read anything but
12 * the header into memory. The inode of the executable is put into
13 * "current->executable", and page faults do the actual loading. Clean.
14 *
15 * Once more I can proudly say that linux stood up to being changed: it
16 * was less than 2 hours work to get demand-loading completely implemented.
17 *
18 * Demand loading changed July 1993 by Eric Youngdale. Use mmap instead,
19 * current->executable is only used by the procfs. This allows a dispatch
20 * table to check for several different types of binary formats. We keep
21 * trying until we recognize the file or we run out of supported binary
22 * formats.
23 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/slab.h>
26#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040027#include <linux/fdtable.h>
Hugh Dickinsba92a432008-07-25 01:45:43 -070028#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/stat.h>
30#include <linux/fcntl.h>
Hugh Dickinsba92a432008-07-25 01:45:43 -070031#include <linux/swap.h>
Neil Horman74aadce2007-10-16 23:26:35 -070032#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/init.h>
Hugh Dickinsca5b1722008-07-28 15:46:18 -070034#include <linux/pagemap.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020035#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/highmem.h>
37#include <linux/spinlock.h>
38#include <linux/key.h>
39#include <linux/personality.h>
40#include <linux/binfmts.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/utsname.h>
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -080042#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/module.h>
44#include <linux/namei.h>
45#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/mount.h>
47#include <linux/security.h>
48#include <linux/syscalls.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070049#include <linux/tsacct_kern.h>
Matt Helsley9f460802005-11-07 00:59:16 -080050#include <linux/cn_proc.h>
Al Viro473ae302006-04-26 14:04:08 -040051#include <linux/audit.h>
Roland McGrath6341c392008-07-25 19:45:44 -070052#include <linux/tracehook.h>
Johannes Berg5f4123b2008-07-09 10:28:40 +020053#include <linux/kmod.h>
Eric Paris6110e3a2008-12-17 13:53:20 -050054#include <linux/fsnotify.h>
Al Viro5ad4e532009-03-29 19:50:06 -040055#include <linux/fs_struct.h>
Neil Horman61be2282009-09-23 15:56:58 -070056#include <linux/pipe_fs_i.h>
Ying Han3d5992d2010-10-26 14:21:23 -070057#include <linux/oom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#include <asm/uaccess.h>
60#include <asm/mmu_context.h>
Ollie Wildb6a2fea2007-07-19 01:48:16 -070061#include <asm/tlb.h>
David Howellsa6f76f22008-11-14 10:39:24 +110062#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064int core_uses_pid;
Dan Aloni71ce92f2007-05-16 22:11:16 -070065char core_pattern[CORENAME_MAX_SIZE] = "core";
Neil Hormana2939802009-09-23 15:56:56 -070066unsigned int core_pipe_limit;
Alan Coxd6e71142005-06-23 00:09:43 -070067int suid_dumpable = 0;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/* The maximal length of core_pattern is also specified in sysctl.c */
70
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -070071static LIST_HEAD(formats);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static DEFINE_RWLOCK(binfmt_lock);
73
Ivan Kokshaysky74641f52009-04-30 15:08:49 -070074int __register_binfmt(struct linux_binfmt * fmt, int insert)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (!fmt)
77 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 write_lock(&binfmt_lock);
Ivan Kokshaysky74641f52009-04-30 15:08:49 -070079 insert ? list_add(&fmt->lh, &formats) :
80 list_add_tail(&fmt->lh, &formats);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 write_unlock(&binfmt_lock);
82 return 0;
83}
84
Ivan Kokshaysky74641f52009-04-30 15:08:49 -070085EXPORT_SYMBOL(__register_binfmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Alexey Dobriyanf6b450d2007-10-16 23:26:04 -070087void unregister_binfmt(struct linux_binfmt * fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 write_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -070090 list_del(&fmt->lh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 write_unlock(&binfmt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94EXPORT_SYMBOL(unregister_binfmt);
95
96static inline void put_binfmt(struct linux_binfmt * fmt)
97{
98 module_put(fmt->module);
99}
100
101/*
102 * Note that a shared library must be both readable and executable due to
103 * security reasons.
104 *
105 * Also note that we take the address to load from from the file itself.
106 */
Heiko Carstens1e7bfb22009-01-14 14:14:29 +0100107SYSCALL_DEFINE1(uselib, const char __user *, library)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Al Viro964bd182008-07-26 03:33:14 -0400109 struct file *file;
Al Viro964bd182008-07-26 03:33:14 -0400110 char *tmp = getname(library);
111 int error = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Al Viro6e8341a2009-04-06 11:16:22 -0400113 if (IS_ERR(tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 goto out;
115
Al Viro6e8341a2009-04-06 11:16:22 -0400116 file = do_filp_open(AT_FDCWD, tmp,
117 O_LARGEFILE | O_RDONLY | FMODE_EXEC, 0,
118 MAY_READ | MAY_EXEC | MAY_OPEN);
119 putname(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 error = PTR_ERR(file);
121 if (IS_ERR(file))
122 goto out;
123
Al Viro6e8341a2009-04-06 11:16:22 -0400124 error = -EINVAL;
125 if (!S_ISREG(file->f_path.dentry->d_inode->i_mode))
126 goto exit;
127
128 error = -EACCES;
129 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC)
130 goto exit;
131
Eric Paris2a12a9d2009-12-17 21:24:21 -0500132 fsnotify_open(file);
Eric Paris6110e3a2008-12-17 13:53:20 -0500133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 error = -ENOEXEC;
135 if(file->f_op) {
136 struct linux_binfmt * fmt;
137
138 read_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -0700139 list_for_each_entry(fmt, &formats, lh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (!fmt->load_shlib)
141 continue;
142 if (!try_module_get(fmt->module))
143 continue;
144 read_unlock(&binfmt_lock);
145 error = fmt->load_shlib(file);
146 read_lock(&binfmt_lock);
147 put_binfmt(fmt);
148 if (error != -ENOEXEC)
149 break;
150 }
151 read_unlock(&binfmt_lock);
152 }
Al Viro6e8341a2009-04-06 11:16:22 -0400153exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 fput(file);
155out:
156 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700159#ifdef CONFIG_MMU
160
161static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
162 int write)
163{
164 struct page *page;
165 int ret;
166
167#ifdef CONFIG_STACK_GROWSUP
168 if (write) {
169 ret = expand_stack_downwards(bprm->vma, pos);
170 if (ret < 0)
171 return NULL;
172 }
173#endif
174 ret = get_user_pages(current, bprm->mm, pos,
175 1, write, 1, &page, NULL);
176 if (ret <= 0)
177 return NULL;
178
179 if (write) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700180 unsigned long size = bprm->vma->vm_end - bprm->vma->vm_start;
Linus Torvaldsa64e7152008-03-03 10:12:14 -0800181 struct rlimit *rlim;
182
183 /*
184 * We've historically supported up to 32 pages (ARG_MAX)
185 * of argument strings even with small stacks
186 */
187 if (size <= ARG_MAX)
188 return page;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700189
190 /*
191 * Limit to 1/4-th the stack size for the argv+env strings.
192 * This ensures that:
193 * - the remaining binfmt code will not run out of stack space,
194 * - the program will have a reasonable amount of stack left
195 * to work from.
196 */
Linus Torvaldsa64e7152008-03-03 10:12:14 -0800197 rlim = current->signal->rlim;
Jiri Slabyd554ed892010-03-05 13:42:42 -0800198 if (size > ACCESS_ONCE(rlim[RLIMIT_STACK].rlim_cur) / 4) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700199 put_page(page);
200 return NULL;
201 }
202 }
203
204 return page;
205}
206
207static void put_arg_page(struct page *page)
208{
209 put_page(page);
210}
211
212static void free_arg_page(struct linux_binprm *bprm, int i)
213{
214}
215
216static void free_arg_pages(struct linux_binprm *bprm)
217{
218}
219
220static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
221 struct page *page)
222{
223 flush_cache_page(bprm->vma, pos, page_to_pfn(page));
224}
225
226static int __bprm_mm_init(struct linux_binprm *bprm)
227{
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800228 int err;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700229 struct vm_area_struct *vma = NULL;
230 struct mm_struct *mm = bprm->mm;
231
232 bprm->vma = vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
233 if (!vma)
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800234 return -ENOMEM;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700235
236 down_write(&mm->mmap_sem);
237 vma->vm_mm = mm;
238
239 /*
240 * Place the stack at the largest stack address the architecture
241 * supports. Later, we'll move this to an appropriate place. We don't
242 * use STACK_TOP because that can depend on attributes which aren't
243 * configured yet.
244 */
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700245 BUG_ON(VM_STACK_FLAGS & VM_STACK_INCOMPLETE_SETUP);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700246 vma->vm_end = STACK_TOP_MAX;
247 vma->vm_start = vma->vm_end - PAGE_SIZE;
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700248 vma->vm_flags = VM_STACK_FLAGS | VM_STACK_INCOMPLETE_SETUP;
Coly Li3ed75eb2007-10-18 23:39:15 -0700249 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
Rik van Riel5beb4932010-03-05 13:42:07 -0800250 INIT_LIST_HEAD(&vma->anon_vma_chain);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700251 err = insert_vm_struct(mm, vma);
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800252 if (err)
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700253 goto err;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700254
255 mm->stack_vm = mm->total_vm = 1;
256 up_write(&mm->mmap_sem);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700257 bprm->p = vma->vm_end - sizeof(void *);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700258 return 0;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700259err:
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800260 up_write(&mm->mmap_sem);
261 bprm->vma = NULL;
262 kmem_cache_free(vm_area_cachep, vma);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700263 return err;
264}
265
266static bool valid_arg_len(struct linux_binprm *bprm, long len)
267{
268 return len <= MAX_ARG_STRLEN;
269}
270
271#else
272
273static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
274 int write)
275{
276 struct page *page;
277
278 page = bprm->page[pos / PAGE_SIZE];
279 if (!page && write) {
280 page = alloc_page(GFP_HIGHUSER|__GFP_ZERO);
281 if (!page)
282 return NULL;
283 bprm->page[pos / PAGE_SIZE] = page;
284 }
285
286 return page;
287}
288
289static void put_arg_page(struct page *page)
290{
291}
292
293static void free_arg_page(struct linux_binprm *bprm, int i)
294{
295 if (bprm->page[i]) {
296 __free_page(bprm->page[i]);
297 bprm->page[i] = NULL;
298 }
299}
300
301static void free_arg_pages(struct linux_binprm *bprm)
302{
303 int i;
304
305 for (i = 0; i < MAX_ARG_PAGES; i++)
306 free_arg_page(bprm, i);
307}
308
309static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
310 struct page *page)
311{
312}
313
314static int __bprm_mm_init(struct linux_binprm *bprm)
315{
316 bprm->p = PAGE_SIZE * MAX_ARG_PAGES - sizeof(void *);
317 return 0;
318}
319
320static bool valid_arg_len(struct linux_binprm *bprm, long len)
321{
322 return len <= bprm->p;
323}
324
325#endif /* CONFIG_MMU */
326
327/*
328 * Create a new mm_struct and populate it with a temporary stack
329 * vm_area_struct. We don't have enough context at this point to set the stack
330 * flags, permissions, and offset, so we use temporary values. We'll update
331 * them later in setup_arg_pages().
332 */
333int bprm_mm_init(struct linux_binprm *bprm)
334{
335 int err;
336 struct mm_struct *mm = NULL;
337
338 bprm->mm = mm = mm_alloc();
339 err = -ENOMEM;
340 if (!mm)
341 goto err;
342
343 err = init_new_context(current, mm);
344 if (err)
345 goto err;
346
347 err = __bprm_mm_init(bprm);
348 if (err)
349 goto err;
350
351 return 0;
352
353err:
354 if (mm) {
355 bprm->mm = NULL;
356 mmdrop(mm);
357 }
358
359 return err;
360}
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362/*
363 * count() counts the number of strings in array ARGV.
364 */
David Howellsd7627462010-08-17 23:52:56 +0100365static int count(const char __user * const __user * argv, int max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 int i = 0;
368
369 if (argv != NULL) {
370 for (;;) {
David Howellsd7627462010-08-17 23:52:56 +0100371 const char __user * p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 if (get_user(p, argv))
374 return -EFAULT;
375 if (!p)
376 break;
377 argv++;
Jason Baron362e6662008-10-15 22:01:52 -0700378 if (i++ >= max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return -E2BIG;
Roland McGrath9aea5a62010-09-07 19:37:06 -0700380
381 if (fatal_signal_pending(current))
382 return -ERESTARTNOHAND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 cond_resched();
384 }
385 }
386 return i;
387}
388
389/*
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700390 * 'copy_strings()' copies argument/environment strings from the old
391 * processes's memory to the new process's stack. The call to get_user_pages()
392 * ensures the destination page is created and not swapped out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 */
David Howellsd7627462010-08-17 23:52:56 +0100394static int copy_strings(int argc, const char __user *const __user *argv,
Adrian Bunk75c96f82005-05-05 16:16:09 -0700395 struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 struct page *kmapped_page = NULL;
398 char *kaddr = NULL;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700399 unsigned long kpos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 int ret;
401
402 while (argc-- > 0) {
David Howellsd7627462010-08-17 23:52:56 +0100403 const char __user *str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 int len;
405 unsigned long pos;
406
407 if (get_user(str, argv+argc) ||
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700408 !(len = strnlen_user(str, MAX_ARG_STRLEN))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 ret = -EFAULT;
410 goto out;
411 }
412
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700413 if (!valid_arg_len(bprm, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 ret = -E2BIG;
415 goto out;
416 }
417
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700418 /* We're going to work our way backwords. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 pos = bprm->p;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700420 str += len;
421 bprm->p -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 while (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 int offset, bytes_to_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Roland McGrath9aea5a62010-09-07 19:37:06 -0700426 if (fatal_signal_pending(current)) {
427 ret = -ERESTARTNOHAND;
428 goto out;
429 }
Roland McGrath7993bc12010-09-07 19:36:28 -0700430 cond_resched();
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 offset = pos % PAGE_SIZE;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700433 if (offset == 0)
434 offset = PAGE_SIZE;
435
436 bytes_to_copy = offset;
437 if (bytes_to_copy > len)
438 bytes_to_copy = len;
439
440 offset -= bytes_to_copy;
441 pos -= bytes_to_copy;
442 str -= bytes_to_copy;
443 len -= bytes_to_copy;
444
445 if (!kmapped_page || kpos != (pos & PAGE_MASK)) {
446 struct page *page;
447
448 page = get_arg_page(bprm, pos, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (!page) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700450 ret = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 goto out;
452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700454 if (kmapped_page) {
455 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700457 put_arg_page(kmapped_page);
458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 kmapped_page = page;
460 kaddr = kmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700461 kpos = pos & PAGE_MASK;
462 flush_arg_page(bprm, kpos, kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700464 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 ret = -EFAULT;
466 goto out;
467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469 }
470 ret = 0;
471out:
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700472 if (kmapped_page) {
473 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700475 put_arg_page(kmapped_page);
476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return ret;
478}
479
480/*
481 * Like copy_strings, but get argv and its values from kernel memory.
482 */
David Howellsd7627462010-08-17 23:52:56 +0100483int copy_strings_kernel(int argc, const char *const *argv,
484 struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 int r;
487 mm_segment_t oldfs = get_fs();
488 set_fs(KERNEL_DS);
David Howellsd7627462010-08-17 23:52:56 +0100489 r = copy_strings(argc, (const char __user *const __user *)argv, bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 set_fs(oldfs);
491 return r;
492}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493EXPORT_SYMBOL(copy_strings_kernel);
494
495#ifdef CONFIG_MMU
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497/*
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700498 * During bprm_mm_init(), we create a temporary stack at STACK_TOP_MAX. Once
499 * the binfmt code determines where the new stack should reside, we shift it to
500 * its final location. The process proceeds as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 *
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700502 * 1) Use shift to calculate the new vma endpoints.
503 * 2) Extend vma to cover both the old and new ranges. This ensures the
504 * arguments passed to subsequent functions are consistent.
505 * 3) Move vma's page tables to the new range.
506 * 4) Free up any cleared pgd range.
507 * 5) Shrink the vma to cover only the new range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700509static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 struct mm_struct *mm = vma->vm_mm;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700512 unsigned long old_start = vma->vm_start;
513 unsigned long old_end = vma->vm_end;
514 unsigned long length = old_end - old_start;
515 unsigned long new_start = old_start - shift;
516 unsigned long new_end = old_end - shift;
517 struct mmu_gather *tlb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700519 BUG_ON(new_start > new_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700521 /*
522 * ensure there are no vmas between where we want to go
523 * and where we are
524 */
525 if (vma != find_vma(mm, new_start))
526 return -EFAULT;
527
528 /*
529 * cover the whole range: [new_start, old_end)
530 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800531 if (vma_adjust(vma, new_start, old_end, vma->vm_pgoff, NULL))
532 return -ENOMEM;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700533
534 /*
535 * move the page tables downwards, on failure we rely on
536 * process cleanup to remove whatever mess we made.
537 */
538 if (length != move_page_tables(vma, old_start,
539 vma, new_start, length))
540 return -ENOMEM;
541
542 lru_add_drain();
543 tlb = tlb_gather_mmu(mm, 0);
544 if (new_end > old_start) {
545 /*
546 * when the old and new regions overlap clear from new_end.
547 */
Jan Beulich42b77722008-07-23 21:27:10 -0700548 free_pgd_range(tlb, new_end, old_end, new_end,
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700549 vma->vm_next ? vma->vm_next->vm_start : 0);
550 } else {
551 /*
552 * otherwise, clean from old_start; this is done to not touch
553 * the address space in [new_end, old_start) some architectures
554 * have constraints on va-space that make this illegal (IA64) -
555 * for the others its just a little faster.
556 */
Jan Beulich42b77722008-07-23 21:27:10 -0700557 free_pgd_range(tlb, old_start, old_end, new_end,
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700558 vma->vm_next ? vma->vm_next->vm_start : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700560 tlb_finish_mmu(tlb, new_end, old_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700562 /*
Rik van Riel5beb4932010-03-05 13:42:07 -0800563 * Shrink the vma to just the new range. Always succeeds.
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700564 */
565 vma_adjust(vma, new_start, new_end, vma->vm_pgoff, NULL);
566
567 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700570/*
571 * Finalizes the stack vm_area_struct. The flags and permissions are updated,
572 * the stack is optionally relocated, and some extra space is added.
573 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574int setup_arg_pages(struct linux_binprm *bprm,
575 unsigned long stack_top,
576 int executable_stack)
577{
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700578 unsigned long ret;
579 unsigned long stack_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 struct mm_struct *mm = current->mm;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700581 struct vm_area_struct *vma = bprm->vma;
582 struct vm_area_struct *prev = NULL;
583 unsigned long vm_flags;
584 unsigned long stack_base;
Michael Neuling803bf5e2010-02-10 13:56:42 -0800585 unsigned long stack_size;
586 unsigned long stack_expand;
587 unsigned long rlim_stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589#ifdef CONFIG_STACK_GROWSUP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 /* Limit stack size to 1GB */
Jiri Slabyd554ed892010-03-05 13:42:42 -0800591 stack_base = rlimit_max(RLIMIT_STACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (stack_base > (1 << 30))
593 stack_base = 1 << 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700595 /* Make sure we didn't let the argument array grow too large. */
596 if (vma->vm_end - vma->vm_start > stack_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return -ENOMEM;
598
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700599 stack_base = PAGE_ALIGN(stack_top - stack_base);
600
601 stack_shift = vma->vm_start - stack_base;
602 mm->arg_start = bprm->p - stack_shift;
603 bprm->p = vma->vm_end - stack_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604#else
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700605 stack_top = arch_align_stack(stack_top);
606 stack_top = PAGE_ALIGN(stack_top);
Roland McGrath1b528182010-09-07 19:35:49 -0700607
608 if (unlikely(stack_top < mmap_min_addr) ||
609 unlikely(vma->vm_end - vma->vm_start >= stack_top - mmap_min_addr))
610 return -ENOMEM;
611
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700612 stack_shift = vma->vm_end - stack_top;
613
614 bprm->p -= stack_shift;
615 mm->arg_start = bprm->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616#endif
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700617
618 if (bprm->loader)
619 bprm->loader -= stack_shift;
620 bprm->exec -= stack_shift;
621
622 down_write(&mm->mmap_sem);
Hugh Dickins96a8e132008-07-10 21:19:20 +0100623 vm_flags = VM_STACK_FLAGS;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700624
625 /*
626 * Adjust stack execute permissions; explicitly enable for
627 * EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X and leave alone
628 * (arch default) otherwise.
629 */
630 if (unlikely(executable_stack == EXSTACK_ENABLE_X))
631 vm_flags |= VM_EXEC;
632 else if (executable_stack == EXSTACK_DISABLE_X)
633 vm_flags &= ~VM_EXEC;
634 vm_flags |= mm->def_flags;
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700635 vm_flags |= VM_STACK_INCOMPLETE_SETUP;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700636
637 ret = mprotect_fixup(vma, &prev, vma->vm_start, vma->vm_end,
638 vm_flags);
639 if (ret)
640 goto out_unlock;
641 BUG_ON(prev != vma);
642
643 /* Move stack pages down in memory. */
644 if (stack_shift) {
645 ret = shift_arg_pages(vma, stack_shift);
Anton Blanchardfc63cf22009-11-11 14:26:48 -0800646 if (ret)
647 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700650 /* mprotect_fixup is overkill to remove the temporary stack flags */
651 vma->vm_flags &= ~VM_STACK_INCOMPLETE_SETUP;
652
Michael Neuling5ef097d2010-03-05 13:42:57 -0800653 stack_expand = 131072UL; /* randomly 32*4k (or 2*64k) pages */
Michael Neuling803bf5e2010-02-10 13:56:42 -0800654 stack_size = vma->vm_end - vma->vm_start;
655 /*
656 * Align this down to a page boundary as expand_stack
657 * will align it up.
658 */
659 rlim_stack = rlimit(RLIMIT_STACK) & PAGE_MASK;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700660#ifdef CONFIG_STACK_GROWSUP
Michael Neuling803bf5e2010-02-10 13:56:42 -0800661 if (stack_size + stack_expand > rlim_stack)
662 stack_base = vma->vm_start + rlim_stack;
663 else
664 stack_base = vma->vm_end + stack_expand;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700665#else
Michael Neuling803bf5e2010-02-10 13:56:42 -0800666 if (stack_size + stack_expand > rlim_stack)
667 stack_base = vma->vm_end - rlim_stack;
668 else
669 stack_base = vma->vm_start - stack_expand;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700670#endif
Eric B Munson3af9e852010-05-18 15:30:49 +0100671 current->mm->start_stack = bprm->p;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700672 ret = expand_stack(vma, stack_base);
673 if (ret)
674 ret = -EFAULT;
675
676out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 up_write(&mm->mmap_sem);
Anton Blanchardfc63cf22009-11-11 14:26:48 -0800678 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680EXPORT_SYMBOL(setup_arg_pages);
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682#endif /* CONFIG_MMU */
683
684struct file *open_exec(const char *name)
685{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 struct file *file;
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200687 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Al Viro6e8341a2009-04-06 11:16:22 -0400689 file = do_filp_open(AT_FDCWD, name,
690 O_LARGEFILE | O_RDONLY | FMODE_EXEC, 0,
691 MAY_EXEC | MAY_OPEN);
692 if (IS_ERR(file))
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200693 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200695 err = -EACCES;
Al Viro6e8341a2009-04-06 11:16:22 -0400696 if (!S_ISREG(file->f_path.dentry->d_inode->i_mode))
697 goto exit;
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200698
Al Viro6e8341a2009-04-06 11:16:22 -0400699 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC)
700 goto exit;
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200701
Eric Paris2a12a9d2009-12-17 21:24:21 -0500702 fsnotify_open(file);
Eric Paris6110e3a2008-12-17 13:53:20 -0500703
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200704 err = deny_write_access(file);
Al Viro6e8341a2009-04-06 11:16:22 -0400705 if (err)
706 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Al Viro6e8341a2009-04-06 11:16:22 -0400708out:
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200709 return file;
710
Al Viro6e8341a2009-04-06 11:16:22 -0400711exit:
712 fput(file);
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200713 return ERR_PTR(err);
714}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715EXPORT_SYMBOL(open_exec);
716
Mimi Zohar6777d772009-08-21 14:32:48 -0400717int kernel_read(struct file *file, loff_t offset,
718 char *addr, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
720 mm_segment_t old_fs;
721 loff_t pos = offset;
722 int result;
723
724 old_fs = get_fs();
725 set_fs(get_ds());
726 /* The cast to a user pointer is valid due to the set_fs() */
727 result = vfs_read(file, (void __user *)addr, count, &pos);
728 set_fs(old_fs);
729 return result;
730}
731
732EXPORT_SYMBOL(kernel_read);
733
734static int exec_mmap(struct mm_struct *mm)
735{
736 struct task_struct *tsk;
737 struct mm_struct * old_mm, *active_mm;
738
739 /* Notify parent that we're no longer interested in the old VM */
740 tsk = current;
741 old_mm = current->mm;
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800742 sync_mm_rss(tsk, old_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 mm_release(tsk, old_mm);
744
745 if (old_mm) {
746 /*
747 * Make sure that if there is a core dump in progress
748 * for the old mm, we get out and die instead of going
749 * through with the exec. We must hold mmap_sem around
Oleg Nesterov999d9fc2008-07-25 01:47:41 -0700750 * checking core_state and changing tsk->mm.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 */
752 down_read(&old_mm->mmap_sem);
Oleg Nesterov999d9fc2008-07-25 01:47:41 -0700753 if (unlikely(old_mm->core_state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 up_read(&old_mm->mmap_sem);
755 return -EINTR;
756 }
757 }
758 task_lock(tsk);
759 active_mm = tsk->active_mm;
760 tsk->mm = mm;
761 tsk->active_mm = mm;
762 activate_mm(active_mm, mm);
Ying Han3d5992d2010-10-26 14:21:23 -0700763 if (old_mm && tsk->signal->oom_score_adj == OOM_SCORE_ADJ_MIN) {
764 atomic_dec(&old_mm->oom_disable_count);
765 atomic_inc(&tsk->mm->oom_disable_count);
766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 task_unlock(tsk);
768 arch_pick_mmap_layout(mm);
769 if (old_mm) {
770 up_read(&old_mm->mmap_sem);
Eric Sesterhenn7dddb122006-04-01 01:13:38 +0200771 BUG_ON(active_mm != old_mm);
Balbir Singh31a78f22008-09-28 23:09:31 +0100772 mm_update_next_owner(old_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 mmput(old_mm);
774 return 0;
775 }
776 mmdrop(active_mm);
777 return 0;
778}
779
780/*
781 * This function makes sure the current process has its own signal table,
782 * so that flush_signal_handlers can later reset the handlers without
783 * disturbing other processes. (Other processes might share the signal
784 * table via the CLONE_SIGHAND option to clone().)
785 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800786static int de_thread(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 struct signal_struct *sig = tsk->signal;
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700789 struct sighand_struct *oldsighand = tsk->sighand;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 spinlock_t *lock = &oldsighand->siglock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700792 if (thread_group_empty(tsk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 goto no_thread_group;
794
795 /*
796 * Kill all other threads in the thread group.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 spin_lock_irq(lock);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -0800799 if (signal_group_exit(sig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 /*
801 * Another group action in progress, just
802 * return so that the signal is processed.
803 */
804 spin_unlock_irq(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return -EAGAIN;
806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Oleg Nesterovd3441932010-05-26 14:43:11 -0700808 sig->group_exit_task = tsk;
809 sig->notify_count = zap_other_threads(tsk);
810 if (!thread_group_leader(tsk))
811 sig->notify_count--;
812
813 while (sig->notify_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 __set_current_state(TASK_UNINTERRUPTIBLE);
815 spin_unlock_irq(lock);
816 schedule();
817 spin_lock_irq(lock);
818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 spin_unlock_irq(lock);
820
821 /*
822 * At this point all other threads have exited, all we have to
823 * do is to wait for the thread group leader to become inactive,
824 * and to assume its PID:
825 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700826 if (!thread_group_leader(tsk)) {
Oleg Nesterov81879262008-12-01 14:18:16 -0800827 struct task_struct *leader = tsk->group_leader;
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700828
Oleg Nesterov2800d8d2008-04-30 00:53:12 -0700829 sig->notify_count = -1; /* for exit_notify() */
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700830 for (;;) {
831 write_lock_irq(&tasklist_lock);
832 if (likely(leader->exit_state))
833 break;
834 __set_current_state(TASK_UNINTERRUPTIBLE);
835 write_unlock_irq(&tasklist_lock);
836 schedule();
837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Roland McGrathf5e90282006-04-10 22:54:16 -0700839 /*
840 * The only record we have of the real-time age of a
841 * process, regardless of execs it's done, is start_time.
842 * All the past CPU time is accumulated in signal_struct
843 * from sister threads now dead. But in this non-leader
844 * exec, nothing survives from the original leader thread,
845 * whose birth marks the true age of this process now.
846 * When we take on its identity by switching to its PID, we
847 * also take its birthdate (always earlier than our own).
848 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700849 tsk->start_time = leader->start_time;
Roland McGrathf5e90282006-04-10 22:54:16 -0700850
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -0700851 BUG_ON(!same_thread_group(leader, tsk));
852 BUG_ON(has_group_leader_pid(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 /*
854 * An exec() starts a new thread group with the
855 * TGID of the previous thread group. Rehash the
856 * two threads with a switched PID, and release
857 * the former thread group leader:
858 */
Eric W. Biedermand73d6522006-03-28 16:11:03 -0800859
860 /* Become a process group leader with the old leader's pid.
Eric W. Biedermanc18258c2006-09-27 01:51:06 -0700861 * The old leader becomes a thread of the this thread group.
862 * Note: The old leader also uses this pid until release_task
Eric W. Biedermand73d6522006-03-28 16:11:03 -0800863 * is called. Odd but simple and correct.
864 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700865 detach_pid(tsk, PIDTYPE_PID);
866 tsk->pid = leader->pid;
Sukadev Bhattiprolu3743ca02007-10-18 23:39:51 -0700867 attach_pid(tsk, PIDTYPE_PID, task_pid(leader));
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700868 transfer_pid(leader, tsk, PIDTYPE_PGID);
869 transfer_pid(leader, tsk, PIDTYPE_SID);
Oleg Nesterov9cd80bb2009-12-17 15:27:15 -0800870
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700871 list_replace_rcu(&leader->tasks, &tsk->tasks);
Oleg Nesterov9cd80bb2009-12-17 15:27:15 -0800872 list_replace_init(&leader->sibling, &tsk->sibling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700874 tsk->group_leader = tsk;
875 leader->group_leader = tsk;
Eric W. Biedermande12a782006-04-10 17:16:49 -0600876
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700877 tsk->exit_signal = SIGCHLD;
Oleg Nesterov962b5642005-11-23 13:37:43 -0800878
879 BUG_ON(leader->exit_state != EXIT_ZOMBIE);
880 leader->exit_state = EXIT_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 write_unlock_irq(&tasklist_lock);
Oleg Nesterov81879262008-12-01 14:18:16 -0800882
883 release_task(leader);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -0800884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700886 sig->group_exit_task = NULL;
887 sig->notify_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889no_thread_group:
Jiri Pirko1f102062009-09-22 16:44:10 -0700890 if (current->mm)
891 setmax_mm_hiwater_rss(&sig->maxrss, current->mm);
892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 exit_itimers(sig);
Oleg Nesterovcbaffba2008-05-26 20:55:42 +0400894 flush_itimer_signals();
Oleg Nesterov329f7db2005-11-07 21:12:43 +0300895
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700896 if (atomic_read(&oldsighand->count) != 1) {
897 struct sighand_struct *newsighand;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 /*
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700899 * This ->sighand is shared with the CLONE_SIGHAND
900 * but not CLONE_THREAD task, switch to the new one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 */
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700902 newsighand = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
903 if (!newsighand)
904 return -ENOMEM;
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 atomic_set(&newsighand->count, 1);
907 memcpy(newsighand->action, oldsighand->action,
908 sizeof(newsighand->action));
909
910 write_lock_irq(&tasklist_lock);
911 spin_lock(&oldsighand->siglock);
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700912 rcu_assign_pointer(tsk->sighand, newsighand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 spin_unlock(&oldsighand->siglock);
914 write_unlock_irq(&tasklist_lock);
915
Davide Libenzifba2afa2007-05-10 22:23:13 -0700916 __cleanup_sighand(oldsighand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
918
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700919 BUG_ON(!thread_group_leader(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 return 0;
921}
Oleg Nesterov0840a902007-10-16 23:27:22 -0700922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923/*
924 * These functions flushes out all traces of the currently running executable
925 * so that a new one can be started
926 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800927static void flush_old_files(struct files_struct * files)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 long j = -1;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700930 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 spin_lock(&files->file_lock);
933 for (;;) {
934 unsigned long set, i;
935
936 j++;
937 i = j * __NFDBITS;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700938 fdt = files_fdtable(files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800939 if (i >= fdt->max_fds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 break;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700941 set = fdt->close_on_exec->fds_bits[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (!set)
943 continue;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700944 fdt->close_on_exec->fds_bits[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 spin_unlock(&files->file_lock);
946 for ( ; set ; i++,set >>= 1) {
947 if (set & 1) {
948 sys_close(i);
949 }
950 }
951 spin_lock(&files->file_lock);
952
953 }
954 spin_unlock(&files->file_lock);
955}
956
Andrew Morton59714d62008-02-04 22:27:21 -0800957char *get_task_comm(char *buf, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
959 /* buf must be at least sizeof(tsk->comm) in size */
960 task_lock(tsk);
961 strncpy(buf, tsk->comm, sizeof(tsk->comm));
962 task_unlock(tsk);
Andrew Morton59714d62008-02-04 22:27:21 -0800963 return buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965
966void set_task_comm(struct task_struct *tsk, char *buf)
967{
968 task_lock(tsk);
john stultz4614a696b2009-12-14 18:00:05 -0800969
970 /*
971 * Threads may access current->comm without holding
972 * the task lock, so write the string carefully.
973 * Readers without a lock may see incomplete new
974 * names but are safe from non-terminating string reads.
975 */
976 memset(tsk->comm, 0, TASK_COMM_LEN);
977 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 strlcpy(tsk->comm, buf, sizeof(tsk->comm));
979 task_unlock(tsk);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200980 perf_event_comm(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982
983int flush_old_exec(struct linux_binprm * bprm)
984{
Linus Torvalds221af7f2010-01-28 22:14:42 -0800985 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 /*
988 * Make sure we have a private signal table and that
989 * we are unassociated from the previous thread group.
990 */
991 retval = de_thread(current);
992 if (retval)
993 goto out;
994
Matt Helsley925d1c42008-04-29 01:01:36 -0700995 set_mm_exe_file(bprm->mm, bprm->file);
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 * Release all of the old mmap stuff
999 */
1000 retval = exec_mmap(bprm->mm);
1001 if (retval)
Al Virofd8328b2008-04-22 05:11:59 -04001002 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 bprm->mm = NULL; /* We're using it now */
Linus Torvalds7ab02af2010-02-02 12:37:44 -08001005
1006 current->flags &= ~PF_RANDOMIZE;
1007 flush_thread();
1008 current->personality &= ~bprm->per_clear;
1009
Linus Torvalds221af7f2010-01-28 22:14:42 -08001010 return 0;
1011
1012out:
1013 return retval;
1014}
1015EXPORT_SYMBOL(flush_old_exec);
1016
1017void setup_new_exec(struct linux_binprm * bprm)
1018{
1019 int i, ch;
David Howellsd7627462010-08-17 23:52:56 +01001020 const char *name;
Linus Torvalds221af7f2010-01-28 22:14:42 -08001021 char tcomm[sizeof(current->comm)];
1022
1023 arch_pick_mmap_layout(current->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 /* This is the point of no return */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 current->sas_ss_sp = current->sas_ss_size = 0;
1027
David Howellsda9592e2008-11-14 10:39:05 +11001028 if (current_euid() == current_uid() && current_egid() == current_gid())
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001029 set_dumpable(current->mm, 1);
Alan Coxd6e71142005-06-23 00:09:43 -07001030 else
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001031 set_dumpable(current->mm, suid_dumpable);
Alan Coxd6e71142005-06-23 00:09:43 -07001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 name = bprm->filename;
Paolo 'Blaisorblade' Giarrusso36772092005-05-05 16:16:12 -07001034
1035 /* Copies the binary name from after last slash */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 for (i=0; (ch = *(name++)) != '\0';) {
1037 if (ch == '/')
Paolo 'Blaisorblade' Giarrusso36772092005-05-05 16:16:12 -07001038 i = 0; /* overwrite what we wrote */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 else
1040 if (i < (sizeof(tcomm) - 1))
1041 tcomm[i++] = ch;
1042 }
1043 tcomm[i] = '\0';
1044 set_task_comm(current, tcomm);
1045
Benjamin Herrenschmidt0551fbd2006-02-28 16:59:19 -08001046 /* Set the new mm task size. We have to do that late because it may
1047 * depend on TIF_32BIT which is only updated in flush_thread() on
1048 * some architectures like powerpc
1049 */
1050 current->mm->task_size = TASK_SIZE;
1051
David Howellsa6f76f22008-11-14 10:39:24 +11001052 /* install the new credentials */
1053 if (bprm->cred->uid != current_euid() ||
1054 bprm->cred->gid != current_egid()) {
Marcel Holtmannd2d56c52007-08-17 21:47:58 +02001055 current->pdeath_signal = 0;
1056 } else if (file_permission(bprm->file, MAY_READ) ||
David Howellsa6f76f22008-11-14 10:39:24 +11001057 bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP) {
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001058 set_dumpable(current->mm, suid_dumpable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060
Ingo Molnarf65cb452008-12-16 13:40:44 +01001061 /*
1062 * Flush performance counters when crossing a
1063 * security domain:
1064 */
1065 if (!get_dumpable(current->mm))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001066 perf_event_exit_task(current);
Ingo Molnarf65cb452008-12-16 13:40:44 +01001067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 /* An exec changes our domain. We are no longer part of the thread
1069 group */
1070
1071 current->self_exec_id++;
1072
1073 flush_signal_handlers(current, 0);
1074 flush_old_files(current->files);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
Linus Torvalds221af7f2010-01-28 22:14:42 -08001076EXPORT_SYMBOL(setup_new_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
David Howellsa6f76f22008-11-14 10:39:24 +11001078/*
Oleg Nesterova2a84742009-09-05 11:17:13 -07001079 * Prepare credentials and lock ->cred_guard_mutex.
1080 * install_exec_creds() commits the new creds and drops the lock.
1081 * Or, if exec fails before, free_bprm() should release ->cred and
1082 * and unlock.
1083 */
1084int prepare_bprm_creds(struct linux_binprm *bprm)
1085{
1086 if (mutex_lock_interruptible(&current->cred_guard_mutex))
1087 return -ERESTARTNOINTR;
1088
1089 bprm->cred = prepare_exec_creds();
1090 if (likely(bprm->cred))
1091 return 0;
1092
1093 mutex_unlock(&current->cred_guard_mutex);
1094 return -ENOMEM;
1095}
1096
1097void free_bprm(struct linux_binprm *bprm)
1098{
1099 free_arg_pages(bprm);
1100 if (bprm->cred) {
1101 mutex_unlock(&current->cred_guard_mutex);
1102 abort_creds(bprm->cred);
1103 }
1104 kfree(bprm);
1105}
1106
1107/*
David Howellsa6f76f22008-11-14 10:39:24 +11001108 * install the new credentials for this executable
1109 */
1110void install_exec_creds(struct linux_binprm *bprm)
1111{
1112 security_bprm_committing_creds(bprm);
1113
1114 commit_creds(bprm->cred);
1115 bprm->cred = NULL;
Oleg Nesterova2a84742009-09-05 11:17:13 -07001116 /*
1117 * cred_guard_mutex must be held at least to this point to prevent
David Howellsa6f76f22008-11-14 10:39:24 +11001118 * ptrace_attach() from altering our determination of the task's
Oleg Nesterova2a84742009-09-05 11:17:13 -07001119 * credentials; any time after this it may be unlocked.
1120 */
David Howellsa6f76f22008-11-14 10:39:24 +11001121 security_bprm_committed_creds(bprm);
Oleg Nesterova2a84742009-09-05 11:17:13 -07001122 mutex_unlock(&current->cred_guard_mutex);
David Howellsa6f76f22008-11-14 10:39:24 +11001123}
1124EXPORT_SYMBOL(install_exec_creds);
1125
1126/*
1127 * determine how safe it is to execute the proposed program
David Howells5e751e92009-05-08 13:55:22 +01001128 * - the caller must hold current->cred_guard_mutex to protect against
David Howellsa6f76f22008-11-14 10:39:24 +11001129 * PTRACE_ATTACH
1130 */
Al Viro498052b2009-03-30 07:20:30 -04001131int check_unsafe_exec(struct linux_binprm *bprm)
David Howellsa6f76f22008-11-14 10:39:24 +11001132{
David Howells0bf2f3a2009-02-06 11:45:46 +00001133 struct task_struct *p = current, *t;
Al Virof1191b52009-03-30 07:35:18 -04001134 unsigned n_fs;
Al Viro498052b2009-03-30 07:20:30 -04001135 int res = 0;
David Howellsa6f76f22008-11-14 10:39:24 +11001136
1137 bprm->unsafe = tracehook_unsafe_exec(p);
1138
David Howells0bf2f3a2009-02-06 11:45:46 +00001139 n_fs = 1;
Nick Piggin2a4419b2010-08-18 04:37:33 +10001140 spin_lock(&p->fs->lock);
Oleg Nesterov437f7fd2009-04-24 01:02:45 +02001141 rcu_read_lock();
David Howells0bf2f3a2009-02-06 11:45:46 +00001142 for (t = next_thread(p); t != p; t = next_thread(t)) {
1143 if (t->fs == p->fs)
1144 n_fs++;
David Howells0bf2f3a2009-02-06 11:45:46 +00001145 }
Oleg Nesterov437f7fd2009-04-24 01:02:45 +02001146 rcu_read_unlock();
David Howells0bf2f3a2009-02-06 11:45:46 +00001147
Al Virof1191b52009-03-30 07:35:18 -04001148 if (p->fs->users > n_fs) {
David Howellsa6f76f22008-11-14 10:39:24 +11001149 bprm->unsafe |= LSM_UNSAFE_SHARE;
Al Viro498052b2009-03-30 07:20:30 -04001150 } else {
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001151 res = -EAGAIN;
1152 if (!p->fs->in_exec) {
1153 p->fs->in_exec = 1;
1154 res = 1;
1155 }
Al Viro498052b2009-03-30 07:20:30 -04001156 }
Nick Piggin2a4419b2010-08-18 04:37:33 +10001157 spin_unlock(&p->fs->lock);
Al Viro498052b2009-03-30 07:20:30 -04001158
1159 return res;
David Howellsa6f76f22008-11-14 10:39:24 +11001160}
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162/*
1163 * Fill the binprm structure from the inode.
1164 * Check permissions, then read the first 128 (BINPRM_BUF_SIZE) bytes
David Howellsa6f76f22008-11-14 10:39:24 +11001165 *
1166 * This may be called multiple times for binary chains (scripts for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 */
1168int prepare_binprm(struct linux_binprm *bprm)
1169{
David Howellsa6f76f22008-11-14 10:39:24 +11001170 umode_t mode;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001171 struct inode * inode = bprm->file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 int retval;
1173
1174 mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (bprm->file->f_op == NULL)
1176 return -EACCES;
1177
David Howellsa6f76f22008-11-14 10:39:24 +11001178 /* clear any previous set[ug]id data from a previous binary */
1179 bprm->cred->euid = current_euid();
1180 bprm->cred->egid = current_egid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
David Howellsa6f76f22008-11-14 10:39:24 +11001182 if (!(bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 /* Set-uid? */
1184 if (mode & S_ISUID) {
David Howellsa6f76f22008-11-14 10:39:24 +11001185 bprm->per_clear |= PER_CLEAR_ON_SETID;
1186 bprm->cred->euid = inode->i_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
1188
1189 /* Set-gid? */
1190 /*
1191 * If setgid is set but no group execute bit then this
1192 * is a candidate for mandatory locking, not a setgid
1193 * executable.
1194 */
1195 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) {
David Howellsa6f76f22008-11-14 10:39:24 +11001196 bprm->per_clear |= PER_CLEAR_ON_SETID;
1197 bprm->cred->egid = inode->i_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
1199 }
1200
1201 /* fill in binprm security blob */
David Howellsa6f76f22008-11-14 10:39:24 +11001202 retval = security_bprm_set_creds(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (retval)
1204 return retval;
David Howellsa6f76f22008-11-14 10:39:24 +11001205 bprm->cred_prepared = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
David Howellsa6f76f22008-11-14 10:39:24 +11001207 memset(bprm->buf, 0, BINPRM_BUF_SIZE);
1208 return kernel_read(bprm->file, 0, bprm->buf, BINPRM_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
1211EXPORT_SYMBOL(prepare_binprm);
1212
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001213/*
1214 * Arguments are '\0' separated strings found at the location bprm->p
1215 * points to; chop off the first by relocating brpm->p to right after
1216 * the first '\0' encountered.
1217 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001218int remove_arg_zero(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001220 int ret = 0;
1221 unsigned long offset;
1222 char *kaddr;
1223 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001225 if (!bprm->argc)
1226 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001228 do {
1229 offset = bprm->p & ~PAGE_MASK;
1230 page = get_arg_page(bprm, bprm->p, 0);
1231 if (!page) {
1232 ret = -EFAULT;
1233 goto out;
1234 }
1235 kaddr = kmap_atomic(page, KM_USER0);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001236
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001237 for (; offset < PAGE_SIZE && kaddr[offset];
1238 offset++, bprm->p++)
1239 ;
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001240
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001241 kunmap_atomic(kaddr, KM_USER0);
1242 put_arg_page(page);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001243
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001244 if (offset == PAGE_SIZE)
1245 free_arg_page(bprm, (bprm->p >> PAGE_SHIFT) - 1);
1246 } while (offset == PAGE_SIZE);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001247
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001248 bprm->p++;
1249 bprm->argc--;
1250 ret = 0;
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001251
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001252out:
1253 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255EXPORT_SYMBOL(remove_arg_zero);
1256
1257/*
1258 * cycle the list of binary formats handler, until one recognizes the image
1259 */
1260int search_binary_handler(struct linux_binprm *bprm,struct pt_regs *regs)
1261{
Roland McGrath85f33462008-12-09 19:36:38 -08001262 unsigned int depth = bprm->recursion_depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 int try,retval;
1264 struct linux_binfmt *fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 retval = security_bprm_check(bprm);
1267 if (retval)
1268 return retval;
1269
1270 /* kernel module loader fixup */
1271 /* so we don't try to load run modprobe in kernel space. */
1272 set_fs(USER_DS);
Al Viro473ae302006-04-26 14:04:08 -04001273
1274 retval = audit_bprm(bprm);
1275 if (retval)
1276 return retval;
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 retval = -ENOENT;
1279 for (try=0; try<2; try++) {
1280 read_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -07001281 list_for_each_entry(fmt, &formats, lh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 int (*fn)(struct linux_binprm *, struct pt_regs *) = fmt->load_binary;
1283 if (!fn)
1284 continue;
1285 if (!try_module_get(fmt->module))
1286 continue;
1287 read_unlock(&binfmt_lock);
1288 retval = fn(bprm, regs);
Roland McGrath85f33462008-12-09 19:36:38 -08001289 /*
1290 * Restore the depth counter to its starting value
1291 * in this call, so we don't have to rely on every
1292 * load_binary function to restore it on return.
1293 */
1294 bprm->recursion_depth = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (retval >= 0) {
Roland McGrath85f33462008-12-09 19:36:38 -08001296 if (depth == 0)
1297 tracehook_report_exec(fmt, bprm, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 put_binfmt(fmt);
1299 allow_write_access(bprm->file);
1300 if (bprm->file)
1301 fput(bprm->file);
1302 bprm->file = NULL;
1303 current->did_exec = 1;
Matt Helsley9f460802005-11-07 00:59:16 -08001304 proc_exec_connector(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 return retval;
1306 }
1307 read_lock(&binfmt_lock);
1308 put_binfmt(fmt);
1309 if (retval != -ENOEXEC || bprm->mm == NULL)
1310 break;
1311 if (!bprm->file) {
1312 read_unlock(&binfmt_lock);
1313 return retval;
1314 }
1315 }
1316 read_unlock(&binfmt_lock);
1317 if (retval != -ENOEXEC || bprm->mm == NULL) {
1318 break;
Johannes Berg5f4123b2008-07-09 10:28:40 +02001319#ifdef CONFIG_MODULES
1320 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321#define printable(c) (((c)=='\t') || ((c)=='\n') || (0x20<=(c) && (c)<=0x7e))
1322 if (printable(bprm->buf[0]) &&
1323 printable(bprm->buf[1]) &&
1324 printable(bprm->buf[2]) &&
1325 printable(bprm->buf[3]))
1326 break; /* -ENOEXEC */
1327 request_module("binfmt-%04x", *(unsigned short *)(&bprm->buf[2]));
1328#endif
1329 }
1330 }
1331 return retval;
1332}
1333
1334EXPORT_SYMBOL(search_binary_handler);
1335
1336/*
1337 * sys_execve() executes a new program.
1338 */
David Howellsd7627462010-08-17 23:52:56 +01001339int do_execve(const char * filename,
1340 const char __user *const __user *argv,
1341 const char __user *const __user *envp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 struct pt_regs * regs)
1343{
1344 struct linux_binprm *bprm;
1345 struct file *file;
Al Viro3b125382008-04-22 05:31:30 -04001346 struct files_struct *displaced;
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001347 bool clear_in_exec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Al Viro3b125382008-04-22 05:31:30 -04001350 retval = unshare_files(&displaced);
Al Virofd8328b2008-04-22 05:11:59 -04001351 if (retval)
1352 goto out_ret;
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 retval = -ENOMEM;
Oliver Neukum11b0b5a2006-03-25 03:08:13 -08001355 bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (!bprm)
Al Virofd8328b2008-04-22 05:11:59 -04001357 goto out_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Oleg Nesterova2a84742009-09-05 11:17:13 -07001359 retval = prepare_bprm_creds(bprm);
1360 if (retval)
David Howellsa6f76f22008-11-14 10:39:24 +11001361 goto out_free;
Al Viro498052b2009-03-30 07:20:30 -04001362
1363 retval = check_unsafe_exec(bprm);
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001364 if (retval < 0)
Oleg Nesterova2a84742009-09-05 11:17:13 -07001365 goto out_free;
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001366 clear_in_exec = retval;
Oleg Nesterova2a84742009-09-05 11:17:13 -07001367 current->in_execve = 1;
David Howellsa6f76f22008-11-14 10:39:24 +11001368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 file = open_exec(filename);
1370 retval = PTR_ERR(file);
1371 if (IS_ERR(file))
Al Viro498052b2009-03-30 07:20:30 -04001372 goto out_unmark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 sched_exec();
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 bprm->file = file;
1377 bprm->filename = filename;
1378 bprm->interp = filename;
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001379
1380 retval = bprm_mm_init(bprm);
1381 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 goto out_file;
1383
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001384 bprm->argc = count(argv, MAX_ARG_STRINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if ((retval = bprm->argc) < 0)
David Howellsa6f76f22008-11-14 10:39:24 +11001386 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001388 bprm->envc = count(envp, MAX_ARG_STRINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 if ((retval = bprm->envc) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 goto out;
1391
1392 retval = prepare_binprm(bprm);
1393 if (retval < 0)
1394 goto out;
1395
1396 retval = copy_strings_kernel(1, &bprm->filename, bprm);
1397 if (retval < 0)
1398 goto out;
1399
1400 bprm->exec = bprm->p;
1401 retval = copy_strings(bprm->envc, envp, bprm);
1402 if (retval < 0)
1403 goto out;
1404
1405 retval = copy_strings(bprm->argc, argv, bprm);
1406 if (retval < 0)
1407 goto out;
1408
Oleg Nesterov7b34e422008-07-25 01:47:37 -07001409 current->flags &= ~PF_KTHREAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 retval = search_binary_handler(bprm,regs);
David Howellsa6f76f22008-11-14 10:39:24 +11001411 if (retval < 0)
1412 goto out;
1413
1414 /* execve succeeded */
Al Viro498052b2009-03-30 07:20:30 -04001415 current->fs->in_exec = 0;
Kentaro Takedaf9ce1f12009-02-05 17:18:11 +09001416 current->in_execve = 0;
David Howellsa6f76f22008-11-14 10:39:24 +11001417 acct_update_integrals(current);
1418 free_bprm(bprm);
1419 if (displaced)
1420 put_files_struct(displaced);
1421 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (bprm->mm)
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001425 mmput (bprm->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427out_file:
1428 if (bprm->file) {
1429 allow_write_access(bprm->file);
1430 fput(bprm->file);
1431 }
David Howellsa6f76f22008-11-14 10:39:24 +11001432
Al Viro498052b2009-03-30 07:20:30 -04001433out_unmark:
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001434 if (clear_in_exec)
1435 current->fs->in_exec = 0;
Kentaro Takedaf9ce1f12009-02-05 17:18:11 +09001436 current->in_execve = 0;
David Howellsa6f76f22008-11-14 10:39:24 +11001437
1438out_free:
Al Viro08a6fac2008-05-10 16:38:25 -04001439 free_bprm(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Al Virofd8328b2008-04-22 05:11:59 -04001441out_files:
Al Viro3b125382008-04-22 05:31:30 -04001442 if (displaced)
1443 reset_files_struct(displaced);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444out_ret:
1445 return retval;
1446}
1447
Oleg Nesterov964ee7d2009-09-23 15:56:59 -07001448void set_binfmt(struct linux_binfmt *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -07001450 struct mm_struct *mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -07001452 if (mm->binfmt)
1453 module_put(mm->binfmt->module);
1454
1455 mm->binfmt = new;
Oleg Nesterov964ee7d2009-09-23 15:56:59 -07001456 if (new)
1457 __module_get(new->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458}
1459
1460EXPORT_SYMBOL(set_binfmt);
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462/* format_corename will inspect the pattern parameter, and output a
1463 * name into corename, which must have space for at least
1464 * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
1465 */
Oleg Nesterov64093242008-10-18 20:28:22 -07001466static int format_corename(char *corename, long signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
David Howells86a264a2008-11-14 10:39:18 +11001468 const struct cred *cred = current_cred();
Oleg Nesterov565b9b12008-07-25 01:47:47 -07001469 const char *pat_ptr = core_pattern;
1470 int ispipe = (*pat_ptr == '|');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 char *out_ptr = corename;
1472 char *const out_end = corename + CORENAME_MAX_SIZE;
1473 int rc;
1474 int pid_in_pattern = 0;
1475
1476 /* Repeat as long as we have more pattern to process and more output
1477 space */
1478 while (*pat_ptr) {
1479 if (*pat_ptr != '%') {
1480 if (out_ptr == out_end)
1481 goto out;
1482 *out_ptr++ = *pat_ptr++;
1483 } else {
1484 switch (*++pat_ptr) {
1485 case 0:
1486 goto out;
1487 /* Double percent, output one percent */
1488 case '%':
1489 if (out_ptr == out_end)
1490 goto out;
1491 *out_ptr++ = '%';
1492 break;
1493 /* pid */
1494 case 'p':
1495 pid_in_pattern = 1;
1496 rc = snprintf(out_ptr, out_end - out_ptr,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001497 "%d", task_tgid_vnr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 if (rc > out_end - out_ptr)
1499 goto out;
1500 out_ptr += rc;
1501 break;
1502 /* uid */
1503 case 'u':
1504 rc = snprintf(out_ptr, out_end - out_ptr,
David Howells86a264a2008-11-14 10:39:18 +11001505 "%d", cred->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 if (rc > out_end - out_ptr)
1507 goto out;
1508 out_ptr += rc;
1509 break;
1510 /* gid */
1511 case 'g':
1512 rc = snprintf(out_ptr, out_end - out_ptr,
David Howells86a264a2008-11-14 10:39:18 +11001513 "%d", cred->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 if (rc > out_end - out_ptr)
1515 goto out;
1516 out_ptr += rc;
1517 break;
1518 /* signal that caused the coredump */
1519 case 's':
1520 rc = snprintf(out_ptr, out_end - out_ptr,
1521 "%ld", signr);
1522 if (rc > out_end - out_ptr)
1523 goto out;
1524 out_ptr += rc;
1525 break;
1526 /* UNIX time of coredump */
1527 case 't': {
1528 struct timeval tv;
1529 do_gettimeofday(&tv);
1530 rc = snprintf(out_ptr, out_end - out_ptr,
1531 "%lu", tv.tv_sec);
1532 if (rc > out_end - out_ptr)
1533 goto out;
1534 out_ptr += rc;
1535 break;
1536 }
1537 /* hostname */
1538 case 'h':
1539 down_read(&uts_sem);
1540 rc = snprintf(out_ptr, out_end - out_ptr,
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001541 "%s", utsname()->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 up_read(&uts_sem);
1543 if (rc > out_end - out_ptr)
1544 goto out;
1545 out_ptr += rc;
1546 break;
1547 /* executable */
1548 case 'e':
1549 rc = snprintf(out_ptr, out_end - out_ptr,
1550 "%s", current->comm);
1551 if (rc > out_end - out_ptr)
1552 goto out;
1553 out_ptr += rc;
1554 break;
Neil Horman74aadce2007-10-16 23:26:35 -07001555 /* core limit size */
1556 case 'c':
1557 rc = snprintf(out_ptr, out_end - out_ptr,
Jiri Slabyd554ed892010-03-05 13:42:42 -08001558 "%lu", rlimit(RLIMIT_CORE));
Neil Horman74aadce2007-10-16 23:26:35 -07001559 if (rc > out_end - out_ptr)
1560 goto out;
1561 out_ptr += rc;
1562 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 default:
1564 break;
1565 }
1566 ++pat_ptr;
1567 }
1568 }
1569 /* Backward compatibility with core_uses_pid:
1570 *
1571 * If core_pattern does not include a %p (as is the default)
1572 * and core_uses_pid is set, then .%pid will be appended to
Alan Coxc4bbafd2007-04-16 22:53:13 -07001573 * the filename. Do not do this for piped commands. */
Oleg Nesterov64093242008-10-18 20:28:22 -07001574 if (!ispipe && !pid_in_pattern && core_uses_pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 rc = snprintf(out_ptr, out_end - out_ptr,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001576 ".%d", task_tgid_vnr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (rc > out_end - out_ptr)
1578 goto out;
1579 out_ptr += rc;
1580 }
Alan Coxc4bbafd2007-04-16 22:53:13 -07001581out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 *out_ptr = 0;
Alan Coxc4bbafd2007-04-16 22:53:13 -07001583 return ispipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584}
1585
Oleg Nesterov5c99cbf2010-03-05 13:44:14 -08001586static int zap_process(struct task_struct *start, int exit_code)
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001587{
1588 struct task_struct *t;
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001589 int nr = 0;
Oleg Nesterov281de332006-06-26 00:26:06 -07001590
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001591 start->signal->flags = SIGNAL_GROUP_EXIT;
Oleg Nesterov5c99cbf2010-03-05 13:44:14 -08001592 start->signal->group_exit_code = exit_code;
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001593 start->signal->group_stop_count = 0;
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001594
1595 t = start;
1596 do {
1597 if (t != current && t->mm) {
Oleg Nesterov281de332006-06-26 00:26:06 -07001598 sigaddset(&t->pending.signal, SIGKILL);
1599 signal_wake_up(t, 1);
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001600 nr++;
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001601 }
Oleg Nesterove4901f92008-07-25 01:47:31 -07001602 } while_each_thread(start, t);
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001603
1604 return nr;
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001605}
1606
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001607static inline int zap_threads(struct task_struct *tsk, struct mm_struct *mm,
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001608 struct core_state *core_state, int exit_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
1610 struct task_struct *g, *p;
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001611 unsigned long flags;
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001612 int nr = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001614 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -08001615 if (!signal_group_exit(tsk->signal)) {
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001616 mm->core_state = core_state;
Oleg Nesterov5c99cbf2010-03-05 13:44:14 -08001617 nr = zap_process(tsk, exit_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001619 spin_unlock_irq(&tsk->sighand->siglock);
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001620 if (unlikely(nr < 0))
1621 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001623 if (atomic_read(&mm->mm_users) == nr + 1)
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001624 goto done;
Oleg Nesterove4901f92008-07-25 01:47:31 -07001625 /*
1626 * We should find and kill all tasks which use this mm, and we should
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001627 * count them correctly into ->nr_threads. We don't take tasklist
Oleg Nesterove4901f92008-07-25 01:47:31 -07001628 * lock, but this is safe wrt:
1629 *
1630 * fork:
1631 * None of sub-threads can fork after zap_process(leader). All
1632 * processes which were created before this point should be
1633 * visible to zap_threads() because copy_process() adds the new
1634 * process to the tail of init_task.tasks list, and lock/unlock
1635 * of ->siglock provides a memory barrier.
1636 *
1637 * do_exit:
1638 * The caller holds mm->mmap_sem. This means that the task which
1639 * uses this mm can't pass exit_mm(), so it can't exit or clear
1640 * its ->mm.
1641 *
1642 * de_thread:
1643 * It does list_replace_rcu(&leader->tasks, &current->tasks),
1644 * we must see either old or new leader, this does not matter.
1645 * However, it can change p->sighand, so lock_task_sighand(p)
1646 * must be used. Since p->mm != NULL and we hold ->mmap_sem
1647 * it can't fail.
1648 *
1649 * Note also that "g" can be the old leader with ->mm == NULL
1650 * and already unhashed and thus removed from ->thread_group.
1651 * This is OK, __unhash_process()->list_del_rcu() does not
1652 * clear the ->next pointer, we will find the new leader via
1653 * next_thread().
1654 */
Oleg Nesterov7b1c6152006-06-26 00:26:08 -07001655 rcu_read_lock();
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001656 for_each_process(g) {
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001657 if (g == tsk->group_leader)
1658 continue;
Oleg Nesterov15b9f362008-07-25 01:47:39 -07001659 if (g->flags & PF_KTHREAD)
1660 continue;
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001661 p = g;
1662 do {
1663 if (p->mm) {
Oleg Nesterov15b9f362008-07-25 01:47:39 -07001664 if (unlikely(p->mm == mm)) {
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001665 lock_task_sighand(p, &flags);
Oleg Nesterov5c99cbf2010-03-05 13:44:14 -08001666 nr += zap_process(p, exit_code);
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001667 unlock_task_sighand(p, &flags);
1668 }
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001669 break;
1670 }
Oleg Nesterove4901f92008-07-25 01:47:31 -07001671 } while_each_thread(g, p);
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001672 }
Oleg Nesterov7b1c6152006-06-26 00:26:08 -07001673 rcu_read_unlock();
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001674done:
Oleg Nesterovc5f1cc82008-07-25 01:47:42 -07001675 atomic_set(&core_state->nr_threads, nr);
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001676 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677}
1678
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001679static int coredump_wait(int exit_code, struct core_state *core_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001681 struct task_struct *tsk = current;
1682 struct mm_struct *mm = tsk->mm;
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001683 struct completion *vfork_done;
Oleg Nesterov269b0052010-05-26 14:43:08 -07001684 int core_waiters = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001686 init_completion(&core_state->startup);
Oleg Nesterovb564daf2008-07-25 01:47:44 -07001687 core_state->dumper.task = tsk;
1688 core_state->dumper.next = NULL;
Oleg Nesterov269b0052010-05-26 14:43:08 -07001689
1690 down_write(&mm->mmap_sem);
1691 if (!mm->core_state)
1692 core_waiters = zap_threads(tsk, mm, core_state, exit_code);
Oleg Nesterov2384f552005-10-30 15:02:47 -08001693 up_write(&mm->mmap_sem);
1694
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001695 if (unlikely(core_waiters < 0))
1696 goto fail;
1697
1698 /*
1699 * Make sure nobody is waiting for us to release the VM,
1700 * otherwise we can deadlock when we wait on each other
1701 */
1702 vfork_done = tsk->vfork_done;
1703 if (vfork_done) {
1704 tsk->vfork_done = NULL;
1705 complete(vfork_done);
1706 }
1707
Oleg Nesterov2384f552005-10-30 15:02:47 -08001708 if (core_waiters)
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001709 wait_for_completion(&core_state->startup);
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001710fail:
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001711 return core_waiters;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712}
1713
Oleg Nesterova94e2d42008-07-25 01:47:46 -07001714static void coredump_finish(struct mm_struct *mm)
1715{
1716 struct core_thread *curr, *next;
1717 struct task_struct *task;
1718
1719 next = mm->core_state->dumper.next;
1720 while ((curr = next) != NULL) {
1721 next = curr->next;
1722 task = curr->task;
1723 /*
1724 * see exit_mm(), curr->task must not see
1725 * ->task == NULL before we read ->next.
1726 */
1727 smp_mb();
1728 curr->task = NULL;
1729 wake_up_process(task);
1730 }
1731
1732 mm->core_state = NULL;
1733}
1734
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001735/*
1736 * set_dumpable converts traditional three-value dumpable to two flags and
1737 * stores them into mm->flags. It modifies lower two bits of mm->flags, but
1738 * these bits are not changed atomically. So get_dumpable can observe the
1739 * intermediate state. To avoid doing unexpected behavior, get get_dumpable
1740 * return either old dumpable or new one by paying attention to the order of
1741 * modifying the bits.
1742 *
1743 * dumpable | mm->flags (binary)
1744 * old new | initial interim final
1745 * ---------+-----------------------
1746 * 0 1 | 00 01 01
1747 * 0 2 | 00 10(*) 11
1748 * 1 0 | 01 00 00
1749 * 1 2 | 01 11 11
1750 * 2 0 | 11 10(*) 00
1751 * 2 1 | 11 11 01
1752 *
1753 * (*) get_dumpable regards interim value of 10 as 11.
1754 */
1755void set_dumpable(struct mm_struct *mm, int value)
1756{
1757 switch (value) {
1758 case 0:
1759 clear_bit(MMF_DUMPABLE, &mm->flags);
1760 smp_wmb();
1761 clear_bit(MMF_DUMP_SECURELY, &mm->flags);
1762 break;
1763 case 1:
1764 set_bit(MMF_DUMPABLE, &mm->flags);
1765 smp_wmb();
1766 clear_bit(MMF_DUMP_SECURELY, &mm->flags);
1767 break;
1768 case 2:
1769 set_bit(MMF_DUMP_SECURELY, &mm->flags);
1770 smp_wmb();
1771 set_bit(MMF_DUMPABLE, &mm->flags);
1772 break;
1773 }
1774}
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001775
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001776static int __get_dumpable(unsigned long mm_flags)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001777{
1778 int ret;
1779
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001780 ret = mm_flags & MMF_DUMPABLE_MASK;
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001781 return (ret >= 2) ? 2 : ret;
1782}
1783
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001784int get_dumpable(struct mm_struct *mm)
1785{
1786 return __get_dumpable(mm->flags);
1787}
1788
Neil Horman61be2282009-09-23 15:56:58 -07001789static void wait_for_dump_helpers(struct file *file)
1790{
1791 struct pipe_inode_info *pipe;
1792
1793 pipe = file->f_path.dentry->d_inode->i_pipe;
1794
1795 pipe_lock(pipe);
1796 pipe->readers++;
1797 pipe->writers--;
1798
1799 while ((pipe->readers > 1) && (!signal_pending(current))) {
1800 wake_up_interruptible_sync(&pipe->wait);
1801 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1802 pipe_wait(pipe);
1803 }
1804
1805 pipe->readers--;
1806 pipe->writers++;
1807 pipe_unlock(pipe);
1808
1809}
1810
1811
Neil Horman898b3742010-05-26 14:42:59 -07001812/*
1813 * uhm_pipe_setup
1814 * helper function to customize the process used
1815 * to collect the core in userspace. Specifically
1816 * it sets up a pipe and installs it as fd 0 (stdin)
1817 * for the process. Returns 0 on success, or
1818 * PTR_ERR on failure.
1819 * Note that it also sets the core limit to 1. This
1820 * is a special value that we use to trap recursive
1821 * core dumps
1822 */
1823static int umh_pipe_setup(struct subprocess_info *info)
1824{
1825 struct file *rp, *wp;
1826 struct fdtable *fdt;
1827 struct coredump_params *cp = (struct coredump_params *)info->data;
1828 struct files_struct *cf = current->files;
1829
1830 wp = create_write_pipe(0);
1831 if (IS_ERR(wp))
1832 return PTR_ERR(wp);
1833
1834 rp = create_read_pipe(wp, 0);
1835 if (IS_ERR(rp)) {
1836 free_write_pipe(wp);
1837 return PTR_ERR(rp);
1838 }
1839
1840 cp->file = wp;
1841
1842 sys_close(0);
1843 fd_install(0, rp);
1844 spin_lock(&cf->file_lock);
1845 fdt = files_fdtable(cf);
1846 FD_SET(0, fdt->open_fds);
1847 FD_CLR(0, fdt->close_on_exec);
1848 spin_unlock(&cf->file_lock);
1849
1850 /* and disallow core files too */
1851 current->signal->rlim[RLIMIT_CORE] = (struct rlimit){1, 1};
1852
1853 return 0;
1854}
1855
WANG Cong8cd3ac32009-01-06 14:42:48 -08001856void do_coredump(long signr, int exit_code, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001858 struct core_state core_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 char corename[CORENAME_MAX_SIZE + 1];
1860 struct mm_struct *mm = current->mm;
1861 struct linux_binfmt * binfmt;
David Howellsd84f4f92008-11-14 10:39:23 +11001862 const struct cred *old_cred;
1863 struct cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 int retval = 0;
Alan Coxd6e71142005-06-23 00:09:43 -07001865 int flag = 0;
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001866 int ispipe;
Neil Hormana2939802009-09-23 15:56:56 -07001867 static atomic_t core_dump_count = ATOMIC_INIT(0);
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001868 struct coredump_params cprm = {
1869 .signr = signr,
1870 .regs = regs,
Jiri Slabyd554ed892010-03-05 13:42:42 -08001871 .limit = rlimit(RLIMIT_CORE),
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001872 /*
1873 * We must use the same mm->flags while dumping core to avoid
1874 * inconsistency of bit flags, since this flag is not protected
1875 * by any locks.
1876 */
1877 .mm_flags = mm->flags,
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001878 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04001880 audit_core_dumps(signr);
1881
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -07001882 binfmt = mm->binfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 if (!binfmt || !binfmt->core_dump)
1884 goto fail;
Oleg Nesterov269b0052010-05-26 14:43:08 -07001885 if (!__get_dumpable(cprm.mm_flags))
1886 goto fail;
David Howellsd84f4f92008-11-14 10:39:23 +11001887
1888 cred = prepare_creds();
Oleg Nesterov5e43aef52010-05-26 14:43:07 -07001889 if (!cred)
David Howellsd84f4f92008-11-14 10:39:23 +11001890 goto fail;
Alan Coxd6e71142005-06-23 00:09:43 -07001891 /*
1892 * We cannot trust fsuid as being the "true" uid of the
1893 * process nor do we know its entire history. We only know it
1894 * was tainted so we dump it as root in mode 2.
1895 */
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001896 if (__get_dumpable(cprm.mm_flags) == 2) {
1897 /* Setuid core dump mode */
Alan Coxd6e71142005-06-23 00:09:43 -07001898 flag = O_EXCL; /* Stop rewrite attacks */
David Howellsd84f4f92008-11-14 10:39:23 +11001899 cred->fsuid = 0; /* Dump root private */
Alan Coxd6e71142005-06-23 00:09:43 -07001900 }
Oleg Nesterov1291cf42005-10-30 15:02:54 -08001901
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001902 retval = coredump_wait(exit_code, &core_state);
Oleg Nesterov5e43aef52010-05-26 14:43:07 -07001903 if (retval < 0)
1904 goto fail_creds;
David Howellsd84f4f92008-11-14 10:39:23 +11001905
1906 old_cred = override_creds(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
1908 /*
1909 * Clear any false indication of pending signals that might
1910 * be seen by the filesystem code called to write the core file.
1911 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 clear_thread_flag(TIF_SIGPENDING);
1913
Oleg Nesterov64093242008-10-18 20:28:22 -07001914 ispipe = format_corename(corename, signr);
Neil Horman725eae32009-09-23 15:56:54 -07001915
Alan Coxc4bbafd2007-04-16 22:53:13 -07001916 if (ispipe) {
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001917 int dump_count;
1918 char **helper_argv;
1919
Neil Horman898b3742010-05-26 14:42:59 -07001920 if (cprm.limit == 1) {
Neil Horman725eae32009-09-23 15:56:54 -07001921 /*
1922 * Normally core limits are irrelevant to pipes, since
1923 * we're not writing to the file system, but we use
Neil Horman898b3742010-05-26 14:42:59 -07001924 * cprm.limit of 1 here as a speacial value. Any
1925 * non-1 limit gets set to RLIM_INFINITY below, but
Neil Horman725eae32009-09-23 15:56:54 -07001926 * a limit of 0 skips the dump. This is a consistent
1927 * way to catch recursive crashes. We can still crash
Neil Horman898b3742010-05-26 14:42:59 -07001928 * if the core_pattern binary sets RLIM_CORE = !1
Neil Horman725eae32009-09-23 15:56:54 -07001929 * but it runs as root, and can do lots of stupid things
1930 * Note that we use task_tgid_vnr here to grab the pid
1931 * of the process group leader. That way we get the
1932 * right pid if a thread in a multi-threaded
1933 * core_pattern process dies.
1934 */
1935 printk(KERN_WARNING
Neil Horman898b3742010-05-26 14:42:59 -07001936 "Process %d(%s) has RLIMIT_CORE set to 1\n",
Neil Horman725eae32009-09-23 15:56:54 -07001937 task_tgid_vnr(current), current->comm);
1938 printk(KERN_WARNING "Aborting core\n");
1939 goto fail_unlock;
1940 }
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001941 cprm.limit = RLIM_INFINITY;
Neil Horman725eae32009-09-23 15:56:54 -07001942
Neil Hormana2939802009-09-23 15:56:56 -07001943 dump_count = atomic_inc_return(&core_dump_count);
1944 if (core_pipe_limit && (core_pipe_limit < dump_count)) {
1945 printk(KERN_WARNING "Pid %d(%s) over core_pipe_limit\n",
1946 task_tgid_vnr(current), current->comm);
1947 printk(KERN_WARNING "Skipping core dump\n");
1948 goto fail_dropcount;
1949 }
1950
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001951 helper_argv = argv_split(GFP_KERNEL, corename+1, NULL);
Tetsuo Handa350eaf72009-01-06 14:41:11 -08001952 if (!helper_argv) {
1953 printk(KERN_WARNING "%s failed to allocate memory\n",
1954 __func__);
Neil Hormana2939802009-09-23 15:56:56 -07001955 goto fail_dropcount;
Tetsuo Handa350eaf72009-01-06 14:41:11 -08001956 }
Neil Horman32321132007-10-16 23:26:36 -07001957
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001958 retval = call_usermodehelper_fns(helper_argv[0], helper_argv,
1959 NULL, UMH_WAIT_EXEC, umh_pipe_setup,
1960 NULL, &cprm);
1961 argv_free(helper_argv);
1962 if (retval) {
Andi Kleend025c9d2006-09-30 23:29:28 -07001963 printk(KERN_INFO "Core dump to %s pipe failed\n",
1964 corename);
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001965 goto close_fail;
Andi Kleend025c9d2006-09-30 23:29:28 -07001966 }
Oleg Nesterovc7135412010-05-26 14:43:05 -07001967 } else {
1968 struct inode *inode;
1969
1970 if (cprm.limit < binfmt->min_coredump)
1971 goto fail_unlock;
1972
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001973 cprm.file = filp_open(corename,
Alexey Dobriyan6d4df672006-12-06 20:40:39 -08001974 O_CREAT | 2 | O_NOFOLLOW | O_LARGEFILE | flag,
1975 0600);
Oleg Nesterovc7135412010-05-26 14:43:05 -07001976 if (IS_ERR(cprm.file))
1977 goto fail_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Oleg Nesterovc7135412010-05-26 14:43:05 -07001979 inode = cprm.file->f_path.dentry->d_inode;
1980 if (inode->i_nlink > 1)
1981 goto close_fail;
1982 if (d_unhashed(cprm.file->f_path.dentry))
1983 goto close_fail;
1984 /*
1985 * AK: actually i see no reason to not allow this for named
1986 * pipes etc, but keep the previous behaviour for now.
1987 */
1988 if (!S_ISREG(inode->i_mode))
1989 goto close_fail;
1990 /*
1991 * Dont allow local users get cute and trick others to coredump
1992 * into their pre-created files.
1993 */
1994 if (inode->i_uid != current_fsuid())
1995 goto close_fail;
1996 if (!cprm.file->f_op || !cprm.file->f_op->write)
1997 goto close_fail;
1998 if (do_truncate(cprm.file->f_path.dentry, 0, 0, cprm.file))
1999 goto close_fail;
2000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08002002 retval = binfmt->core_dump(&cprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 if (retval)
2004 current->signal->group_exit_code |= 0x80;
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07002005
Neil Horman61be2282009-09-23 15:56:58 -07002006 if (ispipe && core_pipe_limit)
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08002007 wait_for_dump_helpers(cprm.file);
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07002008close_fail:
2009 if (cprm.file)
2010 filp_close(cprm.file, NULL);
Neil Hormana2939802009-09-23 15:56:56 -07002011fail_dropcount:
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07002012 if (ispipe)
Neil Hormana2939802009-09-23 15:56:56 -07002013 atomic_dec(&core_dump_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014fail_unlock:
Oleg Nesterova94e2d42008-07-25 01:47:46 -07002015 coredump_finish(mm);
Oleg Nesterov5e43aef52010-05-26 14:43:07 -07002016 revert_creds(old_cred);
2017fail_creds:
2018 put_cred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019fail:
WANG Cong8cd3ac32009-01-06 14:42:48 -08002020 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021}
Linus Torvalds3aa0ce82010-10-14 14:32:06 -07002022
2023/*
2024 * Core dumping helper functions. These are the only things you should
2025 * do on a core-file: use only these functions to write out all the
2026 * necessary info.
2027 */
2028int dump_write(struct file *file, const void *addr, int nr)
2029{
2030 return access_ok(VERIFY_READ, addr, nr) && file->f_op->write(file, addr, nr, &file->f_pos) == nr;
2031}
Linus Torvalds8fd01d62010-10-14 19:15:28 -07002032EXPORT_SYMBOL(dump_write);
Linus Torvalds3aa0ce82010-10-14 14:32:06 -07002033
2034int dump_seek(struct file *file, loff_t off)
2035{
2036 int ret = 1;
2037
2038 if (file->f_op->llseek && file->f_op->llseek != no_llseek) {
2039 if (file->f_op->llseek(file, off, SEEK_CUR) < 0)
2040 return 0;
2041 } else {
2042 char *buf = (char *)get_zeroed_page(GFP_KERNEL);
2043
2044 if (!buf)
2045 return 0;
2046 while (off > 0) {
2047 unsigned long n = off;
2048
2049 if (n > PAGE_SIZE)
2050 n = PAGE_SIZE;
2051 if (!dump_write(file, buf, n)) {
2052 ret = 0;
2053 break;
2054 }
2055 off -= n;
2056 }
2057 free_page((unsigned long)buf);
2058 }
2059 return ret;
2060}
Linus Torvalds8fd01d62010-10-14 19:15:28 -07002061EXPORT_SYMBOL(dump_seek);