]> git.ipfire.org Git - people/ms/linux.git/blame - fs/exec.c
exec: unify do_execve/compat_do_execve code
[people/ms/linux.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>
ba92a43d 31#include <linux/swap.h>
74aadce9 32#include <linux/string.h>
1da177e4 33#include <linux/init.h>
ca5b172b 34#include <linux/pagemap.h>
cdd6c482 35#include <linux/perf_event.h>
1da177e4
LT
36#include <linux/highmem.h>
37#include <linux/spinlock.h>
38#include <linux/key.h>
39#include <linux/personality.h>
40#include <linux/binfmts.h>
1da177e4 41#include <linux/utsname.h>
84d73786 42#include <linux/pid_namespace.h>
1da177e4
LT
43#include <linux/module.h>
44#include <linux/namei.h>
45#include <linux/proc_fs.h>
1da177e4
LT
46#include <linux/mount.h>
47#include <linux/security.h>
48#include <linux/syscalls.h>
8f0ab514 49#include <linux/tsacct_kern.h>
9f46080c 50#include <linux/cn_proc.h>
473ae30b 51#include <linux/audit.h>
6341c393 52#include <linux/tracehook.h>
5f4123be 53#include <linux/kmod.h>
6110e3ab 54#include <linux/fsnotify.h>
5ad4e53b 55#include <linux/fs_struct.h>
61be228a 56#include <linux/pipe_fs_i.h>
3d5992d2 57#include <linux/oom.h>
0e028465 58#include <linux/compat.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
1b0d300b
XF
70struct core_name {
71 char *corename;
72 int used, size;
73};
74static atomic_t call_count = ATOMIC_INIT(1);
75
1da177e4
LT
76/* The maximal length of core_pattern is also specified in sysctl.c */
77
e4dc1b14 78static LIST_HEAD(formats);
1da177e4
LT
79static DEFINE_RWLOCK(binfmt_lock);
80
74641f58 81int __register_binfmt(struct linux_binfmt * fmt, int insert)
1da177e4 82{
1da177e4
LT
83 if (!fmt)
84 return -EINVAL;
1da177e4 85 write_lock(&binfmt_lock);
74641f58
IK
86 insert ? list_add(&fmt->lh, &formats) :
87 list_add_tail(&fmt->lh, &formats);
1da177e4
LT
88 write_unlock(&binfmt_lock);
89 return 0;
90}
91
74641f58 92EXPORT_SYMBOL(__register_binfmt);
1da177e4 93
f6b450d4 94void unregister_binfmt(struct linux_binfmt * fmt)
1da177e4 95{
1da177e4 96 write_lock(&binfmt_lock);
e4dc1b14 97 list_del(&fmt->lh);
1da177e4 98 write_unlock(&binfmt_lock);
1da177e4
LT
99}
100
101EXPORT_SYMBOL(unregister_binfmt);
102
103static inline void put_binfmt(struct linux_binfmt * fmt)
104{
105 module_put(fmt->module);
106}
107
108/*
109 * Note that a shared library must be both readable and executable due to
110 * security reasons.
111 *
112 * Also note that we take the address to load from from the file itself.
113 */
1e7bfb21 114SYSCALL_DEFINE1(uselib, const char __user *, library)
1da177e4 115{
964bd183 116 struct file *file;
964bd183
AV
117 char *tmp = getname(library);
118 int error = PTR_ERR(tmp);
47c805dc
AV
119 static const struct open_flags uselib_flags = {
120 .open_flag = O_LARGEFILE | O_RDONLY | __FMODE_EXEC,
121 .acc_mode = MAY_READ | MAY_EXEC | MAY_OPEN,
122 .intent = LOOKUP_OPEN
123 };
964bd183 124
6e8341a1
AV
125 if (IS_ERR(tmp))
126 goto out;
127
47c805dc 128 file = do_filp_open(AT_FDCWD, tmp, &uselib_flags, LOOKUP_FOLLOW);
6e8341a1
AV
129 putname(tmp);
130 error = PTR_ERR(file);
131 if (IS_ERR(file))
1da177e4
LT
132 goto out;
133
134 error = -EINVAL;
6e8341a1 135 if (!S_ISREG(file->f_path.dentry->d_inode->i_mode))
1da177e4
LT
136 goto exit;
137
30524472 138 error = -EACCES;
6e8341a1 139 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC)
1da177e4
LT
140 goto exit;
141
2a12a9d7 142 fsnotify_open(file);
6110e3ab 143
1da177e4
LT
144 error = -ENOEXEC;
145 if(file->f_op) {
146 struct linux_binfmt * fmt;
147
148 read_lock(&binfmt_lock);
e4dc1b14 149 list_for_each_entry(fmt, &formats, lh) {
1da177e4
LT
150 if (!fmt->load_shlib)
151 continue;
152 if (!try_module_get(fmt->module))
153 continue;
154 read_unlock(&binfmt_lock);
155 error = fmt->load_shlib(file);
156 read_lock(&binfmt_lock);
157 put_binfmt(fmt);
158 if (error != -ENOEXEC)
159 break;
160 }
161 read_unlock(&binfmt_lock);
162 }
6e8341a1 163exit:
1da177e4
LT
164 fput(file);
165out:
166 return error;
1da177e4
LT
167}
168
b6a2fea3
OW
169#ifdef CONFIG_MMU
170
0e028465 171static void acct_arg_size(struct linux_binprm *bprm, unsigned long pages)
3c77f845
ON
172{
173 struct mm_struct *mm = current->mm;
174 long diff = (long)(pages - bprm->vma_pages);
175
176 if (!mm || !diff)
177 return;
178
179 bprm->vma_pages = pages;
180
181#ifdef SPLIT_RSS_COUNTING
182 add_mm_counter(mm, MM_ANONPAGES, diff);
183#else
184 spin_lock(&mm->page_table_lock);
185 add_mm_counter(mm, MM_ANONPAGES, diff);
186 spin_unlock(&mm->page_table_lock);
187#endif
188}
189
0e028465 190static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
b6a2fea3
OW
191 int write)
192{
193 struct page *page;
194 int ret;
195
196#ifdef CONFIG_STACK_GROWSUP
197 if (write) {
198 ret = expand_stack_downwards(bprm->vma, pos);
199 if (ret < 0)
200 return NULL;
201 }
202#endif
203 ret = get_user_pages(current, bprm->mm, pos,
204 1, write, 1, &page, NULL);
205 if (ret <= 0)
206 return NULL;
207
208 if (write) {
b6a2fea3 209 unsigned long size = bprm->vma->vm_end - bprm->vma->vm_start;
a64e715f
LT
210 struct rlimit *rlim;
211
3c77f845
ON
212 acct_arg_size(bprm, size / PAGE_SIZE);
213
a64e715f
LT
214 /*
215 * We've historically supported up to 32 pages (ARG_MAX)
216 * of argument strings even with small stacks
217 */
218 if (size <= ARG_MAX)
219 return page;
b6a2fea3
OW
220
221 /*
222 * Limit to 1/4-th the stack size for the argv+env strings.
223 * This ensures that:
224 * - the remaining binfmt code will not run out of stack space,
225 * - the program will have a reasonable amount of stack left
226 * to work from.
227 */
a64e715f 228 rlim = current->signal->rlim;
d554ed89 229 if (size > ACCESS_ONCE(rlim[RLIMIT_STACK].rlim_cur) / 4) {
b6a2fea3
OW
230 put_page(page);
231 return NULL;
232 }
233 }
234
235 return page;
236}
237
238static void put_arg_page(struct page *page)
239{
240 put_page(page);
241}
242
243static void free_arg_page(struct linux_binprm *bprm, int i)
244{
245}
246
247static void free_arg_pages(struct linux_binprm *bprm)
248{
249}
250
251static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
252 struct page *page)
253{
254 flush_cache_page(bprm->vma, pos, page_to_pfn(page));
255}
256
257static int __bprm_mm_init(struct linux_binprm *bprm)
258{
eaccbfa5 259 int err;
b6a2fea3
OW
260 struct vm_area_struct *vma = NULL;
261 struct mm_struct *mm = bprm->mm;
262
263 bprm->vma = vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
264 if (!vma)
eaccbfa5 265 return -ENOMEM;
b6a2fea3
OW
266
267 down_write(&mm->mmap_sem);
268 vma->vm_mm = mm;
269
270 /*
271 * Place the stack at the largest stack address the architecture
272 * supports. Later, we'll move this to an appropriate place. We don't
273 * use STACK_TOP because that can depend on attributes which aren't
274 * configured yet.
275 */
a8bef8ff 276 BUG_ON(VM_STACK_FLAGS & VM_STACK_INCOMPLETE_SETUP);
b6a2fea3
OW
277 vma->vm_end = STACK_TOP_MAX;
278 vma->vm_start = vma->vm_end - PAGE_SIZE;
a8bef8ff 279 vma->vm_flags = VM_STACK_FLAGS | VM_STACK_INCOMPLETE_SETUP;
3ed75eb8 280 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
5beb4930 281 INIT_LIST_HEAD(&vma->anon_vma_chain);
462e635e
TO
282
283 err = security_file_mmap(NULL, 0, 0, 0, vma->vm_start, 1);
284 if (err)
285 goto err;
286
b6a2fea3 287 err = insert_vm_struct(mm, vma);
eaccbfa5 288 if (err)
b6a2fea3 289 goto err;
b6a2fea3
OW
290
291 mm->stack_vm = mm->total_vm = 1;
292 up_write(&mm->mmap_sem);
b6a2fea3 293 bprm->p = vma->vm_end - sizeof(void *);
b6a2fea3 294 return 0;
b6a2fea3 295err:
eaccbfa5
LFC
296 up_write(&mm->mmap_sem);
297 bprm->vma = NULL;
298 kmem_cache_free(vm_area_cachep, vma);
b6a2fea3
OW
299 return err;
300}
301
302static bool valid_arg_len(struct linux_binprm *bprm, long len)
303{
304 return len <= MAX_ARG_STRLEN;
305}
306
307#else
308
0e028465 309static inline void acct_arg_size(struct linux_binprm *bprm, unsigned long pages)
3c77f845
ON
310{
311}
312
0e028465 313static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
b6a2fea3
OW
314 int write)
315{
316 struct page *page;
317
318 page = bprm->page[pos / PAGE_SIZE];
319 if (!page && write) {
320 page = alloc_page(GFP_HIGHUSER|__GFP_ZERO);
321 if (!page)
322 return NULL;
323 bprm->page[pos / PAGE_SIZE] = page;
324 }
325
326 return page;
327}
328
329static void put_arg_page(struct page *page)
330{
331}
332
333static void free_arg_page(struct linux_binprm *bprm, int i)
334{
335 if (bprm->page[i]) {
336 __free_page(bprm->page[i]);
337 bprm->page[i] = NULL;
338 }
339}
340
341static void free_arg_pages(struct linux_binprm *bprm)
342{
343 int i;
344
345 for (i = 0; i < MAX_ARG_PAGES; i++)
346 free_arg_page(bprm, i);
347}
348
349static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
350 struct page *page)
351{
352}
353
354static int __bprm_mm_init(struct linux_binprm *bprm)
355{
356 bprm->p = PAGE_SIZE * MAX_ARG_PAGES - sizeof(void *);
357 return 0;
358}
359
360static bool valid_arg_len(struct linux_binprm *bprm, long len)
361{
362 return len <= bprm->p;
363}
364
365#endif /* CONFIG_MMU */
366
367/*
368 * Create a new mm_struct and populate it with a temporary stack
369 * vm_area_struct. We don't have enough context at this point to set the stack
370 * flags, permissions, and offset, so we use temporary values. We'll update
371 * them later in setup_arg_pages().
372 */
373int bprm_mm_init(struct linux_binprm *bprm)
374{
375 int err;
376 struct mm_struct *mm = NULL;
377
378 bprm->mm = mm = mm_alloc();
379 err = -ENOMEM;
380 if (!mm)
381 goto err;
382
383 err = init_new_context(current, mm);
384 if (err)
385 goto err;
386
387 err = __bprm_mm_init(bprm);
388 if (err)
389 goto err;
390
391 return 0;
392
393err:
394 if (mm) {
395 bprm->mm = NULL;
396 mmdrop(mm);
397 }
398
399 return err;
400}
401
ba2d0162 402struct user_arg_ptr {
0e028465
ON
403#ifdef CONFIG_COMPAT
404 bool is_compat;
405#endif
406 union {
407 const char __user *const __user *native;
408#ifdef CONFIG_COMPAT
409 compat_uptr_t __user *compat;
410#endif
411 } ptr;
ba2d0162
ON
412};
413
414static const char __user *get_user_arg_ptr(struct user_arg_ptr argv, int nr)
1d1dbf81 415{
0e028465
ON
416 const char __user *native;
417
418#ifdef CONFIG_COMPAT
419 if (unlikely(argv.is_compat)) {
420 compat_uptr_t compat;
421
422 if (get_user(compat, argv.ptr.compat + nr))
423 return ERR_PTR(-EFAULT);
1d1dbf81 424
0e028465
ON
425 return compat_ptr(compat);
426 }
427#endif
428
429 if (get_user(native, argv.ptr.native + nr))
1d1dbf81
ON
430 return ERR_PTR(-EFAULT);
431
0e028465 432 return native;
1d1dbf81
ON
433}
434
1da177e4
LT
435/*
436 * count() counts the number of strings in array ARGV.
437 */
ba2d0162 438static int count(struct user_arg_ptr argv, int max)
1da177e4
LT
439{
440 int i = 0;
441
0e028465 442 if (argv.ptr.native != NULL) {
1da177e4 443 for (;;) {
1d1dbf81 444 const char __user *p = get_user_arg_ptr(argv, i);
1da177e4 445
1da177e4
LT
446 if (!p)
447 break;
1d1dbf81
ON
448
449 if (IS_ERR(p))
450 return -EFAULT;
451
362e6663 452 if (i++ >= max)
1da177e4 453 return -E2BIG;
9aea5a65
RM
454
455 if (fatal_signal_pending(current))
456 return -ERESTARTNOHAND;
1da177e4
LT
457 cond_resched();
458 }
459 }
460 return i;
461}
462
463/*
b6a2fea3
OW
464 * 'copy_strings()' copies argument/environment strings from the old
465 * processes's memory to the new process's stack. The call to get_user_pages()
466 * ensures the destination page is created and not swapped out.
1da177e4 467 */
ba2d0162 468static int copy_strings(int argc, struct user_arg_ptr argv,
75c96f85 469 struct linux_binprm *bprm)
1da177e4
LT
470{
471 struct page *kmapped_page = NULL;
472 char *kaddr = NULL;
b6a2fea3 473 unsigned long kpos = 0;
1da177e4
LT
474 int ret;
475
476 while (argc-- > 0) {
d7627467 477 const char __user *str;
1da177e4
LT
478 int len;
479 unsigned long pos;
480
1d1dbf81
ON
481 ret = -EFAULT;
482 str = get_user_arg_ptr(argv, argc);
483 if (IS_ERR(str))
1da177e4 484 goto out;
1da177e4 485
1d1dbf81
ON
486 len = strnlen_user(str, MAX_ARG_STRLEN);
487 if (!len)
488 goto out;
489
490 ret = -E2BIG;
491 if (!valid_arg_len(bprm, len))
1da177e4 492 goto out;
1da177e4 493
b6a2fea3 494 /* We're going to work our way backwords. */
1da177e4 495 pos = bprm->p;
b6a2fea3
OW
496 str += len;
497 bprm->p -= len;
1da177e4
LT
498
499 while (len > 0) {
1da177e4 500 int offset, bytes_to_copy;
1da177e4 501
9aea5a65
RM
502 if (fatal_signal_pending(current)) {
503 ret = -ERESTARTNOHAND;
504 goto out;
505 }
7993bc1f
RM
506 cond_resched();
507
1da177e4 508 offset = pos % PAGE_SIZE;
b6a2fea3
OW
509 if (offset == 0)
510 offset = PAGE_SIZE;
511
512 bytes_to_copy = offset;
513 if (bytes_to_copy > len)
514 bytes_to_copy = len;
515
516 offset -= bytes_to_copy;
517 pos -= bytes_to_copy;
518 str -= bytes_to_copy;
519 len -= bytes_to_copy;
520
521 if (!kmapped_page || kpos != (pos & PAGE_MASK)) {
522 struct page *page;
523
524 page = get_arg_page(bprm, pos, 1);
1da177e4 525 if (!page) {
b6a2fea3 526 ret = -E2BIG;
1da177e4
LT
527 goto out;
528 }
1da177e4 529
b6a2fea3
OW
530 if (kmapped_page) {
531 flush_kernel_dcache_page(kmapped_page);
1da177e4 532 kunmap(kmapped_page);
b6a2fea3
OW
533 put_arg_page(kmapped_page);
534 }
1da177e4
LT
535 kmapped_page = page;
536 kaddr = kmap(kmapped_page);
b6a2fea3
OW
537 kpos = pos & PAGE_MASK;
538 flush_arg_page(bprm, kpos, kmapped_page);
1da177e4 539 }
b6a2fea3 540 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) {
1da177e4
LT
541 ret = -EFAULT;
542 goto out;
543 }
1da177e4
LT
544 }
545 }
546 ret = 0;
547out:
b6a2fea3
OW
548 if (kmapped_page) {
549 flush_kernel_dcache_page(kmapped_page);
1da177e4 550 kunmap(kmapped_page);
b6a2fea3
OW
551 put_arg_page(kmapped_page);
552 }
1da177e4
LT
553 return ret;
554}
555
556/*
557 * Like copy_strings, but get argv and its values from kernel memory.
558 */
ba2d0162 559int copy_strings_kernel(int argc, const char *const *__argv,
d7627467 560 struct linux_binprm *bprm)
1da177e4
LT
561{
562 int r;
563 mm_segment_t oldfs = get_fs();
ba2d0162 564 struct user_arg_ptr argv = {
0e028465 565 .ptr.native = (const char __user *const __user *)__argv,
ba2d0162
ON
566 };
567
1da177e4 568 set_fs(KERNEL_DS);
ba2d0162 569 r = copy_strings(argc, argv, bprm);
1da177e4 570 set_fs(oldfs);
ba2d0162 571
1da177e4
LT
572 return r;
573}
1da177e4
LT
574EXPORT_SYMBOL(copy_strings_kernel);
575
576#ifdef CONFIG_MMU
b6a2fea3 577
1da177e4 578/*
b6a2fea3
OW
579 * During bprm_mm_init(), we create a temporary stack at STACK_TOP_MAX. Once
580 * the binfmt code determines where the new stack should reside, we shift it to
581 * its final location. The process proceeds as follows:
1da177e4 582 *
b6a2fea3
OW
583 * 1) Use shift to calculate the new vma endpoints.
584 * 2) Extend vma to cover both the old and new ranges. This ensures the
585 * arguments passed to subsequent functions are consistent.
586 * 3) Move vma's page tables to the new range.
587 * 4) Free up any cleared pgd range.
588 * 5) Shrink the vma to cover only the new range.
1da177e4 589 */
b6a2fea3 590static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift)
1da177e4
LT
591{
592 struct mm_struct *mm = vma->vm_mm;
b6a2fea3
OW
593 unsigned long old_start = vma->vm_start;
594 unsigned long old_end = vma->vm_end;
595 unsigned long length = old_end - old_start;
596 unsigned long new_start = old_start - shift;
597 unsigned long new_end = old_end - shift;
598 struct mmu_gather *tlb;
1da177e4 599
b6a2fea3 600 BUG_ON(new_start > new_end);
1da177e4 601
b6a2fea3
OW
602 /*
603 * ensure there are no vmas between where we want to go
604 * and where we are
605 */
606 if (vma != find_vma(mm, new_start))
607 return -EFAULT;
608
609 /*
610 * cover the whole range: [new_start, old_end)
611 */
5beb4930
RR
612 if (vma_adjust(vma, new_start, old_end, vma->vm_pgoff, NULL))
613 return -ENOMEM;
b6a2fea3
OW
614
615 /*
616 * move the page tables downwards, on failure we rely on
617 * process cleanup to remove whatever mess we made.
618 */
619 if (length != move_page_tables(vma, old_start,
620 vma, new_start, length))
621 return -ENOMEM;
622
623 lru_add_drain();
624 tlb = tlb_gather_mmu(mm, 0);
625 if (new_end > old_start) {
626 /*
627 * when the old and new regions overlap clear from new_end.
628 */
42b77728 629 free_pgd_range(tlb, new_end, old_end, new_end,
b6a2fea3
OW
630 vma->vm_next ? vma->vm_next->vm_start : 0);
631 } else {
632 /*
633 * otherwise, clean from old_start; this is done to not touch
634 * the address space in [new_end, old_start) some architectures
635 * have constraints on va-space that make this illegal (IA64) -
636 * for the others its just a little faster.
637 */
42b77728 638 free_pgd_range(tlb, old_start, old_end, new_end,
b6a2fea3 639 vma->vm_next ? vma->vm_next->vm_start : 0);
1da177e4 640 }
b6a2fea3
OW
641 tlb_finish_mmu(tlb, new_end, old_end);
642
643 /*
5beb4930 644 * Shrink the vma to just the new range. Always succeeds.
b6a2fea3
OW
645 */
646 vma_adjust(vma, new_start, new_end, vma->vm_pgoff, NULL);
647
648 return 0;
1da177e4
LT
649}
650
b6a2fea3
OW
651/*
652 * Finalizes the stack vm_area_struct. The flags and permissions are updated,
653 * the stack is optionally relocated, and some extra space is added.
654 */
1da177e4
LT
655int setup_arg_pages(struct linux_binprm *bprm,
656 unsigned long stack_top,
657 int executable_stack)
658{
b6a2fea3
OW
659 unsigned long ret;
660 unsigned long stack_shift;
1da177e4 661 struct mm_struct *mm = current->mm;
b6a2fea3
OW
662 struct vm_area_struct *vma = bprm->vma;
663 struct vm_area_struct *prev = NULL;
664 unsigned long vm_flags;
665 unsigned long stack_base;
803bf5ec
MN
666 unsigned long stack_size;
667 unsigned long stack_expand;
668 unsigned long rlim_stack;
1da177e4
LT
669
670#ifdef CONFIG_STACK_GROWSUP
1da177e4 671 /* Limit stack size to 1GB */
d554ed89 672 stack_base = rlimit_max(RLIMIT_STACK);
1da177e4
LT
673 if (stack_base > (1 << 30))
674 stack_base = 1 << 30;
1da177e4 675
b6a2fea3
OW
676 /* Make sure we didn't let the argument array grow too large. */
677 if (vma->vm_end - vma->vm_start > stack_base)
678 return -ENOMEM;
1da177e4 679
b6a2fea3 680 stack_base = PAGE_ALIGN(stack_top - stack_base);
1da177e4 681
b6a2fea3
OW
682 stack_shift = vma->vm_start - stack_base;
683 mm->arg_start = bprm->p - stack_shift;
684 bprm->p = vma->vm_end - stack_shift;
1da177e4 685#else
b6a2fea3
OW
686 stack_top = arch_align_stack(stack_top);
687 stack_top = PAGE_ALIGN(stack_top);
1b528181
RM
688
689 if (unlikely(stack_top < mmap_min_addr) ||
690 unlikely(vma->vm_end - vma->vm_start >= stack_top - mmap_min_addr))
691 return -ENOMEM;
692
b6a2fea3
OW
693 stack_shift = vma->vm_end - stack_top;
694
695 bprm->p -= stack_shift;
1da177e4 696 mm->arg_start = bprm->p;
1da177e4
LT
697#endif
698
1da177e4 699 if (bprm->loader)
b6a2fea3
OW
700 bprm->loader -= stack_shift;
701 bprm->exec -= stack_shift;
1da177e4 702
1da177e4 703 down_write(&mm->mmap_sem);
96a8e13e 704 vm_flags = VM_STACK_FLAGS;
b6a2fea3
OW
705
706 /*
707 * Adjust stack execute permissions; explicitly enable for
708 * EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X and leave alone
709 * (arch default) otherwise.
710 */
711 if (unlikely(executable_stack == EXSTACK_ENABLE_X))
712 vm_flags |= VM_EXEC;
713 else if (executable_stack == EXSTACK_DISABLE_X)
714 vm_flags &= ~VM_EXEC;
715 vm_flags |= mm->def_flags;
a8bef8ff 716 vm_flags |= VM_STACK_INCOMPLETE_SETUP;
b6a2fea3
OW
717
718 ret = mprotect_fixup(vma, &prev, vma->vm_start, vma->vm_end,
719 vm_flags);
720 if (ret)
721 goto out_unlock;
722 BUG_ON(prev != vma);
723
724 /* Move stack pages down in memory. */
725 if (stack_shift) {
726 ret = shift_arg_pages(vma, stack_shift);
fc63cf23
AB
727 if (ret)
728 goto out_unlock;
1da177e4
LT
729 }
730
a8bef8ff
MG
731 /* mprotect_fixup is overkill to remove the temporary stack flags */
732 vma->vm_flags &= ~VM_STACK_INCOMPLETE_SETUP;
733
5ef097dd 734 stack_expand = 131072UL; /* randomly 32*4k (or 2*64k) pages */
803bf5ec
MN
735 stack_size = vma->vm_end - vma->vm_start;
736 /*
737 * Align this down to a page boundary as expand_stack
738 * will align it up.
739 */
740 rlim_stack = rlimit(RLIMIT_STACK) & PAGE_MASK;
b6a2fea3 741#ifdef CONFIG_STACK_GROWSUP
803bf5ec
MN
742 if (stack_size + stack_expand > rlim_stack)
743 stack_base = vma->vm_start + rlim_stack;
744 else
745 stack_base = vma->vm_end + stack_expand;
b6a2fea3 746#else
803bf5ec
MN
747 if (stack_size + stack_expand > rlim_stack)
748 stack_base = vma->vm_end - rlim_stack;
749 else
750 stack_base = vma->vm_start - stack_expand;
b6a2fea3 751#endif
3af9e859 752 current->mm->start_stack = bprm->p;
b6a2fea3
OW
753 ret = expand_stack(vma, stack_base);
754 if (ret)
755 ret = -EFAULT;
756
757out_unlock:
1da177e4 758 up_write(&mm->mmap_sem);
fc63cf23 759 return ret;
1da177e4 760}
1da177e4
LT
761EXPORT_SYMBOL(setup_arg_pages);
762
1da177e4
LT
763#endif /* CONFIG_MMU */
764
765struct file *open_exec(const char *name)
766{
1da177e4 767 struct file *file;
e56b6a5d 768 int err;
47c805dc
AV
769 static const struct open_flags open_exec_flags = {
770 .open_flag = O_LARGEFILE | O_RDONLY | __FMODE_EXEC,
771 .acc_mode = MAY_EXEC | MAY_OPEN,
772 .intent = LOOKUP_OPEN
773 };
1da177e4 774
47c805dc 775 file = do_filp_open(AT_FDCWD, name, &open_exec_flags, LOOKUP_FOLLOW);
6e8341a1 776 if (IS_ERR(file))
e56b6a5d
CH
777 goto out;
778
779 err = -EACCES;
6e8341a1
AV
780 if (!S_ISREG(file->f_path.dentry->d_inode->i_mode))
781 goto exit;
e56b6a5d 782
6e8341a1
AV
783 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC)
784 goto exit;
e56b6a5d 785
2a12a9d7 786 fsnotify_open(file);
6110e3ab 787
e56b6a5d 788 err = deny_write_access(file);
6e8341a1
AV
789 if (err)
790 goto exit;
1da177e4 791
6e8341a1 792out:
e56b6a5d
CH
793 return file;
794
6e8341a1
AV
795exit:
796 fput(file);
e56b6a5d
CH
797 return ERR_PTR(err);
798}
1da177e4
LT
799EXPORT_SYMBOL(open_exec);
800
6777d773
MZ
801int kernel_read(struct file *file, loff_t offset,
802 char *addr, unsigned long count)
1da177e4
LT
803{
804 mm_segment_t old_fs;
805 loff_t pos = offset;
806 int result;
807
808 old_fs = get_fs();
809 set_fs(get_ds());
810 /* The cast to a user pointer is valid due to the set_fs() */
811 result = vfs_read(file, (void __user *)addr, count, &pos);
812 set_fs(old_fs);
813 return result;
814}
815
816EXPORT_SYMBOL(kernel_read);
817
818static int exec_mmap(struct mm_struct *mm)
819{
820 struct task_struct *tsk;
821 struct mm_struct * old_mm, *active_mm;
822
823 /* Notify parent that we're no longer interested in the old VM */
824 tsk = current;
825 old_mm = current->mm;
34e55232 826 sync_mm_rss(tsk, old_mm);
1da177e4
LT
827 mm_release(tsk, old_mm);
828
829 if (old_mm) {
830 /*
831 * Make sure that if there is a core dump in progress
832 * for the old mm, we get out and die instead of going
833 * through with the exec. We must hold mmap_sem around
999d9fc1 834 * checking core_state and changing tsk->mm.
1da177e4
LT
835 */
836 down_read(&old_mm->mmap_sem);
999d9fc1 837 if (unlikely(old_mm->core_state)) {
1da177e4
LT
838 up_read(&old_mm->mmap_sem);
839 return -EINTR;
840 }
841 }
842 task_lock(tsk);
843 active_mm = tsk->active_mm;
844 tsk->mm = mm;
845 tsk->active_mm = mm;
846 activate_mm(active_mm, mm);
3d5992d2
YH
847 if (old_mm && tsk->signal->oom_score_adj == OOM_SCORE_ADJ_MIN) {
848 atomic_dec(&old_mm->oom_disable_count);
849 atomic_inc(&tsk->mm->oom_disable_count);
850 }
1da177e4
LT
851 task_unlock(tsk);
852 arch_pick_mmap_layout(mm);
853 if (old_mm) {
854 up_read(&old_mm->mmap_sem);
7dddb12c 855 BUG_ON(active_mm != old_mm);
31a78f23 856 mm_update_next_owner(old_mm);
1da177e4
LT
857 mmput(old_mm);
858 return 0;
859 }
860 mmdrop(active_mm);
861 return 0;
862}
863
864/*
865 * This function makes sure the current process has its own signal table,
866 * so that flush_signal_handlers can later reset the handlers without
867 * disturbing other processes. (Other processes might share the signal
868 * table via the CLONE_SIGHAND option to clone().)
869 */
858119e1 870static int de_thread(struct task_struct *tsk)
1da177e4
LT
871{
872 struct signal_struct *sig = tsk->signal;
b2c903b8 873 struct sighand_struct *oldsighand = tsk->sighand;
1da177e4 874 spinlock_t *lock = &oldsighand->siglock;
1da177e4 875
aafe6c2a 876 if (thread_group_empty(tsk))
1da177e4
LT
877 goto no_thread_group;
878
879 /*
880 * Kill all other threads in the thread group.
1da177e4 881 */
1da177e4 882 spin_lock_irq(lock);
ed5d2cac 883 if (signal_group_exit(sig)) {
1da177e4
LT
884 /*
885 * Another group action in progress, just
886 * return so that the signal is processed.
887 */
888 spin_unlock_irq(lock);
1da177e4
LT
889 return -EAGAIN;
890 }
d344193a 891
ed5d2cac 892 sig->group_exit_task = tsk;
d344193a
ON
893 sig->notify_count = zap_other_threads(tsk);
894 if (!thread_group_leader(tsk))
895 sig->notify_count--;
1da177e4 896
d344193a 897 while (sig->notify_count) {
1da177e4
LT
898 __set_current_state(TASK_UNINTERRUPTIBLE);
899 spin_unlock_irq(lock);
900 schedule();
901 spin_lock_irq(lock);
902 }
1da177e4
LT
903 spin_unlock_irq(lock);
904
905 /*
906 * At this point all other threads have exited, all we have to
907 * do is to wait for the thread group leader to become inactive,
908 * and to assume its PID:
909 */
aafe6c2a 910 if (!thread_group_leader(tsk)) {
8187926b 911 struct task_struct *leader = tsk->group_leader;
6db840fa 912
2800d8d1 913 sig->notify_count = -1; /* for exit_notify() */
6db840fa
ON
914 for (;;) {
915 write_lock_irq(&tasklist_lock);
916 if (likely(leader->exit_state))
917 break;
918 __set_current_state(TASK_UNINTERRUPTIBLE);
919 write_unlock_irq(&tasklist_lock);
920 schedule();
921 }
1da177e4 922
f5e90281
RM
923 /*
924 * The only record we have of the real-time age of a
925 * process, regardless of execs it's done, is start_time.
926 * All the past CPU time is accumulated in signal_struct
927 * from sister threads now dead. But in this non-leader
928 * exec, nothing survives from the original leader thread,
929 * whose birth marks the true age of this process now.
930 * When we take on its identity by switching to its PID, we
931 * also take its birthdate (always earlier than our own).
932 */
aafe6c2a 933 tsk->start_time = leader->start_time;
f5e90281 934
bac0abd6
PE
935 BUG_ON(!same_thread_group(leader, tsk));
936 BUG_ON(has_group_leader_pid(tsk));
1da177e4
LT
937 /*
938 * An exec() starts a new thread group with the
939 * TGID of the previous thread group. Rehash the
940 * two threads with a switched PID, and release
941 * the former thread group leader:
942 */
d73d6529
EB
943
944 /* Become a process group leader with the old leader's pid.
c18258c6
EB
945 * The old leader becomes a thread of the this thread group.
946 * Note: The old leader also uses this pid until release_task
d73d6529
EB
947 * is called. Odd but simple and correct.
948 */
aafe6c2a
EB
949 detach_pid(tsk, PIDTYPE_PID);
950 tsk->pid = leader->pid;
3743ca05 951 attach_pid(tsk, PIDTYPE_PID, task_pid(leader));
aafe6c2a
EB
952 transfer_pid(leader, tsk, PIDTYPE_PGID);
953 transfer_pid(leader, tsk, PIDTYPE_SID);
9cd80bbb 954
aafe6c2a 955 list_replace_rcu(&leader->tasks, &tsk->tasks);
9cd80bbb 956 list_replace_init(&leader->sibling, &tsk->sibling);
1da177e4 957
aafe6c2a
EB
958 tsk->group_leader = tsk;
959 leader->group_leader = tsk;
de12a787 960
aafe6c2a 961 tsk->exit_signal = SIGCHLD;
962b564c
ON
962
963 BUG_ON(leader->exit_state != EXIT_ZOMBIE);
964 leader->exit_state = EXIT_DEAD;
1da177e4 965 write_unlock_irq(&tasklist_lock);
8187926b
ON
966
967 release_task(leader);
ed5d2cac 968 }
1da177e4 969
6db840fa
ON
970 sig->group_exit_task = NULL;
971 sig->notify_count = 0;
1da177e4
LT
972
973no_thread_group:
1f10206c
JP
974 if (current->mm)
975 setmax_mm_hiwater_rss(&sig->maxrss, current->mm);
976
1da177e4 977 exit_itimers(sig);
cbaffba1 978 flush_itimer_signals();
329f7dba 979
b2c903b8
ON
980 if (atomic_read(&oldsighand->count) != 1) {
981 struct sighand_struct *newsighand;
1da177e4 982 /*
b2c903b8
ON
983 * This ->sighand is shared with the CLONE_SIGHAND
984 * but not CLONE_THREAD task, switch to the new one.
1da177e4 985 */
b2c903b8
ON
986 newsighand = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
987 if (!newsighand)
988 return -ENOMEM;
989
1da177e4
LT
990 atomic_set(&newsighand->count, 1);
991 memcpy(newsighand->action, oldsighand->action,
992 sizeof(newsighand->action));
993
994 write_lock_irq(&tasklist_lock);
995 spin_lock(&oldsighand->siglock);
aafe6c2a 996 rcu_assign_pointer(tsk->sighand, newsighand);
1da177e4
LT
997 spin_unlock(&oldsighand->siglock);
998 write_unlock_irq(&tasklist_lock);
999
fba2afaa 1000 __cleanup_sighand(oldsighand);
1da177e4
LT
1001 }
1002
aafe6c2a 1003 BUG_ON(!thread_group_leader(tsk));
1da177e4
LT
1004 return 0;
1005}
0840a90d 1006
1da177e4
LT
1007/*
1008 * These functions flushes out all traces of the currently running executable
1009 * so that a new one can be started
1010 */
858119e1 1011static void flush_old_files(struct files_struct * files)
1da177e4
LT
1012{
1013 long j = -1;
badf1662 1014 struct fdtable *fdt;
1da177e4
LT
1015
1016 spin_lock(&files->file_lock);
1017 for (;;) {
1018 unsigned long set, i;
1019
1020 j++;
1021 i = j * __NFDBITS;
badf1662 1022 fdt = files_fdtable(files);
bbea9f69 1023 if (i >= fdt->max_fds)
1da177e4 1024 break;
badf1662 1025 set = fdt->close_on_exec->fds_bits[j];
1da177e4
LT
1026 if (!set)
1027 continue;
badf1662 1028 fdt->close_on_exec->fds_bits[j] = 0;
1da177e4
LT
1029 spin_unlock(&files->file_lock);
1030 for ( ; set ; i++,set >>= 1) {
1031 if (set & 1) {
1032 sys_close(i);
1033 }
1034 }
1035 spin_lock(&files->file_lock);
1036
1037 }
1038 spin_unlock(&files->file_lock);
1039}
1040
59714d65 1041char *get_task_comm(char *buf, struct task_struct *tsk)
1da177e4
LT
1042{
1043 /* buf must be at least sizeof(tsk->comm) in size */
1044 task_lock(tsk);
1045 strncpy(buf, tsk->comm, sizeof(tsk->comm));
1046 task_unlock(tsk);
59714d65 1047 return buf;
1da177e4
LT
1048}
1049
1050void set_task_comm(struct task_struct *tsk, char *buf)
1051{
1052 task_lock(tsk);
4614a696
JS
1053
1054 /*
1055 * Threads may access current->comm without holding
1056 * the task lock, so write the string carefully.
1057 * Readers without a lock may see incomplete new
1058 * names but are safe from non-terminating string reads.
1059 */
1060 memset(tsk->comm, 0, TASK_COMM_LEN);
1061 wmb();
1da177e4
LT
1062 strlcpy(tsk->comm, buf, sizeof(tsk->comm));
1063 task_unlock(tsk);
cdd6c482 1064 perf_event_comm(tsk);
1da177e4
LT
1065}
1066
1067int flush_old_exec(struct linux_binprm * bprm)
1068{
221af7f8 1069 int retval;
1da177e4
LT
1070
1071 /*
1072 * Make sure we have a private signal table and that
1073 * we are unassociated from the previous thread group.
1074 */
1075 retval = de_thread(current);
1076 if (retval)
1077 goto out;
1078
925d1c40
MH
1079 set_mm_exe_file(bprm->mm, bprm->file);
1080
1da177e4
LT
1081 /*
1082 * Release all of the old mmap stuff
1083 */
3c77f845 1084 acct_arg_size(bprm, 0);
1da177e4
LT
1085 retval = exec_mmap(bprm->mm);
1086 if (retval)
fd8328be 1087 goto out;
1da177e4
LT
1088
1089 bprm->mm = NULL; /* We're using it now */
7ab02af4 1090
98391cf4 1091 current->flags &= ~(PF_RANDOMIZE | PF_KTHREAD);
7ab02af4
LT
1092 flush_thread();
1093 current->personality &= ~bprm->per_clear;
1094
221af7f8
LT
1095 return 0;
1096
1097out:
1098 return retval;
1099}
1100EXPORT_SYMBOL(flush_old_exec);
1101
1102void setup_new_exec(struct linux_binprm * bprm)
1103{
1104 int i, ch;
d7627467 1105 const char *name;
221af7f8
LT
1106 char tcomm[sizeof(current->comm)];
1107
1108 arch_pick_mmap_layout(current->mm);
1da177e4
LT
1109
1110 /* This is the point of no return */
1da177e4
LT
1111 current->sas_ss_sp = current->sas_ss_size = 0;
1112
da9592ed 1113 if (current_euid() == current_uid() && current_egid() == current_gid())
6c5d5238 1114 set_dumpable(current->mm, 1);
d6e71144 1115 else
6c5d5238 1116 set_dumpable(current->mm, suid_dumpable);
d6e71144 1117
1da177e4 1118 name = bprm->filename;
36772092
PBG
1119
1120 /* Copies the binary name from after last slash */
1da177e4
LT
1121 for (i=0; (ch = *(name++)) != '\0';) {
1122 if (ch == '/')
36772092 1123 i = 0; /* overwrite what we wrote */
1da177e4
LT
1124 else
1125 if (i < (sizeof(tcomm) - 1))
1126 tcomm[i++] = ch;
1127 }
1128 tcomm[i] = '\0';
1129 set_task_comm(current, tcomm);
1130
0551fbd2
BH
1131 /* Set the new mm task size. We have to do that late because it may
1132 * depend on TIF_32BIT which is only updated in flush_thread() on
1133 * some architectures like powerpc
1134 */
1135 current->mm->task_size = TASK_SIZE;
1136
a6f76f23
DH
1137 /* install the new credentials */
1138 if (bprm->cred->uid != current_euid() ||
1139 bprm->cred->gid != current_egid()) {
d2d56c5f
MH
1140 current->pdeath_signal = 0;
1141 } else if (file_permission(bprm->file, MAY_READ) ||
a6f76f23 1142 bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP) {
6c5d5238 1143 set_dumpable(current->mm, suid_dumpable);
1da177e4
LT
1144 }
1145
f65cb45c
IM
1146 /*
1147 * Flush performance counters when crossing a
1148 * security domain:
1149 */
1150 if (!get_dumpable(current->mm))
cdd6c482 1151 perf_event_exit_task(current);
f65cb45c 1152
1da177e4
LT
1153 /* An exec changes our domain. We are no longer part of the thread
1154 group */
1155
1156 current->self_exec_id++;
1157
1158 flush_signal_handlers(current, 0);
1159 flush_old_files(current->files);
1da177e4 1160}
221af7f8 1161EXPORT_SYMBOL(setup_new_exec);
1da177e4 1162
a2a8474c
ON
1163/*
1164 * Prepare credentials and lock ->cred_guard_mutex.
1165 * install_exec_creds() commits the new creds and drops the lock.
1166 * Or, if exec fails before, free_bprm() should release ->cred and
1167 * and unlock.
1168 */
1169int prepare_bprm_creds(struct linux_binprm *bprm)
1170{
9b1bf12d 1171 if (mutex_lock_interruptible(&current->signal->cred_guard_mutex))
a2a8474c
ON
1172 return -ERESTARTNOINTR;
1173
1174 bprm->cred = prepare_exec_creds();
1175 if (likely(bprm->cred))
1176 return 0;
1177
9b1bf12d 1178 mutex_unlock(&current->signal->cred_guard_mutex);
a2a8474c
ON
1179 return -ENOMEM;
1180}
1181
1182void free_bprm(struct linux_binprm *bprm)
1183{
1184 free_arg_pages(bprm);
1185 if (bprm->cred) {
9b1bf12d 1186 mutex_unlock(&current->signal->cred_guard_mutex);
a2a8474c
ON
1187 abort_creds(bprm->cred);
1188 }
1189 kfree(bprm);
1190}
1191
a6f76f23
DH
1192/*
1193 * install the new credentials for this executable
1194 */
1195void install_exec_creds(struct linux_binprm *bprm)
1196{
1197 security_bprm_committing_creds(bprm);
1198
1199 commit_creds(bprm->cred);
1200 bprm->cred = NULL;
a2a8474c
ON
1201 /*
1202 * cred_guard_mutex must be held at least to this point to prevent
a6f76f23 1203 * ptrace_attach() from altering our determination of the task's
a2a8474c
ON
1204 * credentials; any time after this it may be unlocked.
1205 */
a6f76f23 1206 security_bprm_committed_creds(bprm);
9b1bf12d 1207 mutex_unlock(&current->signal->cred_guard_mutex);
a6f76f23
DH
1208}
1209EXPORT_SYMBOL(install_exec_creds);
1210
1211/*
1212 * determine how safe it is to execute the proposed program
9b1bf12d 1213 * - the caller must hold ->cred_guard_mutex to protect against
a6f76f23
DH
1214 * PTRACE_ATTACH
1215 */
498052bb 1216int check_unsafe_exec(struct linux_binprm *bprm)
a6f76f23 1217{
0bf2f3ae 1218 struct task_struct *p = current, *t;
f1191b50 1219 unsigned n_fs;
498052bb 1220 int res = 0;
a6f76f23
DH
1221
1222 bprm->unsafe = tracehook_unsafe_exec(p);
1223
0bf2f3ae 1224 n_fs = 1;
2a4419b5 1225 spin_lock(&p->fs->lock);
437f7fdb 1226 rcu_read_lock();
0bf2f3ae
DH
1227 for (t = next_thread(p); t != p; t = next_thread(t)) {
1228 if (t->fs == p->fs)
1229 n_fs++;
0bf2f3ae 1230 }
437f7fdb 1231 rcu_read_unlock();
0bf2f3ae 1232
f1191b50 1233 if (p->fs->users > n_fs) {
a6f76f23 1234 bprm->unsafe |= LSM_UNSAFE_SHARE;
498052bb 1235 } else {
8c652f96
ON
1236 res = -EAGAIN;
1237 if (!p->fs->in_exec) {
1238 p->fs->in_exec = 1;
1239 res = 1;
1240 }
498052bb 1241 }
2a4419b5 1242 spin_unlock(&p->fs->lock);
498052bb
AV
1243
1244 return res;
a6f76f23
DH
1245}
1246
1da177e4
LT
1247/*
1248 * Fill the binprm structure from the inode.
1249 * Check permissions, then read the first 128 (BINPRM_BUF_SIZE) bytes
a6f76f23
DH
1250 *
1251 * This may be called multiple times for binary chains (scripts for example).
1da177e4
LT
1252 */
1253int prepare_binprm(struct linux_binprm *bprm)
1254{
a6f76f23 1255 umode_t mode;
0f7fc9e4 1256 struct inode * inode = bprm->file->f_path.dentry->d_inode;
1da177e4
LT
1257 int retval;
1258
1259 mode = inode->i_mode;
1da177e4
LT
1260 if (bprm->file->f_op == NULL)
1261 return -EACCES;
1262
a6f76f23
DH
1263 /* clear any previous set[ug]id data from a previous binary */
1264 bprm->cred->euid = current_euid();
1265 bprm->cred->egid = current_egid();
1da177e4 1266
a6f76f23 1267 if (!(bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID)) {
1da177e4
LT
1268 /* Set-uid? */
1269 if (mode & S_ISUID) {
a6f76f23
DH
1270 bprm->per_clear |= PER_CLEAR_ON_SETID;
1271 bprm->cred->euid = inode->i_uid;
1da177e4
LT
1272 }
1273
1274 /* Set-gid? */
1275 /*
1276 * If setgid is set but no group execute bit then this
1277 * is a candidate for mandatory locking, not a setgid
1278 * executable.
1279 */
1280 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) {
a6f76f23
DH
1281 bprm->per_clear |= PER_CLEAR_ON_SETID;
1282 bprm->cred->egid = inode->i_gid;
1da177e4
LT
1283 }
1284 }
1285
1286 /* fill in binprm security blob */
a6f76f23 1287 retval = security_bprm_set_creds(bprm);
1da177e4
LT
1288 if (retval)
1289 return retval;
a6f76f23 1290 bprm->cred_prepared = 1;
1da177e4 1291
a6f76f23
DH
1292 memset(bprm->buf, 0, BINPRM_BUF_SIZE);
1293 return kernel_read(bprm->file, 0, bprm->buf, BINPRM_BUF_SIZE);
1da177e4
LT
1294}
1295
1296EXPORT_SYMBOL(prepare_binprm);
1297
4fc75ff4
NP
1298/*
1299 * Arguments are '\0' separated strings found at the location bprm->p
1300 * points to; chop off the first by relocating brpm->p to right after
1301 * the first '\0' encountered.
1302 */
b6a2fea3 1303int remove_arg_zero(struct linux_binprm *bprm)
1da177e4 1304{
b6a2fea3
OW
1305 int ret = 0;
1306 unsigned long offset;
1307 char *kaddr;
1308 struct page *page;
4fc75ff4 1309
b6a2fea3
OW
1310 if (!bprm->argc)
1311 return 0;
1da177e4 1312
b6a2fea3
OW
1313 do {
1314 offset = bprm->p & ~PAGE_MASK;
1315 page = get_arg_page(bprm, bprm->p, 0);
1316 if (!page) {
1317 ret = -EFAULT;
1318 goto out;
1319 }
1320 kaddr = kmap_atomic(page, KM_USER0);
4fc75ff4 1321
b6a2fea3
OW
1322 for (; offset < PAGE_SIZE && kaddr[offset];
1323 offset++, bprm->p++)
1324 ;
4fc75ff4 1325
b6a2fea3
OW
1326 kunmap_atomic(kaddr, KM_USER0);
1327 put_arg_page(page);
4fc75ff4 1328
b6a2fea3
OW
1329 if (offset == PAGE_SIZE)
1330 free_arg_page(bprm, (bprm->p >> PAGE_SHIFT) - 1);
1331 } while (offset == PAGE_SIZE);
4fc75ff4 1332
b6a2fea3
OW
1333 bprm->p++;
1334 bprm->argc--;
1335 ret = 0;
4fc75ff4 1336
b6a2fea3
OW
1337out:
1338 return ret;
1da177e4 1339}
1da177e4
LT
1340EXPORT_SYMBOL(remove_arg_zero);
1341
1342/*
1343 * cycle the list of binary formats handler, until one recognizes the image
1344 */
1345int search_binary_handler(struct linux_binprm *bprm,struct pt_regs *regs)
1346{
85f33466 1347 unsigned int depth = bprm->recursion_depth;
1da177e4
LT
1348 int try,retval;
1349 struct linux_binfmt *fmt;
1da177e4 1350
1da177e4
LT
1351 retval = security_bprm_check(bprm);
1352 if (retval)
1353 return retval;
1354
1355 /* kernel module loader fixup */
1356 /* so we don't try to load run modprobe in kernel space. */
1357 set_fs(USER_DS);
473ae30b
AV
1358
1359 retval = audit_bprm(bprm);
1360 if (retval)
1361 return retval;
1362
1da177e4
LT
1363 retval = -ENOENT;
1364 for (try=0; try<2; try++) {
1365 read_lock(&binfmt_lock);
e4dc1b14 1366 list_for_each_entry(fmt, &formats, lh) {
1da177e4
LT
1367 int (*fn)(struct linux_binprm *, struct pt_regs *) = fmt->load_binary;
1368 if (!fn)
1369 continue;
1370 if (!try_module_get(fmt->module))
1371 continue;
1372 read_unlock(&binfmt_lock);
1373 retval = fn(bprm, regs);
85f33466
RM
1374 /*
1375 * Restore the depth counter to its starting value
1376 * in this call, so we don't have to rely on every
1377 * load_binary function to restore it on return.
1378 */
1379 bprm->recursion_depth = depth;
1da177e4 1380 if (retval >= 0) {
85f33466
RM
1381 if (depth == 0)
1382 tracehook_report_exec(fmt, bprm, regs);
1da177e4
LT
1383 put_binfmt(fmt);
1384 allow_write_access(bprm->file);
1385 if (bprm->file)
1386 fput(bprm->file);
1387 bprm->file = NULL;
1388 current->did_exec = 1;
9f46080c 1389 proc_exec_connector(current);
1da177e4
LT
1390 return retval;
1391 }
1392 read_lock(&binfmt_lock);
1393 put_binfmt(fmt);
1394 if (retval != -ENOEXEC || bprm->mm == NULL)
1395 break;
1396 if (!bprm->file) {
1397 read_unlock(&binfmt_lock);
1398 return retval;
1399 }
1400 }
1401 read_unlock(&binfmt_lock);
1402 if (retval != -ENOEXEC || bprm->mm == NULL) {
1403 break;
5f4123be
JB
1404#ifdef CONFIG_MODULES
1405 } else {
1da177e4
LT
1406#define printable(c) (((c)=='\t') || ((c)=='\n') || (0x20<=(c) && (c)<=0x7e))
1407 if (printable(bprm->buf[0]) &&
1408 printable(bprm->buf[1]) &&
1409 printable(bprm->buf[2]) &&
1410 printable(bprm->buf[3]))
1411 break; /* -ENOEXEC */
1412 request_module("binfmt-%04x", *(unsigned short *)(&bprm->buf[2]));
1413#endif
1414 }
1415 }
1416 return retval;
1417}
1418
1419EXPORT_SYMBOL(search_binary_handler);
1420
1421/*
1422 * sys_execve() executes a new program.
1423 */
ba2d0162
ON
1424static int do_execve_common(const char *filename,
1425 struct user_arg_ptr argv,
1426 struct user_arg_ptr envp,
1427 struct pt_regs *regs)
1da177e4
LT
1428{
1429 struct linux_binprm *bprm;
1430 struct file *file;
3b125388 1431 struct files_struct *displaced;
8c652f96 1432 bool clear_in_exec;
1da177e4 1433 int retval;
1da177e4 1434
3b125388 1435 retval = unshare_files(&displaced);
fd8328be
AV
1436 if (retval)
1437 goto out_ret;
1438
1da177e4 1439 retval = -ENOMEM;
11b0b5ab 1440 bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
1da177e4 1441 if (!bprm)
fd8328be 1442 goto out_files;
1da177e4 1443
a2a8474c
ON
1444 retval = prepare_bprm_creds(bprm);
1445 if (retval)
a6f76f23 1446 goto out_free;
498052bb
AV
1447
1448 retval = check_unsafe_exec(bprm);
8c652f96 1449 if (retval < 0)
a2a8474c 1450 goto out_free;
8c652f96 1451 clear_in_exec = retval;
a2a8474c 1452 current->in_execve = 1;
a6f76f23 1453
1da177e4
LT
1454 file = open_exec(filename);
1455 retval = PTR_ERR(file);
1456 if (IS_ERR(file))
498052bb 1457 goto out_unmark;
1da177e4
LT
1458
1459 sched_exec();
1460
1da177e4
LT
1461 bprm->file = file;
1462 bprm->filename = filename;
1463 bprm->interp = filename;
1da177e4 1464
b6a2fea3
OW
1465 retval = bprm_mm_init(bprm);
1466 if (retval)
1467 goto out_file;
1da177e4 1468
b6a2fea3 1469 bprm->argc = count(argv, MAX_ARG_STRINGS);
1da177e4 1470 if ((retval = bprm->argc) < 0)
a6f76f23 1471 goto out;
1da177e4 1472
b6a2fea3 1473 bprm->envc = count(envp, MAX_ARG_STRINGS);
1da177e4 1474 if ((retval = bprm->envc) < 0)
1da177e4
LT
1475 goto out;
1476
1477 retval = prepare_binprm(bprm);
1478 if (retval < 0)
1479 goto out;
1480
1481 retval = copy_strings_kernel(1, &bprm->filename, bprm);
1482 if (retval < 0)
1483 goto out;
1484
1485 bprm->exec = bprm->p;
1486 retval = copy_strings(bprm->envc, envp, bprm);
1487 if (retval < 0)
1488 goto out;
1489
1490 retval = copy_strings(bprm->argc, argv, bprm);
1491 if (retval < 0)
1492 goto out;
1493
1494 retval = search_binary_handler(bprm,regs);
a6f76f23
DH
1495 if (retval < 0)
1496 goto out;
1da177e4 1497
a6f76f23 1498 /* execve succeeded */
498052bb 1499 current->fs->in_exec = 0;
f9ce1f1c 1500 current->in_execve = 0;
a6f76f23
DH
1501 acct_update_integrals(current);
1502 free_bprm(bprm);
1503 if (displaced)
1504 put_files_struct(displaced);
1505 return retval;
1da177e4 1506
a6f76f23 1507out:
3c77f845
ON
1508 if (bprm->mm) {
1509 acct_arg_size(bprm, 0);
1510 mmput(bprm->mm);
1511 }
1da177e4
LT
1512
1513out_file:
1514 if (bprm->file) {
1515 allow_write_access(bprm->file);
1516 fput(bprm->file);
1517 }
a6f76f23 1518
498052bb 1519out_unmark:
8c652f96
ON
1520 if (clear_in_exec)
1521 current->fs->in_exec = 0;
f9ce1f1c 1522 current->in_execve = 0;
a6f76f23
DH
1523
1524out_free:
08a6fac1 1525 free_bprm(bprm);
1da177e4 1526
fd8328be 1527out_files:
3b125388
AV
1528 if (displaced)
1529 reset_files_struct(displaced);
1da177e4
LT
1530out_ret:
1531 return retval;
1532}
1533
ba2d0162
ON
1534int do_execve(const char *filename,
1535 const char __user *const __user *__argv,
1536 const char __user *const __user *__envp,
1537 struct pt_regs *regs)
1538{
0e028465
ON
1539 struct user_arg_ptr argv = { .ptr.native = __argv };
1540 struct user_arg_ptr envp = { .ptr.native = __envp };
1541 return do_execve_common(filename, argv, envp, regs);
1542}
1543
1544#ifdef CONFIG_COMPAT
1545int compat_do_execve(char *filename,
1546 compat_uptr_t __user *__argv,
1547 compat_uptr_t __user *__envp,
1548 struct pt_regs *regs)
1549{
1550 struct user_arg_ptr argv = {
1551 .is_compat = true,
1552 .ptr.compat = __argv,
1553 };
1554 struct user_arg_ptr envp = {
1555 .is_compat = true,
1556 .ptr.compat = __envp,
1557 };
ba2d0162
ON
1558 return do_execve_common(filename, argv, envp, regs);
1559}
0e028465 1560#endif
ba2d0162 1561
964ee7df 1562void set_binfmt(struct linux_binfmt *new)
1da177e4 1563{
801460d0
HS
1564 struct mm_struct *mm = current->mm;
1565
1566 if (mm->binfmt)
1567 module_put(mm->binfmt->module);
1da177e4 1568
801460d0 1569 mm->binfmt = new;
964ee7df
ON
1570 if (new)
1571 __module_get(new->module);
1da177e4
LT
1572}
1573
1574EXPORT_SYMBOL(set_binfmt);
1575
1b0d300b
XF
1576static int expand_corename(struct core_name *cn)
1577{
1578 char *old_corename = cn->corename;
1579
1580 cn->size = CORENAME_MAX_SIZE * atomic_inc_return(&call_count);
1581 cn->corename = krealloc(old_corename, cn->size, GFP_KERNEL);
1582
1583 if (!cn->corename) {
1584 kfree(old_corename);
1585 return -ENOMEM;
1586 }
1587
1588 return 0;
1589}
1590
1591static int cn_printf(struct core_name *cn, const char *fmt, ...)
1592{
1593 char *cur;
1594 int need;
1595 int ret;
1596 va_list arg;
1597
1598 va_start(arg, fmt);
1599 need = vsnprintf(NULL, 0, fmt, arg);
1600 va_end(arg);
1601
1602 if (likely(need < cn->size - cn->used - 1))
1603 goto out_printf;
1604
1605 ret = expand_corename(cn);
1606 if (ret)
1607 goto expand_fail;
1608
1609out_printf:
1610 cur = cn->corename + cn->used;
1611 va_start(arg, fmt);
1612 vsnprintf(cur, need + 1, fmt, arg);
1613 va_end(arg);
1614 cn->used += need;
1615 return 0;
1616
1617expand_fail:
1618 return ret;
1619}
1620
1da177e4
LT
1621/* format_corename will inspect the pattern parameter, and output a
1622 * name into corename, which must have space for at least
1623 * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
1624 */
1b0d300b 1625static int format_corename(struct core_name *cn, long signr)
1da177e4 1626{
86a264ab 1627 const struct cred *cred = current_cred();
565b9b14
ON
1628 const char *pat_ptr = core_pattern;
1629 int ispipe = (*pat_ptr == '|');
1da177e4 1630 int pid_in_pattern = 0;
1b0d300b
XF
1631 int err = 0;
1632
1633 cn->size = CORENAME_MAX_SIZE * atomic_read(&call_count);
1634 cn->corename = kmalloc(cn->size, GFP_KERNEL);
1635 cn->used = 0;
1636
1637 if (!cn->corename)
1638 return -ENOMEM;
1da177e4
LT
1639
1640 /* Repeat as long as we have more pattern to process and more output
1641 space */
1642 while (*pat_ptr) {
1643 if (*pat_ptr != '%') {
1b0d300b 1644 if (*pat_ptr == 0)
1da177e4 1645 goto out;
1b0d300b 1646 err = cn_printf(cn, "%c", *pat_ptr++);
1da177e4
LT
1647 } else {
1648 switch (*++pat_ptr) {
1b0d300b 1649 /* single % at the end, drop that */
1da177e4
LT
1650 case 0:
1651 goto out;
1652 /* Double percent, output one percent */
1653 case '%':
1b0d300b 1654 err = cn_printf(cn, "%c", '%');
1da177e4
LT
1655 break;
1656 /* pid */
1657 case 'p':
1658 pid_in_pattern = 1;
1b0d300b
XF
1659 err = cn_printf(cn, "%d",
1660 task_tgid_vnr(current));
1da177e4
LT
1661 break;
1662 /* uid */
1663 case 'u':
1b0d300b 1664 err = cn_printf(cn, "%d", cred->uid);
1da177e4
LT
1665 break;
1666 /* gid */
1667 case 'g':
1b0d300b 1668 err = cn_printf(cn, "%d", cred->gid);
1da177e4
LT
1669 break;
1670 /* signal that caused the coredump */
1671 case 's':
1b0d300b 1672 err = cn_printf(cn, "%ld", signr);
1da177e4
LT
1673 break;
1674 /* UNIX time of coredump */
1675 case 't': {
1676 struct timeval tv;
1677 do_gettimeofday(&tv);
1b0d300b 1678 err = cn_printf(cn, "%lu", tv.tv_sec);
1da177e4
LT
1679 break;
1680 }
1681 /* hostname */
1682 case 'h':
1683 down_read(&uts_sem);
1b0d300b
XF
1684 err = cn_printf(cn, "%s",
1685 utsname()->nodename);
1da177e4 1686 up_read(&uts_sem);
1da177e4
LT
1687 break;
1688 /* executable */
1689 case 'e':
1b0d300b 1690 err = cn_printf(cn, "%s", current->comm);
1da177e4 1691 break;
74aadce9
NH
1692 /* core limit size */
1693 case 'c':
1b0d300b
XF
1694 err = cn_printf(cn, "%lu",
1695 rlimit(RLIMIT_CORE));
74aadce9 1696 break;
1da177e4
LT
1697 default:
1698 break;
1699 }
1700 ++pat_ptr;
1701 }
1b0d300b
XF
1702
1703 if (err)
1704 return err;
1da177e4 1705 }
1b0d300b 1706
1da177e4
LT
1707 /* Backward compatibility with core_uses_pid:
1708 *
1709 * If core_pattern does not include a %p (as is the default)
1710 * and core_uses_pid is set, then .%pid will be appended to
c4bbafda 1711 * the filename. Do not do this for piped commands. */
6409324b 1712 if (!ispipe && !pid_in_pattern && core_uses_pid) {
1b0d300b
XF
1713 err = cn_printf(cn, ".%d", task_tgid_vnr(current));
1714 if (err)
1715 return err;
1da177e4 1716 }
c4bbafda 1717out:
c4bbafda 1718 return ispipe;
1da177e4
LT
1719}
1720
5c99cbf4 1721static int zap_process(struct task_struct *start, int exit_code)
aceecc04
ON
1722{
1723 struct task_struct *t;
8cd9c249 1724 int nr = 0;
281de339 1725
d5f70c00 1726 start->signal->flags = SIGNAL_GROUP_EXIT;
5c99cbf4 1727 start->signal->group_exit_code = exit_code;
d5f70c00 1728 start->signal->group_stop_count = 0;
aceecc04
ON
1729
1730 t = start;
1731 do {
1732 if (t != current && t->mm) {
281de339
ON
1733 sigaddset(&t->pending.signal, SIGKILL);
1734 signal_wake_up(t, 1);
8cd9c249 1735 nr++;
aceecc04 1736 }
e4901f92 1737 } while_each_thread(start, t);
8cd9c249
ON
1738
1739 return nr;
aceecc04
ON
1740}
1741
dcf560c5 1742static inline int zap_threads(struct task_struct *tsk, struct mm_struct *mm,
8cd9c249 1743 struct core_state *core_state, int exit_code)
1da177e4
LT
1744{
1745 struct task_struct *g, *p;
5debfa6d 1746 unsigned long flags;
8cd9c249 1747 int nr = -EAGAIN;
dcf560c5
ON
1748
1749 spin_lock_irq(&tsk->sighand->siglock);
ed5d2cac 1750 if (!signal_group_exit(tsk->signal)) {
8cd9c249 1751 mm->core_state = core_state;
5c99cbf4 1752 nr = zap_process(tsk, exit_code);
1da177e4 1753 }
dcf560c5 1754 spin_unlock_irq(&tsk->sighand->siglock);
8cd9c249
ON
1755 if (unlikely(nr < 0))
1756 return nr;
1da177e4 1757
8cd9c249 1758 if (atomic_read(&mm->mm_users) == nr + 1)
5debfa6d 1759 goto done;
e4901f92
ON
1760 /*
1761 * We should find and kill all tasks which use this mm, and we should
999d9fc1 1762 * count them correctly into ->nr_threads. We don't take tasklist
e4901f92
ON
1763 * lock, but this is safe wrt:
1764 *
1765 * fork:
1766 * None of sub-threads can fork after zap_process(leader). All
1767 * processes which were created before this point should be
1768 * visible to zap_threads() because copy_process() adds the new
1769 * process to the tail of init_task.tasks list, and lock/unlock
1770 * of ->siglock provides a memory barrier.
1771 *
1772 * do_exit:
1773 * The caller holds mm->mmap_sem. This means that the task which
1774 * uses this mm can't pass exit_mm(), so it can't exit or clear
1775 * its ->mm.
1776 *
1777 * de_thread:
1778 * It does list_replace_rcu(&leader->tasks, &current->tasks),
1779 * we must see either old or new leader, this does not matter.
1780 * However, it can change p->sighand, so lock_task_sighand(p)
1781 * must be used. Since p->mm != NULL and we hold ->mmap_sem
1782 * it can't fail.
1783 *
1784 * Note also that "g" can be the old leader with ->mm == NULL
1785 * and already unhashed and thus removed from ->thread_group.
1786 * This is OK, __unhash_process()->list_del_rcu() does not
1787 * clear the ->next pointer, we will find the new leader via
1788 * next_thread().
1789 */
7b1c6154 1790 rcu_read_lock();
aceecc04 1791 for_each_process(g) {
5debfa6d
ON
1792 if (g == tsk->group_leader)
1793 continue;
15b9f360
ON
1794 if (g->flags & PF_KTHREAD)
1795 continue;
aceecc04
ON
1796 p = g;
1797 do {
1798 if (p->mm) {
15b9f360 1799 if (unlikely(p->mm == mm)) {
5debfa6d 1800 lock_task_sighand(p, &flags);
5c99cbf4 1801 nr += zap_process(p, exit_code);
5debfa6d
ON
1802 unlock_task_sighand(p, &flags);
1803 }
aceecc04
ON
1804 break;
1805 }
e4901f92 1806 } while_each_thread(g, p);
aceecc04 1807 }
7b1c6154 1808 rcu_read_unlock();
5debfa6d 1809done:
c5f1cc8c 1810 atomic_set(&core_state->nr_threads, nr);
8cd9c249 1811 return nr;
1da177e4
LT
1812}
1813
9d5b327b 1814static int coredump_wait(int exit_code, struct core_state *core_state)
1da177e4 1815{
dcf560c5
ON
1816 struct task_struct *tsk = current;
1817 struct mm_struct *mm = tsk->mm;
dcf560c5 1818 struct completion *vfork_done;
269b005a 1819 int core_waiters = -EBUSY;
1da177e4 1820
9d5b327b 1821 init_completion(&core_state->startup);
b564daf8
ON
1822 core_state->dumper.task = tsk;
1823 core_state->dumper.next = NULL;
269b005a
ON
1824
1825 down_write(&mm->mmap_sem);
1826 if (!mm->core_state)
1827 core_waiters = zap_threads(tsk, mm, core_state, exit_code);
2384f55f
ON
1828 up_write(&mm->mmap_sem);
1829
dcf560c5
ON
1830 if (unlikely(core_waiters < 0))
1831 goto fail;
1832
1833 /*
1834 * Make sure nobody is waiting for us to release the VM,
1835 * otherwise we can deadlock when we wait on each other
1836 */
1837 vfork_done = tsk->vfork_done;
1838 if (vfork_done) {
1839 tsk->vfork_done = NULL;
1840 complete(vfork_done);
1841 }
1842
2384f55f 1843 if (core_waiters)
9d5b327b 1844 wait_for_completion(&core_state->startup);
dcf560c5 1845fail:
dcf560c5 1846 return core_waiters;
1da177e4
LT
1847}
1848
a94e2d40
ON
1849static void coredump_finish(struct mm_struct *mm)
1850{
1851 struct core_thread *curr, *next;
1852 struct task_struct *task;
1853
1854 next = mm->core_state->dumper.next;
1855 while ((curr = next) != NULL) {
1856 next = curr->next;
1857 task = curr->task;
1858 /*
1859 * see exit_mm(), curr->task must not see
1860 * ->task == NULL before we read ->next.
1861 */
1862 smp_mb();
1863 curr->task = NULL;
1864 wake_up_process(task);
1865 }
1866
1867 mm->core_state = NULL;
1868}
1869
6c5d5238
KH
1870/*
1871 * set_dumpable converts traditional three-value dumpable to two flags and
1872 * stores them into mm->flags. It modifies lower two bits of mm->flags, but
1873 * these bits are not changed atomically. So get_dumpable can observe the
1874 * intermediate state. To avoid doing unexpected behavior, get get_dumpable
1875 * return either old dumpable or new one by paying attention to the order of
1876 * modifying the bits.
1877 *
1878 * dumpable | mm->flags (binary)
1879 * old new | initial interim final
1880 * ---------+-----------------------
1881 * 0 1 | 00 01 01
1882 * 0 2 | 00 10(*) 11
1883 * 1 0 | 01 00 00
1884 * 1 2 | 01 11 11
1885 * 2 0 | 11 10(*) 00
1886 * 2 1 | 11 11 01
1887 *
1888 * (*) get_dumpable regards interim value of 10 as 11.
1889 */
1890void set_dumpable(struct mm_struct *mm, int value)
1891{
1892 switch (value) {
1893 case 0:
1894 clear_bit(MMF_DUMPABLE, &mm->flags);
1895 smp_wmb();
1896 clear_bit(MMF_DUMP_SECURELY, &mm->flags);
1897 break;
1898 case 1:
1899 set_bit(MMF_DUMPABLE, &mm->flags);
1900 smp_wmb();
1901 clear_bit(MMF_DUMP_SECURELY, &mm->flags);
1902 break;
1903 case 2:
1904 set_bit(MMF_DUMP_SECURELY, &mm->flags);
1905 smp_wmb();
1906 set_bit(MMF_DUMPABLE, &mm->flags);
1907 break;
1908 }
1909}
6c5d5238 1910
30736a4d 1911static int __get_dumpable(unsigned long mm_flags)
6c5d5238
KH
1912{
1913 int ret;
1914
30736a4d 1915 ret = mm_flags & MMF_DUMPABLE_MASK;
6c5d5238
KH
1916 return (ret >= 2) ? 2 : ret;
1917}
1918
30736a4d
MH
1919int get_dumpable(struct mm_struct *mm)
1920{
1921 return __get_dumpable(mm->flags);
1922}
1923
61be228a
NH
1924static void wait_for_dump_helpers(struct file *file)
1925{
1926 struct pipe_inode_info *pipe;
1927
1928 pipe = file->f_path.dentry->d_inode->i_pipe;
1929
1930 pipe_lock(pipe);
1931 pipe->readers++;
1932 pipe->writers--;
1933
1934 while ((pipe->readers > 1) && (!signal_pending(current))) {
1935 wake_up_interruptible_sync(&pipe->wait);
1936 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1937 pipe_wait(pipe);
1938 }
1939
1940 pipe->readers--;
1941 pipe->writers++;
1942 pipe_unlock(pipe);
1943
1944}
1945
1946
898b374a 1947/*
1bef8291 1948 * umh_pipe_setup
898b374a
NH
1949 * helper function to customize the process used
1950 * to collect the core in userspace. Specifically
1951 * it sets up a pipe and installs it as fd 0 (stdin)
1952 * for the process. Returns 0 on success, or
1953 * PTR_ERR on failure.
1954 * Note that it also sets the core limit to 1. This
1955 * is a special value that we use to trap recursive
1956 * core dumps
1957 */
1958static int umh_pipe_setup(struct subprocess_info *info)
1959{
1960 struct file *rp, *wp;
1961 struct fdtable *fdt;
1962 struct coredump_params *cp = (struct coredump_params *)info->data;
1963 struct files_struct *cf = current->files;
1964
1965 wp = create_write_pipe(0);
1966 if (IS_ERR(wp))
1967 return PTR_ERR(wp);
1968
1969 rp = create_read_pipe(wp, 0);
1970 if (IS_ERR(rp)) {
1971 free_write_pipe(wp);
1972 return PTR_ERR(rp);
1973 }
1974
1975 cp->file = wp;
1976
1977 sys_close(0);
1978 fd_install(0, rp);
1979 spin_lock(&cf->file_lock);
1980 fdt = files_fdtable(cf);
1981 FD_SET(0, fdt->open_fds);
1982 FD_CLR(0, fdt->close_on_exec);
1983 spin_unlock(&cf->file_lock);
1984
1985 /* and disallow core files too */
1986 current->signal->rlim[RLIMIT_CORE] = (struct rlimit){1, 1};
1987
1988 return 0;
1989}
1990
8cd3ac3a 1991void do_coredump(long signr, int exit_code, struct pt_regs *regs)
1da177e4 1992{
9d5b327b 1993 struct core_state core_state;
1b0d300b 1994 struct core_name cn;
1da177e4
LT
1995 struct mm_struct *mm = current->mm;
1996 struct linux_binfmt * binfmt;
d84f4f99
DH
1997 const struct cred *old_cred;
1998 struct cred *cred;
1da177e4 1999 int retval = 0;
d6e71144 2000 int flag = 0;
d5bf4c4f 2001 int ispipe;
a293980c 2002 static atomic_t core_dump_count = ATOMIC_INIT(0);
f6151dfe
MH
2003 struct coredump_params cprm = {
2004 .signr = signr,
2005 .regs = regs,
d554ed89 2006 .limit = rlimit(RLIMIT_CORE),
30736a4d
MH
2007 /*
2008 * We must use the same mm->flags while dumping core to avoid
2009 * inconsistency of bit flags, since this flag is not protected
2010 * by any locks.
2011 */
2012 .mm_flags = mm->flags,
f6151dfe 2013 };
1da177e4 2014
0a4ff8c2
SG
2015 audit_core_dumps(signr);
2016
801460d0 2017 binfmt = mm->binfmt;
1da177e4
LT
2018 if (!binfmt || !binfmt->core_dump)
2019 goto fail;
269b005a
ON
2020 if (!__get_dumpable(cprm.mm_flags))
2021 goto fail;
d84f4f99
DH
2022
2023 cred = prepare_creds();
5e43aef5 2024 if (!cred)
d84f4f99 2025 goto fail;
d6e71144
AC
2026 /*
2027 * We cannot trust fsuid as being the "true" uid of the
2028 * process nor do we know its entire history. We only know it
2029 * was tainted so we dump it as root in mode 2.
2030 */
30736a4d
MH
2031 if (__get_dumpable(cprm.mm_flags) == 2) {
2032 /* Setuid core dump mode */
d6e71144 2033 flag = O_EXCL; /* Stop rewrite attacks */
d84f4f99 2034 cred->fsuid = 0; /* Dump root private */
d6e71144 2035 }
1291cf41 2036
9d5b327b 2037 retval = coredump_wait(exit_code, &core_state);
5e43aef5
ON
2038 if (retval < 0)
2039 goto fail_creds;
d84f4f99
DH
2040
2041 old_cred = override_creds(cred);
1da177e4
LT
2042
2043 /*
2044 * Clear any false indication of pending signals that might
2045 * be seen by the filesystem code called to write the core file.
2046 */
1da177e4
LT
2047 clear_thread_flag(TIF_SIGPENDING);
2048
1b0d300b
XF
2049 ispipe = format_corename(&cn, signr);
2050
2051 if (ispipe == -ENOMEM) {
2052 printk(KERN_WARNING "format_corename failed\n");
2053 printk(KERN_WARNING "Aborting core\n");
2054 goto fail_corename;
2055 }
725eae32 2056
c4bbafda 2057 if (ispipe) {
d5bf4c4f
ON
2058 int dump_count;
2059 char **helper_argv;
2060
898b374a 2061 if (cprm.limit == 1) {
725eae32
NH
2062 /*
2063 * Normally core limits are irrelevant to pipes, since
2064 * we're not writing to the file system, but we use
898b374a
NH
2065 * cprm.limit of 1 here as a speacial value. Any
2066 * non-1 limit gets set to RLIM_INFINITY below, but
725eae32
NH
2067 * a limit of 0 skips the dump. This is a consistent
2068 * way to catch recursive crashes. We can still crash
898b374a 2069 * if the core_pattern binary sets RLIM_CORE = !1
725eae32
NH
2070 * but it runs as root, and can do lots of stupid things
2071 * Note that we use task_tgid_vnr here to grab the pid
2072 * of the process group leader. That way we get the
2073 * right pid if a thread in a multi-threaded
2074 * core_pattern process dies.
2075 */
2076 printk(KERN_WARNING
898b374a 2077 "Process %d(%s) has RLIMIT_CORE set to 1\n",
725eae32
NH
2078 task_tgid_vnr(current), current->comm);
2079 printk(KERN_WARNING "Aborting core\n");
2080 goto fail_unlock;
2081 }
d5bf4c4f 2082 cprm.limit = RLIM_INFINITY;
725eae32 2083
a293980c
NH
2084 dump_count = atomic_inc_return(&core_dump_count);
2085 if (core_pipe_limit && (core_pipe_limit < dump_count)) {
2086 printk(KERN_WARNING "Pid %d(%s) over core_pipe_limit\n",
2087 task_tgid_vnr(current), current->comm);
2088 printk(KERN_WARNING "Skipping core dump\n");
2089 goto fail_dropcount;
2090 }
2091
1b0d300b 2092 helper_argv = argv_split(GFP_KERNEL, cn.corename+1, NULL);
350eaf79
TH
2093 if (!helper_argv) {
2094 printk(KERN_WARNING "%s failed to allocate memory\n",
2095 __func__);
a293980c 2096 goto fail_dropcount;
350eaf79 2097 }
32321137 2098
d5bf4c4f
ON
2099 retval = call_usermodehelper_fns(helper_argv[0], helper_argv,
2100 NULL, UMH_WAIT_EXEC, umh_pipe_setup,
2101 NULL, &cprm);
2102 argv_free(helper_argv);
2103 if (retval) {
d025c9db 2104 printk(KERN_INFO "Core dump to %s pipe failed\n",
1b0d300b 2105 cn.corename);
d5bf4c4f 2106 goto close_fail;
d025c9db 2107 }
c7135411
ON
2108 } else {
2109 struct inode *inode;
2110
2111 if (cprm.limit < binfmt->min_coredump)
2112 goto fail_unlock;
2113
1b0d300b 2114 cprm.file = filp_open(cn.corename,
6d4df677
AD
2115 O_CREAT | 2 | O_NOFOLLOW | O_LARGEFILE | flag,
2116 0600);
c7135411
ON
2117 if (IS_ERR(cprm.file))
2118 goto fail_unlock;
1da177e4 2119
c7135411
ON
2120 inode = cprm.file->f_path.dentry->d_inode;
2121 if (inode->i_nlink > 1)
2122 goto close_fail;
2123 if (d_unhashed(cprm.file->f_path.dentry))
2124 goto close_fail;
2125 /*
2126 * AK: actually i see no reason to not allow this for named
2127 * pipes etc, but keep the previous behaviour for now.
2128 */
2129 if (!S_ISREG(inode->i_mode))
2130 goto close_fail;
2131 /*
2132 * Dont allow local users get cute and trick others to coredump
2133 * into their pre-created files.
2134 */
2135 if (inode->i_uid != current_fsuid())
2136 goto close_fail;
2137 if (!cprm.file->f_op || !cprm.file->f_op->write)
2138 goto close_fail;
2139 if (do_truncate(cprm.file->f_path.dentry, 0, 0, cprm.file))
2140 goto close_fail;
2141 }
1da177e4 2142
c7135411 2143 retval = binfmt->core_dump(&cprm);
1da177e4
LT
2144 if (retval)
2145 current->signal->group_exit_code |= 0x80;
d5bf4c4f 2146
61be228a 2147 if (ispipe && core_pipe_limit)
f6151dfe 2148 wait_for_dump_helpers(cprm.file);
d5bf4c4f
ON
2149close_fail:
2150 if (cprm.file)
2151 filp_close(cprm.file, NULL);
a293980c 2152fail_dropcount:
d5bf4c4f 2153 if (ispipe)
a293980c 2154 atomic_dec(&core_dump_count);
1da177e4 2155fail_unlock:
1b0d300b
XF
2156 kfree(cn.corename);
2157fail_corename:
5e43aef5 2158 coredump_finish(mm);
d84f4f99 2159 revert_creds(old_cred);
5e43aef5 2160fail_creds:
d84f4f99 2161 put_cred(cred);
1da177e4 2162fail:
8cd3ac3a 2163 return;
1da177e4 2164}
3aa0ce82
LT
2165
2166/*
2167 * Core dumping helper functions. These are the only things you should
2168 * do on a core-file: use only these functions to write out all the
2169 * necessary info.
2170 */
2171int dump_write(struct file *file, const void *addr, int nr)
2172{
2173 return access_ok(VERIFY_READ, addr, nr) && file->f_op->write(file, addr, nr, &file->f_pos) == nr;
2174}
8fd01d6c 2175EXPORT_SYMBOL(dump_write);
3aa0ce82
LT
2176
2177int dump_seek(struct file *file, loff_t off)
2178{
2179 int ret = 1;
2180
2181 if (file->f_op->llseek && file->f_op->llseek != no_llseek) {
2182 if (file->f_op->llseek(file, off, SEEK_CUR) < 0)
2183 return 0;
2184 } else {
2185 char *buf = (char *)get_zeroed_page(GFP_KERNEL);
2186
2187 if (!buf)
2188 return 0;
2189 while (off > 0) {
2190 unsigned long n = off;
2191
2192 if (n > PAGE_SIZE)
2193 n = PAGE_SIZE;
2194 if (!dump_write(file, buf, n)) {
2195 ret = 0;
2196 break;
2197 }
2198 off -= n;
2199 }
2200 free_page((unsigned long)buf);
2201 }
2202 return ret;
2203}
8fd01d6c 2204EXPORT_SYMBOL(dump_seek);