blob: 7761837e4500f0c3fee3c3dd51427dcd6adef82a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#include <asm/uaccess.h>
59#include <asm/mmu_context.h>
Ollie Wildb6a2fea2007-07-19 01:48:16 -070060#include <asm/tlb.h>
David Howellsa6f76f22008-11-14 10:39:24 +110061#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063int core_uses_pid;
Dan Aloni71ce92f2007-05-16 22:11:16 -070064char core_pattern[CORENAME_MAX_SIZE] = "core";
Neil Hormana2939802009-09-23 15:56:56 -070065unsigned int core_pipe_limit;
Alan Coxd6e71142005-06-23 00:09:43 -070066int suid_dumpable = 0;
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/* The maximal length of core_pattern is also specified in sysctl.c */
69
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -070070static LIST_HEAD(formats);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static DEFINE_RWLOCK(binfmt_lock);
72
Ivan Kokshaysky74641f52009-04-30 15:08:49 -070073int __register_binfmt(struct linux_binfmt * fmt, int insert)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (!fmt)
76 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 write_lock(&binfmt_lock);
Ivan Kokshaysky74641f52009-04-30 15:08:49 -070078 insert ? list_add(&fmt->lh, &formats) :
79 list_add_tail(&fmt->lh, &formats);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 write_unlock(&binfmt_lock);
81 return 0;
82}
83
Ivan Kokshaysky74641f52009-04-30 15:08:49 -070084EXPORT_SYMBOL(__register_binfmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Alexey Dobriyanf6b450d2007-10-16 23:26:04 -070086void unregister_binfmt(struct linux_binfmt * fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 write_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -070089 list_del(&fmt->lh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 write_unlock(&binfmt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
93EXPORT_SYMBOL(unregister_binfmt);
94
95static inline void put_binfmt(struct linux_binfmt * fmt)
96{
97 module_put(fmt->module);
98}
99
100/*
101 * Note that a shared library must be both readable and executable due to
102 * security reasons.
103 *
104 * Also note that we take the address to load from from the file itself.
105 */
Heiko Carstens1e7bfb22009-01-14 14:14:29 +0100106SYSCALL_DEFINE1(uselib, const char __user *, library)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Al Viro964bd182008-07-26 03:33:14 -0400108 struct file *file;
Al Viro964bd182008-07-26 03:33:14 -0400109 char *tmp = getname(library);
110 int error = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Al Viro6e8341a2009-04-06 11:16:22 -0400112 if (IS_ERR(tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 goto out;
114
Al Viro6e8341a2009-04-06 11:16:22 -0400115 file = do_filp_open(AT_FDCWD, tmp,
116 O_LARGEFILE | O_RDONLY | FMODE_EXEC, 0,
117 MAY_READ | MAY_EXEC | MAY_OPEN);
118 putname(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 error = PTR_ERR(file);
120 if (IS_ERR(file))
121 goto out;
122
Al Viro6e8341a2009-04-06 11:16:22 -0400123 error = -EINVAL;
124 if (!S_ISREG(file->f_path.dentry->d_inode->i_mode))
125 goto exit;
126
127 error = -EACCES;
128 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC)
129 goto exit;
130
Eric Paris2a12a9d2009-12-17 21:24:21 -0500131 fsnotify_open(file);
Eric Paris6110e3a2008-12-17 13:53:20 -0500132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 error = -ENOEXEC;
134 if(file->f_op) {
135 struct linux_binfmt * fmt;
136
137 read_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -0700138 list_for_each_entry(fmt, &formats, lh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (!fmt->load_shlib)
140 continue;
141 if (!try_module_get(fmt->module))
142 continue;
143 read_unlock(&binfmt_lock);
144 error = fmt->load_shlib(file);
145 read_lock(&binfmt_lock);
146 put_binfmt(fmt);
147 if (error != -ENOEXEC)
148 break;
149 }
150 read_unlock(&binfmt_lock);
151 }
Al Viro6e8341a2009-04-06 11:16:22 -0400152exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 fput(file);
154out:
155 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700158#ifdef CONFIG_MMU
159
160static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
161 int write)
162{
163 struct page *page;
164 int ret;
165
166#ifdef CONFIG_STACK_GROWSUP
167 if (write) {
168 ret = expand_stack_downwards(bprm->vma, pos);
169 if (ret < 0)
170 return NULL;
171 }
172#endif
173 ret = get_user_pages(current, bprm->mm, pos,
174 1, write, 1, &page, NULL);
175 if (ret <= 0)
176 return NULL;
177
178 if (write) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700179 unsigned long size = bprm->vma->vm_end - bprm->vma->vm_start;
Linus Torvaldsa64e7152008-03-03 10:12:14 -0800180 struct rlimit *rlim;
181
182 /*
183 * We've historically supported up to 32 pages (ARG_MAX)
184 * of argument strings even with small stacks
185 */
186 if (size <= ARG_MAX)
187 return page;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700188
189 /*
190 * Limit to 1/4-th the stack size for the argv+env strings.
191 * This ensures that:
192 * - the remaining binfmt code will not run out of stack space,
193 * - the program will have a reasonable amount of stack left
194 * to work from.
195 */
Linus Torvaldsa64e7152008-03-03 10:12:14 -0800196 rlim = current->signal->rlim;
Jiri Slabyd554ed892010-03-05 13:42:42 -0800197 if (size > ACCESS_ONCE(rlim[RLIMIT_STACK].rlim_cur) / 4) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700198 put_page(page);
199 return NULL;
200 }
201 }
202
203 return page;
204}
205
206static void put_arg_page(struct page *page)
207{
208 put_page(page);
209}
210
211static void free_arg_page(struct linux_binprm *bprm, int i)
212{
213}
214
215static void free_arg_pages(struct linux_binprm *bprm)
216{
217}
218
219static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
220 struct page *page)
221{
222 flush_cache_page(bprm->vma, pos, page_to_pfn(page));
223}
224
225static int __bprm_mm_init(struct linux_binprm *bprm)
226{
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800227 int err;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700228 struct vm_area_struct *vma = NULL;
229 struct mm_struct *mm = bprm->mm;
230
231 bprm->vma = vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
232 if (!vma)
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800233 return -ENOMEM;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700234
235 down_write(&mm->mmap_sem);
236 vma->vm_mm = mm;
237
238 /*
239 * Place the stack at the largest stack address the architecture
240 * supports. Later, we'll move this to an appropriate place. We don't
241 * use STACK_TOP because that can depend on attributes which aren't
242 * configured yet.
243 */
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700244 BUG_ON(VM_STACK_FLAGS & VM_STACK_INCOMPLETE_SETUP);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700245 vma->vm_end = STACK_TOP_MAX;
246 vma->vm_start = vma->vm_end - PAGE_SIZE;
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700247 vma->vm_flags = VM_STACK_FLAGS | VM_STACK_INCOMPLETE_SETUP;
Coly Li3ed75eb2007-10-18 23:39:15 -0700248 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
Rik van Riel5beb4932010-03-05 13:42:07 -0800249 INIT_LIST_HEAD(&vma->anon_vma_chain);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700250 err = insert_vm_struct(mm, vma);
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800251 if (err)
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700252 goto err;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700253
254 mm->stack_vm = mm->total_vm = 1;
255 up_write(&mm->mmap_sem);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700256 bprm->p = vma->vm_end - sizeof(void *);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700257 return 0;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700258err:
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800259 up_write(&mm->mmap_sem);
260 bprm->vma = NULL;
261 kmem_cache_free(vm_area_cachep, vma);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700262 return err;
263}
264
265static bool valid_arg_len(struct linux_binprm *bprm, long len)
266{
267 return len <= MAX_ARG_STRLEN;
268}
269
270#else
271
272static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
273 int write)
274{
275 struct page *page;
276
277 page = bprm->page[pos / PAGE_SIZE];
278 if (!page && write) {
279 page = alloc_page(GFP_HIGHUSER|__GFP_ZERO);
280 if (!page)
281 return NULL;
282 bprm->page[pos / PAGE_SIZE] = page;
283 }
284
285 return page;
286}
287
288static void put_arg_page(struct page *page)
289{
290}
291
292static void free_arg_page(struct linux_binprm *bprm, int i)
293{
294 if (bprm->page[i]) {
295 __free_page(bprm->page[i]);
296 bprm->page[i] = NULL;
297 }
298}
299
300static void free_arg_pages(struct linux_binprm *bprm)
301{
302 int i;
303
304 for (i = 0; i < MAX_ARG_PAGES; i++)
305 free_arg_page(bprm, i);
306}
307
308static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
309 struct page *page)
310{
311}
312
313static int __bprm_mm_init(struct linux_binprm *bprm)
314{
315 bprm->p = PAGE_SIZE * MAX_ARG_PAGES - sizeof(void *);
316 return 0;
317}
318
319static bool valid_arg_len(struct linux_binprm *bprm, long len)
320{
321 return len <= bprm->p;
322}
323
324#endif /* CONFIG_MMU */
325
326/*
327 * Create a new mm_struct and populate it with a temporary stack
328 * vm_area_struct. We don't have enough context at this point to set the stack
329 * flags, permissions, and offset, so we use temporary values. We'll update
330 * them later in setup_arg_pages().
331 */
332int bprm_mm_init(struct linux_binprm *bprm)
333{
334 int err;
335 struct mm_struct *mm = NULL;
336
337 bprm->mm = mm = mm_alloc();
338 err = -ENOMEM;
339 if (!mm)
340 goto err;
341
342 err = init_new_context(current, mm);
343 if (err)
344 goto err;
345
346 err = __bprm_mm_init(bprm);
347 if (err)
348 goto err;
349
350 return 0;
351
352err:
353 if (mm) {
354 bprm->mm = NULL;
355 mmdrop(mm);
356 }
357
358 return err;
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/*
362 * count() counts the number of strings in array ARGV.
363 */
364static int count(char __user * __user * argv, int max)
365{
366 int i = 0;
367
368 if (argv != NULL) {
369 for (;;) {
370 char __user * p;
371
372 if (get_user(p, argv))
373 return -EFAULT;
374 if (!p)
375 break;
376 argv++;
Jason Baron362e6662008-10-15 22:01:52 -0700377 if (i++ >= max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return -E2BIG;
379 cond_resched();
380 }
381 }
382 return i;
383}
384
385/*
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700386 * 'copy_strings()' copies argument/environment strings from the old
387 * processes's memory to the new process's stack. The call to get_user_pages()
388 * ensures the destination page is created and not swapped out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 */
Adrian Bunk75c96f82005-05-05 16:16:09 -0700390static int copy_strings(int argc, char __user * __user * argv,
391 struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 struct page *kmapped_page = NULL;
394 char *kaddr = NULL;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700395 unsigned long kpos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 int ret;
397
398 while (argc-- > 0) {
399 char __user *str;
400 int len;
401 unsigned long pos;
402
403 if (get_user(str, argv+argc) ||
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700404 !(len = strnlen_user(str, MAX_ARG_STRLEN))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 ret = -EFAULT;
406 goto out;
407 }
408
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700409 if (!valid_arg_len(bprm, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 ret = -E2BIG;
411 goto out;
412 }
413
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700414 /* We're going to work our way backwords. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 pos = bprm->p;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700416 str += len;
417 bprm->p -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 while (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 int offset, bytes_to_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 offset = pos % PAGE_SIZE;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700423 if (offset == 0)
424 offset = PAGE_SIZE;
425
426 bytes_to_copy = offset;
427 if (bytes_to_copy > len)
428 bytes_to_copy = len;
429
430 offset -= bytes_to_copy;
431 pos -= bytes_to_copy;
432 str -= bytes_to_copy;
433 len -= bytes_to_copy;
434
435 if (!kmapped_page || kpos != (pos & PAGE_MASK)) {
436 struct page *page;
437
438 page = get_arg_page(bprm, pos, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (!page) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700440 ret = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 goto out;
442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700444 if (kmapped_page) {
445 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700447 put_arg_page(kmapped_page);
448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 kmapped_page = page;
450 kaddr = kmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700451 kpos = pos & PAGE_MASK;
452 flush_arg_page(bprm, kpos, kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700454 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 ret = -EFAULT;
456 goto out;
457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 }
460 ret = 0;
461out:
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700462 if (kmapped_page) {
463 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700465 put_arg_page(kmapped_page);
466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return ret;
468}
469
470/*
471 * Like copy_strings, but get argv and its values from kernel memory.
472 */
473int copy_strings_kernel(int argc,char ** argv, struct linux_binprm *bprm)
474{
475 int r;
476 mm_segment_t oldfs = get_fs();
477 set_fs(KERNEL_DS);
478 r = copy_strings(argc, (char __user * __user *)argv, bprm);
479 set_fs(oldfs);
480 return r;
481}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482EXPORT_SYMBOL(copy_strings_kernel);
483
484#ifdef CONFIG_MMU
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486/*
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700487 * During bprm_mm_init(), we create a temporary stack at STACK_TOP_MAX. Once
488 * the binfmt code determines where the new stack should reside, we shift it to
489 * its final location. The process proceeds as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 *
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700491 * 1) Use shift to calculate the new vma endpoints.
492 * 2) Extend vma to cover both the old and new ranges. This ensures the
493 * arguments passed to subsequent functions are consistent.
494 * 3) Move vma's page tables to the new range.
495 * 4) Free up any cleared pgd range.
496 * 5) Shrink the vma to cover only the new range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700498static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 struct mm_struct *mm = vma->vm_mm;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700501 unsigned long old_start = vma->vm_start;
502 unsigned long old_end = vma->vm_end;
503 unsigned long length = old_end - old_start;
504 unsigned long new_start = old_start - shift;
505 unsigned long new_end = old_end - shift;
506 struct mmu_gather *tlb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700508 BUG_ON(new_start > new_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700510 /*
511 * ensure there are no vmas between where we want to go
512 * and where we are
513 */
514 if (vma != find_vma(mm, new_start))
515 return -EFAULT;
516
517 /*
518 * cover the whole range: [new_start, old_end)
519 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800520 if (vma_adjust(vma, new_start, old_end, vma->vm_pgoff, NULL))
521 return -ENOMEM;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700522
523 /*
524 * move the page tables downwards, on failure we rely on
525 * process cleanup to remove whatever mess we made.
526 */
527 if (length != move_page_tables(vma, old_start,
528 vma, new_start, length))
529 return -ENOMEM;
530
531 lru_add_drain();
532 tlb = tlb_gather_mmu(mm, 0);
533 if (new_end > old_start) {
534 /*
535 * when the old and new regions overlap clear from new_end.
536 */
Jan Beulich42b77722008-07-23 21:27:10 -0700537 free_pgd_range(tlb, new_end, old_end, new_end,
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700538 vma->vm_next ? vma->vm_next->vm_start : 0);
539 } else {
540 /*
541 * otherwise, clean from old_start; this is done to not touch
542 * the address space in [new_end, old_start) some architectures
543 * have constraints on va-space that make this illegal (IA64) -
544 * for the others its just a little faster.
545 */
Jan Beulich42b77722008-07-23 21:27:10 -0700546 free_pgd_range(tlb, old_start, old_end, new_end,
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700547 vma->vm_next ? vma->vm_next->vm_start : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700549 tlb_finish_mmu(tlb, new_end, old_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700551 /*
Rik van Riel5beb4932010-03-05 13:42:07 -0800552 * Shrink the vma to just the new range. Always succeeds.
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700553 */
554 vma_adjust(vma, new_start, new_end, vma->vm_pgoff, NULL);
555
556 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700559/*
560 * Finalizes the stack vm_area_struct. The flags and permissions are updated,
561 * the stack is optionally relocated, and some extra space is added.
562 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563int setup_arg_pages(struct linux_binprm *bprm,
564 unsigned long stack_top,
565 int executable_stack)
566{
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700567 unsigned long ret;
568 unsigned long stack_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 struct mm_struct *mm = current->mm;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700570 struct vm_area_struct *vma = bprm->vma;
571 struct vm_area_struct *prev = NULL;
572 unsigned long vm_flags;
573 unsigned long stack_base;
Michael Neuling803bf5e2010-02-10 13:56:42 -0800574 unsigned long stack_size;
575 unsigned long stack_expand;
576 unsigned long rlim_stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578#ifdef CONFIG_STACK_GROWSUP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 /* Limit stack size to 1GB */
Jiri Slabyd554ed892010-03-05 13:42:42 -0800580 stack_base = rlimit_max(RLIMIT_STACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (stack_base > (1 << 30))
582 stack_base = 1 << 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700584 /* Make sure we didn't let the argument array grow too large. */
585 if (vma->vm_end - vma->vm_start > stack_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return -ENOMEM;
587
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700588 stack_base = PAGE_ALIGN(stack_top - stack_base);
589
590 stack_shift = vma->vm_start - stack_base;
591 mm->arg_start = bprm->p - stack_shift;
592 bprm->p = vma->vm_end - stack_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593#else
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700594 stack_top = arch_align_stack(stack_top);
595 stack_top = PAGE_ALIGN(stack_top);
596 stack_shift = vma->vm_end - stack_top;
597
598 bprm->p -= stack_shift;
599 mm->arg_start = bprm->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600#endif
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700601
602 if (bprm->loader)
603 bprm->loader -= stack_shift;
604 bprm->exec -= stack_shift;
605
606 down_write(&mm->mmap_sem);
Hugh Dickins96a8e132008-07-10 21:19:20 +0100607 vm_flags = VM_STACK_FLAGS;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700608
609 /*
610 * Adjust stack execute permissions; explicitly enable for
611 * EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X and leave alone
612 * (arch default) otherwise.
613 */
614 if (unlikely(executable_stack == EXSTACK_ENABLE_X))
615 vm_flags |= VM_EXEC;
616 else if (executable_stack == EXSTACK_DISABLE_X)
617 vm_flags &= ~VM_EXEC;
618 vm_flags |= mm->def_flags;
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700619 vm_flags |= VM_STACK_INCOMPLETE_SETUP;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700620
621 ret = mprotect_fixup(vma, &prev, vma->vm_start, vma->vm_end,
622 vm_flags);
623 if (ret)
624 goto out_unlock;
625 BUG_ON(prev != vma);
626
627 /* Move stack pages down in memory. */
628 if (stack_shift) {
629 ret = shift_arg_pages(vma, stack_shift);
Anton Blanchardfc63cf22009-11-11 14:26:48 -0800630 if (ret)
631 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700634 /* mprotect_fixup is overkill to remove the temporary stack flags */
635 vma->vm_flags &= ~VM_STACK_INCOMPLETE_SETUP;
636
Michael Neuling5ef097d2010-03-05 13:42:57 -0800637 stack_expand = 131072UL; /* randomly 32*4k (or 2*64k) pages */
Michael Neuling803bf5e2010-02-10 13:56:42 -0800638 stack_size = vma->vm_end - vma->vm_start;
639 /*
640 * Align this down to a page boundary as expand_stack
641 * will align it up.
642 */
643 rlim_stack = rlimit(RLIMIT_STACK) & PAGE_MASK;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700644#ifdef CONFIG_STACK_GROWSUP
Michael Neuling803bf5e2010-02-10 13:56:42 -0800645 if (stack_size + stack_expand > rlim_stack)
646 stack_base = vma->vm_start + rlim_stack;
647 else
648 stack_base = vma->vm_end + stack_expand;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700649#else
Michael Neuling803bf5e2010-02-10 13:56:42 -0800650 if (stack_size + stack_expand > rlim_stack)
651 stack_base = vma->vm_end - rlim_stack;
652 else
653 stack_base = vma->vm_start - stack_expand;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700654#endif
Eric B Munson3af9e852010-05-18 15:30:49 +0100655 current->mm->start_stack = bprm->p;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700656 ret = expand_stack(vma, stack_base);
657 if (ret)
658 ret = -EFAULT;
659
660out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 up_write(&mm->mmap_sem);
Anton Blanchardfc63cf22009-11-11 14:26:48 -0800662 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664EXPORT_SYMBOL(setup_arg_pages);
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666#endif /* CONFIG_MMU */
667
668struct file *open_exec(const char *name)
669{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct file *file;
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200671 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Al Viro6e8341a2009-04-06 11:16:22 -0400673 file = do_filp_open(AT_FDCWD, name,
674 O_LARGEFILE | O_RDONLY | FMODE_EXEC, 0,
675 MAY_EXEC | MAY_OPEN);
676 if (IS_ERR(file))
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200677 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200679 err = -EACCES;
Al Viro6e8341a2009-04-06 11:16:22 -0400680 if (!S_ISREG(file->f_path.dentry->d_inode->i_mode))
681 goto exit;
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200682
Al Viro6e8341a2009-04-06 11:16:22 -0400683 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC)
684 goto exit;
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200685
Eric Paris2a12a9d2009-12-17 21:24:21 -0500686 fsnotify_open(file);
Eric Paris6110e3a2008-12-17 13:53:20 -0500687
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200688 err = deny_write_access(file);
Al Viro6e8341a2009-04-06 11:16:22 -0400689 if (err)
690 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Al Viro6e8341a2009-04-06 11:16:22 -0400692out:
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200693 return file;
694
Al Viro6e8341a2009-04-06 11:16:22 -0400695exit:
696 fput(file);
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200697 return ERR_PTR(err);
698}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699EXPORT_SYMBOL(open_exec);
700
Mimi Zohar6777d772009-08-21 14:32:48 -0400701int kernel_read(struct file *file, loff_t offset,
702 char *addr, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 mm_segment_t old_fs;
705 loff_t pos = offset;
706 int result;
707
708 old_fs = get_fs();
709 set_fs(get_ds());
710 /* The cast to a user pointer is valid due to the set_fs() */
711 result = vfs_read(file, (void __user *)addr, count, &pos);
712 set_fs(old_fs);
713 return result;
714}
715
716EXPORT_SYMBOL(kernel_read);
717
718static int exec_mmap(struct mm_struct *mm)
719{
720 struct task_struct *tsk;
721 struct mm_struct * old_mm, *active_mm;
722
723 /* Notify parent that we're no longer interested in the old VM */
724 tsk = current;
725 old_mm = current->mm;
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800726 sync_mm_rss(tsk, old_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 mm_release(tsk, old_mm);
728
729 if (old_mm) {
730 /*
731 * Make sure that if there is a core dump in progress
732 * for the old mm, we get out and die instead of going
733 * through with the exec. We must hold mmap_sem around
Oleg Nesterov999d9fc2008-07-25 01:47:41 -0700734 * checking core_state and changing tsk->mm.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 */
736 down_read(&old_mm->mmap_sem);
Oleg Nesterov999d9fc2008-07-25 01:47:41 -0700737 if (unlikely(old_mm->core_state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 up_read(&old_mm->mmap_sem);
739 return -EINTR;
740 }
741 }
742 task_lock(tsk);
743 active_mm = tsk->active_mm;
744 tsk->mm = mm;
745 tsk->active_mm = mm;
746 activate_mm(active_mm, mm);
747 task_unlock(tsk);
748 arch_pick_mmap_layout(mm);
749 if (old_mm) {
750 up_read(&old_mm->mmap_sem);
Eric Sesterhenn7dddb122006-04-01 01:13:38 +0200751 BUG_ON(active_mm != old_mm);
Balbir Singh31a78f22008-09-28 23:09:31 +0100752 mm_update_next_owner(old_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 mmput(old_mm);
754 return 0;
755 }
756 mmdrop(active_mm);
757 return 0;
758}
759
760/*
761 * This function makes sure the current process has its own signal table,
762 * so that flush_signal_handlers can later reset the handlers without
763 * disturbing other processes. (Other processes might share the signal
764 * table via the CLONE_SIGHAND option to clone().)
765 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800766static int de_thread(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 struct signal_struct *sig = tsk->signal;
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700769 struct sighand_struct *oldsighand = tsk->sighand;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 spinlock_t *lock = &oldsighand->siglock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700772 if (thread_group_empty(tsk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 goto no_thread_group;
774
775 /*
776 * Kill all other threads in the thread group.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 spin_lock_irq(lock);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -0800779 if (signal_group_exit(sig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 /*
781 * Another group action in progress, just
782 * return so that the signal is processed.
783 */
784 spin_unlock_irq(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return -EAGAIN;
786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Oleg Nesterovd3441932010-05-26 14:43:11 -0700788 sig->group_exit_task = tsk;
789 sig->notify_count = zap_other_threads(tsk);
790 if (!thread_group_leader(tsk))
791 sig->notify_count--;
792
793 while (sig->notify_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 __set_current_state(TASK_UNINTERRUPTIBLE);
795 spin_unlock_irq(lock);
796 schedule();
797 spin_lock_irq(lock);
798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 spin_unlock_irq(lock);
800
801 /*
802 * At this point all other threads have exited, all we have to
803 * do is to wait for the thread group leader to become inactive,
804 * and to assume its PID:
805 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700806 if (!thread_group_leader(tsk)) {
Oleg Nesterov81879262008-12-01 14:18:16 -0800807 struct task_struct *leader = tsk->group_leader;
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700808
Oleg Nesterov2800d8d2008-04-30 00:53:12 -0700809 sig->notify_count = -1; /* for exit_notify() */
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700810 for (;;) {
811 write_lock_irq(&tasklist_lock);
812 if (likely(leader->exit_state))
813 break;
814 __set_current_state(TASK_UNINTERRUPTIBLE);
815 write_unlock_irq(&tasklist_lock);
816 schedule();
817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Roland McGrathf5e90282006-04-10 22:54:16 -0700819 /*
820 * The only record we have of the real-time age of a
821 * process, regardless of execs it's done, is start_time.
822 * All the past CPU time is accumulated in signal_struct
823 * from sister threads now dead. But in this non-leader
824 * exec, nothing survives from the original leader thread,
825 * whose birth marks the true age of this process now.
826 * When we take on its identity by switching to its PID, we
827 * also take its birthdate (always earlier than our own).
828 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700829 tsk->start_time = leader->start_time;
Roland McGrathf5e90282006-04-10 22:54:16 -0700830
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -0700831 BUG_ON(!same_thread_group(leader, tsk));
832 BUG_ON(has_group_leader_pid(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 /*
834 * An exec() starts a new thread group with the
835 * TGID of the previous thread group. Rehash the
836 * two threads with a switched PID, and release
837 * the former thread group leader:
838 */
Eric W. Biedermand73d6522006-03-28 16:11:03 -0800839
840 /* Become a process group leader with the old leader's pid.
Eric W. Biedermanc18258c2006-09-27 01:51:06 -0700841 * The old leader becomes a thread of the this thread group.
842 * Note: The old leader also uses this pid until release_task
Eric W. Biedermand73d6522006-03-28 16:11:03 -0800843 * is called. Odd but simple and correct.
844 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700845 detach_pid(tsk, PIDTYPE_PID);
846 tsk->pid = leader->pid;
Sukadev Bhattiprolu3743ca02007-10-18 23:39:51 -0700847 attach_pid(tsk, PIDTYPE_PID, task_pid(leader));
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700848 transfer_pid(leader, tsk, PIDTYPE_PGID);
849 transfer_pid(leader, tsk, PIDTYPE_SID);
Oleg Nesterov9cd80bb2009-12-17 15:27:15 -0800850
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700851 list_replace_rcu(&leader->tasks, &tsk->tasks);
Oleg Nesterov9cd80bb2009-12-17 15:27:15 -0800852 list_replace_init(&leader->sibling, &tsk->sibling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700854 tsk->group_leader = tsk;
855 leader->group_leader = tsk;
Eric W. Biedermande12a782006-04-10 17:16:49 -0600856
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700857 tsk->exit_signal = SIGCHLD;
Oleg Nesterov962b5642005-11-23 13:37:43 -0800858
859 BUG_ON(leader->exit_state != EXIT_ZOMBIE);
860 leader->exit_state = EXIT_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 write_unlock_irq(&tasklist_lock);
Oleg Nesterov81879262008-12-01 14:18:16 -0800862
863 release_task(leader);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -0800864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700866 sig->group_exit_task = NULL;
867 sig->notify_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869no_thread_group:
Jiri Pirko1f102062009-09-22 16:44:10 -0700870 if (current->mm)
871 setmax_mm_hiwater_rss(&sig->maxrss, current->mm);
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 exit_itimers(sig);
Oleg Nesterovcbaffba2008-05-26 20:55:42 +0400874 flush_itimer_signals();
Oleg Nesterov329f7db2005-11-07 21:12:43 +0300875
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700876 if (atomic_read(&oldsighand->count) != 1) {
877 struct sighand_struct *newsighand;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 /*
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700879 * This ->sighand is shared with the CLONE_SIGHAND
880 * but not CLONE_THREAD task, switch to the new one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 */
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700882 newsighand = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
883 if (!newsighand)
884 return -ENOMEM;
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 atomic_set(&newsighand->count, 1);
887 memcpy(newsighand->action, oldsighand->action,
888 sizeof(newsighand->action));
889
890 write_lock_irq(&tasklist_lock);
891 spin_lock(&oldsighand->siglock);
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700892 rcu_assign_pointer(tsk->sighand, newsighand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 spin_unlock(&oldsighand->siglock);
894 write_unlock_irq(&tasklist_lock);
895
Davide Libenzifba2afa2007-05-10 22:23:13 -0700896 __cleanup_sighand(oldsighand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700899 BUG_ON(!thread_group_leader(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return 0;
901}
Oleg Nesterov0840a902007-10-16 23:27:22 -0700902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/*
904 * These functions flushes out all traces of the currently running executable
905 * so that a new one can be started
906 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800907static void flush_old_files(struct files_struct * files)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
909 long j = -1;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700910 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 spin_lock(&files->file_lock);
913 for (;;) {
914 unsigned long set, i;
915
916 j++;
917 i = j * __NFDBITS;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700918 fdt = files_fdtable(files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800919 if (i >= fdt->max_fds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 break;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700921 set = fdt->close_on_exec->fds_bits[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (!set)
923 continue;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700924 fdt->close_on_exec->fds_bits[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 spin_unlock(&files->file_lock);
926 for ( ; set ; i++,set >>= 1) {
927 if (set & 1) {
928 sys_close(i);
929 }
930 }
931 spin_lock(&files->file_lock);
932
933 }
934 spin_unlock(&files->file_lock);
935}
936
Andrew Morton59714d62008-02-04 22:27:21 -0800937char *get_task_comm(char *buf, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
939 /* buf must be at least sizeof(tsk->comm) in size */
940 task_lock(tsk);
941 strncpy(buf, tsk->comm, sizeof(tsk->comm));
942 task_unlock(tsk);
Andrew Morton59714d62008-02-04 22:27:21 -0800943 return buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
946void set_task_comm(struct task_struct *tsk, char *buf)
947{
948 task_lock(tsk);
john stultz4614a696b2009-12-14 18:00:05 -0800949
950 /*
951 * Threads may access current->comm without holding
952 * the task lock, so write the string carefully.
953 * Readers without a lock may see incomplete new
954 * names but are safe from non-terminating string reads.
955 */
956 memset(tsk->comm, 0, TASK_COMM_LEN);
957 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 strlcpy(tsk->comm, buf, sizeof(tsk->comm));
959 task_unlock(tsk);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200960 perf_event_comm(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
963int flush_old_exec(struct linux_binprm * bprm)
964{
Linus Torvalds221af7f2010-01-28 22:14:42 -0800965 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 /*
968 * Make sure we have a private signal table and that
969 * we are unassociated from the previous thread group.
970 */
971 retval = de_thread(current);
972 if (retval)
973 goto out;
974
Matt Helsley925d1c42008-04-29 01:01:36 -0700975 set_mm_exe_file(bprm->mm, bprm->file);
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 * Release all of the old mmap stuff
979 */
980 retval = exec_mmap(bprm->mm);
981 if (retval)
Al Virofd8328b2008-04-22 05:11:59 -0400982 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 bprm->mm = NULL; /* We're using it now */
Linus Torvalds7ab02af2010-02-02 12:37:44 -0800985
986 current->flags &= ~PF_RANDOMIZE;
987 flush_thread();
988 current->personality &= ~bprm->per_clear;
989
Linus Torvalds221af7f2010-01-28 22:14:42 -0800990 return 0;
991
992out:
993 return retval;
994}
995EXPORT_SYMBOL(flush_old_exec);
996
997void setup_new_exec(struct linux_binprm * bprm)
998{
999 int i, ch;
1000 char * name;
1001 char tcomm[sizeof(current->comm)];
1002
1003 arch_pick_mmap_layout(current->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 /* This is the point of no return */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 current->sas_ss_sp = current->sas_ss_size = 0;
1007
David Howellsda9592e2008-11-14 10:39:05 +11001008 if (current_euid() == current_uid() && current_egid() == current_gid())
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001009 set_dumpable(current->mm, 1);
Alan Coxd6e71142005-06-23 00:09:43 -07001010 else
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001011 set_dumpable(current->mm, suid_dumpable);
Alan Coxd6e71142005-06-23 00:09:43 -07001012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 name = bprm->filename;
Paolo 'Blaisorblade' Giarrusso36772092005-05-05 16:16:12 -07001014
1015 /* Copies the binary name from after last slash */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 for (i=0; (ch = *(name++)) != '\0';) {
1017 if (ch == '/')
Paolo 'Blaisorblade' Giarrusso36772092005-05-05 16:16:12 -07001018 i = 0; /* overwrite what we wrote */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 else
1020 if (i < (sizeof(tcomm) - 1))
1021 tcomm[i++] = ch;
1022 }
1023 tcomm[i] = '\0';
1024 set_task_comm(current, tcomm);
1025
Benjamin Herrenschmidt0551fbd2006-02-28 16:59:19 -08001026 /* Set the new mm task size. We have to do that late because it may
1027 * depend on TIF_32BIT which is only updated in flush_thread() on
1028 * some architectures like powerpc
1029 */
1030 current->mm->task_size = TASK_SIZE;
1031
David Howellsa6f76f22008-11-14 10:39:24 +11001032 /* install the new credentials */
1033 if (bprm->cred->uid != current_euid() ||
1034 bprm->cred->gid != current_egid()) {
Marcel Holtmannd2d56c52007-08-17 21:47:58 +02001035 current->pdeath_signal = 0;
1036 } else if (file_permission(bprm->file, MAY_READ) ||
David Howellsa6f76f22008-11-14 10:39:24 +11001037 bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP) {
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001038 set_dumpable(current->mm, suid_dumpable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040
Ingo Molnarf65cb452008-12-16 13:40:44 +01001041 /*
1042 * Flush performance counters when crossing a
1043 * security domain:
1044 */
1045 if (!get_dumpable(current->mm))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001046 perf_event_exit_task(current);
Ingo Molnarf65cb452008-12-16 13:40:44 +01001047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 /* An exec changes our domain. We are no longer part of the thread
1049 group */
1050
1051 current->self_exec_id++;
1052
1053 flush_signal_handlers(current, 0);
1054 flush_old_files(current->files);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
Linus Torvalds221af7f2010-01-28 22:14:42 -08001056EXPORT_SYMBOL(setup_new_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
David Howellsa6f76f22008-11-14 10:39:24 +11001058/*
Oleg Nesterova2a84742009-09-05 11:17:13 -07001059 * Prepare credentials and lock ->cred_guard_mutex.
1060 * install_exec_creds() commits the new creds and drops the lock.
1061 * Or, if exec fails before, free_bprm() should release ->cred and
1062 * and unlock.
1063 */
1064int prepare_bprm_creds(struct linux_binprm *bprm)
1065{
1066 if (mutex_lock_interruptible(&current->cred_guard_mutex))
1067 return -ERESTARTNOINTR;
1068
1069 bprm->cred = prepare_exec_creds();
1070 if (likely(bprm->cred))
1071 return 0;
1072
1073 mutex_unlock(&current->cred_guard_mutex);
1074 return -ENOMEM;
1075}
1076
1077void free_bprm(struct linux_binprm *bprm)
1078{
1079 free_arg_pages(bprm);
1080 if (bprm->cred) {
1081 mutex_unlock(&current->cred_guard_mutex);
1082 abort_creds(bprm->cred);
1083 }
1084 kfree(bprm);
1085}
1086
1087/*
David Howellsa6f76f22008-11-14 10:39:24 +11001088 * install the new credentials for this executable
1089 */
1090void install_exec_creds(struct linux_binprm *bprm)
1091{
1092 security_bprm_committing_creds(bprm);
1093
1094 commit_creds(bprm->cred);
1095 bprm->cred = NULL;
Oleg Nesterova2a84742009-09-05 11:17:13 -07001096 /*
1097 * cred_guard_mutex must be held at least to this point to prevent
David Howellsa6f76f22008-11-14 10:39:24 +11001098 * ptrace_attach() from altering our determination of the task's
Oleg Nesterova2a84742009-09-05 11:17:13 -07001099 * credentials; any time after this it may be unlocked.
1100 */
David Howellsa6f76f22008-11-14 10:39:24 +11001101 security_bprm_committed_creds(bprm);
Oleg Nesterova2a84742009-09-05 11:17:13 -07001102 mutex_unlock(&current->cred_guard_mutex);
David Howellsa6f76f22008-11-14 10:39:24 +11001103}
1104EXPORT_SYMBOL(install_exec_creds);
1105
1106/*
1107 * determine how safe it is to execute the proposed program
David Howells5e751e92009-05-08 13:55:22 +01001108 * - the caller must hold current->cred_guard_mutex to protect against
David Howellsa6f76f22008-11-14 10:39:24 +11001109 * PTRACE_ATTACH
1110 */
Al Viro498052b2009-03-30 07:20:30 -04001111int check_unsafe_exec(struct linux_binprm *bprm)
David Howellsa6f76f22008-11-14 10:39:24 +11001112{
David Howells0bf2f3a2009-02-06 11:45:46 +00001113 struct task_struct *p = current, *t;
Al Virof1191b52009-03-30 07:35:18 -04001114 unsigned n_fs;
Al Viro498052b2009-03-30 07:20:30 -04001115 int res = 0;
David Howellsa6f76f22008-11-14 10:39:24 +11001116
1117 bprm->unsafe = tracehook_unsafe_exec(p);
1118
David Howells0bf2f3a2009-02-06 11:45:46 +00001119 n_fs = 1;
Al Viro498052b2009-03-30 07:20:30 -04001120 write_lock(&p->fs->lock);
Oleg Nesterov437f7fd2009-04-24 01:02:45 +02001121 rcu_read_lock();
David Howells0bf2f3a2009-02-06 11:45:46 +00001122 for (t = next_thread(p); t != p; t = next_thread(t)) {
1123 if (t->fs == p->fs)
1124 n_fs++;
David Howells0bf2f3a2009-02-06 11:45:46 +00001125 }
Oleg Nesterov437f7fd2009-04-24 01:02:45 +02001126 rcu_read_unlock();
David Howells0bf2f3a2009-02-06 11:45:46 +00001127
Al Virof1191b52009-03-30 07:35:18 -04001128 if (p->fs->users > n_fs) {
David Howellsa6f76f22008-11-14 10:39:24 +11001129 bprm->unsafe |= LSM_UNSAFE_SHARE;
Al Viro498052b2009-03-30 07:20:30 -04001130 } else {
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001131 res = -EAGAIN;
1132 if (!p->fs->in_exec) {
1133 p->fs->in_exec = 1;
1134 res = 1;
1135 }
Al Viro498052b2009-03-30 07:20:30 -04001136 }
Al Viro498052b2009-03-30 07:20:30 -04001137 write_unlock(&p->fs->lock);
1138
1139 return res;
David Howellsa6f76f22008-11-14 10:39:24 +11001140}
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142/*
1143 * Fill the binprm structure from the inode.
1144 * Check permissions, then read the first 128 (BINPRM_BUF_SIZE) bytes
David Howellsa6f76f22008-11-14 10:39:24 +11001145 *
1146 * This may be called multiple times for binary chains (scripts for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 */
1148int prepare_binprm(struct linux_binprm *bprm)
1149{
David Howellsa6f76f22008-11-14 10:39:24 +11001150 umode_t mode;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001151 struct inode * inode = bprm->file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 int retval;
1153
1154 mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (bprm->file->f_op == NULL)
1156 return -EACCES;
1157
David Howellsa6f76f22008-11-14 10:39:24 +11001158 /* clear any previous set[ug]id data from a previous binary */
1159 bprm->cred->euid = current_euid();
1160 bprm->cred->egid = current_egid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
David Howellsa6f76f22008-11-14 10:39:24 +11001162 if (!(bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 /* Set-uid? */
1164 if (mode & S_ISUID) {
David Howellsa6f76f22008-11-14 10:39:24 +11001165 bprm->per_clear |= PER_CLEAR_ON_SETID;
1166 bprm->cred->euid = inode->i_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
1168
1169 /* Set-gid? */
1170 /*
1171 * If setgid is set but no group execute bit then this
1172 * is a candidate for mandatory locking, not a setgid
1173 * executable.
1174 */
1175 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) {
David Howellsa6f76f22008-11-14 10:39:24 +11001176 bprm->per_clear |= PER_CLEAR_ON_SETID;
1177 bprm->cred->egid = inode->i_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179 }
1180
1181 /* fill in binprm security blob */
David Howellsa6f76f22008-11-14 10:39:24 +11001182 retval = security_bprm_set_creds(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (retval)
1184 return retval;
David Howellsa6f76f22008-11-14 10:39:24 +11001185 bprm->cred_prepared = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
David Howellsa6f76f22008-11-14 10:39:24 +11001187 memset(bprm->buf, 0, BINPRM_BUF_SIZE);
1188 return kernel_read(bprm->file, 0, bprm->buf, BINPRM_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
1191EXPORT_SYMBOL(prepare_binprm);
1192
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001193/*
1194 * Arguments are '\0' separated strings found at the location bprm->p
1195 * points to; chop off the first by relocating brpm->p to right after
1196 * the first '\0' encountered.
1197 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001198int remove_arg_zero(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001200 int ret = 0;
1201 unsigned long offset;
1202 char *kaddr;
1203 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001205 if (!bprm->argc)
1206 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001208 do {
1209 offset = bprm->p & ~PAGE_MASK;
1210 page = get_arg_page(bprm, bprm->p, 0);
1211 if (!page) {
1212 ret = -EFAULT;
1213 goto out;
1214 }
1215 kaddr = kmap_atomic(page, KM_USER0);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001216
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001217 for (; offset < PAGE_SIZE && kaddr[offset];
1218 offset++, bprm->p++)
1219 ;
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001220
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001221 kunmap_atomic(kaddr, KM_USER0);
1222 put_arg_page(page);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001223
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001224 if (offset == PAGE_SIZE)
1225 free_arg_page(bprm, (bprm->p >> PAGE_SHIFT) - 1);
1226 } while (offset == PAGE_SIZE);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001227
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001228 bprm->p++;
1229 bprm->argc--;
1230 ret = 0;
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001231
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001232out:
1233 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235EXPORT_SYMBOL(remove_arg_zero);
1236
1237/*
1238 * cycle the list of binary formats handler, until one recognizes the image
1239 */
1240int search_binary_handler(struct linux_binprm *bprm,struct pt_regs *regs)
1241{
Roland McGrath85f33462008-12-09 19:36:38 -08001242 unsigned int depth = bprm->recursion_depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 int try,retval;
1244 struct linux_binfmt *fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 retval = security_bprm_check(bprm);
1247 if (retval)
1248 return retval;
1249
1250 /* kernel module loader fixup */
1251 /* so we don't try to load run modprobe in kernel space. */
1252 set_fs(USER_DS);
Al Viro473ae302006-04-26 14:04:08 -04001253
1254 retval = audit_bprm(bprm);
1255 if (retval)
1256 return retval;
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 retval = -ENOENT;
1259 for (try=0; try<2; try++) {
1260 read_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -07001261 list_for_each_entry(fmt, &formats, lh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 int (*fn)(struct linux_binprm *, struct pt_regs *) = fmt->load_binary;
1263 if (!fn)
1264 continue;
1265 if (!try_module_get(fmt->module))
1266 continue;
1267 read_unlock(&binfmt_lock);
1268 retval = fn(bprm, regs);
Roland McGrath85f33462008-12-09 19:36:38 -08001269 /*
1270 * Restore the depth counter to its starting value
1271 * in this call, so we don't have to rely on every
1272 * load_binary function to restore it on return.
1273 */
1274 bprm->recursion_depth = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (retval >= 0) {
Roland McGrath85f33462008-12-09 19:36:38 -08001276 if (depth == 0)
1277 tracehook_report_exec(fmt, bprm, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 put_binfmt(fmt);
1279 allow_write_access(bprm->file);
1280 if (bprm->file)
1281 fput(bprm->file);
1282 bprm->file = NULL;
1283 current->did_exec = 1;
Matt Helsley9f460802005-11-07 00:59:16 -08001284 proc_exec_connector(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return retval;
1286 }
1287 read_lock(&binfmt_lock);
1288 put_binfmt(fmt);
1289 if (retval != -ENOEXEC || bprm->mm == NULL)
1290 break;
1291 if (!bprm->file) {
1292 read_unlock(&binfmt_lock);
1293 return retval;
1294 }
1295 }
1296 read_unlock(&binfmt_lock);
1297 if (retval != -ENOEXEC || bprm->mm == NULL) {
1298 break;
Johannes Berg5f4123b2008-07-09 10:28:40 +02001299#ifdef CONFIG_MODULES
1300 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301#define printable(c) (((c)=='\t') || ((c)=='\n') || (0x20<=(c) && (c)<=0x7e))
1302 if (printable(bprm->buf[0]) &&
1303 printable(bprm->buf[1]) &&
1304 printable(bprm->buf[2]) &&
1305 printable(bprm->buf[3]))
1306 break; /* -ENOEXEC */
1307 request_module("binfmt-%04x", *(unsigned short *)(&bprm->buf[2]));
1308#endif
1309 }
1310 }
1311 return retval;
1312}
1313
1314EXPORT_SYMBOL(search_binary_handler);
1315
1316/*
1317 * sys_execve() executes a new program.
1318 */
1319int do_execve(char * filename,
1320 char __user *__user *argv,
1321 char __user *__user *envp,
1322 struct pt_regs * regs)
1323{
1324 struct linux_binprm *bprm;
1325 struct file *file;
Al Viro3b125382008-04-22 05:31:30 -04001326 struct files_struct *displaced;
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001327 bool clear_in_exec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Al Viro3b125382008-04-22 05:31:30 -04001330 retval = unshare_files(&displaced);
Al Virofd8328b2008-04-22 05:11:59 -04001331 if (retval)
1332 goto out_ret;
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 retval = -ENOMEM;
Oliver Neukum11b0b5a2006-03-25 03:08:13 -08001335 bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (!bprm)
Al Virofd8328b2008-04-22 05:11:59 -04001337 goto out_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Oleg Nesterova2a84742009-09-05 11:17:13 -07001339 retval = prepare_bprm_creds(bprm);
1340 if (retval)
David Howellsa6f76f22008-11-14 10:39:24 +11001341 goto out_free;
Al Viro498052b2009-03-30 07:20:30 -04001342
1343 retval = check_unsafe_exec(bprm);
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001344 if (retval < 0)
Oleg Nesterova2a84742009-09-05 11:17:13 -07001345 goto out_free;
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001346 clear_in_exec = retval;
Oleg Nesterova2a84742009-09-05 11:17:13 -07001347 current->in_execve = 1;
David Howellsa6f76f22008-11-14 10:39:24 +11001348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 file = open_exec(filename);
1350 retval = PTR_ERR(file);
1351 if (IS_ERR(file))
Al Viro498052b2009-03-30 07:20:30 -04001352 goto out_unmark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 sched_exec();
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 bprm->file = file;
1357 bprm->filename = filename;
1358 bprm->interp = filename;
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001359
1360 retval = bprm_mm_init(bprm);
1361 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 goto out_file;
1363
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001364 bprm->argc = count(argv, MAX_ARG_STRINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 if ((retval = bprm->argc) < 0)
David Howellsa6f76f22008-11-14 10:39:24 +11001366 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001368 bprm->envc = count(envp, MAX_ARG_STRINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 if ((retval = bprm->envc) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 goto out;
1371
1372 retval = prepare_binprm(bprm);
1373 if (retval < 0)
1374 goto out;
1375
1376 retval = copy_strings_kernel(1, &bprm->filename, bprm);
1377 if (retval < 0)
1378 goto out;
1379
1380 bprm->exec = bprm->p;
1381 retval = copy_strings(bprm->envc, envp, bprm);
1382 if (retval < 0)
1383 goto out;
1384
1385 retval = copy_strings(bprm->argc, argv, bprm);
1386 if (retval < 0)
1387 goto out;
1388
Oleg Nesterov7b34e422008-07-25 01:47:37 -07001389 current->flags &= ~PF_KTHREAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 retval = search_binary_handler(bprm,regs);
David Howellsa6f76f22008-11-14 10:39:24 +11001391 if (retval < 0)
1392 goto out;
1393
1394 /* execve succeeded */
Al Viro498052b2009-03-30 07:20:30 -04001395 current->fs->in_exec = 0;
Kentaro Takedaf9ce1f12009-02-05 17:18:11 +09001396 current->in_execve = 0;
David Howellsa6f76f22008-11-14 10:39:24 +11001397 acct_update_integrals(current);
1398 free_bprm(bprm);
1399 if (displaced)
1400 put_files_struct(displaced);
1401 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 if (bprm->mm)
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001405 mmput (bprm->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407out_file:
1408 if (bprm->file) {
1409 allow_write_access(bprm->file);
1410 fput(bprm->file);
1411 }
David Howellsa6f76f22008-11-14 10:39:24 +11001412
Al Viro498052b2009-03-30 07:20:30 -04001413out_unmark:
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001414 if (clear_in_exec)
1415 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
1418out_free:
Al Viro08a6fac2008-05-10 16:38:25 -04001419 free_bprm(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Al Virofd8328b2008-04-22 05:11:59 -04001421out_files:
Al Viro3b125382008-04-22 05:31:30 -04001422 if (displaced)
1423 reset_files_struct(displaced);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424out_ret:
1425 return retval;
1426}
1427
Oleg Nesterov964ee7d2009-09-23 15:56:59 -07001428void set_binfmt(struct linux_binfmt *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -07001430 struct mm_struct *mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -07001432 if (mm->binfmt)
1433 module_put(mm->binfmt->module);
1434
1435 mm->binfmt = new;
Oleg Nesterov964ee7d2009-09-23 15:56:59 -07001436 if (new)
1437 __module_get(new->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438}
1439
1440EXPORT_SYMBOL(set_binfmt);
1441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442/* format_corename will inspect the pattern parameter, and output a
1443 * name into corename, which must have space for at least
1444 * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
1445 */
Oleg Nesterov64093242008-10-18 20:28:22 -07001446static int format_corename(char *corename, long signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
David Howells86a264a2008-11-14 10:39:18 +11001448 const struct cred *cred = current_cred();
Oleg Nesterov565b9b12008-07-25 01:47:47 -07001449 const char *pat_ptr = core_pattern;
1450 int ispipe = (*pat_ptr == '|');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 char *out_ptr = corename;
1452 char *const out_end = corename + CORENAME_MAX_SIZE;
1453 int rc;
1454 int pid_in_pattern = 0;
1455
1456 /* Repeat as long as we have more pattern to process and more output
1457 space */
1458 while (*pat_ptr) {
1459 if (*pat_ptr != '%') {
1460 if (out_ptr == out_end)
1461 goto out;
1462 *out_ptr++ = *pat_ptr++;
1463 } else {
1464 switch (*++pat_ptr) {
1465 case 0:
1466 goto out;
1467 /* Double percent, output one percent */
1468 case '%':
1469 if (out_ptr == out_end)
1470 goto out;
1471 *out_ptr++ = '%';
1472 break;
1473 /* pid */
1474 case 'p':
1475 pid_in_pattern = 1;
1476 rc = snprintf(out_ptr, out_end - out_ptr,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001477 "%d", task_tgid_vnr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (rc > out_end - out_ptr)
1479 goto out;
1480 out_ptr += rc;
1481 break;
1482 /* uid */
1483 case 'u':
1484 rc = snprintf(out_ptr, out_end - out_ptr,
David Howells86a264a2008-11-14 10:39:18 +11001485 "%d", cred->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (rc > out_end - out_ptr)
1487 goto out;
1488 out_ptr += rc;
1489 break;
1490 /* gid */
1491 case 'g':
1492 rc = snprintf(out_ptr, out_end - out_ptr,
David Howells86a264a2008-11-14 10:39:18 +11001493 "%d", cred->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 if (rc > out_end - out_ptr)
1495 goto out;
1496 out_ptr += rc;
1497 break;
1498 /* signal that caused the coredump */
1499 case 's':
1500 rc = snprintf(out_ptr, out_end - out_ptr,
1501 "%ld", signr);
1502 if (rc > out_end - out_ptr)
1503 goto out;
1504 out_ptr += rc;
1505 break;
1506 /* UNIX time of coredump */
1507 case 't': {
1508 struct timeval tv;
1509 do_gettimeofday(&tv);
1510 rc = snprintf(out_ptr, out_end - out_ptr,
1511 "%lu", tv.tv_sec);
1512 if (rc > out_end - out_ptr)
1513 goto out;
1514 out_ptr += rc;
1515 break;
1516 }
1517 /* hostname */
1518 case 'h':
1519 down_read(&uts_sem);
1520 rc = snprintf(out_ptr, out_end - out_ptr,
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001521 "%s", utsname()->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 up_read(&uts_sem);
1523 if (rc > out_end - out_ptr)
1524 goto out;
1525 out_ptr += rc;
1526 break;
1527 /* executable */
1528 case 'e':
1529 rc = snprintf(out_ptr, out_end - out_ptr,
1530 "%s", current->comm);
1531 if (rc > out_end - out_ptr)
1532 goto out;
1533 out_ptr += rc;
1534 break;
Neil Horman74aadce2007-10-16 23:26:35 -07001535 /* core limit size */
1536 case 'c':
1537 rc = snprintf(out_ptr, out_end - out_ptr,
Jiri Slabyd554ed892010-03-05 13:42:42 -08001538 "%lu", rlimit(RLIMIT_CORE));
Neil Horman74aadce2007-10-16 23:26:35 -07001539 if (rc > out_end - out_ptr)
1540 goto out;
1541 out_ptr += rc;
1542 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 default:
1544 break;
1545 }
1546 ++pat_ptr;
1547 }
1548 }
1549 /* Backward compatibility with core_uses_pid:
1550 *
1551 * If core_pattern does not include a %p (as is the default)
1552 * and core_uses_pid is set, then .%pid will be appended to
Alan Coxc4bbafd2007-04-16 22:53:13 -07001553 * the filename. Do not do this for piped commands. */
Oleg Nesterov64093242008-10-18 20:28:22 -07001554 if (!ispipe && !pid_in_pattern && core_uses_pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 rc = snprintf(out_ptr, out_end - out_ptr,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001556 ".%d", task_tgid_vnr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (rc > out_end - out_ptr)
1558 goto out;
1559 out_ptr += rc;
1560 }
Alan Coxc4bbafd2007-04-16 22:53:13 -07001561out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 *out_ptr = 0;
Alan Coxc4bbafd2007-04-16 22:53:13 -07001563 return ispipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565
Oleg Nesterov5c99cbf2010-03-05 13:44:14 -08001566static int zap_process(struct task_struct *start, int exit_code)
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001567{
1568 struct task_struct *t;
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001569 int nr = 0;
Oleg Nesterov281de332006-06-26 00:26:06 -07001570
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001571 start->signal->flags = SIGNAL_GROUP_EXIT;
Oleg Nesterov5c99cbf2010-03-05 13:44:14 -08001572 start->signal->group_exit_code = exit_code;
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001573 start->signal->group_stop_count = 0;
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001574
1575 t = start;
1576 do {
1577 if (t != current && t->mm) {
Oleg Nesterov281de332006-06-26 00:26:06 -07001578 sigaddset(&t->pending.signal, SIGKILL);
1579 signal_wake_up(t, 1);
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001580 nr++;
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001581 }
Oleg Nesterove4901f92008-07-25 01:47:31 -07001582 } while_each_thread(start, t);
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001583
1584 return nr;
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001585}
1586
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001587static inline int zap_threads(struct task_struct *tsk, struct mm_struct *mm,
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001588 struct core_state *core_state, int exit_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
1590 struct task_struct *g, *p;
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001591 unsigned long flags;
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001592 int nr = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001594 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -08001595 if (!signal_group_exit(tsk->signal)) {
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001596 mm->core_state = core_state;
Oleg Nesterov5c99cbf2010-03-05 13:44:14 -08001597 nr = zap_process(tsk, exit_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001599 spin_unlock_irq(&tsk->sighand->siglock);
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001600 if (unlikely(nr < 0))
1601 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001603 if (atomic_read(&mm->mm_users) == nr + 1)
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001604 goto done;
Oleg Nesterove4901f92008-07-25 01:47:31 -07001605 /*
1606 * We should find and kill all tasks which use this mm, and we should
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001607 * count them correctly into ->nr_threads. We don't take tasklist
Oleg Nesterove4901f92008-07-25 01:47:31 -07001608 * lock, but this is safe wrt:
1609 *
1610 * fork:
1611 * None of sub-threads can fork after zap_process(leader). All
1612 * processes which were created before this point should be
1613 * visible to zap_threads() because copy_process() adds the new
1614 * process to the tail of init_task.tasks list, and lock/unlock
1615 * of ->siglock provides a memory barrier.
1616 *
1617 * do_exit:
1618 * The caller holds mm->mmap_sem. This means that the task which
1619 * uses this mm can't pass exit_mm(), so it can't exit or clear
1620 * its ->mm.
1621 *
1622 * de_thread:
1623 * It does list_replace_rcu(&leader->tasks, &current->tasks),
1624 * we must see either old or new leader, this does not matter.
1625 * However, it can change p->sighand, so lock_task_sighand(p)
1626 * must be used. Since p->mm != NULL and we hold ->mmap_sem
1627 * it can't fail.
1628 *
1629 * Note also that "g" can be the old leader with ->mm == NULL
1630 * and already unhashed and thus removed from ->thread_group.
1631 * This is OK, __unhash_process()->list_del_rcu() does not
1632 * clear the ->next pointer, we will find the new leader via
1633 * next_thread().
1634 */
Oleg Nesterov7b1c6152006-06-26 00:26:08 -07001635 rcu_read_lock();
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001636 for_each_process(g) {
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001637 if (g == tsk->group_leader)
1638 continue;
Oleg Nesterov15b9f362008-07-25 01:47:39 -07001639 if (g->flags & PF_KTHREAD)
1640 continue;
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001641 p = g;
1642 do {
1643 if (p->mm) {
Oleg Nesterov15b9f362008-07-25 01:47:39 -07001644 if (unlikely(p->mm == mm)) {
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001645 lock_task_sighand(p, &flags);
Oleg Nesterov5c99cbf2010-03-05 13:44:14 -08001646 nr += zap_process(p, exit_code);
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001647 unlock_task_sighand(p, &flags);
1648 }
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001649 break;
1650 }
Oleg Nesterove4901f92008-07-25 01:47:31 -07001651 } while_each_thread(g, p);
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001652 }
Oleg Nesterov7b1c6152006-06-26 00:26:08 -07001653 rcu_read_unlock();
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001654done:
Oleg Nesterovc5f1cc82008-07-25 01:47:42 -07001655 atomic_set(&core_state->nr_threads, nr);
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001656 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657}
1658
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001659static int coredump_wait(int exit_code, struct core_state *core_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001661 struct task_struct *tsk = current;
1662 struct mm_struct *mm = tsk->mm;
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001663 struct completion *vfork_done;
Oleg Nesterov269b0052010-05-26 14:43:08 -07001664 int core_waiters = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001666 init_completion(&core_state->startup);
Oleg Nesterovb564daf2008-07-25 01:47:44 -07001667 core_state->dumper.task = tsk;
1668 core_state->dumper.next = NULL;
Oleg Nesterov269b0052010-05-26 14:43:08 -07001669
1670 down_write(&mm->mmap_sem);
1671 if (!mm->core_state)
1672 core_waiters = zap_threads(tsk, mm, core_state, exit_code);
Oleg Nesterov2384f552005-10-30 15:02:47 -08001673 up_write(&mm->mmap_sem);
1674
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001675 if (unlikely(core_waiters < 0))
1676 goto fail;
1677
1678 /*
1679 * Make sure nobody is waiting for us to release the VM,
1680 * otherwise we can deadlock when we wait on each other
1681 */
1682 vfork_done = tsk->vfork_done;
1683 if (vfork_done) {
1684 tsk->vfork_done = NULL;
1685 complete(vfork_done);
1686 }
1687
Oleg Nesterov2384f552005-10-30 15:02:47 -08001688 if (core_waiters)
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001689 wait_for_completion(&core_state->startup);
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001690fail:
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001691 return core_waiters;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692}
1693
Oleg Nesterova94e2d42008-07-25 01:47:46 -07001694static void coredump_finish(struct mm_struct *mm)
1695{
1696 struct core_thread *curr, *next;
1697 struct task_struct *task;
1698
1699 next = mm->core_state->dumper.next;
1700 while ((curr = next) != NULL) {
1701 next = curr->next;
1702 task = curr->task;
1703 /*
1704 * see exit_mm(), curr->task must not see
1705 * ->task == NULL before we read ->next.
1706 */
1707 smp_mb();
1708 curr->task = NULL;
1709 wake_up_process(task);
1710 }
1711
1712 mm->core_state = NULL;
1713}
1714
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001715/*
1716 * set_dumpable converts traditional three-value dumpable to two flags and
1717 * stores them into mm->flags. It modifies lower two bits of mm->flags, but
1718 * these bits are not changed atomically. So get_dumpable can observe the
1719 * intermediate state. To avoid doing unexpected behavior, get get_dumpable
1720 * return either old dumpable or new one by paying attention to the order of
1721 * modifying the bits.
1722 *
1723 * dumpable | mm->flags (binary)
1724 * old new | initial interim final
1725 * ---------+-----------------------
1726 * 0 1 | 00 01 01
1727 * 0 2 | 00 10(*) 11
1728 * 1 0 | 01 00 00
1729 * 1 2 | 01 11 11
1730 * 2 0 | 11 10(*) 00
1731 * 2 1 | 11 11 01
1732 *
1733 * (*) get_dumpable regards interim value of 10 as 11.
1734 */
1735void set_dumpable(struct mm_struct *mm, int value)
1736{
1737 switch (value) {
1738 case 0:
1739 clear_bit(MMF_DUMPABLE, &mm->flags);
1740 smp_wmb();
1741 clear_bit(MMF_DUMP_SECURELY, &mm->flags);
1742 break;
1743 case 1:
1744 set_bit(MMF_DUMPABLE, &mm->flags);
1745 smp_wmb();
1746 clear_bit(MMF_DUMP_SECURELY, &mm->flags);
1747 break;
1748 case 2:
1749 set_bit(MMF_DUMP_SECURELY, &mm->flags);
1750 smp_wmb();
1751 set_bit(MMF_DUMPABLE, &mm->flags);
1752 break;
1753 }
1754}
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001755
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001756static int __get_dumpable(unsigned long mm_flags)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001757{
1758 int ret;
1759
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001760 ret = mm_flags & MMF_DUMPABLE_MASK;
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001761 return (ret >= 2) ? 2 : ret;
1762}
1763
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001764int get_dumpable(struct mm_struct *mm)
1765{
1766 return __get_dumpable(mm->flags);
1767}
1768
Neil Horman61be2282009-09-23 15:56:58 -07001769static void wait_for_dump_helpers(struct file *file)
1770{
1771 struct pipe_inode_info *pipe;
1772
1773 pipe = file->f_path.dentry->d_inode->i_pipe;
1774
1775 pipe_lock(pipe);
1776 pipe->readers++;
1777 pipe->writers--;
1778
1779 while ((pipe->readers > 1) && (!signal_pending(current))) {
1780 wake_up_interruptible_sync(&pipe->wait);
1781 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1782 pipe_wait(pipe);
1783 }
1784
1785 pipe->readers--;
1786 pipe->writers++;
1787 pipe_unlock(pipe);
1788
1789}
1790
1791
Neil Horman898b3742010-05-26 14:42:59 -07001792/*
1793 * uhm_pipe_setup
1794 * helper function to customize the process used
1795 * to collect the core in userspace. Specifically
1796 * it sets up a pipe and installs it as fd 0 (stdin)
1797 * for the process. Returns 0 on success, or
1798 * PTR_ERR on failure.
1799 * Note that it also sets the core limit to 1. This
1800 * is a special value that we use to trap recursive
1801 * core dumps
1802 */
1803static int umh_pipe_setup(struct subprocess_info *info)
1804{
1805 struct file *rp, *wp;
1806 struct fdtable *fdt;
1807 struct coredump_params *cp = (struct coredump_params *)info->data;
1808 struct files_struct *cf = current->files;
1809
1810 wp = create_write_pipe(0);
1811 if (IS_ERR(wp))
1812 return PTR_ERR(wp);
1813
1814 rp = create_read_pipe(wp, 0);
1815 if (IS_ERR(rp)) {
1816 free_write_pipe(wp);
1817 return PTR_ERR(rp);
1818 }
1819
1820 cp->file = wp;
1821
1822 sys_close(0);
1823 fd_install(0, rp);
1824 spin_lock(&cf->file_lock);
1825 fdt = files_fdtable(cf);
1826 FD_SET(0, fdt->open_fds);
1827 FD_CLR(0, fdt->close_on_exec);
1828 spin_unlock(&cf->file_lock);
1829
1830 /* and disallow core files too */
1831 current->signal->rlim[RLIMIT_CORE] = (struct rlimit){1, 1};
1832
1833 return 0;
1834}
1835
WANG Cong8cd3ac32009-01-06 14:42:48 -08001836void do_coredump(long signr, int exit_code, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001838 struct core_state core_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 char corename[CORENAME_MAX_SIZE + 1];
1840 struct mm_struct *mm = current->mm;
1841 struct linux_binfmt * binfmt;
David Howellsd84f4f92008-11-14 10:39:23 +11001842 const struct cred *old_cred;
1843 struct cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 int retval = 0;
Alan Coxd6e71142005-06-23 00:09:43 -07001845 int flag = 0;
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001846 int ispipe;
Neil Hormana2939802009-09-23 15:56:56 -07001847 static atomic_t core_dump_count = ATOMIC_INIT(0);
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001848 struct coredump_params cprm = {
1849 .signr = signr,
1850 .regs = regs,
Jiri Slabyd554ed892010-03-05 13:42:42 -08001851 .limit = rlimit(RLIMIT_CORE),
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001852 /*
1853 * We must use the same mm->flags while dumping core to avoid
1854 * inconsistency of bit flags, since this flag is not protected
1855 * by any locks.
1856 */
1857 .mm_flags = mm->flags,
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001858 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04001860 audit_core_dumps(signr);
1861
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -07001862 binfmt = mm->binfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 if (!binfmt || !binfmt->core_dump)
1864 goto fail;
Oleg Nesterov269b0052010-05-26 14:43:08 -07001865 if (!__get_dumpable(cprm.mm_flags))
1866 goto fail;
David Howellsd84f4f92008-11-14 10:39:23 +11001867
1868 cred = prepare_creds();
Oleg Nesterov5e43aef52010-05-26 14:43:07 -07001869 if (!cred)
David Howellsd84f4f92008-11-14 10:39:23 +11001870 goto fail;
Alan Coxd6e71142005-06-23 00:09:43 -07001871 /*
1872 * We cannot trust fsuid as being the "true" uid of the
1873 * process nor do we know its entire history. We only know it
1874 * was tainted so we dump it as root in mode 2.
1875 */
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001876 if (__get_dumpable(cprm.mm_flags) == 2) {
1877 /* Setuid core dump mode */
Alan Coxd6e71142005-06-23 00:09:43 -07001878 flag = O_EXCL; /* Stop rewrite attacks */
David Howellsd84f4f92008-11-14 10:39:23 +11001879 cred->fsuid = 0; /* Dump root private */
Alan Coxd6e71142005-06-23 00:09:43 -07001880 }
Oleg Nesterov1291cf42005-10-30 15:02:54 -08001881
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001882 retval = coredump_wait(exit_code, &core_state);
Oleg Nesterov5e43aef52010-05-26 14:43:07 -07001883 if (retval < 0)
1884 goto fail_creds;
David Howellsd84f4f92008-11-14 10:39:23 +11001885
1886 old_cred = override_creds(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
1888 /*
1889 * Clear any false indication of pending signals that might
1890 * be seen by the filesystem code called to write the core file.
1891 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 clear_thread_flag(TIF_SIGPENDING);
1893
Oleg Nesterov64093242008-10-18 20:28:22 -07001894 ispipe = format_corename(corename, signr);
Neil Horman725eae32009-09-23 15:56:54 -07001895
Alan Coxc4bbafd2007-04-16 22:53:13 -07001896 if (ispipe) {
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001897 int dump_count;
1898 char **helper_argv;
1899
Neil Horman898b3742010-05-26 14:42:59 -07001900 if (cprm.limit == 1) {
Neil Horman725eae32009-09-23 15:56:54 -07001901 /*
1902 * Normally core limits are irrelevant to pipes, since
1903 * we're not writing to the file system, but we use
Neil Horman898b3742010-05-26 14:42:59 -07001904 * cprm.limit of 1 here as a speacial value. Any
1905 * non-1 limit gets set to RLIM_INFINITY below, but
Neil Horman725eae32009-09-23 15:56:54 -07001906 * a limit of 0 skips the dump. This is a consistent
1907 * way to catch recursive crashes. We can still crash
Neil Horman898b3742010-05-26 14:42:59 -07001908 * if the core_pattern binary sets RLIM_CORE = !1
Neil Horman725eae32009-09-23 15:56:54 -07001909 * but it runs as root, and can do lots of stupid things
1910 * Note that we use task_tgid_vnr here to grab the pid
1911 * of the process group leader. That way we get the
1912 * right pid if a thread in a multi-threaded
1913 * core_pattern process dies.
1914 */
1915 printk(KERN_WARNING
Neil Horman898b3742010-05-26 14:42:59 -07001916 "Process %d(%s) has RLIMIT_CORE set to 1\n",
Neil Horman725eae32009-09-23 15:56:54 -07001917 task_tgid_vnr(current), current->comm);
1918 printk(KERN_WARNING "Aborting core\n");
1919 goto fail_unlock;
1920 }
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001921 cprm.limit = RLIM_INFINITY;
Neil Horman725eae32009-09-23 15:56:54 -07001922
Neil Hormana2939802009-09-23 15:56:56 -07001923 dump_count = atomic_inc_return(&core_dump_count);
1924 if (core_pipe_limit && (core_pipe_limit < dump_count)) {
1925 printk(KERN_WARNING "Pid %d(%s) over core_pipe_limit\n",
1926 task_tgid_vnr(current), current->comm);
1927 printk(KERN_WARNING "Skipping core dump\n");
1928 goto fail_dropcount;
1929 }
1930
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001931 helper_argv = argv_split(GFP_KERNEL, corename+1, NULL);
Tetsuo Handa350eaf72009-01-06 14:41:11 -08001932 if (!helper_argv) {
1933 printk(KERN_WARNING "%s failed to allocate memory\n",
1934 __func__);
Neil Hormana2939802009-09-23 15:56:56 -07001935 goto fail_dropcount;
Tetsuo Handa350eaf72009-01-06 14:41:11 -08001936 }
Neil Horman32321132007-10-16 23:26:36 -07001937
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001938 retval = call_usermodehelper_fns(helper_argv[0], helper_argv,
1939 NULL, UMH_WAIT_EXEC, umh_pipe_setup,
1940 NULL, &cprm);
1941 argv_free(helper_argv);
1942 if (retval) {
Andi Kleend025c9d2006-09-30 23:29:28 -07001943 printk(KERN_INFO "Core dump to %s pipe failed\n",
1944 corename);
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001945 goto close_fail;
Andi Kleend025c9d2006-09-30 23:29:28 -07001946 }
Oleg Nesterovc7135412010-05-26 14:43:05 -07001947 } else {
1948 struct inode *inode;
1949
1950 if (cprm.limit < binfmt->min_coredump)
1951 goto fail_unlock;
1952
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001953 cprm.file = filp_open(corename,
Alexey Dobriyan6d4df672006-12-06 20:40:39 -08001954 O_CREAT | 2 | O_NOFOLLOW | O_LARGEFILE | flag,
1955 0600);
Oleg Nesterovc7135412010-05-26 14:43:05 -07001956 if (IS_ERR(cprm.file))
1957 goto fail_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Oleg Nesterovc7135412010-05-26 14:43:05 -07001959 inode = cprm.file->f_path.dentry->d_inode;
1960 if (inode->i_nlink > 1)
1961 goto close_fail;
1962 if (d_unhashed(cprm.file->f_path.dentry))
1963 goto close_fail;
1964 /*
1965 * AK: actually i see no reason to not allow this for named
1966 * pipes etc, but keep the previous behaviour for now.
1967 */
1968 if (!S_ISREG(inode->i_mode))
1969 goto close_fail;
1970 /*
1971 * Dont allow local users get cute and trick others to coredump
1972 * into their pre-created files.
1973 */
1974 if (inode->i_uid != current_fsuid())
1975 goto close_fail;
1976 if (!cprm.file->f_op || !cprm.file->f_op->write)
1977 goto close_fail;
1978 if (do_truncate(cprm.file->f_path.dentry, 0, 0, cprm.file))
1979 goto close_fail;
1980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001982 retval = binfmt->core_dump(&cprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 if (retval)
1984 current->signal->group_exit_code |= 0x80;
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001985
Neil Horman61be2282009-09-23 15:56:58 -07001986 if (ispipe && core_pipe_limit)
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08001987 wait_for_dump_helpers(cprm.file);
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001988close_fail:
1989 if (cprm.file)
1990 filp_close(cprm.file, NULL);
Neil Hormana2939802009-09-23 15:56:56 -07001991fail_dropcount:
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07001992 if (ispipe)
Neil Hormana2939802009-09-23 15:56:56 -07001993 atomic_dec(&core_dump_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994fail_unlock:
Oleg Nesterova94e2d42008-07-25 01:47:46 -07001995 coredump_finish(mm);
Oleg Nesterov5e43aef52010-05-26 14:43:07 -07001996 revert_creds(old_cred);
1997fail_creds:
1998 put_cred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999fail:
WANG Cong8cd3ac32009-01-06 14:42:48 -08002000 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001}