1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * linux/fs/exec.c 4 * 5 * Copyright (C) 1991, 1992 Linus Torvalds 6 */ 7 8 /* 9 * #!-checking implemented by tytso. 10 */ 11 /* 12 * Demand-loading implemented 01.12.91 - no need to read anything but 13 * the header into memory. The inode of the executable is put into 14 * "current->executable", and page faults do the actual loading. Clean. 15 * 16 * Once more I can proudly say that linux stood up to being changed: it 17 * was less than 2 hours work to get demand-loading completely implemented. 18 * 19 * Demand loading changed July 1993 by Eric Youngdale. Use mmap instead, 20 * current->executable is only used by the procfs. This allows a dispatch 21 * table to check for several different types of binary formats. We keep 22 * trying until we recognize the file or we run out of supported binary 23 * formats. 24 */ 25 26 #include <linux/kernel_read_file.h> 27 #include <linux/slab.h> 28 #include <linux/file.h> 29 #include <linux/fdtable.h> 30 #include <linux/mm.h> 31 #include <linux/stat.h> 32 #include <linux/fcntl.h> 33 #include <linux/futex.h> 34 #include <linux/swap.h> 35 #include <linux/string.h> 36 #include <linux/init.h> 37 #include <linux/sched/mm.h> 38 #include <linux/sched/coredump.h> 39 #include <linux/sched/exec_state.h> 40 #include <linux/sched/signal.h> 41 #include <linux/sched/numa_balancing.h> 42 #include <linux/sched/task.h> 43 #include <linux/pagemap.h> 44 #include <linux/perf_event.h> 45 #include <linux/highmem.h> 46 #include <linux/spinlock.h> 47 #include <linux/key.h> 48 #include <linux/personality.h> 49 #include <linux/binfmts.h> 50 #include <linux/utsname.h> 51 #include <linux/pid_namespace.h> 52 #include <linux/module.h> 53 #include <linux/namei.h> 54 #include <linux/mount.h> 55 #include <linux/security.h> 56 #include <linux/syscalls.h> 57 #include <linux/tsacct_kern.h> 58 #include <linux/cn_proc.h> 59 #include <linux/audit.h> 60 #include <linux/kmod.h> 61 #include <linux/fsnotify.h> 62 #include <linux/fs_struct.h> 63 #include <linux/oom.h> 64 #include <linux/compat.h> 65 #include <linux/vmalloc.h> 66 #include <linux/io_uring.h> 67 #include <linux/syscall_user_dispatch.h> 68 #include <linux/coredump.h> 69 #include <linux/time_namespace.h> 70 #include <linux/user_events.h> 71 #include <linux/rseq.h> 72 #include <linux/ksm.h> 73 74 #include <linux/uaccess.h> 75 #include <asm/mmu_context.h> 76 #include <asm/tlb.h> 77 78 #include <trace/events/task.h> 79 #include "internal.h" 80 81 #include <trace/events/sched.h> 82 83 /* For vma exec functions. */ 84 #include "../mm/internal.h" 85 86 static int bprm_creds_from_file(struct linux_binprm *bprm); 87 88 int suid_dumpable = 0; 89 90 static LIST_HEAD(formats); 91 static DEFINE_RWLOCK(binfmt_lock); 92 93 void __register_binfmt(struct linux_binfmt * fmt, int insert) 94 { 95 write_lock(&binfmt_lock); 96 insert ? list_add(&fmt->lh, &formats) : 97 list_add_tail(&fmt->lh, &formats); 98 write_unlock(&binfmt_lock); 99 } 100 101 EXPORT_SYMBOL(__register_binfmt); 102 103 void unregister_binfmt(struct linux_binfmt * fmt) 104 { 105 write_lock(&binfmt_lock); 106 list_del(&fmt->lh); 107 write_unlock(&binfmt_lock); 108 } 109 110 EXPORT_SYMBOL(unregister_binfmt); 111 112 static inline void put_binfmt(struct linux_binfmt * fmt) 113 { 114 module_put(fmt->module); 115 } 116 117 bool path_noexec(const struct path *path) 118 { 119 /* If it's an anonymous inode make sure that we catch any shenanigans. */ 120 VFS_WARN_ON_ONCE(IS_ANON_FILE(d_inode(path->dentry)) && 121 !(path->mnt->mnt_sb->s_iflags & SB_I_NOEXEC)); 122 return (path->mnt->mnt_flags & MNT_NOEXEC) || 123 (path->mnt->mnt_sb->s_iflags & SB_I_NOEXEC); 124 } 125 126 #ifdef CONFIG_MMU 127 /* 128 * The nascent bprm->mm is not visible until exec_mmap() but it can 129 * use a lot of memory, account these pages in current->mm temporary 130 * for oom_badness()->get_mm_rss(). Once exec succeeds or fails, we 131 * change the counter back via acct_arg_size(0). 132 */ 133 static void acct_arg_size(struct linux_binprm *bprm, unsigned long pages) 134 { 135 struct mm_struct *mm = current->mm; 136 long diff = (long)(pages - bprm->vma_pages); 137 138 if (!mm || !diff) 139 return; 140 141 bprm->vma_pages = pages; 142 add_mm_counter(mm, MM_ANONPAGES, diff); 143 } 144 145 static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos, 146 int write) 147 { 148 struct page *page; 149 struct vm_area_struct *vma = bprm->vma; 150 struct mm_struct *mm = bprm->mm; 151 int ret; 152 153 /* 154 * Avoid relying on expanding the stack down in GUP (which 155 * does not work for STACK_GROWSUP anyway), and just do it 156 * ahead of time. 157 */ 158 if (!mmap_read_lock_maybe_expand(mm, vma, pos, write)) 159 return NULL; 160 161 /* 162 * We are doing an exec(). 'current' is the process 163 * doing the exec and 'mm' is the new process's mm. 164 */ 165 ret = get_user_pages_remote(mm, pos, 1, 166 write ? FOLL_WRITE : 0, 167 &page, NULL); 168 mmap_read_unlock(mm); 169 if (ret <= 0) 170 return NULL; 171 172 if (write) 173 acct_arg_size(bprm, vma_pages(vma)); 174 175 return page; 176 } 177 178 static void put_arg_page(struct page *page) 179 { 180 put_page(page); 181 } 182 183 static void free_arg_pages(struct linux_binprm *bprm) 184 { 185 } 186 187 static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos, 188 struct page *page) 189 { 190 flush_cache_page(bprm->vma, pos, page_to_pfn(page)); 191 } 192 193 static bool valid_arg_len(struct linux_binprm *bprm, long len) 194 { 195 return len <= MAX_ARG_STRLEN; 196 } 197 198 #else 199 200 static inline void acct_arg_size(struct linux_binprm *bprm, unsigned long pages) 201 { 202 } 203 204 static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos, 205 int write) 206 { 207 struct page *page; 208 209 page = bprm->page[pos / PAGE_SIZE]; 210 if (!page && write) { 211 page = alloc_page(GFP_HIGHUSER|__GFP_ZERO); 212 if (!page) 213 return NULL; 214 bprm->page[pos / PAGE_SIZE] = page; 215 } 216 217 return page; 218 } 219 220 static void put_arg_page(struct page *page) 221 { 222 } 223 224 static void free_arg_page(struct linux_binprm *bprm, int i) 225 { 226 if (bprm->page[i]) { 227 __free_page(bprm->page[i]); 228 bprm->page[i] = NULL; 229 } 230 } 231 232 static void free_arg_pages(struct linux_binprm *bprm) 233 { 234 int i; 235 236 for (i = 0; i < MAX_ARG_PAGES; i++) 237 free_arg_page(bprm, i); 238 } 239 240 static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos, 241 struct page *page) 242 { 243 } 244 245 static bool valid_arg_len(struct linux_binprm *bprm, long len) 246 { 247 return len <= bprm->p; 248 } 249 250 #endif /* CONFIG_MMU */ 251 252 /* 253 * Create a new mm_struct and populate it with a temporary stack 254 * vm_area_struct. We don't have enough context at this point to set the stack 255 * flags, permissions, and offset, so we use temporary values. We'll update 256 * them later in setup_arg_pages(). 257 */ 258 static int bprm_mm_init(struct linux_binprm *bprm) 259 { 260 int err; 261 struct mm_struct *mm = NULL; 262 263 bprm->mm = mm = mm_alloc(); 264 err = -ENOMEM; 265 if (!mm) 266 goto err; 267 268 /* Staged for would_dump() narrowing; consumed by begin_new_exec(). */ 269 bprm->user_ns = get_user_ns(current_user_ns()); 270 271 /* Save current stack limit for all calculations made during exec. */ 272 task_lock(current->group_leader); 273 bprm->rlim_stack = current->signal->rlim[RLIMIT_STACK]; 274 task_unlock(current->group_leader); 275 276 #ifndef CONFIG_MMU 277 bprm->p = PAGE_SIZE * MAX_ARG_PAGES - sizeof(void *); 278 #else 279 err = create_init_stack_vma(bprm->mm, &bprm->vma, &bprm->p); 280 if (err) 281 goto err; 282 #endif 283 284 return 0; 285 286 err: 287 if (mm) { 288 bprm->mm = NULL; 289 mmdrop(mm); 290 } 291 292 return err; 293 } 294 295 struct user_arg_ptr { 296 #ifdef CONFIG_COMPAT 297 bool is_compat; 298 #endif 299 union { 300 const char __user *const __user *native; 301 #ifdef CONFIG_COMPAT 302 const compat_uptr_t __user *compat; 303 #endif 304 } ptr; 305 }; 306 307 static const char __user *get_user_arg_ptr(struct user_arg_ptr argv, int nr) 308 { 309 const char __user *native; 310 311 #ifdef CONFIG_COMPAT 312 if (unlikely(argv.is_compat)) { 313 compat_uptr_t compat; 314 315 if (get_user(compat, argv.ptr.compat + nr)) 316 return ERR_PTR(-EFAULT); 317 318 return compat_ptr(compat); 319 } 320 #endif 321 322 if (get_user(native, argv.ptr.native + nr)) 323 return ERR_PTR(-EFAULT); 324 325 return native; 326 } 327 328 /* 329 * count() counts the number of strings in array ARGV. 330 */ 331 static int count(struct user_arg_ptr argv, int max) 332 { 333 int i = 0; 334 335 if (argv.ptr.native != NULL) { 336 for (;;) { 337 const char __user *p = get_user_arg_ptr(argv, i); 338 339 if (!p) 340 break; 341 342 if (IS_ERR(p)) 343 return -EFAULT; 344 345 if (i >= max) 346 return -E2BIG; 347 ++i; 348 349 if (fatal_signal_pending(current)) 350 return -ERESTARTNOHAND; 351 cond_resched(); 352 } 353 } 354 return i; 355 } 356 357 static int count_strings_kernel(const char *const *argv) 358 { 359 int i; 360 361 if (!argv) 362 return 0; 363 364 for (i = 0; argv[i]; ++i) { 365 if (i >= MAX_ARG_STRINGS) 366 return -E2BIG; 367 if (fatal_signal_pending(current)) 368 return -ERESTARTNOHAND; 369 cond_resched(); 370 } 371 return i; 372 } 373 374 static inline int bprm_set_stack_limit(struct linux_binprm *bprm, 375 unsigned long limit) 376 { 377 #ifdef CONFIG_MMU 378 /* Avoid a pathological bprm->p. */ 379 if (bprm->p < limit) 380 return -E2BIG; 381 bprm->argmin = bprm->p - limit; 382 #endif 383 return 0; 384 } 385 static inline bool bprm_hit_stack_limit(struct linux_binprm *bprm) 386 { 387 #ifdef CONFIG_MMU 388 return bprm->p < bprm->argmin; 389 #else 390 return false; 391 #endif 392 } 393 394 /* 395 * Calculate bprm->argmin from: 396 * - _STK_LIM 397 * - ARG_MAX 398 * - bprm->rlim_stack.rlim_cur 399 * - bprm->argc 400 * - bprm->envc 401 * - bprm->p 402 */ 403 static int bprm_stack_limits(struct linux_binprm *bprm) 404 { 405 unsigned long limit, ptr_size; 406 407 /* 408 * Limit to 1/4 of the max stack size or 3/4 of _STK_LIM 409 * (whichever is smaller) for the argv+env strings. 410 * This ensures that: 411 * - the remaining binfmt code will not run out of stack space, 412 * - the program will have a reasonable amount of stack left 413 * to work from. 414 */ 415 limit = _STK_LIM / 4 * 3; 416 limit = min(limit, bprm->rlim_stack.rlim_cur / 4); 417 /* 418 * We've historically supported up to 32 pages (ARG_MAX) 419 * of argument strings even with small stacks 420 */ 421 limit = max_t(unsigned long, limit, ARG_MAX); 422 /* Reject totally pathological counts. */ 423 if (bprm->argc < 0 || bprm->envc < 0) 424 return -E2BIG; 425 /* 426 * We must account for the size of all the argv and envp pointers to 427 * the argv and envp strings, since they will also take up space in 428 * the stack. They aren't stored until much later when we can't 429 * signal to the parent that the child has run out of stack space. 430 * Instead, calculate it here so it's possible to fail gracefully. 431 * 432 * In the case of argc = 0, make sure there is space for adding a 433 * empty string (which will bump argc to 1), to ensure confused 434 * userspace programs don't start processing from argv[1], thinking 435 * argc can never be 0, to keep them from walking envp by accident. 436 * See do_execveat_common(). 437 */ 438 if (check_add_overflow(max(bprm->argc, 1), bprm->envc, &ptr_size) || 439 check_mul_overflow(ptr_size, sizeof(void *), &ptr_size)) 440 return -E2BIG; 441 if (limit <= ptr_size) 442 return -E2BIG; 443 limit -= ptr_size; 444 445 return bprm_set_stack_limit(bprm, limit); 446 } 447 448 /* 449 * 'copy_strings()' copies argument/environment strings from the old 450 * processes's memory to the new process's stack. The call to get_user_pages() 451 * ensures the destination page is created and not swapped out. 452 */ 453 static int copy_strings(int argc, struct user_arg_ptr argv, 454 struct linux_binprm *bprm) 455 { 456 struct page *kmapped_page = NULL; 457 char *kaddr = NULL; 458 unsigned long kpos = 0; 459 int ret; 460 461 while (argc-- > 0) { 462 const char __user *str; 463 int len; 464 unsigned long pos; 465 466 ret = -EFAULT; 467 str = get_user_arg_ptr(argv, argc); 468 if (IS_ERR(str)) 469 goto out; 470 471 len = strnlen_user(str, MAX_ARG_STRLEN); 472 if (!len) 473 goto out; 474 475 ret = -E2BIG; 476 if (!valid_arg_len(bprm, len)) 477 goto out; 478 479 /* We're going to work our way backwards. */ 480 pos = bprm->p; 481 str += len; 482 bprm->p -= len; 483 if (bprm_hit_stack_limit(bprm)) 484 goto out; 485 486 while (len > 0) { 487 int offset, bytes_to_copy; 488 489 if (fatal_signal_pending(current)) { 490 ret = -ERESTARTNOHAND; 491 goto out; 492 } 493 cond_resched(); 494 495 offset = pos % PAGE_SIZE; 496 if (offset == 0) 497 offset = PAGE_SIZE; 498 499 bytes_to_copy = offset; 500 if (bytes_to_copy > len) 501 bytes_to_copy = len; 502 503 offset -= bytes_to_copy; 504 pos -= bytes_to_copy; 505 str -= bytes_to_copy; 506 len -= bytes_to_copy; 507 508 if (!kmapped_page || kpos != (pos & PAGE_MASK)) { 509 struct page *page; 510 511 page = get_arg_page(bprm, pos, 1); 512 if (!page) { 513 ret = -E2BIG; 514 goto out; 515 } 516 517 if (kmapped_page) { 518 flush_dcache_page(kmapped_page); 519 kunmap_local(kaddr); 520 put_arg_page(kmapped_page); 521 } 522 kmapped_page = page; 523 kaddr = kmap_local_page(kmapped_page); 524 kpos = pos & PAGE_MASK; 525 flush_arg_page(bprm, kpos, kmapped_page); 526 } 527 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) { 528 ret = -EFAULT; 529 goto out; 530 } 531 } 532 } 533 ret = 0; 534 out: 535 if (kmapped_page) { 536 flush_dcache_page(kmapped_page); 537 kunmap_local(kaddr); 538 put_arg_page(kmapped_page); 539 } 540 return ret; 541 } 542 543 /* 544 * Copy and argument/environment string from the kernel to the processes stack. 545 */ 546 int copy_string_kernel(const char *arg, struct linux_binprm *bprm) 547 { 548 int len = strnlen(arg, MAX_ARG_STRLEN) + 1 /* terminating NUL */; 549 unsigned long pos = bprm->p; 550 551 if (len == 0) 552 return -EFAULT; 553 if (!valid_arg_len(bprm, len)) 554 return -E2BIG; 555 556 /* We're going to work our way backwards. */ 557 arg += len; 558 bprm->p -= len; 559 if (bprm_hit_stack_limit(bprm)) 560 return -E2BIG; 561 562 while (len > 0) { 563 unsigned int bytes_to_copy = min(len, 564 min_not_zero(offset_in_page(pos), PAGE_SIZE)); 565 struct page *page; 566 567 pos -= bytes_to_copy; 568 arg -= bytes_to_copy; 569 len -= bytes_to_copy; 570 571 page = get_arg_page(bprm, pos, 1); 572 if (!page) 573 return -E2BIG; 574 flush_arg_page(bprm, pos & PAGE_MASK, page); 575 memcpy_to_page(page, offset_in_page(pos), arg, bytes_to_copy); 576 put_arg_page(page); 577 } 578 579 return 0; 580 } 581 EXPORT_SYMBOL(copy_string_kernel); 582 583 static int copy_strings_kernel(int argc, const char *const *argv, 584 struct linux_binprm *bprm) 585 { 586 while (argc-- > 0) { 587 int ret = copy_string_kernel(argv[argc], bprm); 588 if (ret < 0) 589 return ret; 590 if (fatal_signal_pending(current)) 591 return -ERESTARTNOHAND; 592 cond_resched(); 593 } 594 return 0; 595 } 596 597 #ifdef CONFIG_MMU 598 599 /* 600 * Finalizes the stack vm_area_struct. The flags and permissions are updated, 601 * the stack is optionally relocated, and some extra space is added. 602 */ 603 int setup_arg_pages(struct linux_binprm *bprm, 604 unsigned long stack_top, 605 int executable_stack) 606 { 607 int ret; 608 unsigned long stack_shift; 609 struct mm_struct *mm = current->mm; 610 struct vm_area_struct *vma = bprm->vma; 611 struct vm_area_struct *prev = NULL; 612 vm_flags_t vm_flags; 613 unsigned long stack_base; 614 unsigned long stack_size; 615 unsigned long stack_expand; 616 unsigned long rlim_stack; 617 struct mmu_gather tlb; 618 struct vma_iterator vmi; 619 620 #ifdef CONFIG_STACK_GROWSUP 621 /* Limit stack size */ 622 stack_base = bprm->rlim_stack.rlim_max; 623 624 stack_base = calc_max_stack_size(stack_base); 625 626 /* Add space for stack randomization. */ 627 if (current->flags & PF_RANDOMIZE) 628 stack_base += (STACK_RND_MASK << PAGE_SHIFT); 629 630 /* Make sure we didn't let the argument array grow too large. */ 631 if (vma->vm_end - vma->vm_start > stack_base) 632 return -ENOMEM; 633 634 stack_base = PAGE_ALIGN(stack_top - stack_base); 635 636 stack_shift = vma->vm_start - stack_base; 637 mm->arg_start = bprm->p - stack_shift; 638 bprm->p = vma->vm_end - stack_shift; 639 #else 640 stack_top = arch_align_stack(stack_top); 641 stack_top = PAGE_ALIGN(stack_top); 642 643 if (unlikely(stack_top < mmap_min_addr) || 644 unlikely(vma->vm_end - vma->vm_start >= stack_top - mmap_min_addr)) 645 return -ENOMEM; 646 647 stack_shift = vma->vm_end - stack_top; 648 649 bprm->p -= stack_shift; 650 mm->arg_start = bprm->p; 651 #endif 652 653 bprm->exec -= stack_shift; 654 655 if (mmap_write_lock_killable(mm)) 656 return -EINTR; 657 658 vm_flags = VM_STACK_FLAGS; 659 660 /* 661 * Adjust stack execute permissions; explicitly enable for 662 * EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X and leave alone 663 * (arch default) otherwise. 664 */ 665 if (unlikely(executable_stack == EXSTACK_ENABLE_X)) 666 vm_flags |= VM_EXEC; 667 else if (executable_stack == EXSTACK_DISABLE_X) 668 vm_flags &= ~VM_EXEC; 669 vm_flags |= mm->def_flags; 670 vm_flags |= VM_STACK_INCOMPLETE_SETUP; 671 672 vma_iter_init(&vmi, mm, vma->vm_start); 673 674 tlb_gather_mmu(&tlb, mm); 675 ret = mprotect_fixup(&vmi, &tlb, vma, &prev, vma->vm_start, vma->vm_end, 676 vm_flags); 677 tlb_finish_mmu(&tlb); 678 679 if (ret) 680 goto out_unlock; 681 BUG_ON(prev != vma); 682 683 if (unlikely(vm_flags & VM_EXEC)) { 684 pr_warn_once("process '%pD4' started with executable stack\n", 685 bprm->file); 686 } 687 688 /* Move stack pages down in memory. */ 689 if (stack_shift) { 690 /* 691 * During bprm_mm_init(), we create a temporary stack at STACK_TOP_MAX. Once 692 * the binfmt code determines where the new stack should reside, we shift it to 693 * its final location. 694 */ 695 ret = relocate_vma_down(vma, stack_shift); 696 if (ret) 697 goto out_unlock; 698 } 699 700 /* mprotect_fixup is overkill to remove the temporary stack flags */ 701 vm_flags_clear(vma, VM_STACK_INCOMPLETE_SETUP); 702 703 stack_expand = 131072UL; /* randomly 32*4k (or 2*64k) pages */ 704 stack_size = vma->vm_end - vma->vm_start; 705 /* 706 * Align this down to a page boundary as expand_stack 707 * will align it up. 708 */ 709 rlim_stack = bprm->rlim_stack.rlim_cur & PAGE_MASK; 710 711 stack_expand = min(rlim_stack, stack_size + stack_expand); 712 713 #ifdef CONFIG_STACK_GROWSUP 714 stack_base = vma->vm_start + stack_expand; 715 #else 716 stack_base = vma->vm_end - stack_expand; 717 #endif 718 current->mm->start_stack = bprm->p; 719 ret = expand_stack_locked(vma, stack_base); 720 if (ret) 721 ret = -EFAULT; 722 723 out_unlock: 724 mmap_write_unlock(mm); 725 return ret; 726 } 727 EXPORT_SYMBOL(setup_arg_pages); 728 729 #else 730 731 /* 732 * Transfer the program arguments and environment from the holding pages 733 * onto the stack. The provided stack pointer is adjusted accordingly. 734 */ 735 int transfer_args_to_stack(struct linux_binprm *bprm, 736 unsigned long *sp_location) 737 { 738 unsigned long index, stop, sp; 739 int ret = 0; 740 741 stop = bprm->p >> PAGE_SHIFT; 742 sp = *sp_location; 743 744 for (index = MAX_ARG_PAGES; index-- > stop; ) { 745 unsigned int offset = index == stop ? bprm->p & ~PAGE_MASK : 0; 746 char *src = kmap_local_page(bprm->page[index]) + offset; 747 sp -= PAGE_SIZE - offset; 748 if (copy_to_user((void *) sp, src, PAGE_SIZE - offset) != 0) 749 ret = -EFAULT; 750 kunmap_local(src); 751 if (ret) 752 goto out; 753 } 754 755 bprm->exec += *sp_location - MAX_ARG_PAGES * PAGE_SIZE; 756 *sp_location = sp; 757 758 out: 759 return ret; 760 } 761 EXPORT_SYMBOL(transfer_args_to_stack); 762 763 #endif /* CONFIG_MMU */ 764 765 /* 766 * On success, caller must call do_close_execat() on the returned 767 * struct file to close it. 768 */ 769 static struct file *do_open_execat(int fd, struct filename *name, int flags) 770 { 771 int err; 772 struct file *file __free(fput) = NULL; 773 struct open_flags open_exec_flags = { 774 .open_flag = O_LARGEFILE | O_RDONLY | __FMODE_EXEC, 775 .acc_mode = MAY_EXEC, 776 .intent = LOOKUP_OPEN, 777 .lookup_flags = LOOKUP_FOLLOW, 778 }; 779 780 if ((flags & 781 ~(AT_SYMLINK_NOFOLLOW | AT_EMPTY_PATH | AT_EXECVE_CHECK)) != 0) 782 return ERR_PTR(-EINVAL); 783 if (flags & AT_SYMLINK_NOFOLLOW) 784 open_exec_flags.lookup_flags &= ~LOOKUP_FOLLOW; 785 786 file = do_file_open(fd, name, &open_exec_flags); 787 if (IS_ERR(file)) 788 return file; 789 790 if (path_noexec(&file->f_path)) 791 return ERR_PTR(-EACCES); 792 793 /* 794 * In the past the regular type check was here. It moved to may_open() in 795 * 633fb6ac3980 ("exec: move S_ISREG() check earlier"). Since then it is 796 * an invariant that all non-regular files error out before we get here. 797 */ 798 if (WARN_ON_ONCE(!S_ISREG(file_inode(file)->i_mode))) 799 return ERR_PTR(-EACCES); 800 801 err = exe_file_deny_write_access(file); 802 if (err) 803 return ERR_PTR(err); 804 805 return no_free_ptr(file); 806 } 807 808 /** 809 * open_exec - Open a path name for execution 810 * 811 * @name: path name to open with the intent of executing it. 812 * 813 * Returns ERR_PTR on failure or allocated struct file on success. 814 * 815 * As this is a wrapper for the internal do_open_execat(), callers 816 * must call exe_file_allow_write_access() before fput() on release. Also see 817 * do_close_execat(). 818 */ 819 struct file *open_exec(const char *name) 820 { 821 CLASS(filename_kernel, filename)(name); 822 return do_open_execat(AT_FDCWD, filename, 0); 823 } 824 EXPORT_SYMBOL(open_exec); 825 826 #if defined(CONFIG_BINFMT_FLAT) || defined(CONFIG_BINFMT_ELF_FDPIC) 827 ssize_t read_code(struct file *file, unsigned long addr, loff_t pos, size_t len) 828 { 829 ssize_t res = vfs_read(file, (void __user *)addr, len, &pos); 830 if (res > 0) 831 flush_icache_user_range(addr, addr + len); 832 return res; 833 } 834 EXPORT_SYMBOL(read_code); 835 #endif 836 837 /* 838 * Maps the mm_struct mm into the current task struct. 839 * On success, this function returns with exec_update_lock 840 * held for writing. The replaced address space is stashed in 841 * bprm->old_mm for setup_new_exec() to release outside the lock. 842 */ 843 static int exec_mmap(struct linux_binprm *bprm) 844 { 845 struct task_exec_state *exec_state __free(put_task_exec_state) = NULL; 846 struct mm_struct *mm = bprm->mm; 847 struct task_struct *tsk; 848 struct mm_struct *old_mm, *active_mm; 849 int ret; 850 851 exec_state = alloc_task_exec_state(bprm->user_ns); 852 if (!exec_state) 853 return -ENOMEM; 854 855 /* Notify parent that we're no longer interested in the old VM */ 856 tsk = current; 857 old_mm = current->mm; 858 /* Clean up futexes and release the mm */ 859 mm_exit_exec_release(tsk, old_mm); 860 861 ret = down_write_killable(&tsk->signal->exec_update_lock); 862 if (ret) 863 return ret; 864 865 if (old_mm) { 866 /* 867 * If there is a pending fatal signal perhaps a signal 868 * whose default action is to create a coredump get 869 * out and die instead of going through with the exec. 870 */ 871 ret = mmap_read_lock_killable(old_mm); 872 if (ret) { 873 up_write(&tsk->signal->exec_update_lock); 874 return ret; 875 } 876 } 877 878 task_lock(tsk); 879 membarrier_exec_mmap(mm); 880 881 local_irq_disable(); 882 active_mm = tsk->active_mm; 883 tsk->active_mm = mm; 884 tsk->mm = mm; 885 mm_init_cid(mm, tsk); 886 exec_state = task_exec_state_replace(tsk, exec_state); 887 /* 888 * This prevents preemption while active_mm is being loaded and 889 * it and mm are being updated, which could cause problems for 890 * lazy tlb mm refcounting when these are updated by context 891 * switches. Not all architectures can handle irqs off over 892 * activate_mm yet. 893 */ 894 if (!IS_ENABLED(CONFIG_ARCH_WANT_IRQS_OFF_ACTIVATE_MM)) 895 local_irq_enable(); 896 activate_mm(active_mm, mm); 897 if (IS_ENABLED(CONFIG_ARCH_WANT_IRQS_OFF_ACTIVATE_MM)) 898 local_irq_enable(); 899 lru_gen_add_mm(mm); 900 task_unlock(tsk); 901 lru_gen_use_mm(mm); 902 if (old_mm) { 903 mmap_read_unlock(old_mm); 904 BUG_ON(active_mm != old_mm); 905 /* Defer teardown to setup_new_exec(), outside the exec locks. */ 906 bprm->old_mm = old_mm; 907 } else { 908 mmdrop_lazy_tlb(active_mm); 909 } 910 futex_exec_done(tsk); 911 return 0; 912 } 913 914 /* Release the address space replaced by exec, outside the exec locks. */ 915 static void exec_mm_put_old(struct mm_struct *old_mm) 916 { 917 setmax_mm_hiwater_rss(¤t->signal->maxrss, old_mm); 918 mm_update_next_owner(old_mm); 919 mmput(old_mm); 920 } 921 922 static int de_thread(struct task_struct *tsk) 923 { 924 struct signal_struct *sig = tsk->signal; 925 struct sighand_struct *oldsighand = tsk->sighand; 926 spinlock_t *lock = &oldsighand->siglock; 927 928 if (thread_group_empty(tsk)) 929 goto no_thread_group; 930 931 /* 932 * Kill all other threads in the thread group. 933 */ 934 spin_lock_irq(lock); 935 if ((sig->flags & SIGNAL_GROUP_EXIT) || sig->group_exec_task) { 936 /* 937 * Another group action in progress, just 938 * return so that the signal is processed. 939 */ 940 spin_unlock_irq(lock); 941 return -EAGAIN; 942 } 943 944 sig->group_exec_task = tsk; 945 sig->notify_count = zap_other_threads(tsk); 946 if (!thread_group_leader(tsk)) 947 sig->notify_count--; 948 949 while (sig->notify_count) { 950 __set_current_state(TASK_KILLABLE); 951 spin_unlock_irq(lock); 952 schedule(); 953 if (__fatal_signal_pending(tsk)) 954 goto killed; 955 spin_lock_irq(lock); 956 } 957 spin_unlock_irq(lock); 958 959 /* 960 * At this point all other threads have exited, all we have to 961 * do is to wait for the thread group leader to become inactive, 962 * and to assume its PID: 963 */ 964 if (!thread_group_leader(tsk)) { 965 struct task_struct *leader = tsk->group_leader; 966 967 for (;;) { 968 cgroup_threadgroup_change_begin(tsk); 969 write_lock_irq(&tasklist_lock); 970 /* 971 * Do this under tasklist_lock to ensure that 972 * exit_notify() can't miss ->group_exec_task 973 */ 974 sig->notify_count = -1; 975 if (likely(leader->exit_state)) 976 break; 977 __set_current_state(TASK_KILLABLE); 978 write_unlock_irq(&tasklist_lock); 979 cgroup_threadgroup_change_end(tsk); 980 schedule(); 981 if (__fatal_signal_pending(tsk)) 982 goto killed; 983 } 984 985 /* 986 * The only record we have of the real-time age of a 987 * process, regardless of execs it's done, is start_time. 988 * All the past CPU time is accumulated in signal_struct 989 * from sister threads now dead. But in this non-leader 990 * exec, nothing survives from the original leader thread, 991 * whose birth marks the true age of this process now. 992 * When we take on its identity by switching to its PID, we 993 * also take its birthdate (always earlier than our own). 994 */ 995 tsk->start_time = leader->start_time; 996 tsk->start_boottime = leader->start_boottime; 997 998 BUG_ON(!same_thread_group(leader, tsk)); 999 /* 1000 * An exec() starts a new thread group with the 1001 * TGID of the previous thread group. Rehash the 1002 * two threads with a switched PID, and release 1003 * the former thread group leader: 1004 */ 1005 1006 /* Become a process group leader with the old leader's pid. 1007 * The old leader becomes a thread of the this thread group. 1008 */ 1009 exchange_tids(tsk, leader); 1010 transfer_pid(leader, tsk, PIDTYPE_TGID); 1011 transfer_pid(leader, tsk, PIDTYPE_PGID); 1012 transfer_pid(leader, tsk, PIDTYPE_SID); 1013 1014 list_replace_rcu(&leader->tasks, &tsk->tasks); 1015 list_replace_init(&leader->sibling, &tsk->sibling); 1016 1017 tsk->group_leader = tsk; 1018 leader->group_leader = tsk; 1019 1020 tsk->exit_signal = SIGCHLD; 1021 leader->exit_signal = -1; 1022 1023 BUG_ON(leader->exit_state != EXIT_ZOMBIE); 1024 leader->exit_state = EXIT_DEAD; 1025 /* 1026 * We are going to release_task()->ptrace_unlink() silently, 1027 * the tracer can sleep in do_wait(). EXIT_DEAD guarantees 1028 * the tracer won't block again waiting for this thread. 1029 */ 1030 if (unlikely(leader->ptrace)) 1031 __wake_up_parent(leader, leader->parent); 1032 write_unlock_irq(&tasklist_lock); 1033 cgroup_threadgroup_change_end(tsk); 1034 1035 release_task(leader); 1036 } 1037 1038 sig->group_exec_task = NULL; 1039 sig->notify_count = 0; 1040 1041 no_thread_group: 1042 /* we have changed execution domain */ 1043 tsk->exit_signal = SIGCHLD; 1044 1045 BUG_ON(!thread_group_leader(tsk)); 1046 return 0; 1047 1048 killed: 1049 /* protects against exit_notify() and __exit_signal() */ 1050 read_lock(&tasklist_lock); 1051 sig->group_exec_task = NULL; 1052 sig->notify_count = 0; 1053 read_unlock(&tasklist_lock); 1054 return -EAGAIN; 1055 } 1056 1057 1058 /* 1059 * This function makes sure the current process has its own signal table, 1060 * so that flush_signal_handlers can later reset the handlers without 1061 * disturbing other processes. (Other processes might share the signal 1062 * table via the CLONE_SIGHAND option to clone().) 1063 */ 1064 static int unshare_sighand(struct task_struct *me) 1065 { 1066 struct sighand_struct *oldsighand = me->sighand; 1067 1068 if (refcount_read(&oldsighand->count) != 1) { 1069 struct sighand_struct *newsighand; 1070 /* 1071 * This ->sighand is shared with the CLONE_SIGHAND 1072 * but not CLONE_THREAD task, switch to the new one. 1073 */ 1074 newsighand = kmem_cache_alloc(sighand_cachep, GFP_KERNEL); 1075 if (!newsighand) 1076 return -ENOMEM; 1077 1078 refcount_set(&newsighand->count, 1); 1079 1080 write_lock_irq(&tasklist_lock); 1081 spin_lock(&oldsighand->siglock); 1082 memcpy(newsighand->action, oldsighand->action, 1083 sizeof(newsighand->action)); 1084 rcu_assign_pointer(me->sighand, newsighand); 1085 spin_unlock(&oldsighand->siglock); 1086 write_unlock_irq(&tasklist_lock); 1087 1088 __cleanup_sighand(oldsighand); 1089 } 1090 return 0; 1091 } 1092 1093 /* 1094 * This is unlocked -- the string will always be NUL-terminated, but 1095 * may show overlapping contents if racing concurrent reads. 1096 */ 1097 void __set_task_comm(struct task_struct *tsk, const char *buf, bool exec) 1098 { 1099 size_t len = strnlen(buf, sizeof(tsk->comm) - 1); 1100 1101 trace_task_rename(tsk, buf); 1102 memcpy(tsk->comm, buf, len); 1103 memset(&tsk->comm[len], 0, sizeof(tsk->comm) - len); 1104 perf_event_comm(tsk, exec); 1105 } 1106 1107 /* 1108 * The file the process presents as: its exe link and comm. A transparent 1109 * dispatch presents as the binary, which is bprm->executable. 1110 */ 1111 static struct file *bprm_identity_file(const struct linux_binprm *bprm) 1112 { 1113 if (bprm->interp_flags & BINPRM_FLAGS_TRANSPARENT_INTERP) 1114 return bprm->executable; 1115 return bprm->file; 1116 } 1117 1118 /* 1119 * Calling this is the point of no return. None of the failures will be 1120 * seen by userspace since either the process is already taking a fatal 1121 * signal (via de_thread() or coredump), or will have SEGV raised 1122 * (after exec_mmap()) by search_binary_handler (see below). 1123 */ 1124 int begin_new_exec(struct linux_binprm * bprm) 1125 { 1126 struct task_struct *me = current; 1127 int retval; 1128 1129 /* A pending PT_INTERP substitution this format cannot consume. */ 1130 if (bprm->loader) 1131 return -ENOEXEC; 1132 1133 /* Once we are committed compute the creds */ 1134 retval = bprm_creds_from_file(bprm); 1135 if (retval) 1136 return retval; 1137 1138 /* 1139 * This tracepoint marks the point before flushing the old exec where 1140 * the current task is still unchanged, but errors are fatal (point of 1141 * no return). The later "sched_process_exec" tracepoint is called after 1142 * the current task has successfully switched to the new exec. 1143 */ 1144 trace_sched_prepare_exec(current, bprm); 1145 1146 /* 1147 * Ensure all future errors are fatal. 1148 */ 1149 bprm->point_of_no_return = true; 1150 1151 /* Make this the only thread in the thread group */ 1152 retval = de_thread(me); 1153 if (retval) 1154 goto out; 1155 /* see the comment in check_unsafe_exec() */ 1156 current->fs->in_exec = 0; 1157 /* 1158 * Cancel any io_uring activity across execve 1159 */ 1160 io_uring_task_cancel(); 1161 1162 /* Ensure the files table is not shared. */ 1163 retval = unshare_files(); 1164 if (retval) 1165 goto out; 1166 1167 /* 1168 * We have to apply CLOEXEC before we change whether the process is 1169 * dumpable (in setup_new_exec) to avoid a race with a process in userspace 1170 * trying to access the should-be-closed file descriptors of a process 1171 * undergoing exec(2). 1172 * 1173 * This can block on filesystem ->flush() handlers, including waiting 1174 * for FUSE daemons, so do it before exec_mmap takes the 1175 * exec_update_lock. 1176 * This must happen after the point of no return, and after unsharing 1177 * the FD table. 1178 */ 1179 do_close_on_exec(me->files); 1180 1181 /* 1182 * Must be called _before_ exec_mmap() as bprm->mm is 1183 * not visible until then. Doing it here also ensures 1184 * we don't race against replace_mm_exe_file(). 1185 */ 1186 retval = set_mm_exe_file(bprm->mm, bprm_identity_file(bprm)); 1187 if (retval) 1188 goto out; 1189 1190 /* If the binary is not readable then enforce mm->dumpable=0 */ 1191 would_dump(bprm, bprm->file); 1192 if (bprm->have_execfd) 1193 would_dump(bprm, bprm->executable); 1194 1195 /* 1196 * Release all of the old mmap stuff 1197 */ 1198 acct_arg_size(bprm, 0); 1199 retval = exec_mmap(bprm); 1200 if (retval) 1201 goto out; 1202 1203 bprm->mm = NULL; 1204 1205 retval = exec_task_namespaces(); 1206 if (retval) 1207 goto out_unlock; 1208 1209 #ifdef CONFIG_POSIX_TIMERS 1210 spin_lock_irq(&me->sighand->siglock); 1211 posix_cpu_timers_exit(me); 1212 spin_unlock_irq(&me->sighand->siglock); 1213 exit_itimers(me); 1214 flush_itimer_signals(); 1215 #endif 1216 1217 /* 1218 * Make the signal table private. 1219 */ 1220 retval = unshare_sighand(me); 1221 if (retval) 1222 goto out_unlock; 1223 1224 me->flags &= ~(PF_RANDOMIZE | PF_FORKNOEXEC | 1225 PF_NOFREEZE | PF_NO_SETAFFINITY); 1226 flush_thread(); 1227 me->personality &= ~bprm->per_clear; 1228 1229 clear_syscall_work_syscall_user_dispatch(me); 1230 1231 if (bprm->secureexec) { 1232 /* Make sure parent cannot signal privileged process. */ 1233 me->pdeath_signal = 0; 1234 1235 /* 1236 * For secureexec, reset the stack limit to sane default to 1237 * avoid bad behavior from the prior rlimits. This has to 1238 * happen before arch_pick_mmap_layout(), which examines 1239 * RLIMIT_STACK, but after the point of no return to avoid 1240 * needing to clean up the change on failure. 1241 */ 1242 if (bprm->rlim_stack.rlim_cur > _STK_LIM) 1243 bprm->rlim_stack.rlim_cur = _STK_LIM; 1244 } 1245 1246 me->sas_ss_sp = me->sas_ss_size = 0; 1247 1248 /* 1249 * Figure out dumpability. Note that this checking only of current 1250 * is wrong, but userspace depends on it. This should be testing 1251 * bprm->secureexec instead. 1252 */ 1253 if (bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP || 1254 !(uid_eq(current_euid(), current_uid()) && 1255 gid_eq(current_egid(), current_gid()))) 1256 task_exec_state_set_dumpable(suid_dumpable); 1257 else 1258 task_exec_state_set_dumpable(TASK_DUMPABLE_OWNER); 1259 1260 perf_event_exec(); 1261 1262 /* 1263 * If the original filename was empty, alloc_bprm() made up a path 1264 * that will probably not be useful to admins running ps or similar. 1265 * Let's fix it up to be something reasonable. 1266 */ 1267 if (bprm->comm_from_dentry) { 1268 struct file *comm_file = bprm_identity_file(bprm); 1269 1270 /* 1271 * Hold RCU lock to keep the name from being freed behind our back. 1272 * Use acquire semantics to make sure the terminating NUL from 1273 * __d_alloc() is seen. 1274 * 1275 * Note, we're deliberately sloppy here. We don't need to care about 1276 * detecting a concurrent rename and just want a terminated name. 1277 */ 1278 rcu_read_lock(); 1279 __set_task_comm(me, smp_load_acquire(&comm_file->f_path.dentry->d_name.name), 1280 true); 1281 rcu_read_unlock(); 1282 } else { 1283 __set_task_comm(me, kbasename(bprm->filename), true); 1284 } 1285 1286 /* An exec changes our domain. We are no longer part of the thread 1287 group */ 1288 WRITE_ONCE(me->self_exec_id, me->self_exec_id + 1); 1289 flush_signal_handlers(me, 0); 1290 1291 retval = set_cred_ucounts(bprm->cred); 1292 if (retval < 0) 1293 goto out_unlock; 1294 1295 /* 1296 * install the new credentials for this executable 1297 */ 1298 security_bprm_committing_creds(bprm); 1299 1300 commit_creds(bprm->cred); 1301 bprm->cred = NULL; 1302 1303 /* 1304 * Disable monitoring for regular users 1305 * when executing setuid binaries. Must 1306 * wait until new credentials are committed 1307 * by commit_creds() above 1308 */ 1309 if (task_exec_state_get_dumpable(me) != TASK_DUMPABLE_OWNER) 1310 perf_event_exit_task(me); 1311 /* 1312 * cred_guard_mutex must be held at least to this point to prevent 1313 * ptrace_attach() from altering our determination of the task's 1314 * credentials; any time after this it may be unlocked. 1315 */ 1316 security_bprm_committed_creds(bprm); 1317 1318 /* Pass the opened binary to the interpreter. */ 1319 if (bprm->have_execfd) { 1320 struct file *executable = bprm->executable; 1321 1322 /* mm->exe_file carries its own write denial now so drop it. */ 1323 exe_file_allow_write_access(executable); 1324 bprm->executable = NULL; 1325 retval = FD_ADD(0, executable); 1326 if (retval < 0) { 1327 /* The reference was not consumed. */ 1328 fput(executable); 1329 goto out_unlock; 1330 } 1331 bprm->execfd = retval; 1332 } 1333 return 0; 1334 1335 out_unlock: 1336 up_write(&me->signal->exec_update_lock); 1337 if (!bprm->cred) 1338 mutex_unlock(&me->signal->cred_guard_mutex); 1339 1340 out: 1341 return retval; 1342 } 1343 EXPORT_SYMBOL(begin_new_exec); 1344 1345 void would_dump(struct linux_binprm *bprm, struct file *file) 1346 { 1347 struct inode *inode = file_inode(file); 1348 struct mnt_idmap *idmap = file_mnt_idmap(file); 1349 if (inode_permission(idmap, inode, MAY_READ) < 0) { 1350 struct user_namespace *old, *user_ns; 1351 bprm->interp_flags |= BINPRM_FLAGS_ENFORCE_NONDUMP; 1352 1353 /* Ensure bprm->user_ns contains the executable. */ 1354 user_ns = old = bprm->user_ns; 1355 while ((user_ns != &init_user_ns) && 1356 !privileged_wrt_inode_uidgid(user_ns, idmap, inode)) 1357 user_ns = user_ns->parent; 1358 1359 if (old != user_ns) { 1360 bprm->user_ns = get_user_ns(user_ns); 1361 put_user_ns(old); 1362 } 1363 } 1364 } 1365 EXPORT_SYMBOL(would_dump); 1366 1367 void setup_new_exec(struct linux_binprm * bprm) 1368 { 1369 /* Setup things that can depend upon the personality */ 1370 struct task_struct *me = current; 1371 1372 arch_pick_mmap_layout(me->mm, &bprm->rlim_stack); 1373 1374 arch_setup_new_exec(); 1375 1376 /* Set the new mm task size. We have to do that late because it may 1377 * depend on TIF_32BIT which is only updated in flush_thread() on 1378 * some architectures like powerpc 1379 */ 1380 me->mm->task_size = TASK_SIZE; 1381 up_write(&me->signal->exec_update_lock); 1382 mutex_unlock(&me->signal->cred_guard_mutex); 1383 1384 /* The exec locks are dropped: release the old address space now. */ 1385 if (bprm->old_mm) { 1386 exec_mm_put_old(bprm->old_mm); 1387 bprm->old_mm = NULL; 1388 } 1389 } 1390 EXPORT_SYMBOL(setup_new_exec); 1391 1392 /* Runs immediately before start_thread() takes over. */ 1393 void finalize_exec(struct linux_binprm *bprm) 1394 { 1395 /* Store any stack rlimit changes before starting thread. */ 1396 task_lock(current->group_leader); 1397 current->signal->rlim[RLIMIT_STACK] = bprm->rlim_stack; 1398 task_unlock(current->group_leader); 1399 } 1400 EXPORT_SYMBOL(finalize_exec); 1401 1402 /* 1403 * Prepare credentials and lock ->cred_guard_mutex. 1404 * setup_new_exec() commits the new creds and drops the lock. 1405 * Or, if exec fails before, free_bprm() should release ->cred 1406 * and unlock. 1407 */ 1408 static int prepare_bprm_creds(struct linux_binprm *bprm) 1409 { 1410 if (mutex_lock_interruptible(¤t->signal->cred_guard_mutex)) 1411 return -ERESTARTNOINTR; 1412 1413 bprm->cred = prepare_exec_creds(); 1414 if (likely(bprm->cred)) 1415 return 0; 1416 1417 mutex_unlock(¤t->signal->cred_guard_mutex); 1418 return -ENOMEM; 1419 } 1420 1421 /* Matches do_open_execat() */ 1422 static void do_close_execat(struct file *file) 1423 { 1424 if (!file) 1425 return; 1426 exe_file_allow_write_access(file); 1427 fput(file); 1428 } 1429 1430 /** 1431 * bprm_open_interpreter - open the interpreter the binary asks for 1432 * @bprm: binary that is being executed 1433 * @path: the interpreter path named in the binary's PT_INTERP 1434 * 1435 * A binfmt_misc loader entry substitutes for the interpreter the binary 1436 * names. Hand out the stashed substitute if there is one and open @path 1437 * if there is not. The caller owns the reference either way and releases 1438 * it like any other open_exec() one. 1439 * 1440 * Return: the interpreter on success, an ERR_PTR on failure 1441 */ 1442 struct file *bprm_open_interpreter(struct linux_binprm *bprm, const char *path) 1443 { 1444 if (bprm->loader) 1445 return no_free_ptr(bprm->loader); 1446 return open_exec(path); 1447 } 1448 1449 /** 1450 * bprm_drop_loader - discard a PT_INTERP substitute that does not apply 1451 * @bprm: binary that is being executed 1452 * 1453 * A binary without PT_INTERP has nothing to substitute for, so drop the 1454 * override and let the binary load natively rather than have 1455 * begin_new_exec() refuse it. A no-op once bprm_open_interpreter() took 1456 * the substitute. 1457 */ 1458 void bprm_drop_loader(struct linux_binprm *bprm) 1459 { 1460 do_close_execat(no_free_ptr(bprm->loader)); 1461 } 1462 1463 static void free_bprm(struct linux_binprm *bprm) 1464 { 1465 if (bprm->mm) { 1466 acct_arg_size(bprm, 0); 1467 mmput(bprm->mm); 1468 } 1469 if (bprm->user_ns) 1470 put_user_ns(bprm->user_ns); 1471 free_arg_pages(bprm); 1472 if (bprm->cred) { 1473 /* in case exec fails before de_thread() succeeds */ 1474 current->fs->in_exec = 0; 1475 mutex_unlock(¤t->signal->cred_guard_mutex); 1476 abort_creds(bprm->cred); 1477 } 1478 /* exec swapped the mm but failed before setup_new_exec() freed it */ 1479 if (bprm->old_mm) 1480 exec_mm_put_old(bprm->old_mm); 1481 /* An unconsumed PT_INTERP substitute from a binfmt_misc loader entry. */ 1482 bprm_drop_loader(bprm); 1483 do_close_execat(bprm->file); 1484 do_close_execat(bprm->executable); 1485 /* If a binfmt changed the interp, free it. */ 1486 if (bprm->interp != bprm->filename) 1487 kfree(bprm->interp); 1488 kfree(bprm->bpf_interp); 1489 if (bprm->bpf_interp_file) 1490 fput(bprm->bpf_interp_file); 1491 kfree(bprm->bpf_interp_arg); 1492 kfree(bprm->fdpath); 1493 kfree(bprm); 1494 } 1495 1496 static struct linux_binprm *alloc_bprm(int fd, struct filename *filename, int flags) 1497 { 1498 struct linux_binprm *bprm; 1499 struct file *file; 1500 int retval = -ENOMEM; 1501 1502 file = do_open_execat(fd, filename, flags); 1503 if (IS_ERR(file)) 1504 return ERR_CAST(file); 1505 1506 bprm = kzalloc_obj(*bprm); 1507 if (!bprm) { 1508 do_close_execat(file); 1509 return ERR_PTR(-ENOMEM); 1510 } 1511 1512 bprm->file = file; 1513 1514 if (fd == AT_FDCWD || filename->name[0] == '/') { 1515 bprm->filename = filename->name; 1516 } else { 1517 if (filename->name[0] == '\0') { 1518 bprm->fdpath = kasprintf(GFP_KERNEL, "/dev/fd/%d", fd); 1519 bprm->comm_from_dentry = 1; 1520 } else { 1521 bprm->fdpath = kasprintf(GFP_KERNEL, "/dev/fd/%d/%s", 1522 fd, filename->name); 1523 } 1524 if (!bprm->fdpath) 1525 goto out_free; 1526 1527 /* 1528 * Record that a name derived from an O_CLOEXEC fd will be 1529 * inaccessible after exec. This allows the code in exec to 1530 * choose to fail when the executable is not mmaped into the 1531 * interpreter and an open file descriptor is not passed to 1532 * the interpreter. This makes for a better user experience 1533 * than having the interpreter start and then immediately fail 1534 * when it finds the executable is inaccessible. 1535 */ 1536 if (get_close_on_exec(fd)) 1537 bprm->interp_flags |= BINPRM_FLAGS_PATH_INACCESSIBLE; 1538 1539 bprm->filename = bprm->fdpath; 1540 } 1541 bprm->interp = bprm->filename; 1542 1543 /* 1544 * At this point, security_file_open() has already been called (with 1545 * __FMODE_EXEC) and access control checks for AT_EXECVE_CHECK will 1546 * stop just after the security_bprm_creds_for_exec() call in 1547 * bprm_execve(). Indeed, the kernel should not try to parse the 1548 * content of the file with exec_binprm() nor change the calling 1549 * thread, which means that the following security functions will not 1550 * be called: 1551 * - security_bprm_check() 1552 * - security_bprm_creds_from_file() 1553 * - security_bprm_committing_creds() 1554 * - security_bprm_committed_creds() 1555 */ 1556 bprm->is_check = !!(flags & AT_EXECVE_CHECK); 1557 1558 retval = bprm_mm_init(bprm); 1559 if (!retval) 1560 return bprm; 1561 1562 out_free: 1563 free_bprm(bprm); 1564 return ERR_PTR(retval); 1565 } 1566 1567 DEFINE_CLASS(bprm, struct linux_binprm *, if (!IS_ERR(_T)) free_bprm(_T), 1568 alloc_bprm(fd, name, flags), int fd, struct filename *name, int flags) 1569 1570 int bprm_change_interp(const char *interp, struct linux_binprm *bprm) 1571 { 1572 /* If a binfmt changed the interp, free it first. */ 1573 if (bprm->interp != bprm->filename) 1574 kfree(bprm->interp); 1575 bprm->interp = kstrdup(interp, GFP_KERNEL); 1576 if (!bprm->interp) 1577 return -ENOMEM; 1578 return 0; 1579 } 1580 EXPORT_SYMBOL(bprm_change_interp); 1581 1582 /* 1583 * determine how safe it is to execute the proposed program 1584 * - the caller must hold ->cred_guard_mutex to protect against 1585 * PTRACE_ATTACH or seccomp thread-sync 1586 */ 1587 static void check_unsafe_exec(struct linux_binprm *bprm) 1588 { 1589 struct task_struct *p = current, *t; 1590 unsigned n_fs; 1591 1592 if (p->ptrace) 1593 bprm->unsafe |= LSM_UNSAFE_PTRACE; 1594 1595 /* 1596 * This isn't strictly necessary, but it makes it harder for LSMs to 1597 * mess up. 1598 */ 1599 if (task_no_new_privs(current)) 1600 bprm->unsafe |= LSM_UNSAFE_NO_NEW_PRIVS; 1601 1602 /* 1603 * If another task is sharing our fs, we cannot safely 1604 * suid exec because the differently privileged task 1605 * will be able to manipulate the current directory, etc. 1606 * It would be nice to force an unshare instead... 1607 * 1608 * Otherwise we set fs->in_exec = 1 to deny clone(CLONE_FS) 1609 * from another sub-thread until de_thread() succeeds, this 1610 * state is protected by cred_guard_mutex we hold. 1611 */ 1612 n_fs = 1; 1613 read_seqlock_excl(&p->fs->seq); 1614 rcu_read_lock(); 1615 for_other_threads(p, t) { 1616 if (t->fs == p->fs) 1617 n_fs++; 1618 } 1619 rcu_read_unlock(); 1620 1621 /* "users" and "in_exec" locked for copy_fs() */ 1622 if (p->fs->users > n_fs) 1623 bprm->unsafe |= LSM_UNSAFE_SHARE; 1624 else 1625 p->fs->in_exec = 1; 1626 read_sequnlock_excl(&p->fs->seq); 1627 } 1628 1629 static void bprm_fill_uid(struct linux_binprm *bprm, struct file *file) 1630 { 1631 /* Handle suid and sgid on files */ 1632 struct mnt_idmap *idmap; 1633 struct inode *inode = file_inode(file); 1634 unsigned int mode; 1635 vfsuid_t vfsuid; 1636 vfsgid_t vfsgid; 1637 int err; 1638 1639 if (!mnt_may_suid(file->f_path.mnt)) 1640 return; 1641 1642 if (task_no_new_privs(current)) 1643 return; 1644 1645 mode = READ_ONCE(inode->i_mode); 1646 if (!(mode & (S_ISUID|S_ISGID))) 1647 return; 1648 1649 idmap = file_mnt_idmap(file); 1650 1651 /* Be careful if suid/sgid is set */ 1652 inode_lock(inode); 1653 1654 /* Atomically reload and check mode/uid/gid now that lock held. */ 1655 mode = inode->i_mode; 1656 vfsuid = i_uid_into_vfsuid(idmap, inode); 1657 vfsgid = i_gid_into_vfsgid(idmap, inode); 1658 err = inode_permission(idmap, inode, MAY_EXEC); 1659 inode_unlock(inode); 1660 1661 /* Did the exec bit vanish out from under us? Give up. */ 1662 if (err) 1663 return; 1664 1665 /* We ignore suid/sgid if there are no mappings for them in the ns */ 1666 if (!vfsuid_has_mapping(bprm->cred->user_ns, vfsuid) || 1667 !vfsgid_has_mapping(bprm->cred->user_ns, vfsgid)) 1668 return; 1669 1670 if (mode & S_ISUID) { 1671 bprm->per_clear |= PER_CLEAR_ON_SETID; 1672 bprm->cred->euid = vfsuid_into_kuid(vfsuid); 1673 } 1674 1675 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) { 1676 bprm->per_clear |= PER_CLEAR_ON_SETID; 1677 bprm->cred->egid = vfsgid_into_kgid(vfsgid); 1678 } 1679 } 1680 1681 /* 1682 * Compute brpm->cred based upon the final binary. 1683 */ 1684 static int bprm_creds_from_file(struct linux_binprm *bprm) 1685 { 1686 /* Compute creds based on which file? */ 1687 struct file *file = bprm->execfd_creds ? bprm->executable : bprm->file; 1688 1689 bprm_fill_uid(bprm, file); 1690 return security_bprm_creds_from_file(bprm, file); 1691 } 1692 1693 /* 1694 * Fill the binprm structure from the inode. 1695 * Read the first BINPRM_BUF_SIZE bytes 1696 * 1697 * This may be called multiple times for binary chains (scripts for example). 1698 */ 1699 static int prepare_binprm(struct linux_binprm *bprm) 1700 { 1701 loff_t pos = 0; 1702 1703 memset(bprm->buf, 0, BINPRM_BUF_SIZE); 1704 return kernel_read(bprm->file, bprm->buf, BINPRM_BUF_SIZE, &pos); 1705 } 1706 1707 /* 1708 * Arguments are '\0' separated strings found at the location bprm->p 1709 * points to; chop off the first by relocating brpm->p to right after 1710 * the first '\0' encountered. 1711 */ 1712 int remove_arg_zero(struct linux_binprm *bprm) 1713 { 1714 unsigned long offset; 1715 char *kaddr; 1716 struct page *page; 1717 1718 if (!bprm->argc) 1719 return 0; 1720 1721 do { 1722 offset = bprm->p & ~PAGE_MASK; 1723 page = get_arg_page(bprm, bprm->p, 0); 1724 if (!page) 1725 return -EFAULT; 1726 kaddr = kmap_local_page(page); 1727 1728 for (; offset < PAGE_SIZE && kaddr[offset]; 1729 offset++, bprm->p++) 1730 ; 1731 1732 kunmap_local(kaddr); 1733 put_arg_page(page); 1734 } while (offset == PAGE_SIZE); 1735 1736 bprm->p++; 1737 bprm->argc--; 1738 1739 return 0; 1740 } 1741 EXPORT_SYMBOL(remove_arg_zero); 1742 1743 /* 1744 * cycle the list of binary formats handler, until one recognizes the image 1745 */ 1746 static int search_binary_handler(struct linux_binprm *bprm) 1747 { 1748 struct linux_binfmt *fmt; 1749 int retval; 1750 1751 retval = prepare_binprm(bprm); 1752 if (retval < 0) 1753 return retval; 1754 1755 retval = security_bprm_check(bprm); 1756 if (retval) 1757 return retval; 1758 1759 read_lock(&binfmt_lock); 1760 list_for_each_entry(fmt, &formats, lh) { 1761 if (!try_module_get(fmt->module)) 1762 continue; 1763 read_unlock(&binfmt_lock); 1764 1765 retval = fmt->load_binary(bprm); 1766 1767 read_lock(&binfmt_lock); 1768 put_binfmt(fmt); 1769 if (bprm->point_of_no_return || (retval != -ENOEXEC)) { 1770 read_unlock(&binfmt_lock); 1771 return retval; 1772 } 1773 } 1774 read_unlock(&binfmt_lock); 1775 1776 return -ENOEXEC; 1777 } 1778 1779 /* binfmt handlers will call back into begin_new_exec() on success. */ 1780 static int exec_binprm(struct linux_binprm *bprm) 1781 { 1782 pid_t old_pid, old_vpid; 1783 int ret, depth; 1784 1785 /* Need to fetch pid before load_binary changes it */ 1786 old_pid = current->pid; 1787 rcu_read_lock(); 1788 old_vpid = task_pid_nr_ns(current, task_active_pid_ns(current->parent)); 1789 rcu_read_unlock(); 1790 1791 /* This allows 5 levels of binfmt rewrites before failing hard. */ 1792 for (depth = 0;; depth++) { 1793 struct file *exec; 1794 if (depth > 5) 1795 return -ELOOP; 1796 1797 ret = search_binary_handler(bprm); 1798 if (ret < 0) 1799 return ret; 1800 if (!bprm->interpreter) 1801 break; 1802 1803 /* A stashed PT_INTERP substitute belonged to the replaced file. */ 1804 bprm_drop_loader(bprm); 1805 1806 exec = bprm->file; 1807 bprm->file = bprm->interpreter; 1808 bprm->interpreter = NULL; 1809 1810 if (unlikely(bprm->have_execfd)) { 1811 if (bprm->executable) { 1812 do_close_execat(exec); 1813 return -ENOEXEC; 1814 } 1815 /* Kept for AT_EXECFD; the write denial rides along until hand-over. */ 1816 bprm->executable = exec; 1817 } else { 1818 do_close_execat(exec); 1819 } 1820 } 1821 1822 audit_bprm(bprm); 1823 trace_sched_process_exec(current, old_pid, bprm); 1824 ptrace_event(PTRACE_EVENT_EXEC, old_vpid); 1825 proc_exec_connector(current); 1826 return 0; 1827 } 1828 1829 static int bprm_execve(struct linux_binprm *bprm) 1830 { 1831 int retval; 1832 1833 retval = prepare_bprm_creds(bprm); 1834 if (retval) 1835 return retval; 1836 1837 /* 1838 * Check for unsafe execution states before exec_binprm(), which 1839 * will call back into begin_new_exec(), into bprm_creds_from_file(), 1840 * where setuid-ness is evaluated. 1841 */ 1842 check_unsafe_exec(bprm); 1843 current->in_execve = 1; 1844 sched_mm_cid_before_execve(current); 1845 1846 sched_exec(); 1847 1848 /* Set the unchanging part of bprm->cred */ 1849 retval = security_bprm_creds_for_exec(bprm); 1850 if (retval || bprm->is_check) 1851 goto out; 1852 1853 retval = exec_binprm(bprm); 1854 if (retval < 0) 1855 goto out; 1856 1857 sched_mm_cid_after_execve(current); 1858 rseq_execve(current); 1859 /* execve succeeded */ 1860 current->in_execve = 0; 1861 user_events_execve(current); 1862 acct_update_integrals(current); 1863 task_numa_free(current, false); 1864 return retval; 1865 1866 out: 1867 /* 1868 * If past the point of no return ensure the code never 1869 * returns to the userspace process. Use an existing fatal 1870 * signal if present otherwise terminate the process with 1871 * SIGSEGV. 1872 */ 1873 if (bprm->point_of_no_return && !fatal_signal_pending(current)) 1874 force_fatal_sig(SIGSEGV); 1875 1876 sched_mm_cid_after_execve(current); 1877 rseq_force_update(); 1878 current->in_execve = 0; 1879 1880 return retval; 1881 } 1882 1883 static int do_execveat_common(int fd, struct filename *filename, 1884 struct user_arg_ptr argv, 1885 struct user_arg_ptr envp, 1886 int flags) 1887 { 1888 int retval; 1889 1890 /* 1891 * We move the actual failure in case of RLIMIT_NPROC excess from 1892 * set*uid() to execve() because too many poorly written programs 1893 * don't check setuid() return code. Here we additionally recheck 1894 * whether NPROC limit is still exceeded. 1895 */ 1896 if ((current->flags & PF_NPROC_EXCEEDED) && 1897 is_rlimit_overlimit(current_ucounts(), UCOUNT_RLIMIT_NPROC, rlimit(RLIMIT_NPROC))) 1898 return -EAGAIN; 1899 1900 /* We're below the limit (still or again), so we don't want to make 1901 * further execve() calls fail. */ 1902 current->flags &= ~PF_NPROC_EXCEEDED; 1903 1904 CLASS(bprm, bprm)(fd, filename, flags); 1905 if (IS_ERR(bprm)) 1906 return PTR_ERR(bprm); 1907 1908 retval = count(argv, MAX_ARG_STRINGS); 1909 if (retval < 0) 1910 return retval; 1911 bprm->argc = retval; 1912 1913 retval = count(envp, MAX_ARG_STRINGS); 1914 if (retval < 0) 1915 return retval; 1916 bprm->envc = retval; 1917 1918 retval = bprm_stack_limits(bprm); 1919 if (retval < 0) 1920 return retval; 1921 1922 retval = copy_string_kernel(bprm->filename, bprm); 1923 if (retval < 0) 1924 return retval; 1925 bprm->exec = bprm->p; 1926 1927 retval = copy_strings(bprm->envc, envp, bprm); 1928 if (retval < 0) 1929 return retval; 1930 1931 retval = copy_strings(bprm->argc, argv, bprm); 1932 if (retval < 0) 1933 return retval; 1934 1935 /* 1936 * When argv is empty, add an empty string ("") as argv[0] to 1937 * ensure confused userspace programs that start processing 1938 * from argv[1] won't end up walking envp. See also 1939 * bprm_stack_limits(). 1940 */ 1941 if (bprm->argc == 0) { 1942 retval = copy_string_kernel("", bprm); 1943 if (retval < 0) 1944 return retval; 1945 bprm->argc = 1; 1946 1947 pr_warn_once("process '%s' launched '%s' with NULL argv: empty string added\n", 1948 current->comm, bprm->filename); 1949 } 1950 1951 return bprm_execve(bprm); 1952 } 1953 1954 int kernel_execve(const char *kernel_filename, 1955 const char *const *argv, const char *const *envp) 1956 { 1957 int retval; 1958 1959 /* It is non-sense for kernel threads to call execve */ 1960 if (WARN_ON_ONCE(current->flags & PF_KTHREAD)) 1961 return -EINVAL; 1962 1963 CLASS(filename_kernel, filename)(kernel_filename); 1964 CLASS(bprm, bprm)(AT_FDCWD, filename, 0); 1965 if (IS_ERR(bprm)) 1966 return PTR_ERR(bprm); 1967 1968 retval = count_strings_kernel(argv); 1969 if (WARN_ON_ONCE(retval == 0)) 1970 return -EINVAL; 1971 if (retval < 0) 1972 return retval; 1973 bprm->argc = retval; 1974 1975 retval = count_strings_kernel(envp); 1976 if (retval < 0) 1977 return retval; 1978 bprm->envc = retval; 1979 1980 retval = bprm_stack_limits(bprm); 1981 if (retval < 0) 1982 return retval; 1983 1984 retval = copy_string_kernel(bprm->filename, bprm); 1985 if (retval < 0) 1986 return retval; 1987 bprm->exec = bprm->p; 1988 1989 retval = copy_strings_kernel(bprm->envc, envp, bprm); 1990 if (retval < 0) 1991 return retval; 1992 1993 retval = copy_strings_kernel(bprm->argc, argv, bprm); 1994 if (retval < 0) 1995 return retval; 1996 1997 return bprm_execve(bprm); 1998 } 1999 2000 void set_binfmt(struct linux_binfmt *new) 2001 { 2002 struct mm_struct *mm = current->mm; 2003 2004 if (mm->binfmt) 2005 module_put(mm->binfmt->module); 2006 2007 mm->binfmt = new; 2008 if (new) 2009 __module_get(new->module); 2010 } 2011 EXPORT_SYMBOL(set_binfmt); 2012 2013 static inline struct user_arg_ptr native_arg(const char __user *const __user *p) 2014 { 2015 return (struct user_arg_ptr){.ptr.native = p}; 2016 } 2017 2018 SYSCALL_DEFINE3(execve, 2019 const char __user *, filename, 2020 const char __user *const __user *, argv, 2021 const char __user *const __user *, envp) 2022 { 2023 CLASS(filename, name)(filename); 2024 return do_execveat_common(AT_FDCWD, name, 2025 native_arg(argv), native_arg(envp), 0); 2026 } 2027 2028 SYSCALL_DEFINE5(execveat, 2029 int, fd, const char __user *, filename, 2030 const char __user *const __user *, argv, 2031 const char __user *const __user *, envp, 2032 int, flags) 2033 { 2034 CLASS(filename_uflags, name)(filename, flags); 2035 return do_execveat_common(fd, name, 2036 native_arg(argv), native_arg(envp), flags); 2037 } 2038 2039 #ifdef CONFIG_COMPAT 2040 2041 static inline struct user_arg_ptr compat_arg(const compat_uptr_t __user *p) 2042 { 2043 return (struct user_arg_ptr){.is_compat = true, .ptr.compat = p}; 2044 } 2045 2046 COMPAT_SYSCALL_DEFINE3(execve, const char __user *, filename, 2047 const compat_uptr_t __user *, argv, 2048 const compat_uptr_t __user *, envp) 2049 { 2050 CLASS(filename, name)(filename); 2051 return do_execveat_common(AT_FDCWD, name, 2052 compat_arg(argv), compat_arg(envp), 0); 2053 } 2054 2055 COMPAT_SYSCALL_DEFINE5(execveat, int, fd, 2056 const char __user *, filename, 2057 const compat_uptr_t __user *, argv, 2058 const compat_uptr_t __user *, envp, 2059 int, flags) 2060 { 2061 CLASS(filename_uflags, name)(filename, flags); 2062 return do_execveat_common(fd, name, 2063 compat_arg(argv), compat_arg(envp), flags); 2064 } 2065 #endif 2066 2067 #ifdef CONFIG_SYSCTL 2068 2069 static int proc_dointvec_minmax_coredump(const struct ctl_table *table, int write, 2070 void *buffer, size_t *lenp, loff_t *ppos) 2071 { 2072 int error, old = READ_ONCE(suid_dumpable); 2073 2074 error = proc_dointvec_minmax(table, write, buffer, lenp, ppos); 2075 2076 if (!error && write && (old != READ_ONCE(suid_dumpable))) 2077 validate_coredump_safety(); 2078 return error; 2079 } 2080 2081 static const struct ctl_table fs_exec_sysctls[] = { 2082 { 2083 .procname = "suid_dumpable", 2084 .data = &suid_dumpable, 2085 .maxlen = sizeof(int), 2086 .mode = 0644, 2087 .proc_handler = proc_dointvec_minmax_coredump, 2088 .extra1 = SYSCTL_ZERO, 2089 .extra2 = SYSCTL_TWO, 2090 }, 2091 }; 2092 2093 static int __init init_fs_exec_sysctls(void) 2094 { 2095 register_sysctl_init("fs", fs_exec_sysctls); 2096 return 0; 2097 } 2098 2099 fs_initcall(init_fs_exec_sysctls); 2100 #endif /* CONFIG_SYSCTL */ 2101 2102 #ifdef CONFIG_EXEC_KUNIT_TEST 2103 #include "tests/exec_kunit.c" 2104 #endif 2105