]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/exec.c
UBUNTU: [Config] updateconfigs after removing powerpc builds
[mirror_ubuntu-zesty-kernel.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
613cc2b6 22 * formats.
1da177e4
LT
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>
615d6e87 29#include <linux/vmacache.h>
1da177e4
LT
30#include <linux/stat.h>
31#include <linux/fcntl.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>
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>
b44a7dfc 59#include <linux/vmalloc.h>
1da177e4 60
227e7746
SJR
61#include <trace/events/fs.h>
62
7c0f6ba6 63#include <linux/uaccess.h>
1da177e4 64#include <asm/mmu_context.h>
b6a2fea3 65#include <asm/tlb.h>
43d2b113
KH
66
67#include <trace/events/task.h>
a6f76f23 68#include "internal.h"
1da177e4 69
4ff16c25
DS
70#include <trace/events/sched.h>
71
d6e71144
AC
72int suid_dumpable = 0;
73
e4dc1b14 74static LIST_HEAD(formats);
1da177e4
LT
75static DEFINE_RWLOCK(binfmt_lock);
76
8fc3dc5a 77void __register_binfmt(struct linux_binfmt * fmt, int insert)
1da177e4 78{
8fc3dc5a 79 BUG_ON(!fmt);
92eaa565
ON
80 if (WARN_ON(!fmt->load_binary))
81 return;
1da177e4 82 write_lock(&binfmt_lock);
74641f58
IK
83 insert ? list_add(&fmt->lh, &formats) :
84 list_add_tail(&fmt->lh, &formats);
1da177e4 85 write_unlock(&binfmt_lock);
1da177e4
LT
86}
87
74641f58 88EXPORT_SYMBOL(__register_binfmt);
1da177e4 89
f6b450d4 90void unregister_binfmt(struct linux_binfmt * fmt)
1da177e4 91{
1da177e4 92 write_lock(&binfmt_lock);
e4dc1b14 93 list_del(&fmt->lh);
1da177e4 94 write_unlock(&binfmt_lock);
1da177e4
LT
95}
96
97EXPORT_SYMBOL(unregister_binfmt);
98
99static inline void put_binfmt(struct linux_binfmt * fmt)
100{
101 module_put(fmt->module);
102}
103
90f8572b
EB
104bool path_noexec(const struct path *path)
105{
106 return (path->mnt->mnt_flags & MNT_NOEXEC) ||
107 (path->mnt->mnt_sb->s_iflags & SB_I_NOEXEC);
108}
e14748e8 109EXPORT_SYMBOL_GPL(path_noexec);
90f8572b 110
8f060a31
SF
111bool path_nosuid(const struct path *path)
112{
113 return !mnt_may_suid(path->mnt) ||
114 (path->mnt->mnt_sb->s_iflags & SB_I_NOSUID);
115}
116EXPORT_SYMBOL(path_nosuid);
117
69369a70 118#ifdef CONFIG_USELIB
1da177e4
LT
119/*
120 * Note that a shared library must be both readable and executable due to
121 * security reasons.
122 *
123 * Also note that we take the address to load from from the file itself.
124 */
1e7bfb21 125SYSCALL_DEFINE1(uselib, const char __user *, library)
1da177e4 126{
72c2d531 127 struct linux_binfmt *fmt;
964bd183 128 struct file *file;
91a27b2a 129 struct filename *tmp = getname(library);
964bd183 130 int error = PTR_ERR(tmp);
47c805dc
AV
131 static const struct open_flags uselib_flags = {
132 .open_flag = O_LARGEFILE | O_RDONLY | __FMODE_EXEC,
62fb4a15 133 .acc_mode = MAY_READ | MAY_EXEC,
f9652e10
AV
134 .intent = LOOKUP_OPEN,
135 .lookup_flags = LOOKUP_FOLLOW,
47c805dc 136 };
964bd183 137
6e8341a1
AV
138 if (IS_ERR(tmp))
139 goto out;
140
f9652e10 141 file = do_filp_open(AT_FDCWD, tmp, &uselib_flags);
6e8341a1
AV
142 putname(tmp);
143 error = PTR_ERR(file);
144 if (IS_ERR(file))
1da177e4
LT
145 goto out;
146
147 error = -EINVAL;
496ad9aa 148 if (!S_ISREG(file_inode(file)->i_mode))
1da177e4
LT
149 goto exit;
150
30524472 151 error = -EACCES;
90f8572b 152 if (path_noexec(&file->f_path))
1da177e4
LT
153 goto exit;
154
2a12a9d7 155 fsnotify_open(file);
6110e3ab 156
1da177e4 157 error = -ENOEXEC;
1da177e4 158
72c2d531
AV
159 read_lock(&binfmt_lock);
160 list_for_each_entry(fmt, &formats, lh) {
161 if (!fmt->load_shlib)
162 continue;
163 if (!try_module_get(fmt->module))
164 continue;
1da177e4 165 read_unlock(&binfmt_lock);
72c2d531
AV
166 error = fmt->load_shlib(file);
167 read_lock(&binfmt_lock);
168 put_binfmt(fmt);
169 if (error != -ENOEXEC)
170 break;
1da177e4 171 }
72c2d531 172 read_unlock(&binfmt_lock);
6e8341a1 173exit:
1da177e4
LT
174 fput(file);
175out:
176 return error;
1da177e4 177}
69369a70 178#endif /* #ifdef CONFIG_USELIB */
1da177e4 179
b6a2fea3 180#ifdef CONFIG_MMU
ae6b585e
ON
181/*
182 * The nascent bprm->mm is not visible until exec_mmap() but it can
183 * use a lot of memory, account these pages in current->mm temporary
184 * for oom_badness()->get_mm_rss(). Once exec succeeds or fails, we
185 * change the counter back via acct_arg_size(0).
186 */
0e028465 187static void acct_arg_size(struct linux_binprm *bprm, unsigned long pages)
3c77f845
ON
188{
189 struct mm_struct *mm = current->mm;
190 long diff = (long)(pages - bprm->vma_pages);
191
192 if (!mm || !diff)
193 return;
194
195 bprm->vma_pages = pages;
3c77f845 196 add_mm_counter(mm, MM_ANONPAGES, diff);
3c77f845
ON
197}
198
0e028465 199static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
b6a2fea3
OW
200 int write)
201{
202 struct page *page;
203 int ret;
9beae1ea 204 unsigned int gup_flags = FOLL_FORCE;
b6a2fea3
OW
205
206#ifdef CONFIG_STACK_GROWSUP
207 if (write) {
d05f3169 208 ret = expand_downwards(bprm->vma, pos);
b6a2fea3
OW
209 if (ret < 0)
210 return NULL;
211 }
212#endif
9beae1ea
LS
213
214 if (write)
215 gup_flags |= FOLL_WRITE;
216
1e987790
DH
217 /*
218 * We are doing an exec(). 'current' is the process
219 * doing the exec and bprm->mm is the new process's mm.
220 */
9beae1ea 221 ret = get_user_pages_remote(current, bprm->mm, pos, 1, gup_flags,
5b56d49f 222 &page, NULL, NULL);
b6a2fea3
OW
223 if (ret <= 0)
224 return NULL;
225
226 if (write) {
b6a2fea3 227 unsigned long size = bprm->vma->vm_end - bprm->vma->vm_start;
a64e715f
LT
228 struct rlimit *rlim;
229
3c77f845
ON
230 acct_arg_size(bprm, size / PAGE_SIZE);
231
a64e715f
LT
232 /*
233 * We've historically supported up to 32 pages (ARG_MAX)
234 * of argument strings even with small stacks
235 */
236 if (size <= ARG_MAX)
237 return page;
b6a2fea3
OW
238
239 /*
240 * Limit to 1/4-th the stack size for the argv+env strings.
241 * This ensures that:
242 * - the remaining binfmt code will not run out of stack space,
243 * - the program will have a reasonable amount of stack left
244 * to work from.
245 */
a64e715f 246 rlim = current->signal->rlim;
d554ed89 247 if (size > ACCESS_ONCE(rlim[RLIMIT_STACK].rlim_cur) / 4) {
b6a2fea3
OW
248 put_page(page);
249 return NULL;
250 }
251 }
252
253 return page;
254}
255
256static void put_arg_page(struct page *page)
257{
258 put_page(page);
259}
260
b6a2fea3
OW
261static void free_arg_pages(struct linux_binprm *bprm)
262{
263}
264
265static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
266 struct page *page)
267{
268 flush_cache_page(bprm->vma, pos, page_to_pfn(page));
269}
270
271static int __bprm_mm_init(struct linux_binprm *bprm)
272{
eaccbfa5 273 int err;
b6a2fea3
OW
274 struct vm_area_struct *vma = NULL;
275 struct mm_struct *mm = bprm->mm;
276
277 bprm->vma = vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
278 if (!vma)
eaccbfa5 279 return -ENOMEM;
b6a2fea3 280
f268dfe9
MH
281 if (down_write_killable(&mm->mmap_sem)) {
282 err = -EINTR;
283 goto err_free;
284 }
b6a2fea3
OW
285 vma->vm_mm = mm;
286
287 /*
288 * Place the stack at the largest stack address the architecture
289 * supports. Later, we'll move this to an appropriate place. We don't
290 * use STACK_TOP because that can depend on attributes which aren't
291 * configured yet.
292 */
aacb3d17 293 BUILD_BUG_ON(VM_STACK_FLAGS & VM_STACK_INCOMPLETE_SETUP);
b6a2fea3
OW
294 vma->vm_end = STACK_TOP_MAX;
295 vma->vm_start = vma->vm_end - PAGE_SIZE;
d9104d1c 296 vma->vm_flags = VM_SOFTDIRTY | VM_STACK_FLAGS | VM_STACK_INCOMPLETE_SETUP;
3ed75eb8 297 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
5beb4930 298 INIT_LIST_HEAD(&vma->anon_vma_chain);
462e635e 299
b6a2fea3 300 err = insert_vm_struct(mm, vma);
eaccbfa5 301 if (err)
b6a2fea3 302 goto err;
b6a2fea3
OW
303
304 mm->stack_vm = mm->total_vm = 1;
fe3d197f 305 arch_bprm_mm_init(mm, vma);
b6a2fea3 306 up_write(&mm->mmap_sem);
b6a2fea3 307 bprm->p = vma->vm_end - sizeof(void *);
b6a2fea3 308 return 0;
b6a2fea3 309err:
eaccbfa5 310 up_write(&mm->mmap_sem);
f268dfe9 311err_free:
eaccbfa5
LFC
312 bprm->vma = NULL;
313 kmem_cache_free(vm_area_cachep, vma);
b6a2fea3
OW
314 return err;
315}
316
317static bool valid_arg_len(struct linux_binprm *bprm, long len)
318{
319 return len <= MAX_ARG_STRLEN;
320}
321
322#else
323
0e028465 324static inline void acct_arg_size(struct linux_binprm *bprm, unsigned long pages)
3c77f845
ON
325{
326}
327
0e028465 328static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
b6a2fea3
OW
329 int write)
330{
331 struct page *page;
332
333 page = bprm->page[pos / PAGE_SIZE];
334 if (!page && write) {
335 page = alloc_page(GFP_HIGHUSER|__GFP_ZERO);
336 if (!page)
337 return NULL;
338 bprm->page[pos / PAGE_SIZE] = page;
339 }
340
341 return page;
342}
343
344static void put_arg_page(struct page *page)
345{
346}
347
348static void free_arg_page(struct linux_binprm *bprm, int i)
349{
350 if (bprm->page[i]) {
351 __free_page(bprm->page[i]);
352 bprm->page[i] = NULL;
353 }
354}
355
356static void free_arg_pages(struct linux_binprm *bprm)
357{
358 int i;
359
360 for (i = 0; i < MAX_ARG_PAGES; i++)
361 free_arg_page(bprm, i);
362}
363
364static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
365 struct page *page)
366{
367}
368
369static int __bprm_mm_init(struct linux_binprm *bprm)
370{
371 bprm->p = PAGE_SIZE * MAX_ARG_PAGES - sizeof(void *);
372 return 0;
373}
374
375static bool valid_arg_len(struct linux_binprm *bprm, long len)
376{
377 return len <= bprm->p;
378}
379
380#endif /* CONFIG_MMU */
381
382/*
383 * Create a new mm_struct and populate it with a temporary stack
384 * vm_area_struct. We don't have enough context at this point to set the stack
385 * flags, permissions, and offset, so we use temporary values. We'll update
386 * them later in setup_arg_pages().
387 */
9cc64cea 388static int bprm_mm_init(struct linux_binprm *bprm)
b6a2fea3
OW
389{
390 int err;
391 struct mm_struct *mm = NULL;
392
393 bprm->mm = mm = mm_alloc();
394 err = -ENOMEM;
395 if (!mm)
396 goto err;
397
b6a2fea3
OW
398 err = __bprm_mm_init(bprm);
399 if (err)
400 goto err;
401
402 return 0;
403
404err:
405 if (mm) {
406 bprm->mm = NULL;
407 mmdrop(mm);
408 }
409
410 return err;
411}
412
ba2d0162 413struct user_arg_ptr {
0e028465
ON
414#ifdef CONFIG_COMPAT
415 bool is_compat;
416#endif
417 union {
418 const char __user *const __user *native;
419#ifdef CONFIG_COMPAT
38b983b3 420 const compat_uptr_t __user *compat;
0e028465
ON
421#endif
422 } ptr;
ba2d0162
ON
423};
424
425static const char __user *get_user_arg_ptr(struct user_arg_ptr argv, int nr)
1d1dbf81 426{
0e028465
ON
427 const char __user *native;
428
429#ifdef CONFIG_COMPAT
430 if (unlikely(argv.is_compat)) {
431 compat_uptr_t compat;
432
433 if (get_user(compat, argv.ptr.compat + nr))
434 return ERR_PTR(-EFAULT);
1d1dbf81 435
0e028465
ON
436 return compat_ptr(compat);
437 }
438#endif
439
440 if (get_user(native, argv.ptr.native + nr))
1d1dbf81
ON
441 return ERR_PTR(-EFAULT);
442
0e028465 443 return native;
1d1dbf81
ON
444}
445
1da177e4
LT
446/*
447 * count() counts the number of strings in array ARGV.
448 */
ba2d0162 449static int count(struct user_arg_ptr argv, int max)
1da177e4
LT
450{
451 int i = 0;
452
0e028465 453 if (argv.ptr.native != NULL) {
1da177e4 454 for (;;) {
1d1dbf81 455 const char __user *p = get_user_arg_ptr(argv, i);
1da177e4 456
1da177e4
LT
457 if (!p)
458 break;
1d1dbf81
ON
459
460 if (IS_ERR(p))
461 return -EFAULT;
462
6d92d4f6 463 if (i >= max)
1da177e4 464 return -E2BIG;
6d92d4f6 465 ++i;
9aea5a65
RM
466
467 if (fatal_signal_pending(current))
468 return -ERESTARTNOHAND;
1da177e4
LT
469 cond_resched();
470 }
471 }
472 return i;
473}
474
475/*
b6a2fea3
OW
476 * 'copy_strings()' copies argument/environment strings from the old
477 * processes's memory to the new process's stack. The call to get_user_pages()
478 * ensures the destination page is created and not swapped out.
1da177e4 479 */
ba2d0162 480static int copy_strings(int argc, struct user_arg_ptr argv,
75c96f85 481 struct linux_binprm *bprm)
1da177e4
LT
482{
483 struct page *kmapped_page = NULL;
484 char *kaddr = NULL;
b6a2fea3 485 unsigned long kpos = 0;
1da177e4
LT
486 int ret;
487
488 while (argc-- > 0) {
d7627467 489 const char __user *str;
1da177e4
LT
490 int len;
491 unsigned long pos;
492
1d1dbf81
ON
493 ret = -EFAULT;
494 str = get_user_arg_ptr(argv, argc);
495 if (IS_ERR(str))
1da177e4 496 goto out;
1da177e4 497
1d1dbf81
ON
498 len = strnlen_user(str, MAX_ARG_STRLEN);
499 if (!len)
500 goto out;
501
502 ret = -E2BIG;
503 if (!valid_arg_len(bprm, len))
1da177e4 504 goto out;
1da177e4 505
b6a2fea3 506 /* We're going to work our way backwords. */
1da177e4 507 pos = bprm->p;
b6a2fea3
OW
508 str += len;
509 bprm->p -= len;
1da177e4
LT
510
511 while (len > 0) {
1da177e4 512 int offset, bytes_to_copy;
1da177e4 513
9aea5a65
RM
514 if (fatal_signal_pending(current)) {
515 ret = -ERESTARTNOHAND;
516 goto out;
517 }
7993bc1f
RM
518 cond_resched();
519
1da177e4 520 offset = pos % PAGE_SIZE;
b6a2fea3
OW
521 if (offset == 0)
522 offset = PAGE_SIZE;
523
524 bytes_to_copy = offset;
525 if (bytes_to_copy > len)
526 bytes_to_copy = len;
527
528 offset -= bytes_to_copy;
529 pos -= bytes_to_copy;
530 str -= bytes_to_copy;
531 len -= bytes_to_copy;
532
533 if (!kmapped_page || kpos != (pos & PAGE_MASK)) {
534 struct page *page;
535
536 page = get_arg_page(bprm, pos, 1);
1da177e4 537 if (!page) {
b6a2fea3 538 ret = -E2BIG;
1da177e4
LT
539 goto out;
540 }
1da177e4 541
b6a2fea3
OW
542 if (kmapped_page) {
543 flush_kernel_dcache_page(kmapped_page);
1da177e4 544 kunmap(kmapped_page);
b6a2fea3
OW
545 put_arg_page(kmapped_page);
546 }
1da177e4
LT
547 kmapped_page = page;
548 kaddr = kmap(kmapped_page);
b6a2fea3
OW
549 kpos = pos & PAGE_MASK;
550 flush_arg_page(bprm, kpos, kmapped_page);
1da177e4 551 }
b6a2fea3 552 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) {
1da177e4
LT
553 ret = -EFAULT;
554 goto out;
555 }
1da177e4
LT
556 }
557 }
558 ret = 0;
559out:
b6a2fea3
OW
560 if (kmapped_page) {
561 flush_kernel_dcache_page(kmapped_page);
1da177e4 562 kunmap(kmapped_page);
b6a2fea3
OW
563 put_arg_page(kmapped_page);
564 }
1da177e4
LT
565 return ret;
566}
567
568/*
569 * Like copy_strings, but get argv and its values from kernel memory.
570 */
ba2d0162 571int copy_strings_kernel(int argc, const char *const *__argv,
d7627467 572 struct linux_binprm *bprm)
1da177e4
LT
573{
574 int r;
575 mm_segment_t oldfs = get_fs();
ba2d0162 576 struct user_arg_ptr argv = {
0e028465 577 .ptr.native = (const char __user *const __user *)__argv,
ba2d0162
ON
578 };
579
1da177e4 580 set_fs(KERNEL_DS);
ba2d0162 581 r = copy_strings(argc, argv, bprm);
1da177e4 582 set_fs(oldfs);
ba2d0162 583
1da177e4
LT
584 return r;
585}
1da177e4
LT
586EXPORT_SYMBOL(copy_strings_kernel);
587
588#ifdef CONFIG_MMU
b6a2fea3 589
1da177e4 590/*
b6a2fea3
OW
591 * During bprm_mm_init(), we create a temporary stack at STACK_TOP_MAX. Once
592 * the binfmt code determines where the new stack should reside, we shift it to
593 * its final location. The process proceeds as follows:
1da177e4 594 *
b6a2fea3
OW
595 * 1) Use shift to calculate the new vma endpoints.
596 * 2) Extend vma to cover both the old and new ranges. This ensures the
597 * arguments passed to subsequent functions are consistent.
598 * 3) Move vma's page tables to the new range.
599 * 4) Free up any cleared pgd range.
600 * 5) Shrink the vma to cover only the new range.
1da177e4 601 */
b6a2fea3 602static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift)
1da177e4
LT
603{
604 struct mm_struct *mm = vma->vm_mm;
b6a2fea3
OW
605 unsigned long old_start = vma->vm_start;
606 unsigned long old_end = vma->vm_end;
607 unsigned long length = old_end - old_start;
608 unsigned long new_start = old_start - shift;
609 unsigned long new_end = old_end - shift;
d16dfc55 610 struct mmu_gather tlb;
1da177e4 611
b6a2fea3 612 BUG_ON(new_start > new_end);
1da177e4 613
b6a2fea3
OW
614 /*
615 * ensure there are no vmas between where we want to go
616 * and where we are
617 */
618 if (vma != find_vma(mm, new_start))
619 return -EFAULT;
620
621 /*
622 * cover the whole range: [new_start, old_end)
623 */
5beb4930
RR
624 if (vma_adjust(vma, new_start, old_end, vma->vm_pgoff, NULL))
625 return -ENOMEM;
b6a2fea3
OW
626
627 /*
628 * move the page tables downwards, on failure we rely on
629 * process cleanup to remove whatever mess we made.
630 */
631 if (length != move_page_tables(vma, old_start,
38a76013 632 vma, new_start, length, false))
b6a2fea3
OW
633 return -ENOMEM;
634
635 lru_add_drain();
2b047252 636 tlb_gather_mmu(&tlb, mm, old_start, old_end);
b6a2fea3
OW
637 if (new_end > old_start) {
638 /*
639 * when the old and new regions overlap clear from new_end.
640 */
d16dfc55 641 free_pgd_range(&tlb, new_end, old_end, new_end,
6ee8630e 642 vma->vm_next ? vma->vm_next->vm_start : USER_PGTABLES_CEILING);
b6a2fea3
OW
643 } else {
644 /*
645 * otherwise, clean from old_start; this is done to not touch
646 * the address space in [new_end, old_start) some architectures
647 * have constraints on va-space that make this illegal (IA64) -
648 * for the others its just a little faster.
649 */
d16dfc55 650 free_pgd_range(&tlb, old_start, old_end, new_end,
6ee8630e 651 vma->vm_next ? vma->vm_next->vm_start : USER_PGTABLES_CEILING);
1da177e4 652 }
2b047252 653 tlb_finish_mmu(&tlb, old_start, old_end);
b6a2fea3
OW
654
655 /*
5beb4930 656 * Shrink the vma to just the new range. Always succeeds.
b6a2fea3
OW
657 */
658 vma_adjust(vma, new_start, new_end, vma->vm_pgoff, NULL);
659
660 return 0;
1da177e4
LT
661}
662
b6a2fea3
OW
663/*
664 * Finalizes the stack vm_area_struct. The flags and permissions are updated,
665 * the stack is optionally relocated, and some extra space is added.
666 */
1da177e4
LT
667int setup_arg_pages(struct linux_binprm *bprm,
668 unsigned long stack_top,
669 int executable_stack)
670{
b6a2fea3
OW
671 unsigned long ret;
672 unsigned long stack_shift;
1da177e4 673 struct mm_struct *mm = current->mm;
b6a2fea3
OW
674 struct vm_area_struct *vma = bprm->vma;
675 struct vm_area_struct *prev = NULL;
676 unsigned long vm_flags;
677 unsigned long stack_base;
803bf5ec
MN
678 unsigned long stack_size;
679 unsigned long stack_expand;
680 unsigned long rlim_stack;
1da177e4
LT
681
682#ifdef CONFIG_STACK_GROWSUP
d71f290b 683 /* Limit stack size */
d554ed89 684 stack_base = rlimit_max(RLIMIT_STACK);
d71f290b
JH
685 if (stack_base > STACK_SIZE_MAX)
686 stack_base = STACK_SIZE_MAX;
1da177e4 687
d045c77c
HD
688 /* Add space for stack randomization. */
689 stack_base += (STACK_RND_MASK << PAGE_SHIFT);
690
b6a2fea3
OW
691 /* Make sure we didn't let the argument array grow too large. */
692 if (vma->vm_end - vma->vm_start > stack_base)
693 return -ENOMEM;
1da177e4 694
b6a2fea3 695 stack_base = PAGE_ALIGN(stack_top - stack_base);
1da177e4 696
b6a2fea3
OW
697 stack_shift = vma->vm_start - stack_base;
698 mm->arg_start = bprm->p - stack_shift;
699 bprm->p = vma->vm_end - stack_shift;
1da177e4 700#else
b6a2fea3
OW
701 stack_top = arch_align_stack(stack_top);
702 stack_top = PAGE_ALIGN(stack_top);
1b528181
RM
703
704 if (unlikely(stack_top < mmap_min_addr) ||
705 unlikely(vma->vm_end - vma->vm_start >= stack_top - mmap_min_addr))
706 return -ENOMEM;
707
b6a2fea3
OW
708 stack_shift = vma->vm_end - stack_top;
709
710 bprm->p -= stack_shift;
1da177e4 711 mm->arg_start = bprm->p;
1da177e4
LT
712#endif
713
1da177e4 714 if (bprm->loader)
b6a2fea3
OW
715 bprm->loader -= stack_shift;
716 bprm->exec -= stack_shift;
1da177e4 717
f268dfe9
MH
718 if (down_write_killable(&mm->mmap_sem))
719 return -EINTR;
720
96a8e13e 721 vm_flags = VM_STACK_FLAGS;
b6a2fea3
OW
722
723 /*
724 * Adjust stack execute permissions; explicitly enable for
725 * EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X and leave alone
726 * (arch default) otherwise.
727 */
728 if (unlikely(executable_stack == EXSTACK_ENABLE_X))
729 vm_flags |= VM_EXEC;
730 else if (executable_stack == EXSTACK_DISABLE_X)
731 vm_flags &= ~VM_EXEC;
732 vm_flags |= mm->def_flags;
a8bef8ff 733 vm_flags |= VM_STACK_INCOMPLETE_SETUP;
b6a2fea3
OW
734
735 ret = mprotect_fixup(vma, &prev, vma->vm_start, vma->vm_end,
736 vm_flags);
737 if (ret)
738 goto out_unlock;
739 BUG_ON(prev != vma);
740
741 /* Move stack pages down in memory. */
742 if (stack_shift) {
743 ret = shift_arg_pages(vma, stack_shift);
fc63cf23
AB
744 if (ret)
745 goto out_unlock;
1da177e4
LT
746 }
747
a8bef8ff
MG
748 /* mprotect_fixup is overkill to remove the temporary stack flags */
749 vma->vm_flags &= ~VM_STACK_INCOMPLETE_SETUP;
750
5ef097dd 751 stack_expand = 131072UL; /* randomly 32*4k (or 2*64k) pages */
803bf5ec
MN
752 stack_size = vma->vm_end - vma->vm_start;
753 /*
754 * Align this down to a page boundary as expand_stack
755 * will align it up.
756 */
757 rlim_stack = rlimit(RLIMIT_STACK) & PAGE_MASK;
b6a2fea3 758#ifdef CONFIG_STACK_GROWSUP
803bf5ec
MN
759 if (stack_size + stack_expand > rlim_stack)
760 stack_base = vma->vm_start + rlim_stack;
761 else
762 stack_base = vma->vm_end + stack_expand;
b6a2fea3 763#else
803bf5ec
MN
764 if (stack_size + stack_expand > rlim_stack)
765 stack_base = vma->vm_end - rlim_stack;
766 else
767 stack_base = vma->vm_start - stack_expand;
b6a2fea3 768#endif
3af9e859 769 current->mm->start_stack = bprm->p;
b6a2fea3
OW
770 ret = expand_stack(vma, stack_base);
771 if (ret)
772 ret = -EFAULT;
773
774out_unlock:
1da177e4 775 up_write(&mm->mmap_sem);
fc63cf23 776 return ret;
1da177e4 777}
1da177e4
LT
778EXPORT_SYMBOL(setup_arg_pages);
779
7e7ec6a9
NP
780#else
781
782/*
783 * Transfer the program arguments and environment from the holding pages
784 * onto the stack. The provided stack pointer is adjusted accordingly.
785 */
786int transfer_args_to_stack(struct linux_binprm *bprm,
787 unsigned long *sp_location)
788{
789 unsigned long index, stop, sp;
790 int ret = 0;
791
792 stop = bprm->p >> PAGE_SHIFT;
793 sp = *sp_location;
794
795 for (index = MAX_ARG_PAGES - 1; index >= stop; index--) {
796 unsigned int offset = index == stop ? bprm->p & ~PAGE_MASK : 0;
797 char *src = kmap(bprm->page[index]) + offset;
798 sp -= PAGE_SIZE - offset;
799 if (copy_to_user((void *) sp, src, PAGE_SIZE - offset) != 0)
800 ret = -EFAULT;
801 kunmap(bprm->page[index]);
802 if (ret)
803 goto out;
804 }
805
806 *sp_location = sp;
807
808out:
809 return ret;
810}
811EXPORT_SYMBOL(transfer_args_to_stack);
812
1da177e4
LT
813#endif /* CONFIG_MMU */
814
51f39a1f 815static struct file *do_open_execat(int fd, struct filename *name, int flags)
1da177e4 816{
1da177e4 817 struct file *file;
e56b6a5d 818 int err;
51f39a1f 819 struct open_flags open_exec_flags = {
47c805dc 820 .open_flag = O_LARGEFILE | O_RDONLY | __FMODE_EXEC,
62fb4a15 821 .acc_mode = MAY_EXEC,
f9652e10
AV
822 .intent = LOOKUP_OPEN,
823 .lookup_flags = LOOKUP_FOLLOW,
47c805dc 824 };
1da177e4 825
51f39a1f
DD
826 if ((flags & ~(AT_SYMLINK_NOFOLLOW | AT_EMPTY_PATH)) != 0)
827 return ERR_PTR(-EINVAL);
828 if (flags & AT_SYMLINK_NOFOLLOW)
829 open_exec_flags.lookup_flags &= ~LOOKUP_FOLLOW;
830 if (flags & AT_EMPTY_PATH)
831 open_exec_flags.lookup_flags |= LOOKUP_EMPTY;
832
833 file = do_filp_open(fd, name, &open_exec_flags);
6e8341a1 834 if (IS_ERR(file))
e56b6a5d
CH
835 goto out;
836
837 err = -EACCES;
496ad9aa 838 if (!S_ISREG(file_inode(file)->i_mode))
6e8341a1 839 goto exit;
e56b6a5d 840
90f8572b 841 if (path_noexec(&file->f_path))
6e8341a1 842 goto exit;
e56b6a5d
CH
843
844 err = deny_write_access(file);
6e8341a1
AV
845 if (err)
846 goto exit;
1da177e4 847
51f39a1f
DD
848 if (name->name[0] != '\0')
849 fsnotify_open(file);
850
227e7746
SJR
851 trace_open_exec(name->name);
852
6e8341a1 853out:
e56b6a5d
CH
854 return file;
855
6e8341a1
AV
856exit:
857 fput(file);
e56b6a5d
CH
858 return ERR_PTR(err);
859}
c4ad8f98
LT
860
861struct file *open_exec(const char *name)
862{
51689104
PM
863 struct filename *filename = getname_kernel(name);
864 struct file *f = ERR_CAST(filename);
865
866 if (!IS_ERR(filename)) {
867 f = do_open_execat(AT_FDCWD, filename, 0);
868 putname(filename);
869 }
870 return f;
c4ad8f98 871}
1da177e4
LT
872EXPORT_SYMBOL(open_exec);
873
6777d773
MZ
874int kernel_read(struct file *file, loff_t offset,
875 char *addr, unsigned long count)
1da177e4
LT
876{
877 mm_segment_t old_fs;
878 loff_t pos = offset;
879 int result;
880
881 old_fs = get_fs();
882 set_fs(get_ds());
883 /* The cast to a user pointer is valid due to the set_fs() */
884 result = vfs_read(file, (void __user *)addr, count, &pos);
885 set_fs(old_fs);
886 return result;
887}
888
889EXPORT_SYMBOL(kernel_read);
890
b44a7dfc 891int kernel_read_file(struct file *file, void **buf, loff_t *size,
bc8ca5b9 892 loff_t max_size, enum kernel_read_file_id id)
b44a7dfc
MZ
893{
894 loff_t i_size, pos;
895 ssize_t bytes = 0;
896 int ret;
897
898 if (!S_ISREG(file_inode(file)->i_mode) || max_size < 0)
899 return -EINVAL;
900
39eeb4fb
MZ
901 ret = security_kernel_read_file(file, id);
902 if (ret)
903 return ret;
904
39d637af
DK
905 ret = deny_write_access(file);
906 if (ret)
907 return ret;
908
b44a7dfc 909 i_size = i_size_read(file_inode(file));
39d637af
DK
910 if (max_size > 0 && i_size > max_size) {
911 ret = -EFBIG;
912 goto out;
913 }
914 if (i_size <= 0) {
915 ret = -EINVAL;
916 goto out;
917 }
b44a7dfc 918
a098ecd2
SB
919 if (id != READING_FIRMWARE_PREALLOC_BUFFER)
920 *buf = vmalloc(i_size);
39d637af
DK
921 if (!*buf) {
922 ret = -ENOMEM;
923 goto out;
924 }
b44a7dfc
MZ
925
926 pos = 0;
927 while (pos < i_size) {
928 bytes = kernel_read(file, pos, (char *)(*buf) + pos,
929 i_size - pos);
930 if (bytes < 0) {
931 ret = bytes;
932 goto out;
933 }
934
935 if (bytes == 0)
936 break;
937 pos += bytes;
938 }
939
940 if (pos != i_size) {
941 ret = -EIO;
39d637af 942 goto out_free;
b44a7dfc
MZ
943 }
944
bc8ca5b9 945 ret = security_kernel_post_read_file(file, *buf, i_size, id);
b44a7dfc
MZ
946 if (!ret)
947 *size = pos;
948
39d637af 949out_free:
b44a7dfc 950 if (ret < 0) {
a098ecd2
SB
951 if (id != READING_FIRMWARE_PREALLOC_BUFFER) {
952 vfree(*buf);
953 *buf = NULL;
954 }
b44a7dfc 955 }
39d637af
DK
956
957out:
958 allow_write_access(file);
b44a7dfc
MZ
959 return ret;
960}
961EXPORT_SYMBOL_GPL(kernel_read_file);
962
09596b94
MZ
963int kernel_read_file_from_path(char *path, void **buf, loff_t *size,
964 loff_t max_size, enum kernel_read_file_id id)
965{
966 struct file *file;
967 int ret;
968
969 if (!path || !*path)
970 return -EINVAL;
971
972 file = filp_open(path, O_RDONLY, 0);
973 if (IS_ERR(file))
974 return PTR_ERR(file);
975
976 ret = kernel_read_file(file, buf, size, max_size, id);
977 fput(file);
978 return ret;
979}
980EXPORT_SYMBOL_GPL(kernel_read_file_from_path);
981
b844f0ec
MZ
982int kernel_read_file_from_fd(int fd, void **buf, loff_t *size, loff_t max_size,
983 enum kernel_read_file_id id)
984{
985 struct fd f = fdget(fd);
986 int ret = -EBADF;
987
988 if (!f.file)
989 goto out;
990
991 ret = kernel_read_file(f.file, buf, size, max_size, id);
992out:
993 fdput(f);
994 return ret;
995}
996EXPORT_SYMBOL_GPL(kernel_read_file_from_fd);
997
3dc20cb2
AV
998ssize_t read_code(struct file *file, unsigned long addr, loff_t pos, size_t len)
999{
ec695579 1000 ssize_t res = vfs_read(file, (void __user *)addr, len, &pos);
3dc20cb2
AV
1001 if (res > 0)
1002 flush_icache_range(addr, addr + len);
1003 return res;
1004}
1005EXPORT_SYMBOL(read_code);
1006
1da177e4
LT
1007static int exec_mmap(struct mm_struct *mm)
1008{
1009 struct task_struct *tsk;
615d6e87 1010 struct mm_struct *old_mm, *active_mm;
1da177e4
LT
1011
1012 /* Notify parent that we're no longer interested in the old VM */
1013 tsk = current;
1014 old_mm = current->mm;
1015 mm_release(tsk, old_mm);
1016
1017 if (old_mm) {
4fe7efdb 1018 sync_mm_rss(old_mm);
1da177e4
LT
1019 /*
1020 * Make sure that if there is a core dump in progress
1021 * for the old mm, we get out and die instead of going
1022 * through with the exec. We must hold mmap_sem around
999d9fc1 1023 * checking core_state and changing tsk->mm.
1da177e4
LT
1024 */
1025 down_read(&old_mm->mmap_sem);
999d9fc1 1026 if (unlikely(old_mm->core_state)) {
1da177e4
LT
1027 up_read(&old_mm->mmap_sem);
1028 return -EINTR;
1029 }
1030 }
1031 task_lock(tsk);
1032 active_mm = tsk->active_mm;
1033 tsk->mm = mm;
1034 tsk->active_mm = mm;
1035 activate_mm(active_mm, mm);
615d6e87
DB
1036 tsk->mm->vmacache_seqnum = 0;
1037 vmacache_flush(tsk);
1da177e4 1038 task_unlock(tsk);
1da177e4
LT
1039 if (old_mm) {
1040 up_read(&old_mm->mmap_sem);
7dddb12c 1041 BUG_ON(active_mm != old_mm);
701085b2 1042 setmax_mm_hiwater_rss(&tsk->signal->maxrss, old_mm);
31a78f23 1043 mm_update_next_owner(old_mm);
1da177e4
LT
1044 mmput(old_mm);
1045 return 0;
1046 }
1047 mmdrop(active_mm);
1048 return 0;
1049}
1050
1051/*
1052 * This function makes sure the current process has its own signal table,
1053 * so that flush_signal_handlers can later reset the handlers without
1054 * disturbing other processes. (Other processes might share the signal
1055 * table via the CLONE_SIGHAND option to clone().)
1056 */
858119e1 1057static int de_thread(struct task_struct *tsk)
1da177e4
LT
1058{
1059 struct signal_struct *sig = tsk->signal;
b2c903b8 1060 struct sighand_struct *oldsighand = tsk->sighand;
1da177e4 1061 spinlock_t *lock = &oldsighand->siglock;
1da177e4 1062
aafe6c2a 1063 if (thread_group_empty(tsk))
1da177e4
LT
1064 goto no_thread_group;
1065
1066 /*
1067 * Kill all other threads in the thread group.
1da177e4 1068 */
1da177e4 1069 spin_lock_irq(lock);
ed5d2cac 1070 if (signal_group_exit(sig)) {
1da177e4
LT
1071 /*
1072 * Another group action in progress, just
1073 * return so that the signal is processed.
1074 */
1075 spin_unlock_irq(lock);
1da177e4
LT
1076 return -EAGAIN;
1077 }
d344193a 1078
ed5d2cac 1079 sig->group_exit_task = tsk;
d344193a
ON
1080 sig->notify_count = zap_other_threads(tsk);
1081 if (!thread_group_leader(tsk))
1082 sig->notify_count--;
1da177e4 1083
d344193a 1084 while (sig->notify_count) {
d5bbd43d 1085 __set_current_state(TASK_KILLABLE);
1da177e4
LT
1086 spin_unlock_irq(lock);
1087 schedule();
d5bbd43d
ON
1088 if (unlikely(__fatal_signal_pending(tsk)))
1089 goto killed;
1da177e4
LT
1090 spin_lock_irq(lock);
1091 }
1da177e4
LT
1092 spin_unlock_irq(lock);
1093
1094 /*
1095 * At this point all other threads have exited, all we have to
1096 * do is to wait for the thread group leader to become inactive,
1097 * and to assume its PID:
1098 */
aafe6c2a 1099 if (!thread_group_leader(tsk)) {
8187926b 1100 struct task_struct *leader = tsk->group_leader;
6db840fa 1101
6db840fa 1102 for (;;) {
e56fb287 1103 threadgroup_change_begin(tsk);
6db840fa 1104 write_lock_irq(&tasklist_lock);
dfcce791
KT
1105 /*
1106 * Do this under tasklist_lock to ensure that
1107 * exit_notify() can't miss ->group_exit_task
1108 */
1109 sig->notify_count = -1;
6db840fa
ON
1110 if (likely(leader->exit_state))
1111 break;
d5bbd43d 1112 __set_current_state(TASK_KILLABLE);
6db840fa 1113 write_unlock_irq(&tasklist_lock);
e56fb287 1114 threadgroup_change_end(tsk);
6db840fa 1115 schedule();
d5bbd43d
ON
1116 if (unlikely(__fatal_signal_pending(tsk)))
1117 goto killed;
6db840fa 1118 }
1da177e4 1119
f5e90281
RM
1120 /*
1121 * The only record we have of the real-time age of a
1122 * process, regardless of execs it's done, is start_time.
1123 * All the past CPU time is accumulated in signal_struct
1124 * from sister threads now dead. But in this non-leader
1125 * exec, nothing survives from the original leader thread,
1126 * whose birth marks the true age of this process now.
1127 * When we take on its identity by switching to its PID, we
1128 * also take its birthdate (always earlier than our own).
1129 */
aafe6c2a 1130 tsk->start_time = leader->start_time;
266b7a02 1131 tsk->real_start_time = leader->real_start_time;
f5e90281 1132
bac0abd6
PE
1133 BUG_ON(!same_thread_group(leader, tsk));
1134 BUG_ON(has_group_leader_pid(tsk));
1da177e4
LT
1135 /*
1136 * An exec() starts a new thread group with the
1137 * TGID of the previous thread group. Rehash the
1138 * two threads with a switched PID, and release
1139 * the former thread group leader:
1140 */
d73d6529
EB
1141
1142 /* Become a process group leader with the old leader's pid.
c18258c6
EB
1143 * The old leader becomes a thread of the this thread group.
1144 * Note: The old leader also uses this pid until release_task
d73d6529
EB
1145 * is called. Odd but simple and correct.
1146 */
aafe6c2a 1147 tsk->pid = leader->pid;
3f418548 1148 change_pid(tsk, PIDTYPE_PID, task_pid(leader));
aafe6c2a
EB
1149 transfer_pid(leader, tsk, PIDTYPE_PGID);
1150 transfer_pid(leader, tsk, PIDTYPE_SID);
9cd80bbb 1151
aafe6c2a 1152 list_replace_rcu(&leader->tasks, &tsk->tasks);
9cd80bbb 1153 list_replace_init(&leader->sibling, &tsk->sibling);
1da177e4 1154
aafe6c2a
EB
1155 tsk->group_leader = tsk;
1156 leader->group_leader = tsk;
de12a787 1157
aafe6c2a 1158 tsk->exit_signal = SIGCHLD;
087806b1 1159 leader->exit_signal = -1;
962b564c
ON
1160
1161 BUG_ON(leader->exit_state != EXIT_ZOMBIE);
1162 leader->exit_state = EXIT_DEAD;
eac1b5e5
ON
1163
1164 /*
1165 * We are going to release_task()->ptrace_unlink() silently,
1166 * the tracer can sleep in do_wait(). EXIT_DEAD guarantees
1167 * the tracer wont't block again waiting for this thread.
1168 */
1169 if (unlikely(leader->ptrace))
1170 __wake_up_parent(leader, leader->parent);
1da177e4 1171 write_unlock_irq(&tasklist_lock);
e56fb287 1172 threadgroup_change_end(tsk);
8187926b
ON
1173
1174 release_task(leader);
ed5d2cac 1175 }
1da177e4 1176
6db840fa
ON
1177 sig->group_exit_task = NULL;
1178 sig->notify_count = 0;
1da177e4
LT
1179
1180no_thread_group:
e6368253
ON
1181 /* we have changed execution domain */
1182 tsk->exit_signal = SIGCHLD;
1183
baa73d9e 1184#ifdef CONFIG_POSIX_TIMERS
1da177e4 1185 exit_itimers(sig);
cbaffba1 1186 flush_itimer_signals();
baa73d9e 1187#endif
329f7dba 1188
b2c903b8
ON
1189 if (atomic_read(&oldsighand->count) != 1) {
1190 struct sighand_struct *newsighand;
1da177e4 1191 /*
b2c903b8
ON
1192 * This ->sighand is shared with the CLONE_SIGHAND
1193 * but not CLONE_THREAD task, switch to the new one.
1da177e4 1194 */
b2c903b8
ON
1195 newsighand = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
1196 if (!newsighand)
1197 return -ENOMEM;
1198
1da177e4
LT
1199 atomic_set(&newsighand->count, 1);
1200 memcpy(newsighand->action, oldsighand->action,
1201 sizeof(newsighand->action));
1202
1203 write_lock_irq(&tasklist_lock);
1204 spin_lock(&oldsighand->siglock);
aafe6c2a 1205 rcu_assign_pointer(tsk->sighand, newsighand);
1da177e4
LT
1206 spin_unlock(&oldsighand->siglock);
1207 write_unlock_irq(&tasklist_lock);
1208
fba2afaa 1209 __cleanup_sighand(oldsighand);
1da177e4
LT
1210 }
1211
aafe6c2a 1212 BUG_ON(!thread_group_leader(tsk));
1da177e4 1213 return 0;
d5bbd43d
ON
1214
1215killed:
1216 /* protects against exit_notify() and __exit_signal() */
1217 read_lock(&tasklist_lock);
1218 sig->group_exit_task = NULL;
1219 sig->notify_count = 0;
1220 read_unlock(&tasklist_lock);
1221 return -EAGAIN;
1da177e4 1222}
0840a90d 1223
59714d65 1224char *get_task_comm(char *buf, struct task_struct *tsk)
1da177e4
LT
1225{
1226 /* buf must be at least sizeof(tsk->comm) in size */
1227 task_lock(tsk);
1228 strncpy(buf, tsk->comm, sizeof(tsk->comm));
1229 task_unlock(tsk);
59714d65 1230 return buf;
1da177e4 1231}
7d74f492 1232EXPORT_SYMBOL_GPL(get_task_comm);
1da177e4 1233
6a6d27de
AV
1234/*
1235 * These functions flushes out all traces of the currently running executable
1236 * so that a new one can be started
1237 */
1238
82b89778 1239void __set_task_comm(struct task_struct *tsk, const char *buf, bool exec)
1da177e4
LT
1240{
1241 task_lock(tsk);
43d2b113 1242 trace_task_rename(tsk, buf);
1da177e4
LT
1243 strlcpy(tsk->comm, buf, sizeof(tsk->comm));
1244 task_unlock(tsk);
82b89778 1245 perf_event_comm(tsk, exec);
1da177e4
LT
1246}
1247
1248int flush_old_exec(struct linux_binprm * bprm)
1249{
221af7f8 1250 int retval;
1da177e4
LT
1251
1252 /*
1253 * Make sure we have a private signal table and that
1254 * we are unassociated from the previous thread group.
1255 */
1256 retval = de_thread(current);
1257 if (retval)
1258 goto out;
1259
6e399cd1
DB
1260 /*
1261 * Must be called _before_ exec_mmap() as bprm->mm is
1262 * not visibile until then. This also enables the update
1263 * to be lockless.
1264 */
925d1c40 1265 set_mm_exe_file(bprm->mm, bprm->file);
6e399cd1 1266
1da177e4
LT
1267 /*
1268 * Release all of the old mmap stuff
1269 */
3c77f845 1270 acct_arg_size(bprm, 0);
1da177e4
LT
1271 retval = exec_mmap(bprm->mm);
1272 if (retval)
fd8328be 1273 goto out;
1da177e4
LT
1274
1275 bprm->mm = NULL; /* We're using it now */
7ab02af4 1276
dac853ae 1277 set_fs(USER_DS);
b88fae64
ZY
1278 current->flags &= ~(PF_RANDOMIZE | PF_FORKNOEXEC | PF_KTHREAD |
1279 PF_NOFREEZE | PF_NO_SETAFFINITY);
7ab02af4
LT
1280 flush_thread();
1281 current->personality &= ~bprm->per_clear;
1282
613cc2b6
AS
1283 /*
1284 * We have to apply CLOEXEC before we change whether the process is
1285 * dumpable (in setup_new_exec) to avoid a race with a process in userspace
1286 * trying to access the should-be-closed file descriptors of a process
1287 * undergoing exec(2).
1288 */
1289 do_close_on_exec(current->files);
221af7f8
LT
1290 return 0;
1291
1292out:
1293 return retval;
1294}
1295EXPORT_SYMBOL(flush_old_exec);
1296
1b5d783c
AV
1297void would_dump(struct linux_binprm *bprm, struct file *file)
1298{
f84df2a6
EB
1299 struct inode *inode = file_inode(file);
1300 if (inode_permission(inode, MAY_READ) < 0) {
1301 struct user_namespace *old, *user_ns;
1b5d783c 1302 bprm->interp_flags |= BINPRM_FLAGS_ENFORCE_NONDUMP;
f84df2a6
EB
1303
1304 /* Ensure mm->user_ns contains the executable */
1305 user_ns = old = bprm->mm->user_ns;
1306 while ((user_ns != &init_user_ns) &&
1307 !privileged_wrt_inode_uidgid(user_ns, inode))
1308 user_ns = user_ns->parent;
1309
1310 if (old != user_ns) {
1311 bprm->mm->user_ns = get_user_ns(user_ns);
1312 put_user_ns(old);
1313 }
1314 }
1b5d783c
AV
1315}
1316EXPORT_SYMBOL(would_dump);
1317
221af7f8
LT
1318void setup_new_exec(struct linux_binprm * bprm)
1319{
221af7f8 1320 arch_pick_mmap_layout(current->mm);
1da177e4
LT
1321
1322 /* This is the point of no return */
1da177e4
LT
1323 current->sas_ss_sp = current->sas_ss_size = 0;
1324
8e96e3b7 1325 if (uid_eq(current_euid(), current_uid()) && gid_eq(current_egid(), current_gid()))
e579d2c2 1326 set_dumpable(current->mm, SUID_DUMP_USER);
d6e71144 1327 else
6c5d5238 1328 set_dumpable(current->mm, suid_dumpable);
d6e71144 1329
e041e328 1330 perf_event_exec();
82b89778 1331 __set_task_comm(current, kbasename(bprm->filename), true);
1da177e4 1332
0551fbd2
BH
1333 /* Set the new mm task size. We have to do that late because it may
1334 * depend on TIF_32BIT which is only updated in flush_thread() on
1335 * some architectures like powerpc
1336 */
1337 current->mm->task_size = TASK_SIZE;
1338
a6f76f23 1339 /* install the new credentials */
8e96e3b7
EB
1340 if (!uid_eq(bprm->cred->uid, current_euid()) ||
1341 !gid_eq(bprm->cred->gid, current_egid())) {
d2d56c5f 1342 current->pdeath_signal = 0;
1b5d783c 1343 } else {
1b5d783c
AV
1344 if (bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP)
1345 set_dumpable(current->mm, suid_dumpable);
1da177e4
LT
1346 }
1347
1348 /* An exec changes our domain. We are no longer part of the thread
1349 group */
1da177e4 1350 current->self_exec_id++;
1da177e4 1351 flush_signal_handlers(current, 0);
1da177e4 1352}
221af7f8 1353EXPORT_SYMBOL(setup_new_exec);
1da177e4 1354
a2a8474c
ON
1355/*
1356 * Prepare credentials and lock ->cred_guard_mutex.
1357 * install_exec_creds() commits the new creds and drops the lock.
1358 * Or, if exec fails before, free_bprm() should release ->cred and
1359 * and unlock.
1360 */
1361int prepare_bprm_creds(struct linux_binprm *bprm)
1362{
9b1bf12d 1363 if (mutex_lock_interruptible(&current->signal->cred_guard_mutex))
a2a8474c
ON
1364 return -ERESTARTNOINTR;
1365
1366 bprm->cred = prepare_exec_creds();
1367 if (likely(bprm->cred))
1368 return 0;
1369
9b1bf12d 1370 mutex_unlock(&current->signal->cred_guard_mutex);
a2a8474c
ON
1371 return -ENOMEM;
1372}
1373
c4ad8f98 1374static void free_bprm(struct linux_binprm *bprm)
a2a8474c
ON
1375{
1376 free_arg_pages(bprm);
1377 if (bprm->cred) {
9b1bf12d 1378 mutex_unlock(&current->signal->cred_guard_mutex);
a2a8474c
ON
1379 abort_creds(bprm->cred);
1380 }
63e46b95
ON
1381 if (bprm->file) {
1382 allow_write_access(bprm->file);
1383 fput(bprm->file);
1384 }
b66c5984
KC
1385 /* If a binfmt changed the interp, free it. */
1386 if (bprm->interp != bprm->filename)
1387 kfree(bprm->interp);
a2a8474c
ON
1388 kfree(bprm);
1389}
1390
b66c5984
KC
1391int bprm_change_interp(char *interp, struct linux_binprm *bprm)
1392{
1393 /* If a binfmt changed the interp, free it first. */
1394 if (bprm->interp != bprm->filename)
1395 kfree(bprm->interp);
1396 bprm->interp = kstrdup(interp, GFP_KERNEL);
1397 if (!bprm->interp)
1398 return -ENOMEM;
1399 return 0;
1400}
1401EXPORT_SYMBOL(bprm_change_interp);
1402
a6f76f23
DH
1403/*
1404 * install the new credentials for this executable
1405 */
1406void install_exec_creds(struct linux_binprm *bprm)
1407{
1408 security_bprm_committing_creds(bprm);
1409
1410 commit_creds(bprm->cred);
1411 bprm->cred = NULL;
2976b10f
SE
1412
1413 /*
1414 * Disable monitoring for regular users
1415 * when executing setuid binaries. Must
1416 * wait until new credentials are committed
1417 * by commit_creds() above
1418 */
1419 if (get_dumpable(current->mm) != SUID_DUMP_USER)
1420 perf_event_exit_task(current);
a2a8474c
ON
1421 /*
1422 * cred_guard_mutex must be held at least to this point to prevent
a6f76f23 1423 * ptrace_attach() from altering our determination of the task's
a2a8474c
ON
1424 * credentials; any time after this it may be unlocked.
1425 */
a6f76f23 1426 security_bprm_committed_creds(bprm);
9b1bf12d 1427 mutex_unlock(&current->signal->cred_guard_mutex);
a6f76f23
DH
1428}
1429EXPORT_SYMBOL(install_exec_creds);
1430
1431/*
1432 * determine how safe it is to execute the proposed program
9b1bf12d 1433 * - the caller must hold ->cred_guard_mutex to protect against
c2e1f2e3 1434 * PTRACE_ATTACH or seccomp thread-sync
a6f76f23 1435 */
9e00cdb0 1436static void check_unsafe_exec(struct linux_binprm *bprm)
a6f76f23 1437{
0bf2f3ae 1438 struct task_struct *p = current, *t;
f1191b50 1439 unsigned n_fs;
a6f76f23 1440
4b9d33e6 1441 if (p->ptrace) {
64b875f7 1442 if (ptracer_capable(p, current_user_ns()))
4b9d33e6
TH
1443 bprm->unsafe |= LSM_UNSAFE_PTRACE_CAP;
1444 else
1445 bprm->unsafe |= LSM_UNSAFE_PTRACE;
1446 }
a6f76f23 1447
259e5e6c
AL
1448 /*
1449 * This isn't strictly necessary, but it makes it harder for LSMs to
1450 * mess up.
1451 */
1d4457f9 1452 if (task_no_new_privs(current))
259e5e6c
AL
1453 bprm->unsafe |= LSM_UNSAFE_NO_NEW_PRIVS;
1454
83f62a2e 1455 t = p;
0bf2f3ae 1456 n_fs = 1;
2a4419b5 1457 spin_lock(&p->fs->lock);
437f7fdb 1458 rcu_read_lock();
83f62a2e 1459 while_each_thread(p, t) {
0bf2f3ae
DH
1460 if (t->fs == p->fs)
1461 n_fs++;
0bf2f3ae 1462 }
437f7fdb 1463 rcu_read_unlock();
0bf2f3ae 1464
9e00cdb0 1465 if (p->fs->users > n_fs)
a6f76f23 1466 bprm->unsafe |= LSM_UNSAFE_SHARE;
9e00cdb0
ON
1467 else
1468 p->fs->in_exec = 1;
2a4419b5 1469 spin_unlock(&p->fs->lock);
a6f76f23
DH
1470}
1471
8b01fc86
JH
1472static void bprm_fill_uid(struct linux_binprm *bprm)
1473{
1474 struct inode *inode;
1475 unsigned int mode;
1476 kuid_t uid;
1477 kgid_t gid;
1478
cb6fd68f
KC
1479 /*
1480 * Since this can be called multiple times (via prepare_binprm),
1481 * we must clear any previous work done when setting set[ug]id
1482 * bits from any earlier bprm->file uses (for example when run
1483 * first for a setuid script then again for its interpreter).
1484 */
8b01fc86
JH
1485 bprm->cred->euid = current_euid();
1486 bprm->cred->egid = current_egid();
1487
8f060a31 1488 if (path_nosuid(&bprm->file->f_path))
8b01fc86
JH
1489 return;
1490
1491 if (task_no_new_privs(current))
1492 return;
1493
1494 inode = file_inode(bprm->file);
1495 mode = READ_ONCE(inode->i_mode);
1496 if (!(mode & (S_ISUID|S_ISGID)))
1497 return;
1498
1499 /* Be careful if suid/sgid is set */
5955102c 1500 inode_lock(inode);
8b01fc86
JH
1501
1502 /* reload atomically mode/uid/gid now that lock held */
1503 mode = inode->i_mode;
1504 uid = inode->i_uid;
1505 gid = inode->i_gid;
5955102c 1506 inode_unlock(inode);
8b01fc86
JH
1507
1508 /* We ignore suid/sgid if there are no mappings for them in the ns */
1509 if (!kuid_has_mapping(bprm->cred->user_ns, uid) ||
1510 !kgid_has_mapping(bprm->cred->user_ns, gid))
1511 return;
1512
1513 if (mode & S_ISUID) {
1514 bprm->per_clear |= PER_CLEAR_ON_SETID;
1515 bprm->cred->euid = uid;
1516 }
1517
1518 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) {
1519 bprm->per_clear |= PER_CLEAR_ON_SETID;
1520 bprm->cred->egid = gid;
1521 }
1522}
1523
9e00cdb0
ON
1524/*
1525 * Fill the binprm structure from the inode.
1da177e4 1526 * Check permissions, then read the first 128 (BINPRM_BUF_SIZE) bytes
a6f76f23
DH
1527 *
1528 * This may be called multiple times for binary chains (scripts for example).
1da177e4
LT
1529 */
1530int prepare_binprm(struct linux_binprm *bprm)
1531{
1da177e4
LT
1532 int retval;
1533
8b01fc86 1534 bprm_fill_uid(bprm);
1da177e4
LT
1535
1536 /* fill in binprm security blob */
a6f76f23 1537 retval = security_bprm_set_creds(bprm);
1da177e4
LT
1538 if (retval)
1539 return retval;
a6f76f23 1540 bprm->cred_prepared = 1;
1da177e4 1541
a6f76f23
DH
1542 memset(bprm->buf, 0, BINPRM_BUF_SIZE);
1543 return kernel_read(bprm->file, 0, bprm->buf, BINPRM_BUF_SIZE);
1da177e4
LT
1544}
1545
1546EXPORT_SYMBOL(prepare_binprm);
1547
4fc75ff4
NP
1548/*
1549 * Arguments are '\0' separated strings found at the location bprm->p
1550 * points to; chop off the first by relocating brpm->p to right after
1551 * the first '\0' encountered.
1552 */
b6a2fea3 1553int remove_arg_zero(struct linux_binprm *bprm)
1da177e4 1554{
b6a2fea3
OW
1555 int ret = 0;
1556 unsigned long offset;
1557 char *kaddr;
1558 struct page *page;
4fc75ff4 1559
b6a2fea3
OW
1560 if (!bprm->argc)
1561 return 0;
1da177e4 1562
b6a2fea3
OW
1563 do {
1564 offset = bprm->p & ~PAGE_MASK;
1565 page = get_arg_page(bprm, bprm->p, 0);
1566 if (!page) {
1567 ret = -EFAULT;
1568 goto out;
1569 }
e8e3c3d6 1570 kaddr = kmap_atomic(page);
4fc75ff4 1571
b6a2fea3
OW
1572 for (; offset < PAGE_SIZE && kaddr[offset];
1573 offset++, bprm->p++)
1574 ;
4fc75ff4 1575
e8e3c3d6 1576 kunmap_atomic(kaddr);
b6a2fea3 1577 put_arg_page(page);
b6a2fea3 1578 } while (offset == PAGE_SIZE);
4fc75ff4 1579
b6a2fea3
OW
1580 bprm->p++;
1581 bprm->argc--;
1582 ret = 0;
4fc75ff4 1583
b6a2fea3
OW
1584out:
1585 return ret;
1da177e4 1586}
1da177e4
LT
1587EXPORT_SYMBOL(remove_arg_zero);
1588
cb7b6b1c 1589#define printable(c) (((c)=='\t') || ((c)=='\n') || (0x20<=(c) && (c)<=0x7e))
1da177e4
LT
1590/*
1591 * cycle the list of binary formats handler, until one recognizes the image
1592 */
3c456bfc 1593int search_binary_handler(struct linux_binprm *bprm)
1da177e4 1594{
cb7b6b1c 1595 bool need_retry = IS_ENABLED(CONFIG_MODULES);
1da177e4 1596 struct linux_binfmt *fmt;
cb7b6b1c 1597 int retval;
1da177e4 1598
d7402698 1599 /* This allows 4 levels of binfmt rewrites before failing hard. */
131b2f9f 1600 if (bprm->recursion_depth > 5)
d7402698
KC
1601 return -ELOOP;
1602
1da177e4
LT
1603 retval = security_bprm_check(bprm);
1604 if (retval)
1605 return retval;
1606
1da177e4 1607 retval = -ENOENT;
cb7b6b1c
ON
1608 retry:
1609 read_lock(&binfmt_lock);
1610 list_for_each_entry(fmt, &formats, lh) {
1611 if (!try_module_get(fmt->module))
1612 continue;
1613 read_unlock(&binfmt_lock);
1614 bprm->recursion_depth++;
1615 retval = fmt->load_binary(bprm);
19d860a1
AV
1616 read_lock(&binfmt_lock);
1617 put_binfmt(fmt);
cb7b6b1c 1618 bprm->recursion_depth--;
19d860a1
AV
1619 if (retval < 0 && !bprm->mm) {
1620 /* we got to flush_old_exec() and failed after it */
1621 read_unlock(&binfmt_lock);
1622 force_sigsegv(SIGSEGV, current);
1623 return retval;
1624 }
1625 if (retval != -ENOEXEC || !bprm->file) {
1626 read_unlock(&binfmt_lock);
cb7b6b1c 1627 return retval;
1da177e4 1628 }
1da177e4 1629 }
cb7b6b1c
ON
1630 read_unlock(&binfmt_lock);
1631
19d860a1 1632 if (need_retry) {
cb7b6b1c
ON
1633 if (printable(bprm->buf[0]) && printable(bprm->buf[1]) &&
1634 printable(bprm->buf[2]) && printable(bprm->buf[3]))
1635 return retval;
4e0621a0
ON
1636 if (request_module("binfmt-%04x", *(ushort *)(bprm->buf + 2)) < 0)
1637 return retval;
cb7b6b1c
ON
1638 need_retry = false;
1639 goto retry;
1640 }
1641
1da177e4
LT
1642 return retval;
1643}
1da177e4
LT
1644EXPORT_SYMBOL(search_binary_handler);
1645
5d1baf3b
ON
1646static int exec_binprm(struct linux_binprm *bprm)
1647{
1648 pid_t old_pid, old_vpid;
1649 int ret;
1650
1651 /* Need to fetch pid before load_binary changes it */
1652 old_pid = current->pid;
1653 rcu_read_lock();
1654 old_vpid = task_pid_nr_ns(current, task_active_pid_ns(current->parent));
1655 rcu_read_unlock();
1656
1657 ret = search_binary_handler(bprm);
1658 if (ret >= 0) {
3eaded86 1659 audit_bprm(bprm);
5d1baf3b
ON
1660 trace_sched_process_exec(current, old_pid, bprm);
1661 ptrace_event(PTRACE_EVENT_EXEC, old_vpid);
9beb266f 1662 proc_exec_connector(current);
5d1baf3b
ON
1663 }
1664
1665 return ret;
1666}
1667
1da177e4
LT
1668/*
1669 * sys_execve() executes a new program.
1670 */
51f39a1f
DD
1671static int do_execveat_common(int fd, struct filename *filename,
1672 struct user_arg_ptr argv,
1673 struct user_arg_ptr envp,
1674 int flags)
1da177e4 1675{
51f39a1f 1676 char *pathbuf = NULL;
1da177e4
LT
1677 struct linux_binprm *bprm;
1678 struct file *file;
3b125388 1679 struct files_struct *displaced;
1da177e4 1680 int retval;
72fa5997 1681
c4ad8f98
LT
1682 if (IS_ERR(filename))
1683 return PTR_ERR(filename);
1684
72fa5997
VK
1685 /*
1686 * We move the actual failure in case of RLIMIT_NPROC excess from
1687 * set*uid() to execve() because too many poorly written programs
1688 * don't check setuid() return code. Here we additionally recheck
1689 * whether NPROC limit is still exceeded.
1690 */
1691 if ((current->flags & PF_NPROC_EXCEEDED) &&
bd9d43f4 1692 atomic_read(&current_user()->processes) > rlimit(RLIMIT_NPROC)) {
72fa5997
VK
1693 retval = -EAGAIN;
1694 goto out_ret;
1695 }
1696
1697 /* We're below the limit (still or again), so we don't want to make
1698 * further execve() calls fail. */
1699 current->flags &= ~PF_NPROC_EXCEEDED;
1da177e4 1700
3b125388 1701 retval = unshare_files(&displaced);
fd8328be
AV
1702 if (retval)
1703 goto out_ret;
1704
1da177e4 1705 retval = -ENOMEM;
11b0b5ab 1706 bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
1da177e4 1707 if (!bprm)
fd8328be 1708 goto out_files;
1da177e4 1709
a2a8474c
ON
1710 retval = prepare_bprm_creds(bprm);
1711 if (retval)
a6f76f23 1712 goto out_free;
498052bb 1713
9e00cdb0 1714 check_unsafe_exec(bprm);
a2a8474c 1715 current->in_execve = 1;
a6f76f23 1716
51f39a1f 1717 file = do_open_execat(fd, filename, flags);
1da177e4
LT
1718 retval = PTR_ERR(file);
1719 if (IS_ERR(file))
498052bb 1720 goto out_unmark;
1da177e4
LT
1721
1722 sched_exec();
1723
1da177e4 1724 bprm->file = file;
51f39a1f
DD
1725 if (fd == AT_FDCWD || filename->name[0] == '/') {
1726 bprm->filename = filename->name;
1727 } else {
1728 if (filename->name[0] == '\0')
1729 pathbuf = kasprintf(GFP_TEMPORARY, "/dev/fd/%d", fd);
1730 else
1731 pathbuf = kasprintf(GFP_TEMPORARY, "/dev/fd/%d/%s",
1732 fd, filename->name);
1733 if (!pathbuf) {
1734 retval = -ENOMEM;
1735 goto out_unmark;
1736 }
1737 /*
1738 * Record that a name derived from an O_CLOEXEC fd will be
1739 * inaccessible after exec. Relies on having exclusive access to
1740 * current->files (due to unshare_files above).
1741 */
1742 if (close_on_exec(fd, rcu_dereference_raw(current->files->fdt)))
1743 bprm->interp_flags |= BINPRM_FLAGS_PATH_INACCESSIBLE;
1744 bprm->filename = pathbuf;
1745 }
1746 bprm->interp = bprm->filename;
1da177e4 1747
b6a2fea3
OW
1748 retval = bprm_mm_init(bprm);
1749 if (retval)
63e46b95 1750 goto out_unmark;
1da177e4 1751
b6a2fea3 1752 bprm->argc = count(argv, MAX_ARG_STRINGS);
1da177e4 1753 if ((retval = bprm->argc) < 0)
a6f76f23 1754 goto out;
1da177e4 1755
b6a2fea3 1756 bprm->envc = count(envp, MAX_ARG_STRINGS);
1da177e4 1757 if ((retval = bprm->envc) < 0)
1da177e4
LT
1758 goto out;
1759
1760 retval = prepare_binprm(bprm);
1761 if (retval < 0)
1762 goto out;
1763
1764 retval = copy_strings_kernel(1, &bprm->filename, bprm);
1765 if (retval < 0)
1766 goto out;
1767
1768 bprm->exec = bprm->p;
1769 retval = copy_strings(bprm->envc, envp, bprm);
1770 if (retval < 0)
1771 goto out;
1772
1773 retval = copy_strings(bprm->argc, argv, bprm);
1774 if (retval < 0)
1775 goto out;
1776
f84df2a6
EB
1777 would_dump(bprm, bprm->file);
1778
5d1baf3b 1779 retval = exec_binprm(bprm);
a6f76f23
DH
1780 if (retval < 0)
1781 goto out;
1da177e4 1782
a6f76f23 1783 /* execve succeeded */
498052bb 1784 current->fs->in_exec = 0;
f9ce1f1c 1785 current->in_execve = 0;
a6f76f23 1786 acct_update_integrals(current);
82727018 1787 task_numa_free(current);
a6f76f23 1788 free_bprm(bprm);
51f39a1f 1789 kfree(pathbuf);
c4ad8f98 1790 putname(filename);
a6f76f23
DH
1791 if (displaced)
1792 put_files_struct(displaced);
1793 return retval;
1da177e4 1794
a6f76f23 1795out:
3c77f845
ON
1796 if (bprm->mm) {
1797 acct_arg_size(bprm, 0);
1798 mmput(bprm->mm);
1799 }
1da177e4 1800
498052bb 1801out_unmark:
9e00cdb0 1802 current->fs->in_exec = 0;
f9ce1f1c 1803 current->in_execve = 0;
a6f76f23
DH
1804
1805out_free:
08a6fac1 1806 free_bprm(bprm);
51f39a1f 1807 kfree(pathbuf);
1da177e4 1808
fd8328be 1809out_files:
3b125388
AV
1810 if (displaced)
1811 reset_files_struct(displaced);
1da177e4 1812out_ret:
c4ad8f98 1813 putname(filename);
1da177e4
LT
1814 return retval;
1815}
1816
c4ad8f98 1817int do_execve(struct filename *filename,
ba2d0162 1818 const char __user *const __user *__argv,
da3d4c5f 1819 const char __user *const __user *__envp)
ba2d0162 1820{
0e028465
ON
1821 struct user_arg_ptr argv = { .ptr.native = __argv };
1822 struct user_arg_ptr envp = { .ptr.native = __envp };
51f39a1f
DD
1823 return do_execveat_common(AT_FDCWD, filename, argv, envp, 0);
1824}
1825
1826int do_execveat(int fd, struct filename *filename,
1827 const char __user *const __user *__argv,
1828 const char __user *const __user *__envp,
1829 int flags)
1830{
1831 struct user_arg_ptr argv = { .ptr.native = __argv };
1832 struct user_arg_ptr envp = { .ptr.native = __envp };
1833
1834 return do_execveat_common(fd, filename, argv, envp, flags);
0e028465
ON
1835}
1836
1837#ifdef CONFIG_COMPAT
c4ad8f98 1838static int compat_do_execve(struct filename *filename,
38b983b3 1839 const compat_uptr_t __user *__argv,
d03d26e5 1840 const compat_uptr_t __user *__envp)
0e028465
ON
1841{
1842 struct user_arg_ptr argv = {
1843 .is_compat = true,
1844 .ptr.compat = __argv,
1845 };
1846 struct user_arg_ptr envp = {
1847 .is_compat = true,
1848 .ptr.compat = __envp,
1849 };
51f39a1f
DD
1850 return do_execveat_common(AT_FDCWD, filename, argv, envp, 0);
1851}
1852
1853static int compat_do_execveat(int fd, struct filename *filename,
1854 const compat_uptr_t __user *__argv,
1855 const compat_uptr_t __user *__envp,
1856 int flags)
1857{
1858 struct user_arg_ptr argv = {
1859 .is_compat = true,
1860 .ptr.compat = __argv,
1861 };
1862 struct user_arg_ptr envp = {
1863 .is_compat = true,
1864 .ptr.compat = __envp,
1865 };
1866 return do_execveat_common(fd, filename, argv, envp, flags);
ba2d0162 1867}
0e028465 1868#endif
ba2d0162 1869
964ee7df 1870void set_binfmt(struct linux_binfmt *new)
1da177e4 1871{
801460d0
HS
1872 struct mm_struct *mm = current->mm;
1873
1874 if (mm->binfmt)
1875 module_put(mm->binfmt->module);
1da177e4 1876
801460d0 1877 mm->binfmt = new;
964ee7df
ON
1878 if (new)
1879 __module_get(new->module);
1da177e4 1880}
1da177e4
LT
1881EXPORT_SYMBOL(set_binfmt);
1882
6c5d5238 1883/*
7288e118 1884 * set_dumpable stores three-value SUID_DUMP_* into mm->flags.
6c5d5238
KH
1885 */
1886void set_dumpable(struct mm_struct *mm, int value)
1887{
abacd2fe
ON
1888 unsigned long old, new;
1889
7288e118
ON
1890 if (WARN_ON((unsigned)value > SUID_DUMP_ROOT))
1891 return;
1892
abacd2fe
ON
1893 do {
1894 old = ACCESS_ONCE(mm->flags);
7288e118 1895 new = (old & ~MMF_DUMPABLE_MASK) | value;
abacd2fe 1896 } while (cmpxchg(&mm->flags, old, new) != old);
6c5d5238 1897}
6c5d5238 1898
38b983b3
AV
1899SYSCALL_DEFINE3(execve,
1900 const char __user *, filename,
1901 const char __user *const __user *, argv,
1902 const char __user *const __user *, envp)
1903{
c4ad8f98 1904 return do_execve(getname(filename), argv, envp);
38b983b3 1905}
51f39a1f
DD
1906
1907SYSCALL_DEFINE5(execveat,
1908 int, fd, const char __user *, filename,
1909 const char __user *const __user *, argv,
1910 const char __user *const __user *, envp,
1911 int, flags)
1912{
1913 int lookup_flags = (flags & AT_EMPTY_PATH) ? LOOKUP_EMPTY : 0;
1914
1915 return do_execveat(fd,
1916 getname_flags(filename, lookup_flags, NULL),
1917 argv, envp, flags);
1918}
1919
38b983b3 1920#ifdef CONFIG_COMPAT
625b1d7e
HC
1921COMPAT_SYSCALL_DEFINE3(execve, const char __user *, filename,
1922 const compat_uptr_t __user *, argv,
1923 const compat_uptr_t __user *, envp)
38b983b3 1924{
c4ad8f98 1925 return compat_do_execve(getname(filename), argv, envp);
38b983b3 1926}
51f39a1f
DD
1927
1928COMPAT_SYSCALL_DEFINE5(execveat, int, fd,
1929 const char __user *, filename,
1930 const compat_uptr_t __user *, argv,
1931 const compat_uptr_t __user *, envp,
1932 int, flags)
1933{
1934 int lookup_flags = (flags & AT_EMPTY_PATH) ? LOOKUP_EMPTY : 0;
1935
1936 return compat_do_execveat(fd,
1937 getname_flags(filename, lookup_flags, NULL),
1938 argv, envp, flags);
1939}
38b983b3 1940#endif