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