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>
45 #include <linux/uaccess.h>
46 #include <asm/mmu_context.h>
50 #include <trace/events/task.h>
53 #include <trace/events/sched.h>
56 unsigned int core_pipe_limit;
57 char core_pattern[CORENAME_MAX_SIZE] = "core";
58 static int core_name_size = CORENAME_MAX_SIZE;
65 /* The maximal length of core_pattern is also specified in sysctl.c */
67 static int expand_corename(struct core_name *cn, int size)
69 char *corename = krealloc(cn->corename, size, GFP_KERNEL);
74 if (size > core_name_size) /* racy but harmless */
75 core_name_size = size;
77 cn->size = ksize(corename);
78 cn->corename = corename;
82 static __printf(2, 0) int cn_vprintf(struct core_name *cn, const char *fmt,
89 free = cn->size - cn->used;
91 va_copy(arg_copy, arg);
92 need = vsnprintf(cn->corename + cn->used, free, fmt, arg_copy);
100 if (!expand_corename(cn, cn->size + need - free + 1))
106 static __printf(2, 3) int cn_printf(struct core_name *cn, const char *fmt, ...)
112 ret = cn_vprintf(cn, fmt, arg);
118 static __printf(2, 3)
119 int cn_esc_printf(struct core_name *cn, const char *fmt, ...)
126 ret = cn_vprintf(cn, fmt, arg);
131 * Ensure that this coredump name component can't cause the
132 * resulting corefile path to consist of a ".." or ".".
134 if ((cn->used - cur == 1 && cn->corename[cur] == '.') ||
135 (cn->used - cur == 2 && cn->corename[cur] == '.'
136 && cn->corename[cur+1] == '.'))
137 cn->corename[cur] = '!';
140 * Empty names are fishy and could be used to create a "//" in a
141 * corefile name, causing the coredump to happen one directory
142 * level too high. Enforce that all components of the core
143 * pattern are at least one character long.
146 ret = cn_printf(cn, "!");
149 for (; cur < cn->used; ++cur) {
150 if (cn->corename[cur] == '/')
151 cn->corename[cur] = '!';
156 static int cn_print_exe_file(struct core_name *cn, bool name_only)
158 struct file *exe_file;
159 char *pathbuf, *path, *ptr;
162 exe_file = get_mm_exe_file(current->mm);
164 return cn_esc_printf(cn, "%s (path unknown)", current->comm);
166 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
172 path = file_path(exe_file, pathbuf, PATH_MAX);
179 ptr = strrchr(path, '/');
183 ret = cn_esc_printf(cn, "%s", path);
192 /* format_corename will inspect the pattern parameter, and output a
193 * name into corename, which must have space for at least
194 * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
196 static int format_corename(struct core_name *cn, struct coredump_params *cprm,
197 size_t **argv, int *argc)
199 const struct cred *cred = current_cred();
200 const char *pat_ptr = core_pattern;
201 int ispipe = (*pat_ptr == '|');
202 bool was_space = false;
203 int pid_in_pattern = 0;
208 if (expand_corename(cn, core_name_size))
210 cn->corename[0] = '\0';
213 int argvs = sizeof(core_pattern) / 2;
214 (*argv) = kmalloc_array(argvs, sizeof(**argv), GFP_KERNEL);
217 (*argv)[(*argc)++] = 0;
223 /* Repeat as long as we have more pattern to process and more output
227 * Split on spaces before doing template expansion so that
228 * %e and %E don't get split if they have spaces in them
231 if (isspace(*pat_ptr)) {
236 } else if (was_space) {
238 err = cn_printf(cn, "%c", '\0');
241 (*argv)[(*argc)++] = cn->used;
244 if (*pat_ptr != '%') {
245 err = cn_printf(cn, "%c", *pat_ptr++);
247 switch (*++pat_ptr) {
248 /* single % at the end, drop that */
251 /* Double percent, output one percent */
253 err = cn_printf(cn, "%c", '%');
258 err = cn_printf(cn, "%d",
259 task_tgid_vnr(current));
263 err = cn_printf(cn, "%d",
264 task_tgid_nr(current));
267 err = cn_printf(cn, "%d",
268 task_pid_vnr(current));
271 err = cn_printf(cn, "%d",
272 task_pid_nr(current));
276 err = cn_printf(cn, "%u",
277 from_kuid(&init_user_ns,
282 err = cn_printf(cn, "%u",
283 from_kgid(&init_user_ns,
287 err = cn_printf(cn, "%d",
288 __get_dumpable(cprm->mm_flags));
290 /* signal that caused the coredump */
292 err = cn_printf(cn, "%d",
293 cprm->siginfo->si_signo);
295 /* UNIX time of coredump */
299 time = ktime_get_real_seconds();
300 err = cn_printf(cn, "%lld", time);
306 err = cn_esc_printf(cn, "%s",
307 utsname()->nodename);
310 /* executable, could be changed by prctl PR_SET_NAME etc */
312 err = cn_esc_printf(cn, "%s", current->comm);
314 /* file name of executable */
316 err = cn_print_exe_file(cn, true);
319 err = cn_print_exe_file(cn, false);
321 /* core limit size */
323 err = cn_printf(cn, "%lu",
324 rlimit(RLIMIT_CORE));
337 /* Backward compatibility with core_uses_pid:
339 * If core_pattern does not include a %p (as is the default)
340 * and core_uses_pid is set, then .%pid will be appended to
341 * the filename. Do not do this for piped commands. */
342 if (!ispipe && !pid_in_pattern && core_uses_pid) {
343 err = cn_printf(cn, ".%d", task_tgid_vnr(current));
350 static int zap_process(struct task_struct *start, int exit_code, int flags)
352 struct task_struct *t;
355 /* ignore all signals except SIGKILL, see prepare_signal() */
356 start->signal->flags = SIGNAL_GROUP_COREDUMP | flags;
357 start->signal->group_exit_code = exit_code;
358 start->signal->group_stop_count = 0;
360 for_each_thread(start, t) {
361 task_clear_jobctl_pending(t, JOBCTL_PENDING_MASK);
362 if (t != current && !(t->flags & PF_POSTCOREDUMP)) {
363 sigaddset(&t->pending.signal, SIGKILL);
364 signal_wake_up(t, 1);
372 static int zap_threads(struct task_struct *tsk,
373 struct core_state *core_state, int exit_code)
377 spin_lock_irq(&tsk->sighand->siglock);
378 if (!signal_group_exit(tsk->signal)) {
379 tsk->signal->core_state = core_state;
380 tsk->signal->group_exit_task = tsk;
381 nr = zap_process(tsk, exit_code, 0);
382 clear_tsk_thread_flag(tsk, TIF_SIGPENDING);
383 tsk->flags |= PF_DUMPCORE;
384 atomic_set(&core_state->nr_threads, nr);
386 spin_unlock_irq(&tsk->sighand->siglock);
390 static int coredump_wait(int exit_code, struct core_state *core_state)
392 struct task_struct *tsk = current;
393 int core_waiters = -EBUSY;
395 init_completion(&core_state->startup);
396 core_state->dumper.task = tsk;
397 core_state->dumper.next = NULL;
399 core_waiters = zap_threads(tsk, core_state, exit_code);
400 if (core_waiters > 0) {
401 struct core_thread *ptr;
403 freezer_do_not_count();
404 wait_for_completion(&core_state->startup);
407 * Wait for all the threads to become inactive, so that
408 * all the thread context (extended register state, like
409 * fpu etc) gets copied to the memory.
411 ptr = core_state->dumper.next;
412 while (ptr != NULL) {
413 wait_task_inactive(ptr->task, 0);
421 static void coredump_finish(bool core_dumped)
423 struct core_thread *curr, *next;
424 struct task_struct *task;
426 spin_lock_irq(¤t->sighand->siglock);
427 if (core_dumped && !__fatal_signal_pending(current))
428 current->signal->group_exit_code |= 0x80;
429 current->signal->group_exit_task = NULL;
430 current->signal->flags = SIGNAL_GROUP_EXIT;
431 next = current->signal->core_state->dumper.next;
432 current->signal->core_state = NULL;
433 spin_unlock_irq(¤t->sighand->siglock);
435 while ((curr = next) != NULL) {
439 * see coredump_task_exit(), curr->task must not see
440 * ->task == NULL before we read ->next.
444 wake_up_process(task);
448 static bool dump_interrupted(void)
451 * SIGKILL or freezing() interrupt the coredumping. Perhaps we
452 * can do try_to_freeze() and check __fatal_signal_pending(),
453 * but then we need to teach dump_write() to restart and clear
456 return fatal_signal_pending(current) || freezing(current);
459 static void wait_for_dump_helpers(struct file *file)
461 struct pipe_inode_info *pipe = file->private_data;
466 wake_up_interruptible_sync(&pipe->rd_wait);
467 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
471 * We actually want wait_event_freezable() but then we need
472 * to clear TIF_SIGPENDING and improve dump_interrupted().
474 wait_event_interruptible(pipe->rd_wait, pipe->readers == 1);
484 * helper function to customize the process used
485 * to collect the core in userspace. Specifically
486 * it sets up a pipe and installs it as fd 0 (stdin)
487 * for the process. Returns 0 on success, or
488 * PTR_ERR on failure.
489 * Note that it also sets the core limit to 1. This
490 * is a special value that we use to trap recursive
493 static int umh_pipe_setup(struct subprocess_info *info, struct cred *new)
495 struct file *files[2];
496 struct coredump_params *cp = (struct coredump_params *)info->data;
497 int err = create_pipe_files(files, 0);
503 err = replace_fd(0, files[0], 0);
505 /* and disallow core files too */
506 current->signal->rlim[RLIMIT_CORE] = (struct rlimit){1, 1};
511 void do_coredump(const kernel_siginfo_t *siginfo)
513 struct core_state core_state;
515 struct mm_struct *mm = current->mm;
516 struct linux_binfmt * binfmt;
517 const struct cred *old_cred;
523 /* require nonrelative corefile path and be extra careful */
524 bool need_suid_safe = false;
525 bool core_dumped = false;
526 static atomic_t core_dump_count = ATOMIC_INIT(0);
527 struct coredump_params cprm = {
529 .regs = signal_pt_regs(),
530 .limit = rlimit(RLIMIT_CORE),
532 * We must use the same mm->flags while dumping core to avoid
533 * inconsistency of bit flags, since this flag is not protected
536 .mm_flags = mm->flags,
539 audit_core_dumps(siginfo->si_signo);
542 if (!binfmt || !binfmt->core_dump)
544 if (!__get_dumpable(cprm.mm_flags))
547 cred = prepare_creds();
551 * We cannot trust fsuid as being the "true" uid of the process
552 * nor do we know its entire history. We only know it was tainted
553 * so we dump it as root in mode 2, and only into a controlled
554 * environment (pipe handler or fully qualified path).
556 if (__get_dumpable(cprm.mm_flags) == SUID_DUMP_ROOT) {
557 /* Setuid core dump mode */
558 cred->fsuid = GLOBAL_ROOT_UID; /* Dump root private */
559 need_suid_safe = true;
562 retval = coredump_wait(siginfo->si_signo, &core_state);
566 old_cred = override_creds(cred);
568 ispipe = format_corename(&cn, &cprm, &argv, &argc);
574 struct subprocess_info *sub_info;
577 printk(KERN_WARNING "format_corename failed\n");
578 printk(KERN_WARNING "Aborting core\n");
582 if (cprm.limit == 1) {
583 /* See umh_pipe_setup() which sets RLIMIT_CORE = 1.
585 * Normally core limits are irrelevant to pipes, since
586 * we're not writing to the file system, but we use
587 * cprm.limit of 1 here as a special value, this is a
588 * consistent way to catch recursive crashes.
589 * We can still crash if the core_pattern binary sets
590 * RLIM_CORE = !1, but it runs as root, and can do
591 * lots of stupid things.
593 * Note that we use task_tgid_vnr here to grab the pid
594 * of the process group leader. That way we get the
595 * right pid if a thread in a multi-threaded
596 * core_pattern process dies.
599 "Process %d(%s) has RLIMIT_CORE set to 1\n",
600 task_tgid_vnr(current), current->comm);
601 printk(KERN_WARNING "Aborting core\n");
604 cprm.limit = RLIM_INFINITY;
606 dump_count = atomic_inc_return(&core_dump_count);
607 if (core_pipe_limit && (core_pipe_limit < dump_count)) {
608 printk(KERN_WARNING "Pid %d(%s) over core_pipe_limit\n",
609 task_tgid_vnr(current), current->comm);
610 printk(KERN_WARNING "Skipping core dump\n");
614 helper_argv = kmalloc_array(argc + 1, sizeof(*helper_argv),
617 printk(KERN_WARNING "%s failed to allocate memory\n",
621 for (argi = 0; argi < argc; argi++)
622 helper_argv[argi] = cn.corename + argv[argi];
623 helper_argv[argi] = NULL;
626 sub_info = call_usermodehelper_setup(helper_argv[0],
627 helper_argv, NULL, GFP_KERNEL,
628 umh_pipe_setup, NULL, &cprm);
630 retval = call_usermodehelper_exec(sub_info,
635 printk(KERN_INFO "Core dump to |%s pipe failed\n",
640 struct user_namespace *mnt_userns;
642 int open_flags = O_CREAT | O_RDWR | O_NOFOLLOW |
643 O_LARGEFILE | O_EXCL;
645 if (cprm.limit < binfmt->min_coredump)
648 if (need_suid_safe && cn.corename[0] != '/') {
649 printk(KERN_WARNING "Pid %d(%s) can only dump core "\
650 "to fully qualified path!\n",
651 task_tgid_vnr(current), current->comm);
652 printk(KERN_WARNING "Skipping core dump\n");
657 * Unlink the file if it exists unless this is a SUID
658 * binary - in that case, we're running around with root
659 * privs and don't want to unlink another user's coredump.
661 if (!need_suid_safe) {
663 * If it doesn't exist, that's fine. If there's some
664 * other problem, we'll catch it at the filp_open().
666 do_unlinkat(AT_FDCWD, getname_kernel(cn.corename));
670 * There is a race between unlinking and creating the
671 * file, but if that causes an EEXIST here, that's
672 * fine - another process raced with us while creating
673 * the corefile, and the other process won. To userspace,
674 * what matters is that at least one of the two processes
675 * writes its coredump successfully, not which one.
677 if (need_suid_safe) {
679 * Using user namespaces, normal user tasks can change
680 * their current->fs->root to point to arbitrary
681 * directories. Since the intention of the "only dump
682 * with a fully qualified path" rule is to control where
683 * coredumps may be placed using root privileges,
684 * current->fs->root must not be used. Instead, use the
685 * root directory of init_task.
689 task_lock(&init_task);
690 get_fs_root(init_task.fs, &root);
691 task_unlock(&init_task);
692 cprm.file = file_open_root(&root, cn.corename,
696 cprm.file = filp_open(cn.corename, open_flags, 0600);
698 if (IS_ERR(cprm.file))
701 inode = file_inode(cprm.file);
702 if (inode->i_nlink > 1)
704 if (d_unhashed(cprm.file->f_path.dentry))
707 * AK: actually i see no reason to not allow this for named
708 * pipes etc, but keep the previous behaviour for now.
710 if (!S_ISREG(inode->i_mode))
713 * Don't dump core if the filesystem changed owner or mode
714 * of the file during file creation. This is an issue when
715 * a process dumps core while its cwd is e.g. on a vfat
718 mnt_userns = file_mnt_user_ns(cprm.file);
719 if (!uid_eq(i_uid_into_mnt(mnt_userns, inode),
721 pr_info_ratelimited("Core dump to %s aborted: cannot preserve file owner\n",
725 if ((inode->i_mode & 0677) != 0600) {
726 pr_info_ratelimited("Core dump to %s aborted: cannot preserve file permissions\n",
730 if (!(cprm.file->f_mode & FMODE_CAN_WRITE))
732 if (do_truncate(mnt_userns, cprm.file->f_path.dentry,
737 /* get us an unshared descriptor table; almost always a no-op */
738 /* The cell spufs coredump code reads the file descriptor tables */
739 retval = unshare_files();
742 if (!dump_interrupted()) {
744 * umh disabled with CONFIG_STATIC_USERMODEHELPER_PATH="" would
745 * have this set to NULL.
748 pr_info("Core dump to |%s disabled\n", cn.corename);
751 file_start_write(cprm.file);
752 core_dumped = binfmt->core_dump(&cprm);
754 * Ensures that file size is big enough to contain the current
755 * file postion. This prevents gdb from complaining about
756 * a truncated file if the last "write" to the file was
761 dump_emit(&cprm, "", 1);
763 file_end_write(cprm.file);
765 if (ispipe && core_pipe_limit)
766 wait_for_dump_helpers(cprm.file);
769 filp_close(cprm.file, NULL);
772 atomic_dec(&core_dump_count);
776 coredump_finish(core_dumped);
777 revert_creds(old_cred);
785 * Core dumping helper functions. These are the only things you should
786 * do on a core-file: use only these functions to write out all the
789 static int __dump_emit(struct coredump_params *cprm, const void *addr, int nr)
791 struct file *file = cprm->file;
792 loff_t pos = file->f_pos;
794 if (cprm->written + nr > cprm->limit)
798 if (dump_interrupted())
800 n = __kernel_write(file, addr, nr, &pos);
810 static int __dump_skip(struct coredump_params *cprm, size_t nr)
812 static char zeroes[PAGE_SIZE];
813 struct file *file = cprm->file;
814 if (file->f_op->llseek && file->f_op->llseek != no_llseek) {
815 if (dump_interrupted() ||
816 file->f_op->llseek(file, nr, SEEK_CUR) < 0)
821 while (nr > PAGE_SIZE) {
822 if (!__dump_emit(cprm, zeroes, PAGE_SIZE))
826 return __dump_emit(cprm, zeroes, nr);
830 int dump_emit(struct coredump_params *cprm, const void *addr, int nr)
833 if (!__dump_skip(cprm, cprm->to_skip))
837 return __dump_emit(cprm, addr, nr);
839 EXPORT_SYMBOL(dump_emit);
841 void dump_skip_to(struct coredump_params *cprm, unsigned long pos)
843 cprm->to_skip = pos - cprm->pos;
845 EXPORT_SYMBOL(dump_skip_to);
847 void dump_skip(struct coredump_params *cprm, size_t nr)
851 EXPORT_SYMBOL(dump_skip);
853 #ifdef CONFIG_ELF_CORE
854 int dump_user_range(struct coredump_params *cprm, unsigned long start,
859 for (addr = start; addr < start + len; addr += PAGE_SIZE) {
864 * To avoid having to allocate page tables for virtual address
865 * ranges that have never been used yet, and also to make it
866 * easy to generate sparse core files, use a helper that returns
867 * NULL when encountering an empty page table entry that would
868 * otherwise have been filled with the zero page.
870 page = get_dump_page(addr);
872 void *kaddr = kmap_local_page(page);
874 stop = !dump_emit(cprm, kaddr, PAGE_SIZE);
880 dump_skip(cprm, PAGE_SIZE);
887 int dump_align(struct coredump_params *cprm, int align)
889 unsigned mod = (cprm->pos + cprm->to_skip) & (align - 1);
890 if (align & (align - 1))
893 cprm->to_skip += align - mod;
896 EXPORT_SYMBOL(dump_align);
899 * The purpose of always_dump_vma() is to make sure that special kernel mappings
900 * that are useful for post-mortem analysis are included in every core dump.
901 * In that way we ensure that the core dump is fully interpretable later
902 * without matching up the same kernel and hardware config to see what PC values
903 * meant. These special mappings include - vDSO, vsyscall, and other
904 * architecture specific mappings
906 static bool always_dump_vma(struct vm_area_struct *vma)
908 /* Any vsyscall mappings? */
909 if (vma == get_gate_vma(vma->vm_mm))
913 * Assume that all vmas with a .name op should always be dumped.
914 * If this changes, a new vm_ops field can easily be added.
916 if (vma->vm_ops && vma->vm_ops->name && vma->vm_ops->name(vma))
920 * arch_vma_name() returns non-NULL for special architecture mappings,
921 * such as vDSO sections.
923 if (arch_vma_name(vma))
930 * Decide how much of @vma's contents should be included in a core dump.
932 static unsigned long vma_dump_size(struct vm_area_struct *vma,
933 unsigned long mm_flags)
935 #define FILTER(type) (mm_flags & (1UL << MMF_DUMP_##type))
937 /* always dump the vdso and vsyscall sections */
938 if (always_dump_vma(vma))
941 if (vma->vm_flags & VM_DONTDUMP)
944 /* support for DAX */
945 if (vma_is_dax(vma)) {
946 if ((vma->vm_flags & VM_SHARED) && FILTER(DAX_SHARED))
948 if (!(vma->vm_flags & VM_SHARED) && FILTER(DAX_PRIVATE))
953 /* Hugetlb memory check */
954 if (is_vm_hugetlb_page(vma)) {
955 if ((vma->vm_flags & VM_SHARED) && FILTER(HUGETLB_SHARED))
957 if (!(vma->vm_flags & VM_SHARED) && FILTER(HUGETLB_PRIVATE))
962 /* Do not dump I/O mapped devices or special mappings */
963 if (vma->vm_flags & VM_IO)
966 /* By default, dump shared memory if mapped from an anonymous file. */
967 if (vma->vm_flags & VM_SHARED) {
968 if (file_inode(vma->vm_file)->i_nlink == 0 ?
969 FILTER(ANON_SHARED) : FILTER(MAPPED_SHARED))
974 /* Dump segments that have been written to. */
975 if ((!IS_ENABLED(CONFIG_MMU) || vma->anon_vma) && FILTER(ANON_PRIVATE))
977 if (vma->vm_file == NULL)
980 if (FILTER(MAPPED_PRIVATE))
984 * If this is the beginning of an executable file mapping,
985 * dump the first page to aid in determining what was mapped here.
987 if (FILTER(ELF_HEADERS) &&
988 vma->vm_pgoff == 0 && (vma->vm_flags & VM_READ) &&
989 (READ_ONCE(file_inode(vma->vm_file)->i_mode) & 0111) != 0)
997 return vma->vm_end - vma->vm_start;
1000 static struct vm_area_struct *first_vma(struct task_struct *tsk,
1001 struct vm_area_struct *gate_vma)
1003 struct vm_area_struct *ret = tsk->mm->mmap;
1011 * Helper function for iterating across a vma list. It ensures that the caller
1012 * will visit `gate_vma' prior to terminating the search.
1014 static struct vm_area_struct *next_vma(struct vm_area_struct *this_vma,
1015 struct vm_area_struct *gate_vma)
1017 struct vm_area_struct *ret;
1019 ret = this_vma->vm_next;
1022 if (this_vma == gate_vma)
1028 * Under the mmap_lock, take a snapshot of relevant information about the task's
1031 int dump_vma_snapshot(struct coredump_params *cprm, int *vma_count,
1032 struct core_vma_metadata **vma_meta,
1033 size_t *vma_data_size_ptr)
1035 struct vm_area_struct *vma, *gate_vma;
1036 struct mm_struct *mm = current->mm;
1038 size_t vma_data_size = 0;
1041 * Once the stack expansion code is fixed to not change VMA bounds
1042 * under mmap_lock in read mode, this can be changed to take the
1043 * mmap_lock in read mode.
1045 if (mmap_write_lock_killable(mm))
1048 gate_vma = get_gate_vma(mm);
1049 *vma_count = mm->map_count + (gate_vma ? 1 : 0);
1051 *vma_meta = kvmalloc_array(*vma_count, sizeof(**vma_meta), GFP_KERNEL);
1053 mmap_write_unlock(mm);
1057 for (i = 0, vma = first_vma(current, gate_vma); vma != NULL;
1058 vma = next_vma(vma, gate_vma), i++) {
1059 struct core_vma_metadata *m = (*vma_meta) + i;
1061 m->start = vma->vm_start;
1062 m->end = vma->vm_end;
1063 m->flags = vma->vm_flags;
1064 m->dump_size = vma_dump_size(vma, cprm->mm_flags);
1066 vma_data_size += m->dump_size;
1069 mmap_write_unlock(mm);
1071 if (WARN_ON(i != *vma_count)) {
1076 *vma_data_size_ptr = vma_data_size;