]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/exec.c
include/linux/unaligned/{l,b}e_byteshift.h: fix usage for compressed kernels
[net-next-2.6.git] / fs / exec.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
25#include <linux/slab.h>
26#include <linux/file.h>
9f3acc31 27#include <linux/fdtable.h>
ba92a43d 28#include <linux/mm.h>
1da177e4
LT
29#include <linux/stat.h>
30#include <linux/fcntl.h>
31#include <linux/smp_lock.h>
ba92a43d 32#include <linux/swap.h>
74aadce9 33#include <linux/string.h>
1da177e4 34#include <linux/init.h>
ca5b172b 35#include <linux/pagemap.h>
cdd6c482 36#include <linux/perf_event.h>
1da177e4
LT
37#include <linux/highmem.h>
38#include <linux/spinlock.h>
39#include <linux/key.h>
40#include <linux/personality.h>
41#include <linux/binfmts.h>
1da177e4 42#include <linux/utsname.h>
84d73786 43#include <linux/pid_namespace.h>
1da177e4
LT
44#include <linux/module.h>
45#include <linux/namei.h>
46#include <linux/proc_fs.h>
1da177e4
LT
47#include <linux/mount.h>
48#include <linux/security.h>
6146f0d5 49#include <linux/ima.h>
1da177e4 50#include <linux/syscalls.h>
8f0ab514 51#include <linux/tsacct_kern.h>
9f46080c 52#include <linux/cn_proc.h>
473ae30b 53#include <linux/audit.h>
6341c393 54#include <linux/tracehook.h>
5f4123be 55#include <linux/kmod.h>
6110e3ab 56#include <linux/fsnotify.h>
5ad4e53b 57#include <linux/fs_struct.h>
61be228a 58#include <linux/pipe_fs_i.h>
1da177e4
LT
59
60#include <asm/uaccess.h>
61#include <asm/mmu_context.h>
b6a2fea3 62#include <asm/tlb.h>
a6f76f23 63#include "internal.h"
1da177e4 64
1da177e4 65int core_uses_pid;
71ce92f3 66char core_pattern[CORENAME_MAX_SIZE] = "core";
a293980c 67unsigned int core_pipe_limit;
d6e71144
AC
68int suid_dumpable = 0;
69
1da177e4
LT
70/* The maximal length of core_pattern is also specified in sysctl.c */
71
e4dc1b14 72static LIST_HEAD(formats);
1da177e4
LT
73static DEFINE_RWLOCK(binfmt_lock);
74
74641f58 75int __register_binfmt(struct linux_binfmt * fmt, int insert)
1da177e4 76{
1da177e4
LT
77 if (!fmt)
78 return -EINVAL;
1da177e4 79 write_lock(&binfmt_lock);
74641f58
IK
80 insert ? list_add(&fmt->lh, &formats) :
81 list_add_tail(&fmt->lh, &formats);
1da177e4
LT
82 write_unlock(&binfmt_lock);
83 return 0;
84}
85
74641f58 86EXPORT_SYMBOL(__register_binfmt);
1da177e4 87
f6b450d4 88void unregister_binfmt(struct linux_binfmt * fmt)
1da177e4 89{
1da177e4 90 write_lock(&binfmt_lock);
e4dc1b14 91 list_del(&fmt->lh);
1da177e4 92 write_unlock(&binfmt_lock);
1da177e4
LT
93}
94
95EXPORT_SYMBOL(unregister_binfmt);
96
97static inline void put_binfmt(struct linux_binfmt * fmt)
98{
99 module_put(fmt->module);
100}
101
102/*
103 * Note that a shared library must be both readable and executable due to
104 * security reasons.
105 *
106 * Also note that we take the address to load from from the file itself.
107 */
1e7bfb21 108SYSCALL_DEFINE1(uselib, const char __user *, library)
1da177e4 109{
964bd183 110 struct file *file;
964bd183
AV
111 char *tmp = getname(library);
112 int error = PTR_ERR(tmp);
113
6e8341a1
AV
114 if (IS_ERR(tmp))
115 goto out;
116
117 file = do_filp_open(AT_FDCWD, tmp,
118 O_LARGEFILE | O_RDONLY | FMODE_EXEC, 0,
119 MAY_READ | MAY_EXEC | MAY_OPEN);
120 putname(tmp);
121 error = PTR_ERR(file);
122 if (IS_ERR(file))
1da177e4
LT
123 goto out;
124
125 error = -EINVAL;
6e8341a1 126 if (!S_ISREG(file->f_path.dentry->d_inode->i_mode))
1da177e4
LT
127 goto exit;
128
30524472 129 error = -EACCES;
6e8341a1 130 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC)
1da177e4
LT
131 goto exit;
132
6110e3ab
EP
133 fsnotify_open(file->f_path.dentry);
134
1da177e4
LT
135 error = -ENOEXEC;
136 if(file->f_op) {
137 struct linux_binfmt * fmt;
138
139 read_lock(&binfmt_lock);
e4dc1b14 140 list_for_each_entry(fmt, &formats, lh) {
1da177e4
LT
141 if (!fmt->load_shlib)
142 continue;
143 if (!try_module_get(fmt->module))
144 continue;
145 read_unlock(&binfmt_lock);
146 error = fmt->load_shlib(file);
147 read_lock(&binfmt_lock);
148 put_binfmt(fmt);
149 if (error != -ENOEXEC)
150 break;
151 }
152 read_unlock(&binfmt_lock);
153 }
6e8341a1 154exit:
1da177e4
LT
155 fput(file);
156out:
157 return error;
1da177e4
LT
158}
159
b6a2fea3
OW
160#ifdef CONFIG_MMU
161
162static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
163 int write)
164{
165 struct page *page;
166 int ret;
167
168#ifdef CONFIG_STACK_GROWSUP
169 if (write) {
170 ret = expand_stack_downwards(bprm->vma, pos);
171 if (ret < 0)
172 return NULL;
173 }
174#endif
175 ret = get_user_pages(current, bprm->mm, pos,
176 1, write, 1, &page, NULL);
177 if (ret <= 0)
178 return NULL;
179
180 if (write) {
b6a2fea3 181 unsigned long size = bprm->vma->vm_end - bprm->vma->vm_start;
a64e715f
LT
182 struct rlimit *rlim;
183
184 /*
185 * We've historically supported up to 32 pages (ARG_MAX)
186 * of argument strings even with small stacks
187 */
188 if (size <= ARG_MAX)
189 return page;
b6a2fea3
OW
190
191 /*
192 * Limit to 1/4-th the stack size for the argv+env strings.
193 * This ensures that:
194 * - the remaining binfmt code will not run out of stack space,
195 * - the program will have a reasonable amount of stack left
196 * to work from.
197 */
a64e715f 198 rlim = current->signal->rlim;
b6a2fea3
OW
199 if (size > rlim[RLIMIT_STACK].rlim_cur / 4) {
200 put_page(page);
201 return NULL;
202 }
203 }
204
205 return page;
206}
207
208static void put_arg_page(struct page *page)
209{
210 put_page(page);
211}
212
213static void free_arg_page(struct linux_binprm *bprm, int i)
214{
215}
216
217static void free_arg_pages(struct linux_binprm *bprm)
218{
219}
220
221static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
222 struct page *page)
223{
224 flush_cache_page(bprm->vma, pos, page_to_pfn(page));
225}
226
227static int __bprm_mm_init(struct linux_binprm *bprm)
228{
eaccbfa5 229 int err;
b6a2fea3
OW
230 struct vm_area_struct *vma = NULL;
231 struct mm_struct *mm = bprm->mm;
232
233 bprm->vma = vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
234 if (!vma)
eaccbfa5 235 return -ENOMEM;
b6a2fea3
OW
236
237 down_write(&mm->mmap_sem);
238 vma->vm_mm = mm;
239
240 /*
241 * Place the stack at the largest stack address the architecture
242 * supports. Later, we'll move this to an appropriate place. We don't
243 * use STACK_TOP because that can depend on attributes which aren't
244 * configured yet.
245 */
246 vma->vm_end = STACK_TOP_MAX;
247 vma->vm_start = vma->vm_end - PAGE_SIZE;
b6a2fea3 248 vma->vm_flags = VM_STACK_FLAGS;
3ed75eb8 249 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
b6a2fea3 250 err = insert_vm_struct(mm, vma);
eaccbfa5 251 if (err)
b6a2fea3 252 goto err;
b6a2fea3
OW
253
254 mm->stack_vm = mm->total_vm = 1;
255 up_write(&mm->mmap_sem);
b6a2fea3 256 bprm->p = vma->vm_end - sizeof(void *);
b6a2fea3 257 return 0;
b6a2fea3 258err:
eaccbfa5
LFC
259 up_write(&mm->mmap_sem);
260 bprm->vma = NULL;
261 kmem_cache_free(vm_area_cachep, vma);
b6a2fea3
OW
262 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
1da177e4
LT
361/*
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++;
362e6663 377 if (i++ >= max)
1da177e4
LT
378 return -E2BIG;
379 cond_resched();
380 }
381 }
382 return i;
383}
384
385/*
b6a2fea3
OW
386 * '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.
1da177e4 389 */
75c96f85
AB
390static int copy_strings(int argc, char __user * __user * argv,
391 struct linux_binprm *bprm)
1da177e4
LT
392{
393 struct page *kmapped_page = NULL;
394 char *kaddr = NULL;
b6a2fea3 395 unsigned long kpos = 0;
1da177e4
LT
396 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) ||
b6a2fea3 404 !(len = strnlen_user(str, MAX_ARG_STRLEN))) {
1da177e4
LT
405 ret = -EFAULT;
406 goto out;
407 }
408
b6a2fea3 409 if (!valid_arg_len(bprm, len)) {
1da177e4
LT
410 ret = -E2BIG;
411 goto out;
412 }
413
b6a2fea3 414 /* We're going to work our way backwords. */
1da177e4 415 pos = bprm->p;
b6a2fea3
OW
416 str += len;
417 bprm->p -= len;
1da177e4
LT
418
419 while (len > 0) {
1da177e4 420 int offset, bytes_to_copy;
1da177e4
LT
421
422 offset = pos % PAGE_SIZE;
b6a2fea3
OW
423 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);
1da177e4 439 if (!page) {
b6a2fea3 440 ret = -E2BIG;
1da177e4
LT
441 goto out;
442 }
1da177e4 443
b6a2fea3
OW
444 if (kmapped_page) {
445 flush_kernel_dcache_page(kmapped_page);
1da177e4 446 kunmap(kmapped_page);
b6a2fea3
OW
447 put_arg_page(kmapped_page);
448 }
1da177e4
LT
449 kmapped_page = page;
450 kaddr = kmap(kmapped_page);
b6a2fea3
OW
451 kpos = pos & PAGE_MASK;
452 flush_arg_page(bprm, kpos, kmapped_page);
1da177e4 453 }
b6a2fea3 454 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) {
1da177e4
LT
455 ret = -EFAULT;
456 goto out;
457 }
1da177e4
LT
458 }
459 }
460 ret = 0;
461out:
b6a2fea3
OW
462 if (kmapped_page) {
463 flush_kernel_dcache_page(kmapped_page);
1da177e4 464 kunmap(kmapped_page);
b6a2fea3
OW
465 put_arg_page(kmapped_page);
466 }
1da177e4
LT
467 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}
1da177e4
LT
482EXPORT_SYMBOL(copy_strings_kernel);
483
484#ifdef CONFIG_MMU
b6a2fea3 485
1da177e4 486/*
b6a2fea3
OW
487 * 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:
1da177e4 490 *
b6a2fea3
OW
491 * 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.
1da177e4 497 */
b6a2fea3 498static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift)
1da177e4
LT
499{
500 struct mm_struct *mm = vma->vm_mm;
b6a2fea3
OW
501 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;
1da177e4 507
b6a2fea3 508 BUG_ON(new_start > new_end);
1da177e4 509
b6a2fea3
OW
510 /*
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 */
520 vma_adjust(vma, new_start, old_end, vma->vm_pgoff, NULL);
521
522 /*
523 * move the page tables downwards, on failure we rely on
524 * process cleanup to remove whatever mess we made.
525 */
526 if (length != move_page_tables(vma, old_start,
527 vma, new_start, length))
528 return -ENOMEM;
529
530 lru_add_drain();
531 tlb = tlb_gather_mmu(mm, 0);
532 if (new_end > old_start) {
533 /*
534 * when the old and new regions overlap clear from new_end.
535 */
42b77728 536 free_pgd_range(tlb, new_end, old_end, new_end,
b6a2fea3
OW
537 vma->vm_next ? vma->vm_next->vm_start : 0);
538 } else {
539 /*
540 * otherwise, clean from old_start; this is done to not touch
541 * the address space in [new_end, old_start) some architectures
542 * have constraints on va-space that make this illegal (IA64) -
543 * for the others its just a little faster.
544 */
42b77728 545 free_pgd_range(tlb, old_start, old_end, new_end,
b6a2fea3 546 vma->vm_next ? vma->vm_next->vm_start : 0);
1da177e4 547 }
b6a2fea3
OW
548 tlb_finish_mmu(tlb, new_end, old_end);
549
550 /*
551 * shrink the vma to just the new range.
552 */
553 vma_adjust(vma, new_start, new_end, vma->vm_pgoff, NULL);
554
555 return 0;
1da177e4
LT
556}
557
558#define EXTRA_STACK_VM_PAGES 20 /* random */
559
b6a2fea3
OW
560/*
561 * Finalizes the stack vm_area_struct. The flags and permissions are updated,
562 * the stack is optionally relocated, and some extra space is added.
563 */
1da177e4
LT
564int setup_arg_pages(struct linux_binprm *bprm,
565 unsigned long stack_top,
566 int executable_stack)
567{
b6a2fea3
OW
568 unsigned long ret;
569 unsigned long stack_shift;
1da177e4 570 struct mm_struct *mm = current->mm;
b6a2fea3
OW
571 struct vm_area_struct *vma = bprm->vma;
572 struct vm_area_struct *prev = NULL;
573 unsigned long vm_flags;
574 unsigned long stack_base;
1da177e4
LT
575
576#ifdef CONFIG_STACK_GROWSUP
1da177e4
LT
577 /* Limit stack size to 1GB */
578 stack_base = current->signal->rlim[RLIMIT_STACK].rlim_max;
579 if (stack_base > (1 << 30))
580 stack_base = 1 << 30;
1da177e4 581
b6a2fea3
OW
582 /* Make sure we didn't let the argument array grow too large. */
583 if (vma->vm_end - vma->vm_start > stack_base)
584 return -ENOMEM;
1da177e4 585
b6a2fea3 586 stack_base = PAGE_ALIGN(stack_top - stack_base);
1da177e4 587
b6a2fea3
OW
588 stack_shift = vma->vm_start - stack_base;
589 mm->arg_start = bprm->p - stack_shift;
590 bprm->p = vma->vm_end - stack_shift;
1da177e4 591#else
b6a2fea3
OW
592 stack_top = arch_align_stack(stack_top);
593 stack_top = PAGE_ALIGN(stack_top);
594 stack_shift = vma->vm_end - stack_top;
595
596 bprm->p -= stack_shift;
1da177e4 597 mm->arg_start = bprm->p;
1da177e4
LT
598#endif
599
1da177e4 600 if (bprm->loader)
b6a2fea3
OW
601 bprm->loader -= stack_shift;
602 bprm->exec -= stack_shift;
1da177e4 603
1da177e4 604 down_write(&mm->mmap_sem);
96a8e13e 605 vm_flags = VM_STACK_FLAGS;
b6a2fea3
OW
606
607 /*
608 * Adjust stack execute permissions; explicitly enable for
609 * EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X and leave alone
610 * (arch default) otherwise.
611 */
612 if (unlikely(executable_stack == EXSTACK_ENABLE_X))
613 vm_flags |= VM_EXEC;
614 else if (executable_stack == EXSTACK_DISABLE_X)
615 vm_flags &= ~VM_EXEC;
616 vm_flags |= mm->def_flags;
617
618 ret = mprotect_fixup(vma, &prev, vma->vm_start, vma->vm_end,
619 vm_flags);
620 if (ret)
621 goto out_unlock;
622 BUG_ON(prev != vma);
623
624 /* Move stack pages down in memory. */
625 if (stack_shift) {
626 ret = shift_arg_pages(vma, stack_shift);
627 if (ret) {
1da177e4 628 up_write(&mm->mmap_sem);
1da177e4
LT
629 return ret;
630 }
1da177e4
LT
631 }
632
b6a2fea3
OW
633#ifdef CONFIG_STACK_GROWSUP
634 stack_base = vma->vm_end + EXTRA_STACK_VM_PAGES * PAGE_SIZE;
635#else
636 stack_base = vma->vm_start - EXTRA_STACK_VM_PAGES * PAGE_SIZE;
637#endif
638 ret = expand_stack(vma, stack_base);
639 if (ret)
640 ret = -EFAULT;
641
642out_unlock:
1da177e4 643 up_write(&mm->mmap_sem);
1da177e4
LT
644 return 0;
645}
1da177e4
LT
646EXPORT_SYMBOL(setup_arg_pages);
647
1da177e4
LT
648#endif /* CONFIG_MMU */
649
650struct file *open_exec(const char *name)
651{
1da177e4 652 struct file *file;
e56b6a5d 653 int err;
1da177e4 654
6e8341a1
AV
655 file = do_filp_open(AT_FDCWD, name,
656 O_LARGEFILE | O_RDONLY | FMODE_EXEC, 0,
657 MAY_EXEC | MAY_OPEN);
658 if (IS_ERR(file))
e56b6a5d
CH
659 goto out;
660
661 err = -EACCES;
6e8341a1
AV
662 if (!S_ISREG(file->f_path.dentry->d_inode->i_mode))
663 goto exit;
e56b6a5d 664
6e8341a1
AV
665 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC)
666 goto exit;
e56b6a5d 667
6110e3ab
EP
668 fsnotify_open(file->f_path.dentry);
669
e56b6a5d 670 err = deny_write_access(file);
6e8341a1
AV
671 if (err)
672 goto exit;
1da177e4 673
6e8341a1 674out:
e56b6a5d
CH
675 return file;
676
6e8341a1
AV
677exit:
678 fput(file);
e56b6a5d
CH
679 return ERR_PTR(err);
680}
1da177e4
LT
681EXPORT_SYMBOL(open_exec);
682
6777d773
MZ
683int kernel_read(struct file *file, loff_t offset,
684 char *addr, unsigned long count)
1da177e4
LT
685{
686 mm_segment_t old_fs;
687 loff_t pos = offset;
688 int result;
689
690 old_fs = get_fs();
691 set_fs(get_ds());
692 /* The cast to a user pointer is valid due to the set_fs() */
693 result = vfs_read(file, (void __user *)addr, count, &pos);
694 set_fs(old_fs);
695 return result;
696}
697
698EXPORT_SYMBOL(kernel_read);
699
700static int exec_mmap(struct mm_struct *mm)
701{
702 struct task_struct *tsk;
703 struct mm_struct * old_mm, *active_mm;
704
705 /* Notify parent that we're no longer interested in the old VM */
706 tsk = current;
707 old_mm = current->mm;
708 mm_release(tsk, old_mm);
709
710 if (old_mm) {
711 /*
712 * Make sure that if there is a core dump in progress
713 * for the old mm, we get out and die instead of going
714 * through with the exec. We must hold mmap_sem around
999d9fc1 715 * checking core_state and changing tsk->mm.
1da177e4
LT
716 */
717 down_read(&old_mm->mmap_sem);
999d9fc1 718 if (unlikely(old_mm->core_state)) {
1da177e4
LT
719 up_read(&old_mm->mmap_sem);
720 return -EINTR;
721 }
722 }
723 task_lock(tsk);
724 active_mm = tsk->active_mm;
725 tsk->mm = mm;
726 tsk->active_mm = mm;
727 activate_mm(active_mm, mm);
728 task_unlock(tsk);
729 arch_pick_mmap_layout(mm);
730 if (old_mm) {
731 up_read(&old_mm->mmap_sem);
7dddb12c 732 BUG_ON(active_mm != old_mm);
31a78f23 733 mm_update_next_owner(old_mm);
1da177e4
LT
734 mmput(old_mm);
735 return 0;
736 }
737 mmdrop(active_mm);
738 return 0;
739}
740
741/*
742 * This function makes sure the current process has its own signal table,
743 * so that flush_signal_handlers can later reset the handlers without
744 * disturbing other processes. (Other processes might share the signal
745 * table via the CLONE_SIGHAND option to clone().)
746 */
858119e1 747static int de_thread(struct task_struct *tsk)
1da177e4
LT
748{
749 struct signal_struct *sig = tsk->signal;
b2c903b8 750 struct sighand_struct *oldsighand = tsk->sighand;
1da177e4
LT
751 spinlock_t *lock = &oldsighand->siglock;
752 int count;
753
aafe6c2a 754 if (thread_group_empty(tsk))
1da177e4
LT
755 goto no_thread_group;
756
757 /*
758 * Kill all other threads in the thread group.
1da177e4 759 */
1da177e4 760 spin_lock_irq(lock);
ed5d2cac 761 if (signal_group_exit(sig)) {
1da177e4
LT
762 /*
763 * Another group action in progress, just
764 * return so that the signal is processed.
765 */
766 spin_unlock_irq(lock);
1da177e4
LT
767 return -EAGAIN;
768 }
ed5d2cac 769 sig->group_exit_task = tsk;
aafe6c2a 770 zap_other_threads(tsk);
1da177e4 771
fea9d175
ON
772 /* Account for the thread group leader hanging around: */
773 count = thread_group_leader(tsk) ? 1 : 2;
6db840fa 774 sig->notify_count = count;
1da177e4 775 while (atomic_read(&sig->count) > count) {
1da177e4
LT
776 __set_current_state(TASK_UNINTERRUPTIBLE);
777 spin_unlock_irq(lock);
778 schedule();
779 spin_lock_irq(lock);
780 }
1da177e4
LT
781 spin_unlock_irq(lock);
782
783 /*
784 * At this point all other threads have exited, all we have to
785 * do is to wait for the thread group leader to become inactive,
786 * and to assume its PID:
787 */
aafe6c2a 788 if (!thread_group_leader(tsk)) {
8187926b 789 struct task_struct *leader = tsk->group_leader;
6db840fa 790
2800d8d1 791 sig->notify_count = -1; /* for exit_notify() */
6db840fa
ON
792 for (;;) {
793 write_lock_irq(&tasklist_lock);
794 if (likely(leader->exit_state))
795 break;
796 __set_current_state(TASK_UNINTERRUPTIBLE);
797 write_unlock_irq(&tasklist_lock);
798 schedule();
799 }
1da177e4 800
f5e90281
RM
801 /*
802 * The only record we have of the real-time age of a
803 * process, regardless of execs it's done, is start_time.
804 * All the past CPU time is accumulated in signal_struct
805 * from sister threads now dead. But in this non-leader
806 * exec, nothing survives from the original leader thread,
807 * whose birth marks the true age of this process now.
808 * When we take on its identity by switching to its PID, we
809 * also take its birthdate (always earlier than our own).
810 */
aafe6c2a 811 tsk->start_time = leader->start_time;
f5e90281 812
bac0abd6
PE
813 BUG_ON(!same_thread_group(leader, tsk));
814 BUG_ON(has_group_leader_pid(tsk));
1da177e4
LT
815 /*
816 * An exec() starts a new thread group with the
817 * TGID of the previous thread group. Rehash the
818 * two threads with a switched PID, and release
819 * the former thread group leader:
820 */
d73d6529
EB
821
822 /* Become a process group leader with the old leader's pid.
c18258c6
EB
823 * The old leader becomes a thread of the this thread group.
824 * Note: The old leader also uses this pid until release_task
d73d6529
EB
825 * is called. Odd but simple and correct.
826 */
aafe6c2a
EB
827 detach_pid(tsk, PIDTYPE_PID);
828 tsk->pid = leader->pid;
3743ca05 829 attach_pid(tsk, PIDTYPE_PID, task_pid(leader));
aafe6c2a
EB
830 transfer_pid(leader, tsk, PIDTYPE_PGID);
831 transfer_pid(leader, tsk, PIDTYPE_SID);
832 list_replace_rcu(&leader->tasks, &tsk->tasks);
1da177e4 833
aafe6c2a
EB
834 tsk->group_leader = tsk;
835 leader->group_leader = tsk;
de12a787 836
aafe6c2a 837 tsk->exit_signal = SIGCHLD;
962b564c
ON
838
839 BUG_ON(leader->exit_state != EXIT_ZOMBIE);
840 leader->exit_state = EXIT_DEAD;
1da177e4 841 write_unlock_irq(&tasklist_lock);
8187926b
ON
842
843 release_task(leader);
ed5d2cac 844 }
1da177e4 845
6db840fa
ON
846 sig->group_exit_task = NULL;
847 sig->notify_count = 0;
1da177e4
LT
848
849no_thread_group:
1f10206c
JP
850 if (current->mm)
851 setmax_mm_hiwater_rss(&sig->maxrss, current->mm);
852
1da177e4 853 exit_itimers(sig);
cbaffba1 854 flush_itimer_signals();
329f7dba 855
b2c903b8
ON
856 if (atomic_read(&oldsighand->count) != 1) {
857 struct sighand_struct *newsighand;
1da177e4 858 /*
b2c903b8
ON
859 * This ->sighand is shared with the CLONE_SIGHAND
860 * but not CLONE_THREAD task, switch to the new one.
1da177e4 861 */
b2c903b8
ON
862 newsighand = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
863 if (!newsighand)
864 return -ENOMEM;
865
1da177e4
LT
866 atomic_set(&newsighand->count, 1);
867 memcpy(newsighand->action, oldsighand->action,
868 sizeof(newsighand->action));
869
870 write_lock_irq(&tasklist_lock);
871 spin_lock(&oldsighand->siglock);
aafe6c2a 872 rcu_assign_pointer(tsk->sighand, newsighand);
1da177e4
LT
873 spin_unlock(&oldsighand->siglock);
874 write_unlock_irq(&tasklist_lock);
875
fba2afaa 876 __cleanup_sighand(oldsighand);
1da177e4
LT
877 }
878
aafe6c2a 879 BUG_ON(!thread_group_leader(tsk));
1da177e4
LT
880 return 0;
881}
0840a90d 882
1da177e4
LT
883/*
884 * These functions flushes out all traces of the currently running executable
885 * so that a new one can be started
886 */
858119e1 887static void flush_old_files(struct files_struct * files)
1da177e4
LT
888{
889 long j = -1;
badf1662 890 struct fdtable *fdt;
1da177e4
LT
891
892 spin_lock(&files->file_lock);
893 for (;;) {
894 unsigned long set, i;
895
896 j++;
897 i = j * __NFDBITS;
badf1662 898 fdt = files_fdtable(files);
bbea9f69 899 if (i >= fdt->max_fds)
1da177e4 900 break;
badf1662 901 set = fdt->close_on_exec->fds_bits[j];
1da177e4
LT
902 if (!set)
903 continue;
badf1662 904 fdt->close_on_exec->fds_bits[j] = 0;
1da177e4
LT
905 spin_unlock(&files->file_lock);
906 for ( ; set ; i++,set >>= 1) {
907 if (set & 1) {
908 sys_close(i);
909 }
910 }
911 spin_lock(&files->file_lock);
912
913 }
914 spin_unlock(&files->file_lock);
915}
916
59714d65 917char *get_task_comm(char *buf, struct task_struct *tsk)
1da177e4
LT
918{
919 /* buf must be at least sizeof(tsk->comm) in size */
920 task_lock(tsk);
921 strncpy(buf, tsk->comm, sizeof(tsk->comm));
922 task_unlock(tsk);
59714d65 923 return buf;
1da177e4
LT
924}
925
926void set_task_comm(struct task_struct *tsk, char *buf)
927{
928 task_lock(tsk);
929 strlcpy(tsk->comm, buf, sizeof(tsk->comm));
930 task_unlock(tsk);
cdd6c482 931 perf_event_comm(tsk);
1da177e4
LT
932}
933
934int flush_old_exec(struct linux_binprm * bprm)
935{
936 char * name;
937 int i, ch, retval;
1da177e4
LT
938 char tcomm[sizeof(current->comm)];
939
940 /*
941 * Make sure we have a private signal table and that
942 * we are unassociated from the previous thread group.
943 */
944 retval = de_thread(current);
945 if (retval)
946 goto out;
947
925d1c40
MH
948 set_mm_exe_file(bprm->mm, bprm->file);
949
1da177e4
LT
950 /*
951 * Release all of the old mmap stuff
952 */
953 retval = exec_mmap(bprm->mm);
954 if (retval)
fd8328be 955 goto out;
1da177e4
LT
956
957 bprm->mm = NULL; /* We're using it now */
958
959 /* This is the point of no return */
1da177e4
LT
960 current->sas_ss_sp = current->sas_ss_size = 0;
961
da9592ed 962 if (current_euid() == current_uid() && current_egid() == current_gid())
6c5d5238 963 set_dumpable(current->mm, 1);
d6e71144 964 else
6c5d5238 965 set_dumpable(current->mm, suid_dumpable);
d6e71144 966
1da177e4 967 name = bprm->filename;
36772092
PBG
968
969 /* Copies the binary name from after last slash */
1da177e4
LT
970 for (i=0; (ch = *(name++)) != '\0';) {
971 if (ch == '/')
36772092 972 i = 0; /* overwrite what we wrote */
1da177e4
LT
973 else
974 if (i < (sizeof(tcomm) - 1))
975 tcomm[i++] = ch;
976 }
977 tcomm[i] = '\0';
978 set_task_comm(current, tcomm);
979
980 current->flags &= ~PF_RANDOMIZE;
981 flush_thread();
982
0551fbd2
BH
983 /* Set the new mm task size. We have to do that late because it may
984 * depend on TIF_32BIT which is only updated in flush_thread() on
985 * some architectures like powerpc
986 */
987 current->mm->task_size = TASK_SIZE;
988
a6f76f23
DH
989 /* install the new credentials */
990 if (bprm->cred->uid != current_euid() ||
991 bprm->cred->gid != current_egid()) {
d2d56c5f
MH
992 current->pdeath_signal = 0;
993 } else if (file_permission(bprm->file, MAY_READ) ||
a6f76f23 994 bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP) {
6c5d5238 995 set_dumpable(current->mm, suid_dumpable);
1da177e4
LT
996 }
997
a6f76f23
DH
998 current->personality &= ~bprm->per_clear;
999
f65cb45c
IM
1000 /*
1001 * Flush performance counters when crossing a
1002 * security domain:
1003 */
1004 if (!get_dumpable(current->mm))
cdd6c482 1005 perf_event_exit_task(current);
f65cb45c 1006
1da177e4
LT
1007 /* An exec changes our domain. We are no longer part of the thread
1008 group */
1009
1010 current->self_exec_id++;
1011
1012 flush_signal_handlers(current, 0);
1013 flush_old_files(current->files);
1014
1015 return 0;
1016
1da177e4
LT
1017out:
1018 return retval;
1019}
1020
1021EXPORT_SYMBOL(flush_old_exec);
1022
a2a8474c
ON
1023/*
1024 * Prepare credentials and lock ->cred_guard_mutex.
1025 * install_exec_creds() commits the new creds and drops the lock.
1026 * Or, if exec fails before, free_bprm() should release ->cred and
1027 * and unlock.
1028 */
1029int prepare_bprm_creds(struct linux_binprm *bprm)
1030{
1031 if (mutex_lock_interruptible(&current->cred_guard_mutex))
1032 return -ERESTARTNOINTR;
1033
1034 bprm->cred = prepare_exec_creds();
1035 if (likely(bprm->cred))
1036 return 0;
1037
1038 mutex_unlock(&current->cred_guard_mutex);
1039 return -ENOMEM;
1040}
1041
1042void free_bprm(struct linux_binprm *bprm)
1043{
1044 free_arg_pages(bprm);
1045 if (bprm->cred) {
1046 mutex_unlock(&current->cred_guard_mutex);
1047 abort_creds(bprm->cred);
1048 }
1049 kfree(bprm);
1050}
1051
a6f76f23
DH
1052/*
1053 * install the new credentials for this executable
1054 */
1055void install_exec_creds(struct linux_binprm *bprm)
1056{
1057 security_bprm_committing_creds(bprm);
1058
1059 commit_creds(bprm->cred);
1060 bprm->cred = NULL;
a2a8474c
ON
1061 /*
1062 * cred_guard_mutex must be held at least to this point to prevent
a6f76f23 1063 * ptrace_attach() from altering our determination of the task's
a2a8474c
ON
1064 * credentials; any time after this it may be unlocked.
1065 */
a6f76f23 1066 security_bprm_committed_creds(bprm);
a2a8474c 1067 mutex_unlock(&current->cred_guard_mutex);
a6f76f23
DH
1068}
1069EXPORT_SYMBOL(install_exec_creds);
1070
1071/*
1072 * determine how safe it is to execute the proposed program
5e751e99 1073 * - the caller must hold current->cred_guard_mutex to protect against
a6f76f23
DH
1074 * PTRACE_ATTACH
1075 */
498052bb 1076int check_unsafe_exec(struct linux_binprm *bprm)
a6f76f23 1077{
0bf2f3ae 1078 struct task_struct *p = current, *t;
f1191b50 1079 unsigned n_fs;
498052bb 1080 int res = 0;
a6f76f23
DH
1081
1082 bprm->unsafe = tracehook_unsafe_exec(p);
1083
0bf2f3ae 1084 n_fs = 1;
498052bb 1085 write_lock(&p->fs->lock);
437f7fdb 1086 rcu_read_lock();
0bf2f3ae
DH
1087 for (t = next_thread(p); t != p; t = next_thread(t)) {
1088 if (t->fs == p->fs)
1089 n_fs++;
0bf2f3ae 1090 }
437f7fdb 1091 rcu_read_unlock();
0bf2f3ae 1092
f1191b50 1093 if (p->fs->users > n_fs) {
a6f76f23 1094 bprm->unsafe |= LSM_UNSAFE_SHARE;
498052bb 1095 } else {
8c652f96
ON
1096 res = -EAGAIN;
1097 if (!p->fs->in_exec) {
1098 p->fs->in_exec = 1;
1099 res = 1;
1100 }
498052bb 1101 }
498052bb
AV
1102 write_unlock(&p->fs->lock);
1103
1104 return res;
a6f76f23
DH
1105}
1106
1da177e4
LT
1107/*
1108 * Fill the binprm structure from the inode.
1109 * Check permissions, then read the first 128 (BINPRM_BUF_SIZE) bytes
a6f76f23
DH
1110 *
1111 * This may be called multiple times for binary chains (scripts for example).
1da177e4
LT
1112 */
1113int prepare_binprm(struct linux_binprm *bprm)
1114{
a6f76f23 1115 umode_t mode;
0f7fc9e4 1116 struct inode * inode = bprm->file->f_path.dentry->d_inode;
1da177e4
LT
1117 int retval;
1118
1119 mode = inode->i_mode;
1da177e4
LT
1120 if (bprm->file->f_op == NULL)
1121 return -EACCES;
1122
a6f76f23
DH
1123 /* clear any previous set[ug]id data from a previous binary */
1124 bprm->cred->euid = current_euid();
1125 bprm->cred->egid = current_egid();
1da177e4 1126
a6f76f23 1127 if (!(bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID)) {
1da177e4
LT
1128 /* Set-uid? */
1129 if (mode & S_ISUID) {
a6f76f23
DH
1130 bprm->per_clear |= PER_CLEAR_ON_SETID;
1131 bprm->cred->euid = inode->i_uid;
1da177e4
LT
1132 }
1133
1134 /* Set-gid? */
1135 /*
1136 * If setgid is set but no group execute bit then this
1137 * is a candidate for mandatory locking, not a setgid
1138 * executable.
1139 */
1140 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) {
a6f76f23
DH
1141 bprm->per_clear |= PER_CLEAR_ON_SETID;
1142 bprm->cred->egid = inode->i_gid;
1da177e4
LT
1143 }
1144 }
1145
1146 /* fill in binprm security blob */
a6f76f23 1147 retval = security_bprm_set_creds(bprm);
1da177e4
LT
1148 if (retval)
1149 return retval;
a6f76f23 1150 bprm->cred_prepared = 1;
1da177e4 1151
a6f76f23
DH
1152 memset(bprm->buf, 0, BINPRM_BUF_SIZE);
1153 return kernel_read(bprm->file, 0, bprm->buf, BINPRM_BUF_SIZE);
1da177e4
LT
1154}
1155
1156EXPORT_SYMBOL(prepare_binprm);
1157
4fc75ff4
NP
1158/*
1159 * Arguments are '\0' separated strings found at the location bprm->p
1160 * points to; chop off the first by relocating brpm->p to right after
1161 * the first '\0' encountered.
1162 */
b6a2fea3 1163int remove_arg_zero(struct linux_binprm *bprm)
1da177e4 1164{
b6a2fea3
OW
1165 int ret = 0;
1166 unsigned long offset;
1167 char *kaddr;
1168 struct page *page;
4fc75ff4 1169
b6a2fea3
OW
1170 if (!bprm->argc)
1171 return 0;
1da177e4 1172
b6a2fea3
OW
1173 do {
1174 offset = bprm->p & ~PAGE_MASK;
1175 page = get_arg_page(bprm, bprm->p, 0);
1176 if (!page) {
1177 ret = -EFAULT;
1178 goto out;
1179 }
1180 kaddr = kmap_atomic(page, KM_USER0);
4fc75ff4 1181
b6a2fea3
OW
1182 for (; offset < PAGE_SIZE && kaddr[offset];
1183 offset++, bprm->p++)
1184 ;
4fc75ff4 1185
b6a2fea3
OW
1186 kunmap_atomic(kaddr, KM_USER0);
1187 put_arg_page(page);
4fc75ff4 1188
b6a2fea3
OW
1189 if (offset == PAGE_SIZE)
1190 free_arg_page(bprm, (bprm->p >> PAGE_SHIFT) - 1);
1191 } while (offset == PAGE_SIZE);
4fc75ff4 1192
b6a2fea3
OW
1193 bprm->p++;
1194 bprm->argc--;
1195 ret = 0;
4fc75ff4 1196
b6a2fea3
OW
1197out:
1198 return ret;
1da177e4 1199}
1da177e4
LT
1200EXPORT_SYMBOL(remove_arg_zero);
1201
1202/*
1203 * cycle the list of binary formats handler, until one recognizes the image
1204 */
1205int search_binary_handler(struct linux_binprm *bprm,struct pt_regs *regs)
1206{
85f33466 1207 unsigned int depth = bprm->recursion_depth;
1da177e4
LT
1208 int try,retval;
1209 struct linux_binfmt *fmt;
1da177e4 1210
1da177e4 1211 retval = security_bprm_check(bprm);
6146f0d5
MZ
1212 if (retval)
1213 return retval;
1214 retval = ima_bprm_check(bprm);
1da177e4
LT
1215 if (retval)
1216 return retval;
1217
1218 /* kernel module loader fixup */
1219 /* so we don't try to load run modprobe in kernel space. */
1220 set_fs(USER_DS);
473ae30b
AV
1221
1222 retval = audit_bprm(bprm);
1223 if (retval)
1224 return retval;
1225
1da177e4
LT
1226 retval = -ENOENT;
1227 for (try=0; try<2; try++) {
1228 read_lock(&binfmt_lock);
e4dc1b14 1229 list_for_each_entry(fmt, &formats, lh) {
1da177e4
LT
1230 int (*fn)(struct linux_binprm *, struct pt_regs *) = fmt->load_binary;
1231 if (!fn)
1232 continue;
1233 if (!try_module_get(fmt->module))
1234 continue;
1235 read_unlock(&binfmt_lock);
1236 retval = fn(bprm, regs);
85f33466
RM
1237 /*
1238 * Restore the depth counter to its starting value
1239 * in this call, so we don't have to rely on every
1240 * load_binary function to restore it on return.
1241 */
1242 bprm->recursion_depth = depth;
1da177e4 1243 if (retval >= 0) {
85f33466
RM
1244 if (depth == 0)
1245 tracehook_report_exec(fmt, bprm, regs);
1da177e4
LT
1246 put_binfmt(fmt);
1247 allow_write_access(bprm->file);
1248 if (bprm->file)
1249 fput(bprm->file);
1250 bprm->file = NULL;
1251 current->did_exec = 1;
9f46080c 1252 proc_exec_connector(current);
1da177e4
LT
1253 return retval;
1254 }
1255 read_lock(&binfmt_lock);
1256 put_binfmt(fmt);
1257 if (retval != -ENOEXEC || bprm->mm == NULL)
1258 break;
1259 if (!bprm->file) {
1260 read_unlock(&binfmt_lock);
1261 return retval;
1262 }
1263 }
1264 read_unlock(&binfmt_lock);
1265 if (retval != -ENOEXEC || bprm->mm == NULL) {
1266 break;
5f4123be
JB
1267#ifdef CONFIG_MODULES
1268 } else {
1da177e4
LT
1269#define printable(c) (((c)=='\t') || ((c)=='\n') || (0x20<=(c) && (c)<=0x7e))
1270 if (printable(bprm->buf[0]) &&
1271 printable(bprm->buf[1]) &&
1272 printable(bprm->buf[2]) &&
1273 printable(bprm->buf[3]))
1274 break; /* -ENOEXEC */
1275 request_module("binfmt-%04x", *(unsigned short *)(&bprm->buf[2]));
1276#endif
1277 }
1278 }
1279 return retval;
1280}
1281
1282EXPORT_SYMBOL(search_binary_handler);
1283
1284/*
1285 * sys_execve() executes a new program.
1286 */
1287int do_execve(char * filename,
1288 char __user *__user *argv,
1289 char __user *__user *envp,
1290 struct pt_regs * regs)
1291{
1292 struct linux_binprm *bprm;
1293 struct file *file;
3b125388 1294 struct files_struct *displaced;
8c652f96 1295 bool clear_in_exec;
1da177e4 1296 int retval;
1da177e4 1297
3b125388 1298 retval = unshare_files(&displaced);
fd8328be
AV
1299 if (retval)
1300 goto out_ret;
1301
1da177e4 1302 retval = -ENOMEM;
11b0b5ab 1303 bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
1da177e4 1304 if (!bprm)
fd8328be 1305 goto out_files;
1da177e4 1306
a2a8474c
ON
1307 retval = prepare_bprm_creds(bprm);
1308 if (retval)
a6f76f23 1309 goto out_free;
498052bb
AV
1310
1311 retval = check_unsafe_exec(bprm);
8c652f96 1312 if (retval < 0)
a2a8474c 1313 goto out_free;
8c652f96 1314 clear_in_exec = retval;
a2a8474c 1315 current->in_execve = 1;
a6f76f23 1316
1da177e4
LT
1317 file = open_exec(filename);
1318 retval = PTR_ERR(file);
1319 if (IS_ERR(file))
498052bb 1320 goto out_unmark;
1da177e4
LT
1321
1322 sched_exec();
1323
1da177e4
LT
1324 bprm->file = file;
1325 bprm->filename = filename;
1326 bprm->interp = filename;
1da177e4 1327
b6a2fea3
OW
1328 retval = bprm_mm_init(bprm);
1329 if (retval)
1330 goto out_file;
1da177e4 1331
b6a2fea3 1332 bprm->argc = count(argv, MAX_ARG_STRINGS);
1da177e4 1333 if ((retval = bprm->argc) < 0)
a6f76f23 1334 goto out;
1da177e4 1335
b6a2fea3 1336 bprm->envc = count(envp, MAX_ARG_STRINGS);
1da177e4 1337 if ((retval = bprm->envc) < 0)
1da177e4
LT
1338 goto out;
1339
1340 retval = prepare_binprm(bprm);
1341 if (retval < 0)
1342 goto out;
1343
1344 retval = copy_strings_kernel(1, &bprm->filename, bprm);
1345 if (retval < 0)
1346 goto out;
1347
1348 bprm->exec = bprm->p;
1349 retval = copy_strings(bprm->envc, envp, bprm);
1350 if (retval < 0)
1351 goto out;
1352
1353 retval = copy_strings(bprm->argc, argv, bprm);
1354 if (retval < 0)
1355 goto out;
1356
7b34e428 1357 current->flags &= ~PF_KTHREAD;
1da177e4 1358 retval = search_binary_handler(bprm,regs);
a6f76f23
DH
1359 if (retval < 0)
1360 goto out;
1da177e4 1361
d899bf7b
SS
1362 current->stack_start = current->mm->start_stack;
1363
a6f76f23 1364 /* execve succeeded */
498052bb 1365 current->fs->in_exec = 0;
f9ce1f1c 1366 current->in_execve = 0;
a6f76f23
DH
1367 acct_update_integrals(current);
1368 free_bprm(bprm);
1369 if (displaced)
1370 put_files_struct(displaced);
1371 return retval;
1da177e4 1372
a6f76f23 1373out:
1da177e4 1374 if (bprm->mm)
b6a2fea3 1375 mmput (bprm->mm);
1da177e4
LT
1376
1377out_file:
1378 if (bprm->file) {
1379 allow_write_access(bprm->file);
1380 fput(bprm->file);
1381 }
a6f76f23 1382
498052bb 1383out_unmark:
8c652f96
ON
1384 if (clear_in_exec)
1385 current->fs->in_exec = 0;
f9ce1f1c 1386 current->in_execve = 0;
a6f76f23
DH
1387
1388out_free:
08a6fac1 1389 free_bprm(bprm);
1da177e4 1390
fd8328be 1391out_files:
3b125388
AV
1392 if (displaced)
1393 reset_files_struct(displaced);
1da177e4
LT
1394out_ret:
1395 return retval;
1396}
1397
964ee7df 1398void set_binfmt(struct linux_binfmt *new)
1da177e4 1399{
964ee7df
ON
1400 if (current->binfmt)
1401 module_put(current->binfmt->module);
1da177e4 1402
1da177e4 1403 current->binfmt = new;
964ee7df
ON
1404 if (new)
1405 __module_get(new->module);
1da177e4
LT
1406}
1407
1408EXPORT_SYMBOL(set_binfmt);
1409
1da177e4
LT
1410/* format_corename will inspect the pattern parameter, and output a
1411 * name into corename, which must have space for at least
1412 * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
1413 */
6409324b 1414static int format_corename(char *corename, long signr)
1da177e4 1415{
86a264ab 1416 const struct cred *cred = current_cred();
565b9b14
ON
1417 const char *pat_ptr = core_pattern;
1418 int ispipe = (*pat_ptr == '|');
1da177e4
LT
1419 char *out_ptr = corename;
1420 char *const out_end = corename + CORENAME_MAX_SIZE;
1421 int rc;
1422 int pid_in_pattern = 0;
1423
1424 /* Repeat as long as we have more pattern to process and more output
1425 space */
1426 while (*pat_ptr) {
1427 if (*pat_ptr != '%') {
1428 if (out_ptr == out_end)
1429 goto out;
1430 *out_ptr++ = *pat_ptr++;
1431 } else {
1432 switch (*++pat_ptr) {
1433 case 0:
1434 goto out;
1435 /* Double percent, output one percent */
1436 case '%':
1437 if (out_ptr == out_end)
1438 goto out;
1439 *out_ptr++ = '%';
1440 break;
1441 /* pid */
1442 case 'p':
1443 pid_in_pattern = 1;
1444 rc = snprintf(out_ptr, out_end - out_ptr,
b488893a 1445 "%d", task_tgid_vnr(current));
1da177e4
LT
1446 if (rc > out_end - out_ptr)
1447 goto out;
1448 out_ptr += rc;
1449 break;
1450 /* uid */
1451 case 'u':
1452 rc = snprintf(out_ptr, out_end - out_ptr,
86a264ab 1453 "%d", cred->uid);
1da177e4
LT
1454 if (rc > out_end - out_ptr)
1455 goto out;
1456 out_ptr += rc;
1457 break;
1458 /* gid */
1459 case 'g':
1460 rc = snprintf(out_ptr, out_end - out_ptr,
86a264ab 1461 "%d", cred->gid);
1da177e4
LT
1462 if (rc > out_end - out_ptr)
1463 goto out;
1464 out_ptr += rc;
1465 break;
1466 /* signal that caused the coredump */
1467 case 's':
1468 rc = snprintf(out_ptr, out_end - out_ptr,
1469 "%ld", signr);
1470 if (rc > out_end - out_ptr)
1471 goto out;
1472 out_ptr += rc;
1473 break;
1474 /* UNIX time of coredump */
1475 case 't': {
1476 struct timeval tv;
1477 do_gettimeofday(&tv);
1478 rc = snprintf(out_ptr, out_end - out_ptr,
1479 "%lu", tv.tv_sec);
1480 if (rc > out_end - out_ptr)
1481 goto out;
1482 out_ptr += rc;
1483 break;
1484 }
1485 /* hostname */
1486 case 'h':
1487 down_read(&uts_sem);
1488 rc = snprintf(out_ptr, out_end - out_ptr,
e9ff3990 1489 "%s", utsname()->nodename);
1da177e4
LT
1490 up_read(&uts_sem);
1491 if (rc > out_end - out_ptr)
1492 goto out;
1493 out_ptr += rc;
1494 break;
1495 /* executable */
1496 case 'e':
1497 rc = snprintf(out_ptr, out_end - out_ptr,
1498 "%s", current->comm);
1499 if (rc > out_end - out_ptr)
1500 goto out;
1501 out_ptr += rc;
1502 break;
74aadce9
NH
1503 /* core limit size */
1504 case 'c':
1505 rc = snprintf(out_ptr, out_end - out_ptr,
1506 "%lu", current->signal->rlim[RLIMIT_CORE].rlim_cur);
1507 if (rc > out_end - out_ptr)
1508 goto out;
1509 out_ptr += rc;
1510 break;
1da177e4
LT
1511 default:
1512 break;
1513 }
1514 ++pat_ptr;
1515 }
1516 }
1517 /* Backward compatibility with core_uses_pid:
1518 *
1519 * If core_pattern does not include a %p (as is the default)
1520 * and core_uses_pid is set, then .%pid will be appended to
c4bbafda 1521 * the filename. Do not do this for piped commands. */
6409324b 1522 if (!ispipe && !pid_in_pattern && core_uses_pid) {
1da177e4 1523 rc = snprintf(out_ptr, out_end - out_ptr,
b488893a 1524 ".%d", task_tgid_vnr(current));
1da177e4
LT
1525 if (rc > out_end - out_ptr)
1526 goto out;
1527 out_ptr += rc;
1528 }
c4bbafda 1529out:
1da177e4 1530 *out_ptr = 0;
c4bbafda 1531 return ispipe;
1da177e4
LT
1532}
1533
8cd9c249 1534static int zap_process(struct task_struct *start)
aceecc04
ON
1535{
1536 struct task_struct *t;
8cd9c249 1537 int nr = 0;
281de339 1538
d5f70c00
ON
1539 start->signal->flags = SIGNAL_GROUP_EXIT;
1540 start->signal->group_stop_count = 0;
aceecc04
ON
1541
1542 t = start;
1543 do {
1544 if (t != current && t->mm) {
281de339
ON
1545 sigaddset(&t->pending.signal, SIGKILL);
1546 signal_wake_up(t, 1);
8cd9c249 1547 nr++;
aceecc04 1548 }
e4901f92 1549 } while_each_thread(start, t);
8cd9c249
ON
1550
1551 return nr;
aceecc04
ON
1552}
1553
dcf560c5 1554static inline int zap_threads(struct task_struct *tsk, struct mm_struct *mm,
8cd9c249 1555 struct core_state *core_state, int exit_code)
1da177e4
LT
1556{
1557 struct task_struct *g, *p;
5debfa6d 1558 unsigned long flags;
8cd9c249 1559 int nr = -EAGAIN;
dcf560c5
ON
1560
1561 spin_lock_irq(&tsk->sighand->siglock);
ed5d2cac 1562 if (!signal_group_exit(tsk->signal)) {
8cd9c249 1563 mm->core_state = core_state;
dcf560c5 1564 tsk->signal->group_exit_code = exit_code;
8cd9c249 1565 nr = zap_process(tsk);
1da177e4 1566 }
dcf560c5 1567 spin_unlock_irq(&tsk->sighand->siglock);
8cd9c249
ON
1568 if (unlikely(nr < 0))
1569 return nr;
1da177e4 1570
8cd9c249 1571 if (atomic_read(&mm->mm_users) == nr + 1)
5debfa6d 1572 goto done;
e4901f92
ON
1573 /*
1574 * We should find and kill all tasks which use this mm, and we should
999d9fc1 1575 * count them correctly into ->nr_threads. We don't take tasklist
e4901f92
ON
1576 * lock, but this is safe wrt:
1577 *
1578 * fork:
1579 * None of sub-threads can fork after zap_process(leader). All
1580 * processes which were created before this point should be
1581 * visible to zap_threads() because copy_process() adds the new
1582 * process to the tail of init_task.tasks list, and lock/unlock
1583 * of ->siglock provides a memory barrier.
1584 *
1585 * do_exit:
1586 * The caller holds mm->mmap_sem. This means that the task which
1587 * uses this mm can't pass exit_mm(), so it can't exit or clear
1588 * its ->mm.
1589 *
1590 * de_thread:
1591 * It does list_replace_rcu(&leader->tasks, &current->tasks),
1592 * we must see either old or new leader, this does not matter.
1593 * However, it can change p->sighand, so lock_task_sighand(p)
1594 * must be used. Since p->mm != NULL and we hold ->mmap_sem
1595 * it can't fail.
1596 *
1597 * Note also that "g" can be the old leader with ->mm == NULL
1598 * and already unhashed and thus removed from ->thread_group.
1599 * This is OK, __unhash_process()->list_del_rcu() does not
1600 * clear the ->next pointer, we will find the new leader via
1601 * next_thread().
1602 */
7b1c6154 1603 rcu_read_lock();
aceecc04 1604 for_each_process(g) {
5debfa6d
ON
1605 if (g == tsk->group_leader)
1606 continue;
15b9f360
ON
1607 if (g->flags & PF_KTHREAD)
1608 continue;
aceecc04
ON
1609 p = g;
1610 do {
1611 if (p->mm) {
15b9f360 1612 if (unlikely(p->mm == mm)) {
5debfa6d 1613 lock_task_sighand(p, &flags);
8cd9c249 1614 nr += zap_process(p);
5debfa6d
ON
1615 unlock_task_sighand(p, &flags);
1616 }
aceecc04
ON
1617 break;
1618 }
e4901f92 1619 } while_each_thread(g, p);
aceecc04 1620 }
7b1c6154 1621 rcu_read_unlock();
5debfa6d 1622done:
c5f1cc8c 1623 atomic_set(&core_state->nr_threads, nr);
8cd9c249 1624 return nr;
1da177e4
LT
1625}
1626
9d5b327b 1627static int coredump_wait(int exit_code, struct core_state *core_state)
1da177e4 1628{
dcf560c5
ON
1629 struct task_struct *tsk = current;
1630 struct mm_struct *mm = tsk->mm;
dcf560c5 1631 struct completion *vfork_done;
2384f55f 1632 int core_waiters;
1da177e4 1633
9d5b327b 1634 init_completion(&core_state->startup);
b564daf8
ON
1635 core_state->dumper.task = tsk;
1636 core_state->dumper.next = NULL;
9d5b327b 1637 core_waiters = zap_threads(tsk, mm, core_state, exit_code);
2384f55f
ON
1638 up_write(&mm->mmap_sem);
1639
dcf560c5
ON
1640 if (unlikely(core_waiters < 0))
1641 goto fail;
1642
1643 /*
1644 * Make sure nobody is waiting for us to release the VM,
1645 * otherwise we can deadlock when we wait on each other
1646 */
1647 vfork_done = tsk->vfork_done;
1648 if (vfork_done) {
1649 tsk->vfork_done = NULL;
1650 complete(vfork_done);
1651 }
1652
2384f55f 1653 if (core_waiters)
9d5b327b 1654 wait_for_completion(&core_state->startup);
dcf560c5 1655fail:
dcf560c5 1656 return core_waiters;
1da177e4
LT
1657}
1658
a94e2d40
ON
1659static void coredump_finish(struct mm_struct *mm)
1660{
1661 struct core_thread *curr, *next;
1662 struct task_struct *task;
1663
1664 next = mm->core_state->dumper.next;
1665 while ((curr = next) != NULL) {
1666 next = curr->next;
1667 task = curr->task;
1668 /*
1669 * see exit_mm(), curr->task must not see
1670 * ->task == NULL before we read ->next.
1671 */
1672 smp_mb();
1673 curr->task = NULL;
1674 wake_up_process(task);
1675 }
1676
1677 mm->core_state = NULL;
1678}
1679
6c5d5238
KH
1680/*
1681 * set_dumpable converts traditional three-value dumpable to two flags and
1682 * stores them into mm->flags. It modifies lower two bits of mm->flags, but
1683 * these bits are not changed atomically. So get_dumpable can observe the
1684 * intermediate state. To avoid doing unexpected behavior, get get_dumpable
1685 * return either old dumpable or new one by paying attention to the order of
1686 * modifying the bits.
1687 *
1688 * dumpable | mm->flags (binary)
1689 * old new | initial interim final
1690 * ---------+-----------------------
1691 * 0 1 | 00 01 01
1692 * 0 2 | 00 10(*) 11
1693 * 1 0 | 01 00 00
1694 * 1 2 | 01 11 11
1695 * 2 0 | 11 10(*) 00
1696 * 2 1 | 11 11 01
1697 *
1698 * (*) get_dumpable regards interim value of 10 as 11.
1699 */
1700void set_dumpable(struct mm_struct *mm, int value)
1701{
1702 switch (value) {
1703 case 0:
1704 clear_bit(MMF_DUMPABLE, &mm->flags);
1705 smp_wmb();
1706 clear_bit(MMF_DUMP_SECURELY, &mm->flags);
1707 break;
1708 case 1:
1709 set_bit(MMF_DUMPABLE, &mm->flags);
1710 smp_wmb();
1711 clear_bit(MMF_DUMP_SECURELY, &mm->flags);
1712 break;
1713 case 2:
1714 set_bit(MMF_DUMP_SECURELY, &mm->flags);
1715 smp_wmb();
1716 set_bit(MMF_DUMPABLE, &mm->flags);
1717 break;
1718 }
1719}
6c5d5238
KH
1720
1721int get_dumpable(struct mm_struct *mm)
1722{
1723 int ret;
1724
1725 ret = mm->flags & 0x3;
1726 return (ret >= 2) ? 2 : ret;
1727}
1728
61be228a
NH
1729static void wait_for_dump_helpers(struct file *file)
1730{
1731 struct pipe_inode_info *pipe;
1732
1733 pipe = file->f_path.dentry->d_inode->i_pipe;
1734
1735 pipe_lock(pipe);
1736 pipe->readers++;
1737 pipe->writers--;
1738
1739 while ((pipe->readers > 1) && (!signal_pending(current))) {
1740 wake_up_interruptible_sync(&pipe->wait);
1741 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1742 pipe_wait(pipe);
1743 }
1744
1745 pipe->readers--;
1746 pipe->writers++;
1747 pipe_unlock(pipe);
1748
1749}
1750
1751
8cd3ac3a 1752void do_coredump(long signr, int exit_code, struct pt_regs *regs)
1da177e4 1753{
9d5b327b 1754 struct core_state core_state;
1da177e4
LT
1755 char corename[CORENAME_MAX_SIZE + 1];
1756 struct mm_struct *mm = current->mm;
1757 struct linux_binfmt * binfmt;
1758 struct inode * inode;
1759 struct file * file;
d84f4f99
DH
1760 const struct cred *old_cred;
1761 struct cred *cred;
1da177e4 1762 int retval = 0;
d6e71144 1763 int flag = 0;
d025c9db 1764 int ispipe = 0;
7dc0b22e 1765 unsigned long core_limit = current->signal->rlim[RLIMIT_CORE].rlim_cur;
74aadce9
NH
1766 char **helper_argv = NULL;
1767 int helper_argc = 0;
a293980c
NH
1768 int dump_count = 0;
1769 static atomic_t core_dump_count = ATOMIC_INIT(0);
1da177e4 1770
0a4ff8c2
SG
1771 audit_core_dumps(signr);
1772
1da177e4
LT
1773 binfmt = current->binfmt;
1774 if (!binfmt || !binfmt->core_dump)
1775 goto fail;
d84f4f99
DH
1776
1777 cred = prepare_creds();
1778 if (!cred) {
1779 retval = -ENOMEM;
1780 goto fail;
1781 }
1782
1da177e4 1783 down_write(&mm->mmap_sem);
00ec99da
RM
1784 /*
1785 * If another thread got here first, or we are not dumpable, bail out.
1786 */
999d9fc1 1787 if (mm->core_state || !get_dumpable(mm)) {
1da177e4 1788 up_write(&mm->mmap_sem);
d84f4f99 1789 put_cred(cred);
1da177e4
LT
1790 goto fail;
1791 }
d6e71144
AC
1792
1793 /*
1794 * We cannot trust fsuid as being the "true" uid of the
1795 * process nor do we know its entire history. We only know it
1796 * was tainted so we dump it as root in mode 2.
1797 */
6c5d5238 1798 if (get_dumpable(mm) == 2) { /* Setuid core dump mode */
d6e71144 1799 flag = O_EXCL; /* Stop rewrite attacks */
d84f4f99 1800 cred->fsuid = 0; /* Dump root private */
d6e71144 1801 }
1291cf41 1802
9d5b327b 1803 retval = coredump_wait(exit_code, &core_state);
d84f4f99
DH
1804 if (retval < 0) {
1805 put_cred(cred);
1291cf41 1806 goto fail;
d84f4f99
DH
1807 }
1808
1809 old_cred = override_creds(cred);
1da177e4
LT
1810
1811 /*
1812 * Clear any false indication of pending signals that might
1813 * be seen by the filesystem code called to write the core file.
1814 */
1da177e4
LT
1815 clear_thread_flag(TIF_SIGPENDING);
1816
1da177e4
LT
1817 /*
1818 * lock_kernel() because format_corename() is controlled by sysctl, which
1819 * uses lock_kernel()
1820 */
1821 lock_kernel();
6409324b 1822 ispipe = format_corename(corename, signr);
1da177e4 1823 unlock_kernel();
725eae32 1824
74aadce9 1825 if ((!ispipe) && (core_limit < binfmt->min_coredump))
7dc0b22e
NH
1826 goto fail_unlock;
1827
c4bbafda 1828 if (ispipe) {
725eae32
NH
1829 if (core_limit == 0) {
1830 /*
1831 * Normally core limits are irrelevant to pipes, since
1832 * we're not writing to the file system, but we use
1833 * core_limit of 0 here as a speacial value. Any
1834 * non-zero limit gets set to RLIM_INFINITY below, but
1835 * a limit of 0 skips the dump. This is a consistent
1836 * way to catch recursive crashes. We can still crash
1837 * if the core_pattern binary sets RLIM_CORE = !0
1838 * but it runs as root, and can do lots of stupid things
1839 * Note that we use task_tgid_vnr here to grab the pid
1840 * of the process group leader. That way we get the
1841 * right pid if a thread in a multi-threaded
1842 * core_pattern process dies.
1843 */
1844 printk(KERN_WARNING
1845 "Process %d(%s) has RLIMIT_CORE set to 0\n",
1846 task_tgid_vnr(current), current->comm);
1847 printk(KERN_WARNING "Aborting core\n");
1848 goto fail_unlock;
1849 }
1850
a293980c
NH
1851 dump_count = atomic_inc_return(&core_dump_count);
1852 if (core_pipe_limit && (core_pipe_limit < dump_count)) {
1853 printk(KERN_WARNING "Pid %d(%s) over core_pipe_limit\n",
1854 task_tgid_vnr(current), current->comm);
1855 printk(KERN_WARNING "Skipping core dump\n");
1856 goto fail_dropcount;
1857 }
1858
74aadce9 1859 helper_argv = argv_split(GFP_KERNEL, corename+1, &helper_argc);
350eaf79
TH
1860 if (!helper_argv) {
1861 printk(KERN_WARNING "%s failed to allocate memory\n",
1862 __func__);
a293980c 1863 goto fail_dropcount;
350eaf79 1864 }
32321137
NH
1865
1866 core_limit = RLIM_INFINITY;
1867
d025c9db 1868 /* SIGPIPE can happen, but it's just never processed */
a293980c 1869 if (call_usermodehelper_pipe(helper_argv[0], helper_argv, NULL,
32321137 1870 &file)) {
d025c9db
AK
1871 printk(KERN_INFO "Core dump to %s pipe failed\n",
1872 corename);
a293980c 1873 goto fail_dropcount;
d025c9db 1874 }
d025c9db
AK
1875 } else
1876 file = filp_open(corename,
6d4df677
AD
1877 O_CREAT | 2 | O_NOFOLLOW | O_LARGEFILE | flag,
1878 0600);
1da177e4 1879 if (IS_ERR(file))
a293980c 1880 goto fail_dropcount;
0f7fc9e4 1881 inode = file->f_path.dentry->d_inode;
1da177e4
LT
1882 if (inode->i_nlink > 1)
1883 goto close_fail; /* multiple links - don't dump */
0f7fc9e4 1884 if (!ispipe && d_unhashed(file->f_path.dentry))
1da177e4
LT
1885 goto close_fail;
1886
d025c9db
AK
1887 /* AK: actually i see no reason to not allow this for named pipes etc.,
1888 but keep the previous behaviour for now. */
1889 if (!ispipe && !S_ISREG(inode->i_mode))
1da177e4 1890 goto close_fail;
c46f739d
IM
1891 /*
1892 * Dont allow local users get cute and trick others to coredump
1893 * into their pre-created files:
1894 */
da9592ed 1895 if (inode->i_uid != current_fsuid())
c46f739d 1896 goto close_fail;
1da177e4
LT
1897 if (!file->f_op)
1898 goto close_fail;
1899 if (!file->f_op->write)
1900 goto close_fail;
0f7fc9e4 1901 if (!ispipe && do_truncate(file->f_path.dentry, 0, 0, file) != 0)
1da177e4
LT
1902 goto close_fail;
1903
7dc0b22e 1904 retval = binfmt->core_dump(signr, regs, file, core_limit);
1da177e4
LT
1905
1906 if (retval)
1907 current->signal->group_exit_code |= 0x80;
1908close_fail:
61be228a
NH
1909 if (ispipe && core_pipe_limit)
1910 wait_for_dump_helpers(file);
1da177e4 1911 filp_close(file, NULL);
a293980c
NH
1912fail_dropcount:
1913 if (dump_count)
1914 atomic_dec(&core_dump_count);
1da177e4 1915fail_unlock:
74aadce9
NH
1916 if (helper_argv)
1917 argv_free(helper_argv);
1918
d84f4f99
DH
1919 revert_creds(old_cred);
1920 put_cred(cred);
a94e2d40 1921 coredump_finish(mm);
1da177e4 1922fail:
8cd3ac3a 1923 return;
1da177e4 1924}