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