1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/slab.h>
3 #include <linux/file.h>
4 #include <linux/fdtable.h>
5 #include <linux/freezer.h>
7 #include <linux/stat.h>
8 #include <linux/fcntl.h>
9 #include <linux/swap.h>
10 #include <linux/ctype.h>
11 #include <linux/string.h>
12 #include <linux/init.h>
13 #include <linux/pagemap.h>
14 #include <linux/perf_event.h>
15 #include <linux/highmem.h>
16 #include <linux/spinlock.h>
17 #include <linux/key.h>
18 #include <linux/personality.h>
19 #include <linux/binfmts.h>
20 #include <linux/coredump.h>
21 #include <linux/sched/coredump.h>
22 #include <linux/sched/signal.h>
23 #include <linux/sched/task_stack.h>
24 #include <linux/utsname.h>
25 #include <linux/pid_namespace.h>
26 #include <linux/module.h>
27 #include <linux/namei.h>
28 #include <linux/mount.h>
29 #include <linux/security.h>
30 #include <linux/syscalls.h>
31 #include <linux/tsacct_kern.h>
32 #include <linux/cn_proc.h>
33 #include <linux/audit.h>
34 #include <linux/tracehook.h>
35 #include <linux/kmod.h>
36 #include <linux/fsnotify.h>
37 #include <linux/fs_struct.h>
38 #include <linux/pipe_fs_i.h>
39 #include <linux/oom.h>
40 #include <linux/compat.h>
42 #include <linux/path.h>
43 #include <linux/timekeeping.h>
44 #include <linux/elf.h>
46 #include <linux/uaccess.h>
47 #include <asm/mmu_context.h>
51 #include <trace/events/task.h>
54 #include <trace/events/sched.h>
56 static bool dump_vma_snapshot(struct coredump_params *cprm);
57 static void free_vma_snapshot(struct coredump_params *cprm);
60 unsigned int core_pipe_limit;
61 char core_pattern[CORENAME_MAX_SIZE] = "core";
62 static int core_name_size = CORENAME_MAX_SIZE;
69 /* The maximal length of core_pattern is also specified in sysctl.c */
71 static int expand_corename(struct core_name *cn, int size)
73 char *corename = krealloc(cn->corename, size, GFP_KERNEL);
78 if (size > core_name_size) /* racy but harmless */
79 core_name_size = size;
81 cn->size = ksize(corename);
82 cn->corename = corename;
86 static __printf(2, 0) int cn_vprintf(struct core_name *cn, const char *fmt,
93 free = cn->size - cn->used;
95 va_copy(arg_copy, arg);
96 need = vsnprintf(cn->corename + cn->used, free, fmt, arg_copy);
104 if (!expand_corename(cn, cn->size + need - free + 1))
110 static __printf(2, 3) int cn_printf(struct core_name *cn, const char *fmt, ...)
116 ret = cn_vprintf(cn, fmt, arg);
122 static __printf(2, 3)
123 int cn_esc_printf(struct core_name *cn, const char *fmt, ...)
130 ret = cn_vprintf(cn, fmt, arg);
135 * Ensure that this coredump name component can't cause the
136 * resulting corefile path to consist of a ".." or ".".
138 if ((cn->used - cur == 1 && cn->corename[cur] == '.') ||
139 (cn->used - cur == 2 && cn->corename[cur] == '.'
140 && cn->corename[cur+1] == '.'))
141 cn->corename[cur] = '!';
144 * Empty names are fishy and could be used to create a "//" in a
145 * corefile name, causing the coredump to happen one directory
146 * level too high. Enforce that all components of the core
147 * pattern are at least one character long.
150 ret = cn_printf(cn, "!");
153 for (; cur < cn->used; ++cur) {
154 if (cn->corename[cur] == '/')
155 cn->corename[cur] = '!';
160 static int cn_print_exe_file(struct core_name *cn, bool name_only)
162 struct file *exe_file;
163 char *pathbuf, *path, *ptr;
166 exe_file = get_mm_exe_file(current->mm);
168 return cn_esc_printf(cn, "%s (path unknown)", current->comm);
170 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
176 path = file_path(exe_file, pathbuf, PATH_MAX);
183 ptr = strrchr(path, '/');
187 ret = cn_esc_printf(cn, "%s", path);
196 /* format_corename will inspect the pattern parameter, and output a
197 * name into corename, which must have space for at least
198 * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
200 static int format_corename(struct core_name *cn, struct coredump_params *cprm,
201 size_t **argv, int *argc)
203 const struct cred *cred = current_cred();
204 const char *pat_ptr = core_pattern;
205 int ispipe = (*pat_ptr == '|');
206 bool was_space = false;
207 int pid_in_pattern = 0;
212 if (expand_corename(cn, core_name_size))
214 cn->corename[0] = '\0';
217 int argvs = sizeof(core_pattern) / 2;
218 (*argv) = kmalloc_array(argvs, sizeof(**argv), GFP_KERNEL);
221 (*argv)[(*argc)++] = 0;
227 /* Repeat as long as we have more pattern to process and more output
231 * Split on spaces before doing template expansion so that
232 * %e and %E don't get split if they have spaces in them
235 if (isspace(*pat_ptr)) {
240 } else if (was_space) {
242 err = cn_printf(cn, "%c", '\0');
245 (*argv)[(*argc)++] = cn->used;
248 if (*pat_ptr != '%') {
249 err = cn_printf(cn, "%c", *pat_ptr++);
251 switch (*++pat_ptr) {
252 /* single % at the end, drop that */
255 /* Double percent, output one percent */
257 err = cn_printf(cn, "%c", '%');
262 err = cn_printf(cn, "%d",
263 task_tgid_vnr(current));
267 err = cn_printf(cn, "%d",
268 task_tgid_nr(current));
271 err = cn_printf(cn, "%d",
272 task_pid_vnr(current));
275 err = cn_printf(cn, "%d",
276 task_pid_nr(current));
280 err = cn_printf(cn, "%u",
281 from_kuid(&init_user_ns,
286 err = cn_printf(cn, "%u",
287 from_kgid(&init_user_ns,
291 err = cn_printf(cn, "%d",
292 __get_dumpable(cprm->mm_flags));
294 /* signal that caused the coredump */
296 err = cn_printf(cn, "%d",
297 cprm->siginfo->si_signo);
299 /* UNIX time of coredump */
303 time = ktime_get_real_seconds();
304 err = cn_printf(cn, "%lld", time);
310 err = cn_esc_printf(cn, "%s",
311 utsname()->nodename);
314 /* executable, could be changed by prctl PR_SET_NAME etc */
316 err = cn_esc_printf(cn, "%s", current->comm);
318 /* file name of executable */
320 err = cn_print_exe_file(cn, true);
323 err = cn_print_exe_file(cn, false);
325 /* core limit size */
327 err = cn_printf(cn, "%lu",
328 rlimit(RLIMIT_CORE));
341 /* Backward compatibility with core_uses_pid:
343 * If core_pattern does not include a %p (as is the default)
344 * and core_uses_pid is set, then .%pid will be appended to
345 * the filename. Do not do this for piped commands. */
346 if (!ispipe && !pid_in_pattern && core_uses_pid) {
347 err = cn_printf(cn, ".%d", task_tgid_vnr(current));
354 static int zap_process(struct task_struct *start, int exit_code, int flags)
356 struct task_struct *t;
359 /* ignore all signals except SIGKILL, see prepare_signal() */
360 start->signal->flags = SIGNAL_GROUP_COREDUMP | flags;
361 start->signal->group_exit_code = exit_code;
362 start->signal->group_stop_count = 0;
364 for_each_thread(start, t) {
365 task_clear_jobctl_pending(t, JOBCTL_PENDING_MASK);
366 if (t != current && t->mm) {
367 sigaddset(&t->pending.signal, SIGKILL);
368 signal_wake_up(t, 1);
376 static int zap_threads(struct task_struct *tsk, struct mm_struct *mm,
377 struct core_state *core_state, int exit_code)
379 struct task_struct *g, *p;
383 spin_lock_irq(&tsk->sighand->siglock);
384 if (!signal_group_exit(tsk->signal)) {
385 mm->core_state = core_state;
386 tsk->signal->group_exit_task = tsk;
387 nr = zap_process(tsk, exit_code, 0);
388 clear_tsk_thread_flag(tsk, TIF_SIGPENDING);
390 spin_unlock_irq(&tsk->sighand->siglock);
391 if (unlikely(nr < 0))
394 tsk->flags |= PF_DUMPCORE;
395 if (atomic_read(&mm->mm_users) == nr + 1)
398 * We should find and kill all tasks which use this mm, and we should
399 * count them correctly into ->nr_threads. We don't take tasklist
400 * lock, but this is safe wrt:
403 * None of sub-threads can fork after zap_process(leader). All
404 * processes which were created before this point should be
405 * visible to zap_threads() because copy_process() adds the new
406 * process to the tail of init_task.tasks list, and lock/unlock
407 * of ->siglock provides a memory barrier.
410 * The caller holds mm->mmap_lock. This means that the task which
411 * uses this mm can't pass exit_mm(), so it can't exit or clear
415 * It does list_replace_rcu(&leader->tasks, ¤t->tasks),
416 * we must see either old or new leader, this does not matter.
417 * However, it can change p->sighand, so lock_task_sighand(p)
418 * must be used. Since p->mm != NULL and we hold ->mmap_lock
421 * Note also that "g" can be the old leader with ->mm == NULL
422 * and already unhashed and thus removed from ->thread_group.
423 * This is OK, __unhash_process()->list_del_rcu() does not
424 * clear the ->next pointer, we will find the new leader via
428 for_each_process(g) {
429 if (g == tsk->group_leader)
431 if (g->flags & PF_KTHREAD)
434 for_each_thread(g, p) {
435 if (unlikely(!p->mm))
437 if (unlikely(p->mm == mm)) {
438 lock_task_sighand(p, &flags);
439 nr += zap_process(p, exit_code,
441 unlock_task_sighand(p, &flags);
448 atomic_set(&core_state->nr_threads, nr);
452 static int coredump_wait(int exit_code, struct core_state *core_state)
454 struct task_struct *tsk = current;
455 struct mm_struct *mm = tsk->mm;
456 int core_waiters = -EBUSY;
458 init_completion(&core_state->startup);
459 core_state->dumper.task = tsk;
460 core_state->dumper.next = NULL;
462 if (mmap_write_lock_killable(mm))
466 core_waiters = zap_threads(tsk, mm, core_state, exit_code);
467 mmap_write_unlock(mm);
469 if (core_waiters > 0) {
470 struct core_thread *ptr;
472 freezer_do_not_count();
473 wait_for_completion(&core_state->startup);
476 * Wait for all the threads to become inactive, so that
477 * all the thread context (extended register state, like
478 * fpu etc) gets copied to the memory.
480 ptr = core_state->dumper.next;
481 while (ptr != NULL) {
482 wait_task_inactive(ptr->task, 0);
490 static void coredump_finish(struct mm_struct *mm, bool core_dumped)
492 struct core_thread *curr, *next;
493 struct task_struct *task;
495 spin_lock_irq(¤t->sighand->siglock);
496 if (core_dumped && !__fatal_signal_pending(current))
497 current->signal->group_exit_code |= 0x80;
498 current->signal->group_exit_task = NULL;
499 current->signal->flags = SIGNAL_GROUP_EXIT;
500 spin_unlock_irq(¤t->sighand->siglock);
502 next = mm->core_state->dumper.next;
503 while ((curr = next) != NULL) {
507 * see exit_mm(), curr->task must not see
508 * ->task == NULL before we read ->next.
512 wake_up_process(task);
515 mm->core_state = NULL;
518 static bool dump_interrupted(void)
521 * SIGKILL or freezing() interrupt the coredumping. Perhaps we
522 * can do try_to_freeze() and check __fatal_signal_pending(),
523 * but then we need to teach dump_write() to restart and clear
526 return fatal_signal_pending(current) || freezing(current);
529 static void wait_for_dump_helpers(struct file *file)
531 struct pipe_inode_info *pipe = file->private_data;
536 wake_up_interruptible_sync(&pipe->rd_wait);
537 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
541 * We actually want wait_event_freezable() but then we need
542 * to clear TIF_SIGPENDING and improve dump_interrupted().
544 wait_event_interruptible(pipe->rd_wait, pipe->readers == 1);
554 * helper function to customize the process used
555 * to collect the core in userspace. Specifically
556 * it sets up a pipe and installs it as fd 0 (stdin)
557 * for the process. Returns 0 on success, or
558 * PTR_ERR on failure.
559 * Note that it also sets the core limit to 1. This
560 * is a special value that we use to trap recursive
563 static int umh_pipe_setup(struct subprocess_info *info, struct cred *new)
565 struct file *files[2];
566 struct coredump_params *cp = (struct coredump_params *)info->data;
567 int err = create_pipe_files(files, 0);
573 err = replace_fd(0, files[0], 0);
575 /* and disallow core files too */
576 current->signal->rlim[RLIMIT_CORE] = (struct rlimit){1, 1};
581 void do_coredump(const kernel_siginfo_t *siginfo)
583 struct core_state core_state;
585 struct mm_struct *mm = current->mm;
586 struct linux_binfmt * binfmt;
587 const struct cred *old_cred;
593 struct files_struct *displaced;
594 /* require nonrelative corefile path and be extra careful */
595 bool need_suid_safe = false;
596 bool core_dumped = false;
597 static atomic_t core_dump_count = ATOMIC_INIT(0);
598 struct coredump_params cprm = {
600 .regs = signal_pt_regs(),
601 .limit = rlimit(RLIMIT_CORE),
603 * We must use the same mm->flags while dumping core to avoid
604 * inconsistency of bit flags, since this flag is not protected
607 .mm_flags = mm->flags,
611 audit_core_dumps(siginfo->si_signo);
614 if (!binfmt || !binfmt->core_dump)
616 if (!__get_dumpable(cprm.mm_flags))
619 cred = prepare_creds();
623 * We cannot trust fsuid as being the "true" uid of the process
624 * nor do we know its entire history. We only know it was tainted
625 * so we dump it as root in mode 2, and only into a controlled
626 * environment (pipe handler or fully qualified path).
628 if (__get_dumpable(cprm.mm_flags) == SUID_DUMP_ROOT) {
629 /* Setuid core dump mode */
630 cred->fsuid = GLOBAL_ROOT_UID; /* Dump root private */
631 need_suid_safe = true;
634 retval = coredump_wait(siginfo->si_signo, &core_state);
638 old_cred = override_creds(cred);
640 ispipe = format_corename(&cn, &cprm, &argv, &argc);
646 struct subprocess_info *sub_info;
649 printk(KERN_WARNING "format_corename failed\n");
650 printk(KERN_WARNING "Aborting core\n");
654 if (cprm.limit == 1) {
655 /* See umh_pipe_setup() which sets RLIMIT_CORE = 1.
657 * Normally core limits are irrelevant to pipes, since
658 * we're not writing to the file system, but we use
659 * cprm.limit of 1 here as a special value, this is a
660 * consistent way to catch recursive crashes.
661 * We can still crash if the core_pattern binary sets
662 * RLIM_CORE = !1, but it runs as root, and can do
663 * lots of stupid things.
665 * Note that we use task_tgid_vnr here to grab the pid
666 * of the process group leader. That way we get the
667 * right pid if a thread in a multi-threaded
668 * core_pattern process dies.
671 "Process %d(%s) has RLIMIT_CORE set to 1\n",
672 task_tgid_vnr(current), current->comm);
673 printk(KERN_WARNING "Aborting core\n");
676 cprm.limit = RLIM_INFINITY;
678 dump_count = atomic_inc_return(&core_dump_count);
679 if (core_pipe_limit && (core_pipe_limit < dump_count)) {
680 printk(KERN_WARNING "Pid %d(%s) over core_pipe_limit\n",
681 task_tgid_vnr(current), current->comm);
682 printk(KERN_WARNING "Skipping core dump\n");
686 helper_argv = kmalloc_array(argc + 1, sizeof(*helper_argv),
689 printk(KERN_WARNING "%s failed to allocate memory\n",
693 for (argi = 0; argi < argc; argi++)
694 helper_argv[argi] = cn.corename + argv[argi];
695 helper_argv[argi] = NULL;
698 sub_info = call_usermodehelper_setup(helper_argv[0],
699 helper_argv, NULL, GFP_KERNEL,
700 umh_pipe_setup, NULL, &cprm);
702 retval = call_usermodehelper_exec(sub_info,
707 printk(KERN_INFO "Core dump to |%s pipe failed\n",
713 int open_flags = O_CREAT | O_RDWR | O_NOFOLLOW |
714 O_LARGEFILE | O_EXCL;
716 if (cprm.limit < binfmt->min_coredump)
719 if (need_suid_safe && cn.corename[0] != '/') {
720 printk(KERN_WARNING "Pid %d(%s) can only dump core "\
721 "to fully qualified path!\n",
722 task_tgid_vnr(current), current->comm);
723 printk(KERN_WARNING "Skipping core dump\n");
728 * Unlink the file if it exists unless this is a SUID
729 * binary - in that case, we're running around with root
730 * privs and don't want to unlink another user's coredump.
732 if (!need_suid_safe) {
734 * If it doesn't exist, that's fine. If there's some
735 * other problem, we'll catch it at the filp_open().
737 do_unlinkat(AT_FDCWD, getname_kernel(cn.corename));
741 * There is a race between unlinking and creating the
742 * file, but if that causes an EEXIST here, that's
743 * fine - another process raced with us while creating
744 * the corefile, and the other process won. To userspace,
745 * what matters is that at least one of the two processes
746 * writes its coredump successfully, not which one.
748 if (need_suid_safe) {
750 * Using user namespaces, normal user tasks can change
751 * their current->fs->root to point to arbitrary
752 * directories. Since the intention of the "only dump
753 * with a fully qualified path" rule is to control where
754 * coredumps may be placed using root privileges,
755 * current->fs->root must not be used. Instead, use the
756 * root directory of init_task.
760 task_lock(&init_task);
761 get_fs_root(init_task.fs, &root);
762 task_unlock(&init_task);
763 cprm.file = file_open_root(root.dentry, root.mnt,
764 cn.corename, open_flags, 0600);
767 cprm.file = filp_open(cn.corename, open_flags, 0600);
769 if (IS_ERR(cprm.file))
772 inode = file_inode(cprm.file);
773 if (inode->i_nlink > 1)
775 if (d_unhashed(cprm.file->f_path.dentry))
778 * AK: actually i see no reason to not allow this for named
779 * pipes etc, but keep the previous behaviour for now.
781 if (!S_ISREG(inode->i_mode))
784 * Don't dump core if the filesystem changed owner or mode
785 * of the file during file creation. This is an issue when
786 * a process dumps core while its cwd is e.g. on a vfat
789 if (!uid_eq(inode->i_uid, current_fsuid()))
791 if ((inode->i_mode & 0677) != 0600)
793 if (!(cprm.file->f_mode & FMODE_CAN_WRITE))
795 if (do_truncate(cprm.file->f_path.dentry, 0, 0, cprm.file))
799 /* get us an unshared descriptor table; almost always a no-op */
800 retval = unshare_files(&displaced);
804 put_files_struct(displaced);
805 if (!dump_interrupted()) {
807 * umh disabled with CONFIG_STATIC_USERMODEHELPER_PATH="" would
808 * have this set to NULL.
811 pr_info("Core dump to |%s disabled\n", cn.corename);
814 if (!dump_vma_snapshot(&cprm))
817 file_start_write(cprm.file);
818 core_dumped = binfmt->core_dump(&cprm);
819 file_end_write(cprm.file);
820 free_vma_snapshot(&cprm);
822 if (ispipe && core_pipe_limit)
823 wait_for_dump_helpers(cprm.file);
826 filp_close(cprm.file, NULL);
829 atomic_dec(&core_dump_count);
833 coredump_finish(mm, core_dumped);
834 revert_creds(old_cred);
842 * Core dumping helper functions. These are the only things you should
843 * do on a core-file: use only these functions to write out all the
846 int dump_emit(struct coredump_params *cprm, const void *addr, int nr)
848 struct file *file = cprm->file;
849 loff_t pos = file->f_pos;
851 if (cprm->written + nr > cprm->limit)
855 if (dump_interrupted())
857 n = __kernel_write(file, addr, nr, &pos);
866 EXPORT_SYMBOL(dump_emit);
868 int dump_skip(struct coredump_params *cprm, size_t nr)
870 static char zeroes[PAGE_SIZE];
871 struct file *file = cprm->file;
872 if (file->f_op->llseek && file->f_op->llseek != no_llseek) {
873 if (dump_interrupted() ||
874 file->f_op->llseek(file, nr, SEEK_CUR) < 0)
879 while (nr > PAGE_SIZE) {
880 if (!dump_emit(cprm, zeroes, PAGE_SIZE))
884 return dump_emit(cprm, zeroes, nr);
887 EXPORT_SYMBOL(dump_skip);
889 #ifdef CONFIG_ELF_CORE
890 int dump_user_range(struct coredump_params *cprm, unsigned long start,
895 for (addr = start; addr < start + len; addr += PAGE_SIZE) {
900 * To avoid having to allocate page tables for virtual address
901 * ranges that have never been used yet, and also to make it
902 * easy to generate sparse core files, use a helper that returns
903 * NULL when encountering an empty page table entry that would
904 * otherwise have been filled with the zero page.
906 page = get_dump_page(addr);
908 void *kaddr = kmap(page);
910 stop = !dump_emit(cprm, kaddr, PAGE_SIZE);
914 stop = !dump_skip(cprm, PAGE_SIZE);
923 int dump_align(struct coredump_params *cprm, int align)
925 unsigned mod = cprm->pos & (align - 1);
926 if (align & (align - 1))
928 return mod ? dump_skip(cprm, align - mod) : 1;
930 EXPORT_SYMBOL(dump_align);
933 * Ensures that file size is big enough to contain the current file
934 * postion. This prevents gdb from complaining about a truncated file
935 * if the last "write" to the file was dump_skip.
937 void dump_truncate(struct coredump_params *cprm)
939 struct file *file = cprm->file;
942 if (file->f_op->llseek && file->f_op->llseek != no_llseek) {
943 offset = file->f_op->llseek(file, 0, SEEK_CUR);
944 if (i_size_read(file->f_mapping->host) < offset)
945 do_truncate(file->f_path.dentry, offset, 0, file);
948 EXPORT_SYMBOL(dump_truncate);
951 * The purpose of always_dump_vma() is to make sure that special kernel mappings
952 * that are useful for post-mortem analysis are included in every core dump.
953 * In that way we ensure that the core dump is fully interpretable later
954 * without matching up the same kernel and hardware config to see what PC values
955 * meant. These special mappings include - vDSO, vsyscall, and other
956 * architecture specific mappings
958 static bool always_dump_vma(struct vm_area_struct *vma)
960 /* Any vsyscall mappings? */
961 if (vma == get_gate_vma(vma->vm_mm))
965 * Assume that all vmas with a .name op should always be dumped.
966 * If this changes, a new vm_ops field can easily be added.
968 if (vma->vm_ops && vma->vm_ops->name && vma->vm_ops->name(vma))
972 * arch_vma_name() returns non-NULL for special architecture mappings,
973 * such as vDSO sections.
975 if (arch_vma_name(vma))
981 #define DUMP_SIZE_MAYBE_ELFHDR_PLACEHOLDER 1
984 * Decide how much of @vma's contents should be included in a core dump.
986 static unsigned long vma_dump_size(struct vm_area_struct *vma,
987 unsigned long mm_flags)
989 #define FILTER(type) (mm_flags & (1UL << MMF_DUMP_##type))
991 /* always dump the vdso and vsyscall sections */
992 if (always_dump_vma(vma))
995 if (vma->vm_flags & VM_DONTDUMP)
998 /* support for DAX */
999 if (vma_is_dax(vma)) {
1000 if ((vma->vm_flags & VM_SHARED) && FILTER(DAX_SHARED))
1002 if (!(vma->vm_flags & VM_SHARED) && FILTER(DAX_PRIVATE))
1007 /* Hugetlb memory check */
1008 if (is_vm_hugetlb_page(vma)) {
1009 if ((vma->vm_flags & VM_SHARED) && FILTER(HUGETLB_SHARED))
1011 if (!(vma->vm_flags & VM_SHARED) && FILTER(HUGETLB_PRIVATE))
1016 /* Do not dump I/O mapped devices or special mappings */
1017 if (vma->vm_flags & VM_IO)
1020 /* By default, dump shared memory if mapped from an anonymous file. */
1021 if (vma->vm_flags & VM_SHARED) {
1022 if (file_inode(vma->vm_file)->i_nlink == 0 ?
1023 FILTER(ANON_SHARED) : FILTER(MAPPED_SHARED))
1028 /* Dump segments that have been written to. */
1029 if ((!IS_ENABLED(CONFIG_MMU) || vma->anon_vma) && FILTER(ANON_PRIVATE))
1031 if (vma->vm_file == NULL)
1034 if (FILTER(MAPPED_PRIVATE))
1038 * If this is the beginning of an executable file mapping,
1039 * dump the first page to aid in determining what was mapped here.
1041 if (FILTER(ELF_HEADERS) &&
1042 vma->vm_pgoff == 0 && (vma->vm_flags & VM_READ)) {
1043 if ((READ_ONCE(file_inode(vma->vm_file)->i_mode) & 0111) != 0)
1047 * ELF libraries aren't always executable.
1048 * We'll want to check whether the mapping starts with the ELF
1049 * magic, but not now - we're holding the mmap lock,
1050 * so copy_from_user() doesn't work here.
1051 * Use a placeholder instead, and fix it up later in
1052 * dump_vma_snapshot().
1054 return DUMP_SIZE_MAYBE_ELFHDR_PLACEHOLDER;
1062 return vma->vm_end - vma->vm_start;
1065 static struct vm_area_struct *first_vma(struct task_struct *tsk,
1066 struct vm_area_struct *gate_vma)
1068 struct vm_area_struct *ret = tsk->mm->mmap;
1076 * Helper function for iterating across a vma list. It ensures that the caller
1077 * will visit `gate_vma' prior to terminating the search.
1079 static struct vm_area_struct *next_vma(struct vm_area_struct *this_vma,
1080 struct vm_area_struct *gate_vma)
1082 struct vm_area_struct *ret;
1084 ret = this_vma->vm_next;
1087 if (this_vma == gate_vma)
1092 static void free_vma_snapshot(struct coredump_params *cprm)
1094 if (cprm->vma_meta) {
1096 for (i = 0; i < cprm->vma_count; i++) {
1097 struct file *file = cprm->vma_meta[i].file;
1101 kvfree(cprm->vma_meta);
1102 cprm->vma_meta = NULL;
1107 * Under the mmap_lock, take a snapshot of relevant information about the task's
1110 static bool dump_vma_snapshot(struct coredump_params *cprm)
1112 struct vm_area_struct *vma, *gate_vma;
1113 struct mm_struct *mm = current->mm;
1117 * Once the stack expansion code is fixed to not change VMA bounds
1118 * under mmap_lock in read mode, this can be changed to take the
1119 * mmap_lock in read mode.
1121 if (mmap_write_lock_killable(mm))
1124 cprm->vma_data_size = 0;
1125 gate_vma = get_gate_vma(mm);
1126 cprm->vma_count = mm->map_count + (gate_vma ? 1 : 0);
1128 cprm->vma_meta = kvmalloc_array(cprm->vma_count, sizeof(*cprm->vma_meta), GFP_KERNEL);
1129 if (!cprm->vma_meta) {
1130 mmap_write_unlock(mm);
1134 for (i = 0, vma = first_vma(current, gate_vma); vma != NULL;
1135 vma = next_vma(vma, gate_vma), i++) {
1136 struct core_vma_metadata *m = cprm->vma_meta + i;
1138 m->start = vma->vm_start;
1139 m->end = vma->vm_end;
1140 m->flags = vma->vm_flags;
1141 m->dump_size = vma_dump_size(vma, cprm->mm_flags);
1142 m->pgoff = vma->vm_pgoff;
1144 m->file = vma->vm_file;
1149 mmap_write_unlock(mm);
1151 for (i = 0; i < cprm->vma_count; i++) {
1152 struct core_vma_metadata *m = cprm->vma_meta + i;
1154 if (m->dump_size == DUMP_SIZE_MAYBE_ELFHDR_PLACEHOLDER) {
1155 char elfmag[SELFMAG];
1157 if (copy_from_user(elfmag, (void __user *)m->start, SELFMAG) ||
1158 memcmp(elfmag, ELFMAG, SELFMAG) != 0) {
1161 m->dump_size = PAGE_SIZE;
1165 cprm->vma_data_size += m->dump_size;