Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 2 | #include <linux/slab.h> |
| 3 | #include <linux/file.h> |
| 4 | #include <linux/fdtable.h> |
Andrey Ryabinin | 70d78fe | 2016-11-10 10:46:38 -0800 | [diff] [blame] | 5 | #include <linux/freezer.h> |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 6 | #include <linux/mm.h> |
| 7 | #include <linux/stat.h> |
| 8 | #include <linux/fcntl.h> |
| 9 | #include <linux/swap.h> |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 10 | #include <linux/ctype.h> |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 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> |
Alex Kelly | 179899f | 2012-10-04 17:15:24 -0700 | [diff] [blame] | 20 | #include <linux/coredump.h> |
Ingo Molnar | f7ccbae | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 21 | #include <linux/sched/coredump.h> |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 22 | #include <linux/sched/signal.h> |
Ingo Molnar | 68db0cf | 2017-02-08 18:51:37 +0100 | [diff] [blame] | 23 | #include <linux/sched/task_stack.h> |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 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> |
Jann Horn | 378c652 | 2016-03-22 14:25:36 -0700 | [diff] [blame] | 41 | #include <linux/fs.h> |
| 42 | #include <linux/path.h> |
Arnd Bergmann | 03927c8 | 2015-11-25 16:22:25 +0100 | [diff] [blame] | 43 | #include <linux/timekeeping.h> |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 44 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 45 | #include <linux/uaccess.h> |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 46 | #include <asm/mmu_context.h> |
| 47 | #include <asm/tlb.h> |
| 48 | #include <asm/exec.h> |
| 49 | |
| 50 | #include <trace/events/task.h> |
| 51 | #include "internal.h" |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 52 | |
| 53 | #include <trace/events/sched.h> |
| 54 | |
| 55 | int core_uses_pid; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 56 | unsigned int core_pipe_limit; |
Oleg Nesterov | 3ceadcf | 2013-07-03 15:08:22 -0700 | [diff] [blame] | 57 | char core_pattern[CORENAME_MAX_SIZE] = "core"; |
| 58 | static int core_name_size = CORENAME_MAX_SIZE; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 59 | |
| 60 | struct core_name { |
| 61 | char *corename; |
| 62 | int used, size; |
| 63 | }; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 64 | |
| 65 | /* The maximal length of core_pattern is also specified in sysctl.c */ |
| 66 | |
Oleg Nesterov | 3ceadcf | 2013-07-03 15:08:22 -0700 | [diff] [blame] | 67 | static int expand_corename(struct core_name *cn, int size) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 68 | { |
Oleg Nesterov | e7fd154 | 2013-07-03 15:08:16 -0700 | [diff] [blame] | 69 | char *corename = krealloc(cn->corename, size, GFP_KERNEL); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 70 | |
Oleg Nesterov | e7fd154 | 2013-07-03 15:08:16 -0700 | [diff] [blame] | 71 | if (!corename) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 72 | return -ENOMEM; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 73 | |
Oleg Nesterov | 3ceadcf | 2013-07-03 15:08:22 -0700 | [diff] [blame] | 74 | if (size > core_name_size) /* racy but harmless */ |
| 75 | core_name_size = size; |
| 76 | |
| 77 | cn->size = ksize(corename); |
Oleg Nesterov | e7fd154 | 2013-07-03 15:08:16 -0700 | [diff] [blame] | 78 | cn->corename = corename; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 79 | return 0; |
| 80 | } |
| 81 | |
Nicolas Iooss | b4176b7 | 2015-06-25 15:03:53 -0700 | [diff] [blame] | 82 | static __printf(2, 0) int cn_vprintf(struct core_name *cn, const char *fmt, |
| 83 | va_list arg) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 84 | { |
Oleg Nesterov | 5fe9d8c | 2013-07-03 15:08:19 -0700 | [diff] [blame] | 85 | int free, need; |
Eric Dumazet | 404ca80 | 2014-04-19 10:15:07 -0700 | [diff] [blame] | 86 | va_list arg_copy; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 87 | |
Oleg Nesterov | 5fe9d8c | 2013-07-03 15:08:19 -0700 | [diff] [blame] | 88 | again: |
| 89 | free = cn->size - cn->used; |
Eric Dumazet | 404ca80 | 2014-04-19 10:15:07 -0700 | [diff] [blame] | 90 | |
| 91 | va_copy(arg_copy, arg); |
| 92 | need = vsnprintf(cn->corename + cn->used, free, fmt, arg_copy); |
| 93 | va_end(arg_copy); |
| 94 | |
Oleg Nesterov | 5fe9d8c | 2013-07-03 15:08:19 -0700 | [diff] [blame] | 95 | if (need < free) { |
| 96 | cn->used += need; |
| 97 | return 0; |
| 98 | } |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 99 | |
Oleg Nesterov | 3ceadcf | 2013-07-03 15:08:22 -0700 | [diff] [blame] | 100 | if (!expand_corename(cn, cn->size + need - free + 1)) |
Oleg Nesterov | 5fe9d8c | 2013-07-03 15:08:19 -0700 | [diff] [blame] | 101 | goto again; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 102 | |
Oleg Nesterov | 5fe9d8c | 2013-07-03 15:08:19 -0700 | [diff] [blame] | 103 | return -ENOMEM; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 104 | } |
| 105 | |
Nicolas Iooss | b4176b7 | 2015-06-25 15:03:53 -0700 | [diff] [blame] | 106 | static __printf(2, 3) int cn_printf(struct core_name *cn, const char *fmt, ...) |
Oleg Nesterov | bc03c69 | 2013-07-03 15:08:17 -0700 | [diff] [blame] | 107 | { |
| 108 | va_list arg; |
| 109 | int ret; |
| 110 | |
| 111 | va_start(arg, fmt); |
| 112 | ret = cn_vprintf(cn, fmt, arg); |
| 113 | va_end(arg); |
| 114 | |
| 115 | return ret; |
| 116 | } |
| 117 | |
Nicolas Iooss | b4176b7 | 2015-06-25 15:03:53 -0700 | [diff] [blame] | 118 | static __printf(2, 3) |
| 119 | int cn_esc_printf(struct core_name *cn, const char *fmt, ...) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 120 | { |
Oleg Nesterov | 923bed03 | 2013-07-03 15:08:20 -0700 | [diff] [blame] | 121 | int cur = cn->used; |
| 122 | va_list arg; |
| 123 | int ret; |
| 124 | |
| 125 | va_start(arg, fmt); |
| 126 | ret = cn_vprintf(cn, fmt, arg); |
| 127 | va_end(arg); |
| 128 | |
Jann Horn | ac94b6e | 2016-01-20 15:00:08 -0800 | [diff] [blame] | 129 | if (ret == 0) { |
| 130 | /* |
| 131 | * Ensure that this coredump name component can't cause the |
| 132 | * resulting corefile path to consist of a ".." or ".". |
| 133 | */ |
| 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] = '!'; |
| 138 | |
| 139 | /* |
| 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. |
| 144 | */ |
| 145 | if (cn->used == cur) |
| 146 | ret = cn_printf(cn, "!"); |
| 147 | } |
| 148 | |
Oleg Nesterov | 923bed03 | 2013-07-03 15:08:20 -0700 | [diff] [blame] | 149 | for (; cur < cn->used; ++cur) { |
| 150 | if (cn->corename[cur] == '/') |
| 151 | cn->corename[cur] = '!'; |
| 152 | } |
| 153 | return ret; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | static int cn_print_exe_file(struct core_name *cn) |
| 157 | { |
| 158 | struct file *exe_file; |
| 159 | char *pathbuf, *path; |
| 160 | int ret; |
| 161 | |
| 162 | exe_file = get_mm_exe_file(current->mm); |
Oleg Nesterov | 923bed03 | 2013-07-03 15:08:20 -0700 | [diff] [blame] | 163 | if (!exe_file) |
| 164 | return cn_esc_printf(cn, "%s (path unknown)", current->comm); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 165 | |
Michal Hocko | 0ee931c | 2017-09-13 16:28:29 -0700 | [diff] [blame] | 166 | pathbuf = kmalloc(PATH_MAX, GFP_KERNEL); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 167 | if (!pathbuf) { |
| 168 | ret = -ENOMEM; |
| 169 | goto put_exe_file; |
| 170 | } |
| 171 | |
Miklos Szeredi | 9bf39ab | 2015-06-19 10:29:13 +0200 | [diff] [blame] | 172 | path = file_path(exe_file, pathbuf, PATH_MAX); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 173 | if (IS_ERR(path)) { |
| 174 | ret = PTR_ERR(path); |
| 175 | goto free_buf; |
| 176 | } |
| 177 | |
Oleg Nesterov | 923bed03 | 2013-07-03 15:08:20 -0700 | [diff] [blame] | 178 | ret = cn_esc_printf(cn, "%s", path); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 179 | |
| 180 | free_buf: |
| 181 | kfree(pathbuf); |
| 182 | put_exe_file: |
| 183 | fput(exe_file); |
| 184 | return ret; |
| 185 | } |
| 186 | |
| 187 | /* format_corename will inspect the pattern parameter, and output a |
| 188 | * name into corename, which must have space for at least |
| 189 | * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator. |
| 190 | */ |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 191 | static int format_corename(struct core_name *cn, struct coredump_params *cprm, |
| 192 | size_t **argv, int *argc) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 193 | { |
| 194 | const struct cred *cred = current_cred(); |
| 195 | const char *pat_ptr = core_pattern; |
| 196 | int ispipe = (*pat_ptr == '|'); |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 197 | bool was_space = false; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 198 | int pid_in_pattern = 0; |
| 199 | int err = 0; |
| 200 | |
Oleg Nesterov | e7fd154 | 2013-07-03 15:08:16 -0700 | [diff] [blame] | 201 | cn->used = 0; |
Oleg Nesterov | 3ceadcf | 2013-07-03 15:08:22 -0700 | [diff] [blame] | 202 | cn->corename = NULL; |
| 203 | if (expand_corename(cn, core_name_size)) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 204 | return -ENOMEM; |
Oleg Nesterov | 888ffc5 | 2013-07-03 15:08:23 -0700 | [diff] [blame] | 205 | cn->corename[0] = '\0'; |
| 206 | |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 207 | if (ispipe) { |
| 208 | int argvs = sizeof(core_pattern) / 2; |
| 209 | (*argv) = kmalloc_array(argvs, sizeof(**argv), GFP_KERNEL); |
| 210 | if (!(*argv)) |
| 211 | return -ENOMEM; |
| 212 | (*argv)[(*argc)++] = 0; |
Oleg Nesterov | 888ffc5 | 2013-07-03 15:08:23 -0700 | [diff] [blame] | 213 | ++pat_ptr; |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 214 | } |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 215 | |
| 216 | /* Repeat as long as we have more pattern to process and more output |
| 217 | space */ |
| 218 | while (*pat_ptr) { |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 219 | /* |
| 220 | * Split on spaces before doing template expansion so that |
| 221 | * %e and %E don't get split if they have spaces in them |
| 222 | */ |
| 223 | if (ispipe) { |
| 224 | if (isspace(*pat_ptr)) { |
| 225 | was_space = true; |
| 226 | pat_ptr++; |
| 227 | continue; |
| 228 | } else if (was_space) { |
| 229 | was_space = false; |
| 230 | err = cn_printf(cn, "%c", '\0'); |
| 231 | if (err) |
| 232 | return err; |
| 233 | (*argv)[(*argc)++] = cn->used; |
| 234 | } |
| 235 | } |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 236 | if (*pat_ptr != '%') { |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 237 | err = cn_printf(cn, "%c", *pat_ptr++); |
| 238 | } else { |
| 239 | switch (*++pat_ptr) { |
| 240 | /* single % at the end, drop that */ |
| 241 | case 0: |
| 242 | goto out; |
| 243 | /* Double percent, output one percent */ |
| 244 | case '%': |
| 245 | err = cn_printf(cn, "%c", '%'); |
| 246 | break; |
| 247 | /* pid */ |
| 248 | case 'p': |
| 249 | pid_in_pattern = 1; |
| 250 | err = cn_printf(cn, "%d", |
| 251 | task_tgid_vnr(current)); |
| 252 | break; |
Stéphane Graber | 65aafb1 | 2013-09-11 14:24:32 -0700 | [diff] [blame] | 253 | /* global pid */ |
| 254 | case 'P': |
| 255 | err = cn_printf(cn, "%d", |
| 256 | task_tgid_nr(current)); |
| 257 | break; |
Oleg Nesterov | b03023e | 2014-10-13 15:53:35 -0700 | [diff] [blame] | 258 | case 'i': |
| 259 | err = cn_printf(cn, "%d", |
| 260 | task_pid_vnr(current)); |
| 261 | break; |
| 262 | case 'I': |
| 263 | err = cn_printf(cn, "%d", |
| 264 | task_pid_nr(current)); |
| 265 | break; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 266 | /* uid */ |
| 267 | case 'u': |
Nicolas Iooss | 5202efe | 2015-06-25 15:03:51 -0700 | [diff] [blame] | 268 | err = cn_printf(cn, "%u", |
| 269 | from_kuid(&init_user_ns, |
| 270 | cred->uid)); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 271 | break; |
| 272 | /* gid */ |
| 273 | case 'g': |
Nicolas Iooss | 5202efe | 2015-06-25 15:03:51 -0700 | [diff] [blame] | 274 | err = cn_printf(cn, "%u", |
| 275 | from_kgid(&init_user_ns, |
| 276 | cred->gid)); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 277 | break; |
Oleg Nesterov | 12a2b4b | 2012-10-04 17:15:25 -0700 | [diff] [blame] | 278 | case 'd': |
| 279 | err = cn_printf(cn, "%d", |
| 280 | __get_dumpable(cprm->mm_flags)); |
| 281 | break; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 282 | /* signal that caused the coredump */ |
| 283 | case 's': |
Nicolas Iooss | b4176b7 | 2015-06-25 15:03:53 -0700 | [diff] [blame] | 284 | err = cn_printf(cn, "%d", |
| 285 | cprm->siginfo->si_signo); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 286 | break; |
| 287 | /* UNIX time of coredump */ |
| 288 | case 't': { |
Arnd Bergmann | 03927c8 | 2015-11-25 16:22:25 +0100 | [diff] [blame] | 289 | time64_t time; |
| 290 | |
| 291 | time = ktime_get_real_seconds(); |
| 292 | err = cn_printf(cn, "%lld", time); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 293 | break; |
| 294 | } |
| 295 | /* hostname */ |
Oleg Nesterov | 923bed03 | 2013-07-03 15:08:20 -0700 | [diff] [blame] | 296 | case 'h': |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 297 | down_read(&uts_sem); |
Oleg Nesterov | 923bed03 | 2013-07-03 15:08:20 -0700 | [diff] [blame] | 298 | err = cn_esc_printf(cn, "%s", |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 299 | utsname()->nodename); |
| 300 | up_read(&uts_sem); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 301 | break; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 302 | /* executable */ |
Oleg Nesterov | 923bed03 | 2013-07-03 15:08:20 -0700 | [diff] [blame] | 303 | case 'e': |
| 304 | err = cn_esc_printf(cn, "%s", current->comm); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 305 | break; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 306 | case 'E': |
| 307 | err = cn_print_exe_file(cn); |
| 308 | break; |
| 309 | /* core limit size */ |
| 310 | case 'c': |
| 311 | err = cn_printf(cn, "%lu", |
| 312 | rlimit(RLIMIT_CORE)); |
| 313 | break; |
| 314 | default: |
| 315 | break; |
| 316 | } |
| 317 | ++pat_ptr; |
| 318 | } |
| 319 | |
| 320 | if (err) |
| 321 | return err; |
| 322 | } |
| 323 | |
Oleg Nesterov | 888ffc5 | 2013-07-03 15:08:23 -0700 | [diff] [blame] | 324 | out: |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 325 | /* Backward compatibility with core_uses_pid: |
| 326 | * |
| 327 | * If core_pattern does not include a %p (as is the default) |
| 328 | * and core_uses_pid is set, then .%pid will be appended to |
| 329 | * the filename. Do not do this for piped commands. */ |
| 330 | if (!ispipe && !pid_in_pattern && core_uses_pid) { |
| 331 | err = cn_printf(cn, ".%d", task_tgid_vnr(current)); |
| 332 | if (err) |
| 333 | return err; |
| 334 | } |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 335 | return ispipe; |
| 336 | } |
| 337 | |
Oleg Nesterov | 5fa534c | 2015-11-06 16:32:31 -0800 | [diff] [blame] | 338 | static int zap_process(struct task_struct *start, int exit_code, int flags) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 339 | { |
| 340 | struct task_struct *t; |
| 341 | int nr = 0; |
| 342 | |
Oleg Nesterov | 5fa534c | 2015-11-06 16:32:31 -0800 | [diff] [blame] | 343 | /* ignore all signals except SIGKILL, see prepare_signal() */ |
| 344 | start->signal->flags = SIGNAL_GROUP_COREDUMP | flags; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 345 | start->signal->group_exit_code = exit_code; |
| 346 | start->signal->group_stop_count = 0; |
| 347 | |
Oleg Nesterov | d61ba58 | 2015-11-06 16:32:34 -0800 | [diff] [blame] | 348 | for_each_thread(start, t) { |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 349 | task_clear_jobctl_pending(t, JOBCTL_PENDING_MASK); |
| 350 | if (t != current && t->mm) { |
| 351 | sigaddset(&t->pending.signal, SIGKILL); |
| 352 | signal_wake_up(t, 1); |
| 353 | nr++; |
| 354 | } |
Oleg Nesterov | d61ba58 | 2015-11-06 16:32:34 -0800 | [diff] [blame] | 355 | } |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 356 | |
| 357 | return nr; |
| 358 | } |
| 359 | |
Oleg Nesterov | 403bad7 | 2013-04-30 15:28:10 -0700 | [diff] [blame] | 360 | static int zap_threads(struct task_struct *tsk, struct mm_struct *mm, |
| 361 | struct core_state *core_state, int exit_code) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 362 | { |
| 363 | struct task_struct *g, *p; |
| 364 | unsigned long flags; |
| 365 | int nr = -EAGAIN; |
| 366 | |
| 367 | spin_lock_irq(&tsk->sighand->siglock); |
| 368 | if (!signal_group_exit(tsk->signal)) { |
| 369 | mm->core_state = core_state; |
Oleg Nesterov | 6cd8f0a | 2013-04-30 15:28:12 -0700 | [diff] [blame] | 370 | tsk->signal->group_exit_task = tsk; |
Oleg Nesterov | 5fa534c | 2015-11-06 16:32:31 -0800 | [diff] [blame] | 371 | nr = zap_process(tsk, exit_code, 0); |
Oleg Nesterov | 403bad7 | 2013-04-30 15:28:10 -0700 | [diff] [blame] | 372 | clear_tsk_thread_flag(tsk, TIF_SIGPENDING); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 373 | } |
| 374 | spin_unlock_irq(&tsk->sighand->siglock); |
| 375 | if (unlikely(nr < 0)) |
| 376 | return nr; |
| 377 | |
Silesh C V | aed8adb | 2014-07-23 13:59:59 -0700 | [diff] [blame] | 378 | tsk->flags |= PF_DUMPCORE; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 379 | if (atomic_read(&mm->mm_users) == nr + 1) |
| 380 | goto done; |
| 381 | /* |
| 382 | * We should find and kill all tasks which use this mm, and we should |
| 383 | * count them correctly into ->nr_threads. We don't take tasklist |
| 384 | * lock, but this is safe wrt: |
| 385 | * |
| 386 | * fork: |
| 387 | * None of sub-threads can fork after zap_process(leader). All |
| 388 | * processes which were created before this point should be |
| 389 | * visible to zap_threads() because copy_process() adds the new |
| 390 | * process to the tail of init_task.tasks list, and lock/unlock |
| 391 | * of ->siglock provides a memory barrier. |
| 392 | * |
| 393 | * do_exit: |
| 394 | * The caller holds mm->mmap_sem. This means that the task which |
| 395 | * uses this mm can't pass exit_mm(), so it can't exit or clear |
| 396 | * its ->mm. |
| 397 | * |
| 398 | * de_thread: |
| 399 | * It does list_replace_rcu(&leader->tasks, ¤t->tasks), |
| 400 | * we must see either old or new leader, this does not matter. |
| 401 | * However, it can change p->sighand, so lock_task_sighand(p) |
| 402 | * must be used. Since p->mm != NULL and we hold ->mmap_sem |
| 403 | * it can't fail. |
| 404 | * |
| 405 | * Note also that "g" can be the old leader with ->mm == NULL |
| 406 | * and already unhashed and thus removed from ->thread_group. |
| 407 | * This is OK, __unhash_process()->list_del_rcu() does not |
| 408 | * clear the ->next pointer, we will find the new leader via |
| 409 | * next_thread(). |
| 410 | */ |
| 411 | rcu_read_lock(); |
| 412 | for_each_process(g) { |
| 413 | if (g == tsk->group_leader) |
| 414 | continue; |
| 415 | if (g->flags & PF_KTHREAD) |
| 416 | continue; |
Oleg Nesterov | d61ba58 | 2015-11-06 16:32:34 -0800 | [diff] [blame] | 417 | |
| 418 | for_each_thread(g, p) { |
| 419 | if (unlikely(!p->mm)) |
| 420 | continue; |
| 421 | if (unlikely(p->mm == mm)) { |
| 422 | lock_task_sighand(p, &flags); |
| 423 | nr += zap_process(p, exit_code, |
| 424 | SIGNAL_GROUP_EXIT); |
| 425 | unlock_task_sighand(p, &flags); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 426 | } |
Oleg Nesterov | d61ba58 | 2015-11-06 16:32:34 -0800 | [diff] [blame] | 427 | break; |
| 428 | } |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 429 | } |
| 430 | rcu_read_unlock(); |
| 431 | done: |
| 432 | atomic_set(&core_state->nr_threads, nr); |
| 433 | return nr; |
| 434 | } |
| 435 | |
| 436 | static int coredump_wait(int exit_code, struct core_state *core_state) |
| 437 | { |
| 438 | struct task_struct *tsk = current; |
| 439 | struct mm_struct *mm = tsk->mm; |
| 440 | int core_waiters = -EBUSY; |
| 441 | |
| 442 | init_completion(&core_state->startup); |
| 443 | core_state->dumper.task = tsk; |
| 444 | core_state->dumper.next = NULL; |
| 445 | |
Michal Hocko | 4136c26 | 2016-05-23 16:25:57 -0700 | [diff] [blame] | 446 | if (down_write_killable(&mm->mmap_sem)) |
| 447 | return -EINTR; |
| 448 | |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 449 | if (!mm->core_state) |
| 450 | core_waiters = zap_threads(tsk, mm, core_state, exit_code); |
| 451 | up_write(&mm->mmap_sem); |
| 452 | |
| 453 | if (core_waiters > 0) { |
| 454 | struct core_thread *ptr; |
| 455 | |
Andrey Ryabinin | 70d78fe | 2016-11-10 10:46:38 -0800 | [diff] [blame] | 456 | freezer_do_not_count(); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 457 | wait_for_completion(&core_state->startup); |
Andrey Ryabinin | 70d78fe | 2016-11-10 10:46:38 -0800 | [diff] [blame] | 458 | freezer_count(); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 459 | /* |
| 460 | * Wait for all the threads to become inactive, so that |
| 461 | * all the thread context (extended register state, like |
| 462 | * fpu etc) gets copied to the memory. |
| 463 | */ |
| 464 | ptr = core_state->dumper.next; |
| 465 | while (ptr != NULL) { |
| 466 | wait_task_inactive(ptr->task, 0); |
| 467 | ptr = ptr->next; |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | return core_waiters; |
| 472 | } |
| 473 | |
Oleg Nesterov | acdedd9 | 2013-04-30 15:28:13 -0700 | [diff] [blame] | 474 | static void coredump_finish(struct mm_struct *mm, bool core_dumped) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 475 | { |
| 476 | struct core_thread *curr, *next; |
| 477 | struct task_struct *task; |
| 478 | |
Oleg Nesterov | 6cd8f0a | 2013-04-30 15:28:12 -0700 | [diff] [blame] | 479 | spin_lock_irq(¤t->sighand->siglock); |
Oleg Nesterov | acdedd9 | 2013-04-30 15:28:13 -0700 | [diff] [blame] | 480 | if (core_dumped && !__fatal_signal_pending(current)) |
| 481 | current->signal->group_exit_code |= 0x80; |
Oleg Nesterov | 6cd8f0a | 2013-04-30 15:28:12 -0700 | [diff] [blame] | 482 | current->signal->group_exit_task = NULL; |
| 483 | current->signal->flags = SIGNAL_GROUP_EXIT; |
| 484 | spin_unlock_irq(¤t->sighand->siglock); |
| 485 | |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 486 | next = mm->core_state->dumper.next; |
| 487 | while ((curr = next) != NULL) { |
| 488 | next = curr->next; |
| 489 | task = curr->task; |
| 490 | /* |
| 491 | * see exit_mm(), curr->task must not see |
| 492 | * ->task == NULL before we read ->next. |
| 493 | */ |
| 494 | smp_mb(); |
| 495 | curr->task = NULL; |
| 496 | wake_up_process(task); |
| 497 | } |
| 498 | |
| 499 | mm->core_state = NULL; |
| 500 | } |
| 501 | |
Oleg Nesterov | 528f827 | 2013-04-30 15:28:15 -0700 | [diff] [blame] | 502 | static bool dump_interrupted(void) |
| 503 | { |
| 504 | /* |
| 505 | * SIGKILL or freezing() interrupt the coredumping. Perhaps we |
| 506 | * can do try_to_freeze() and check __fatal_signal_pending(), |
| 507 | * but then we need to teach dump_write() to restart and clear |
| 508 | * TIF_SIGPENDING. |
| 509 | */ |
| 510 | return signal_pending(current); |
| 511 | } |
| 512 | |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 513 | static void wait_for_dump_helpers(struct file *file) |
| 514 | { |
Al Viro | de32ec4 | 2013-03-21 11:16:56 -0400 | [diff] [blame] | 515 | struct pipe_inode_info *pipe = file->private_data; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 516 | |
| 517 | pipe_lock(pipe); |
| 518 | pipe->readers++; |
| 519 | pipe->writers--; |
Oleg Nesterov | dc7ee2a | 2013-04-30 15:28:17 -0700 | [diff] [blame] | 520 | wake_up_interruptible_sync(&pipe->wait); |
| 521 | kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN); |
| 522 | pipe_unlock(pipe); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 523 | |
Oleg Nesterov | dc7ee2a | 2013-04-30 15:28:17 -0700 | [diff] [blame] | 524 | /* |
| 525 | * We actually want wait_event_freezable() but then we need |
| 526 | * to clear TIF_SIGPENDING and improve dump_interrupted(). |
| 527 | */ |
| 528 | wait_event_interruptible(pipe->wait, pipe->readers == 1); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 529 | |
Oleg Nesterov | dc7ee2a | 2013-04-30 15:28:17 -0700 | [diff] [blame] | 530 | pipe_lock(pipe); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 531 | pipe->readers--; |
| 532 | pipe->writers++; |
| 533 | pipe_unlock(pipe); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | /* |
| 537 | * umh_pipe_setup |
| 538 | * helper function to customize the process used |
| 539 | * to collect the core in userspace. Specifically |
| 540 | * it sets up a pipe and installs it as fd 0 (stdin) |
| 541 | * for the process. Returns 0 on success, or |
| 542 | * PTR_ERR on failure. |
| 543 | * Note that it also sets the core limit to 1. This |
| 544 | * is a special value that we use to trap recursive |
| 545 | * core dumps |
| 546 | */ |
| 547 | static int umh_pipe_setup(struct subprocess_info *info, struct cred *new) |
| 548 | { |
| 549 | struct file *files[2]; |
| 550 | struct coredump_params *cp = (struct coredump_params *)info->data; |
| 551 | int err = create_pipe_files(files, 0); |
| 552 | if (err) |
| 553 | return err; |
| 554 | |
| 555 | cp->file = files[1]; |
| 556 | |
Al Viro | 45525b2 | 2012-10-16 13:30:07 -0400 | [diff] [blame] | 557 | err = replace_fd(0, files[0], 0); |
| 558 | fput(files[0]); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 559 | /* and disallow core files too */ |
| 560 | current->signal->rlim[RLIMIT_CORE] = (struct rlimit){1, 1}; |
| 561 | |
Al Viro | 45525b2 | 2012-10-16 13:30:07 -0400 | [diff] [blame] | 562 | return err; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 563 | } |
| 564 | |
Eric W. Biederman | ae7795b | 2018-09-25 11:27:20 +0200 | [diff] [blame] | 565 | void do_coredump(const kernel_siginfo_t *siginfo) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 566 | { |
| 567 | struct core_state core_state; |
| 568 | struct core_name cn; |
| 569 | struct mm_struct *mm = current->mm; |
| 570 | struct linux_binfmt * binfmt; |
| 571 | const struct cred *old_cred; |
| 572 | struct cred *cred; |
| 573 | int retval = 0; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 574 | int ispipe; |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 575 | size_t *argv = NULL; |
| 576 | int argc = 0; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 577 | struct files_struct *displaced; |
Jann Horn | fbb1816 | 2015-09-09 15:38:28 -0700 | [diff] [blame] | 578 | /* require nonrelative corefile path and be extra careful */ |
| 579 | bool need_suid_safe = false; |
Oleg Nesterov | acdedd9 | 2013-04-30 15:28:13 -0700 | [diff] [blame] | 580 | bool core_dumped = false; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 581 | static atomic_t core_dump_count = ATOMIC_INIT(0); |
| 582 | struct coredump_params cprm = { |
Denys Vlasenko | 5ab1c30 | 2012-10-04 17:15:29 -0700 | [diff] [blame] | 583 | .siginfo = siginfo, |
Al Viro | 541880d | 2012-11-05 13:11:26 -0500 | [diff] [blame] | 584 | .regs = signal_pt_regs(), |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 585 | .limit = rlimit(RLIMIT_CORE), |
| 586 | /* |
| 587 | * We must use the same mm->flags while dumping core to avoid |
| 588 | * inconsistency of bit flags, since this flag is not protected |
| 589 | * by any locks. |
| 590 | */ |
| 591 | .mm_flags = mm->flags, |
| 592 | }; |
| 593 | |
Denys Vlasenko | 5ab1c30 | 2012-10-04 17:15:29 -0700 | [diff] [blame] | 594 | audit_core_dumps(siginfo->si_signo); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 595 | |
| 596 | binfmt = mm->binfmt; |
| 597 | if (!binfmt || !binfmt->core_dump) |
| 598 | goto fail; |
| 599 | if (!__get_dumpable(cprm.mm_flags)) |
| 600 | goto fail; |
| 601 | |
| 602 | cred = prepare_creds(); |
| 603 | if (!cred) |
| 604 | goto fail; |
| 605 | /* |
| 606 | * We cannot trust fsuid as being the "true" uid of the process |
| 607 | * nor do we know its entire history. We only know it was tainted |
| 608 | * so we dump it as root in mode 2, and only into a controlled |
| 609 | * environment (pipe handler or fully qualified path). |
| 610 | */ |
Kees Cook | e579d2c | 2013-02-27 17:03:15 -0800 | [diff] [blame] | 611 | if (__get_dumpable(cprm.mm_flags) == SUID_DUMP_ROOT) { |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 612 | /* Setuid core dump mode */ |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 613 | cred->fsuid = GLOBAL_ROOT_UID; /* Dump root private */ |
Jann Horn | fbb1816 | 2015-09-09 15:38:28 -0700 | [diff] [blame] | 614 | need_suid_safe = true; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 615 | } |
| 616 | |
Denys Vlasenko | 5ab1c30 | 2012-10-04 17:15:29 -0700 | [diff] [blame] | 617 | retval = coredump_wait(siginfo->si_signo, &core_state); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 618 | if (retval < 0) |
| 619 | goto fail_creds; |
| 620 | |
| 621 | old_cred = override_creds(cred); |
| 622 | |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 623 | ispipe = format_corename(&cn, &cprm, &argv, &argc); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 624 | |
Lucas De Marchi | fb96c47 | 2013-04-30 15:28:06 -0700 | [diff] [blame] | 625 | if (ispipe) { |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 626 | int argi; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 627 | int dump_count; |
| 628 | char **helper_argv; |
Lucas De Marchi | 907ed13 | 2013-04-30 15:28:07 -0700 | [diff] [blame] | 629 | struct subprocess_info *sub_info; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 630 | |
| 631 | if (ispipe < 0) { |
| 632 | printk(KERN_WARNING "format_corename failed\n"); |
| 633 | printk(KERN_WARNING "Aborting core\n"); |
Oleg Nesterov | e7fd154 | 2013-07-03 15:08:16 -0700 | [diff] [blame] | 634 | goto fail_unlock; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | if (cprm.limit == 1) { |
| 638 | /* See umh_pipe_setup() which sets RLIMIT_CORE = 1. |
| 639 | * |
| 640 | * Normally core limits are irrelevant to pipes, since |
| 641 | * we're not writing to the file system, but we use |
Bastien Nocera | fcbc32b | 2015-02-05 14:35:05 +0100 | [diff] [blame] | 642 | * cprm.limit of 1 here as a special value, this is a |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 643 | * consistent way to catch recursive crashes. |
| 644 | * We can still crash if the core_pattern binary sets |
| 645 | * RLIM_CORE = !1, but it runs as root, and can do |
| 646 | * lots of stupid things. |
| 647 | * |
| 648 | * Note that we use task_tgid_vnr here to grab the pid |
| 649 | * of the process group leader. That way we get the |
| 650 | * right pid if a thread in a multi-threaded |
| 651 | * core_pattern process dies. |
| 652 | */ |
| 653 | printk(KERN_WARNING |
| 654 | "Process %d(%s) has RLIMIT_CORE set to 1\n", |
| 655 | task_tgid_vnr(current), current->comm); |
| 656 | printk(KERN_WARNING "Aborting core\n"); |
| 657 | goto fail_unlock; |
| 658 | } |
| 659 | cprm.limit = RLIM_INFINITY; |
| 660 | |
| 661 | dump_count = atomic_inc_return(&core_dump_count); |
| 662 | if (core_pipe_limit && (core_pipe_limit < dump_count)) { |
| 663 | printk(KERN_WARNING "Pid %d(%s) over core_pipe_limit\n", |
| 664 | task_tgid_vnr(current), current->comm); |
| 665 | printk(KERN_WARNING "Skipping core dump\n"); |
| 666 | goto fail_dropcount; |
| 667 | } |
| 668 | |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 669 | helper_argv = kmalloc_array(argc + 1, sizeof(*helper_argv), |
| 670 | GFP_KERNEL); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 671 | if (!helper_argv) { |
| 672 | printk(KERN_WARNING "%s failed to allocate memory\n", |
| 673 | __func__); |
| 674 | goto fail_dropcount; |
| 675 | } |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 676 | for (argi = 0; argi < argc; argi++) |
| 677 | helper_argv[argi] = cn.corename + argv[argi]; |
| 678 | helper_argv[argi] = NULL; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 679 | |
Lucas De Marchi | 907ed13 | 2013-04-30 15:28:07 -0700 | [diff] [blame] | 680 | retval = -ENOMEM; |
| 681 | sub_info = call_usermodehelper_setup(helper_argv[0], |
| 682 | helper_argv, NULL, GFP_KERNEL, |
| 683 | umh_pipe_setup, NULL, &cprm); |
| 684 | if (sub_info) |
| 685 | retval = call_usermodehelper_exec(sub_info, |
| 686 | UMH_WAIT_EXEC); |
| 687 | |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 688 | kfree(helper_argv); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 689 | if (retval) { |
Oleg Nesterov | 888ffc5 | 2013-07-03 15:08:23 -0700 | [diff] [blame] | 690 | printk(KERN_INFO "Core dump to |%s pipe failed\n", |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 691 | cn.corename); |
| 692 | goto close_fail; |
Lucas De Marchi | fb96c47 | 2013-04-30 15:28:06 -0700 | [diff] [blame] | 693 | } |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 694 | } else { |
| 695 | struct inode *inode; |
Jann Horn | 378c652 | 2016-03-22 14:25:36 -0700 | [diff] [blame] | 696 | int open_flags = O_CREAT | O_RDWR | O_NOFOLLOW | |
| 697 | O_LARGEFILE | O_EXCL; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 698 | |
| 699 | if (cprm.limit < binfmt->min_coredump) |
| 700 | goto fail_unlock; |
| 701 | |
Jann Horn | fbb1816 | 2015-09-09 15:38:28 -0700 | [diff] [blame] | 702 | if (need_suid_safe && cn.corename[0] != '/') { |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 703 | printk(KERN_WARNING "Pid %d(%s) can only dump core "\ |
| 704 | "to fully qualified path!\n", |
| 705 | task_tgid_vnr(current), current->comm); |
| 706 | printk(KERN_WARNING "Skipping core dump\n"); |
| 707 | goto fail_unlock; |
| 708 | } |
| 709 | |
Jann Horn | fbb1816 | 2015-09-09 15:38:28 -0700 | [diff] [blame] | 710 | /* |
| 711 | * Unlink the file if it exists unless this is a SUID |
| 712 | * binary - in that case, we're running around with root |
| 713 | * privs and don't want to unlink another user's coredump. |
| 714 | */ |
| 715 | if (!need_suid_safe) { |
Jann Horn | fbb1816 | 2015-09-09 15:38:28 -0700 | [diff] [blame] | 716 | /* |
| 717 | * If it doesn't exist, that's fine. If there's some |
| 718 | * other problem, we'll catch it at the filp_open(). |
| 719 | */ |
Christoph Hellwig | 9627165 | 2017-11-04 13:44:46 +0300 | [diff] [blame] | 720 | do_unlinkat(AT_FDCWD, getname_kernel(cn.corename)); |
Jann Horn | fbb1816 | 2015-09-09 15:38:28 -0700 | [diff] [blame] | 721 | } |
| 722 | |
| 723 | /* |
| 724 | * There is a race between unlinking and creating the |
| 725 | * file, but if that causes an EEXIST here, that's |
| 726 | * fine - another process raced with us while creating |
| 727 | * the corefile, and the other process won. To userspace, |
| 728 | * what matters is that at least one of the two processes |
| 729 | * writes its coredump successfully, not which one. |
| 730 | */ |
Jann Horn | 378c652 | 2016-03-22 14:25:36 -0700 | [diff] [blame] | 731 | if (need_suid_safe) { |
| 732 | /* |
| 733 | * Using user namespaces, normal user tasks can change |
| 734 | * their current->fs->root to point to arbitrary |
| 735 | * directories. Since the intention of the "only dump |
| 736 | * with a fully qualified path" rule is to control where |
| 737 | * coredumps may be placed using root privileges, |
| 738 | * current->fs->root must not be used. Instead, use the |
| 739 | * root directory of init_task. |
| 740 | */ |
| 741 | struct path root; |
| 742 | |
| 743 | task_lock(&init_task); |
| 744 | get_fs_root(init_task.fs, &root); |
| 745 | task_unlock(&init_task); |
| 746 | cprm.file = file_open_root(root.dentry, root.mnt, |
| 747 | cn.corename, open_flags, 0600); |
| 748 | path_put(&root); |
| 749 | } else { |
| 750 | cprm.file = filp_open(cn.corename, open_flags, 0600); |
| 751 | } |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 752 | if (IS_ERR(cprm.file)) |
| 753 | goto fail_unlock; |
| 754 | |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 755 | inode = file_inode(cprm.file); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 756 | if (inode->i_nlink > 1) |
| 757 | goto close_fail; |
| 758 | if (d_unhashed(cprm.file->f_path.dentry)) |
| 759 | goto close_fail; |
| 760 | /* |
| 761 | * AK: actually i see no reason to not allow this for named |
| 762 | * pipes etc, but keep the previous behaviour for now. |
| 763 | */ |
| 764 | if (!S_ISREG(inode->i_mode)) |
| 765 | goto close_fail; |
| 766 | /* |
Jann Horn | 40f705a | 2015-09-09 15:38:30 -0700 | [diff] [blame] | 767 | * Don't dump core if the filesystem changed owner or mode |
| 768 | * of the file during file creation. This is an issue when |
| 769 | * a process dumps core while its cwd is e.g. on a vfat |
| 770 | * filesystem. |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 771 | */ |
| 772 | if (!uid_eq(inode->i_uid, current_fsuid())) |
| 773 | goto close_fail; |
Jann Horn | 40f705a | 2015-09-09 15:38:30 -0700 | [diff] [blame] | 774 | if ((inode->i_mode & 0677) != 0600) |
| 775 | goto close_fail; |
Al Viro | 86cc058 | 2015-04-03 15:23:17 -0400 | [diff] [blame] | 776 | if (!(cprm.file->f_mode & FMODE_CAN_WRITE)) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 777 | goto close_fail; |
| 778 | if (do_truncate(cprm.file->f_path.dentry, 0, 0, cprm.file)) |
| 779 | goto close_fail; |
| 780 | } |
| 781 | |
| 782 | /* get us an unshared descriptor table; almost always a no-op */ |
| 783 | retval = unshare_files(&displaced); |
| 784 | if (retval) |
| 785 | goto close_fail; |
| 786 | if (displaced) |
| 787 | put_files_struct(displaced); |
Al Viro | e86d35c | 2013-05-04 14:45:54 -0400 | [diff] [blame] | 788 | if (!dump_interrupted()) { |
| 789 | file_start_write(cprm.file); |
| 790 | core_dumped = binfmt->core_dump(&cprm); |
| 791 | file_end_write(cprm.file); |
| 792 | } |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 793 | if (ispipe && core_pipe_limit) |
| 794 | wait_for_dump_helpers(cprm.file); |
| 795 | close_fail: |
| 796 | if (cprm.file) |
| 797 | filp_close(cprm.file, NULL); |
| 798 | fail_dropcount: |
| 799 | if (ispipe) |
| 800 | atomic_dec(&core_dump_count); |
| 801 | fail_unlock: |
Paul Wise | 315c692 | 2019-08-02 21:49:05 -0700 | [diff] [blame^] | 802 | kfree(argv); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 803 | kfree(cn.corename); |
Oleg Nesterov | acdedd9 | 2013-04-30 15:28:13 -0700 | [diff] [blame] | 804 | coredump_finish(mm, core_dumped); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 805 | revert_creds(old_cred); |
| 806 | fail_creds: |
| 807 | put_cred(cred); |
| 808 | fail: |
| 809 | return; |
| 810 | } |
| 811 | |
| 812 | /* |
| 813 | * Core dumping helper functions. These are the only things you should |
| 814 | * do on a core-file: use only these functions to write out all the |
| 815 | * necessary info. |
| 816 | */ |
Al Viro | ecc8c77 | 2013-10-05 15:32:35 -0400 | [diff] [blame] | 817 | int dump_emit(struct coredump_params *cprm, const void *addr, int nr) |
| 818 | { |
| 819 | struct file *file = cprm->file; |
Al Viro | 2507a4f | 2013-10-08 09:11:48 -0400 | [diff] [blame] | 820 | loff_t pos = file->f_pos; |
| 821 | ssize_t n; |
Omar Sandoval | 2c4cb04 | 2016-05-11 15:16:37 -0700 | [diff] [blame] | 822 | if (cprm->written + nr > cprm->limit) |
Al Viro | ecc8c77 | 2013-10-05 15:32:35 -0400 | [diff] [blame] | 823 | return 0; |
Al Viro | 2507a4f | 2013-10-08 09:11:48 -0400 | [diff] [blame] | 824 | while (nr) { |
| 825 | if (dump_interrupted()) |
| 826 | return 0; |
Al Viro | 52da40a | 2013-11-15 21:58:33 -0500 | [diff] [blame] | 827 | n = __kernel_write(file, addr, nr, &pos); |
Al Viro | 2507a4f | 2013-10-08 09:11:48 -0400 | [diff] [blame] | 828 | if (n <= 0) |
| 829 | return 0; |
| 830 | file->f_pos = pos; |
Omar Sandoval | 2c4cb04 | 2016-05-11 15:16:37 -0700 | [diff] [blame] | 831 | cprm->written += n; |
Mateusz Guzik | 1607f09 | 2016-06-05 23:14:14 +0200 | [diff] [blame] | 832 | cprm->pos += n; |
Al Viro | 2507a4f | 2013-10-08 09:11:48 -0400 | [diff] [blame] | 833 | nr -= n; |
| 834 | } |
Al Viro | ecc8c77 | 2013-10-05 15:32:35 -0400 | [diff] [blame] | 835 | return 1; |
| 836 | } |
| 837 | EXPORT_SYMBOL(dump_emit); |
| 838 | |
Al Viro | 9b56d54 | 2013-10-08 09:26:08 -0400 | [diff] [blame] | 839 | int dump_skip(struct coredump_params *cprm, size_t nr) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 840 | { |
Al Viro | 9b56d54 | 2013-10-08 09:26:08 -0400 | [diff] [blame] | 841 | static char zeroes[PAGE_SIZE]; |
| 842 | struct file *file = cprm->file; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 843 | if (file->f_op->llseek && file->f_op->llseek != no_llseek) { |
Oleg Nesterov | 528f827 | 2013-04-30 15:28:15 -0700 | [diff] [blame] | 844 | if (dump_interrupted() || |
Al Viro | 9b56d54 | 2013-10-08 09:26:08 -0400 | [diff] [blame] | 845 | file->f_op->llseek(file, nr, SEEK_CUR) < 0) |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 846 | return 0; |
Mateusz Guzik | 1607f09 | 2016-06-05 23:14:14 +0200 | [diff] [blame] | 847 | cprm->pos += nr; |
Al Viro | 9b56d54 | 2013-10-08 09:26:08 -0400 | [diff] [blame] | 848 | return 1; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 849 | } else { |
Al Viro | 9b56d54 | 2013-10-08 09:26:08 -0400 | [diff] [blame] | 850 | while (nr > PAGE_SIZE) { |
| 851 | if (!dump_emit(cprm, zeroes, PAGE_SIZE)) |
| 852 | return 0; |
| 853 | nr -= PAGE_SIZE; |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 854 | } |
Al Viro | 9b56d54 | 2013-10-08 09:26:08 -0400 | [diff] [blame] | 855 | return dump_emit(cprm, zeroes, nr); |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 856 | } |
Alex Kelly | 10c28d9 | 2012-09-26 21:52:08 -0400 | [diff] [blame] | 857 | } |
Al Viro | 9b56d54 | 2013-10-08 09:26:08 -0400 | [diff] [blame] | 858 | EXPORT_SYMBOL(dump_skip); |
Al Viro | 22a8cb8 | 2013-10-08 11:05:01 -0400 | [diff] [blame] | 859 | |
| 860 | int dump_align(struct coredump_params *cprm, int align) |
| 861 | { |
Mateusz Guzik | 1607f09 | 2016-06-05 23:14:14 +0200 | [diff] [blame] | 862 | unsigned mod = cprm->pos & (align - 1); |
Al Viro | 22a8cb8 | 2013-10-08 11:05:01 -0400 | [diff] [blame] | 863 | if (align & (align - 1)) |
Al Viro | db51242 | 2013-11-15 21:55:52 -0500 | [diff] [blame] | 864 | return 0; |
| 865 | return mod ? dump_skip(cprm, align - mod) : 1; |
Al Viro | 22a8cb8 | 2013-10-08 11:05:01 -0400 | [diff] [blame] | 866 | } |
| 867 | EXPORT_SYMBOL(dump_align); |
Dave Kleikamp | 4d22c75 | 2017-01-11 13:25:00 -0600 | [diff] [blame] | 868 | |
| 869 | /* |
| 870 | * Ensures that file size is big enough to contain the current file |
| 871 | * postion. This prevents gdb from complaining about a truncated file |
| 872 | * if the last "write" to the file was dump_skip. |
| 873 | */ |
| 874 | void dump_truncate(struct coredump_params *cprm) |
| 875 | { |
| 876 | struct file *file = cprm->file; |
| 877 | loff_t offset; |
| 878 | |
| 879 | if (file->f_op->llseek && file->f_op->llseek != no_llseek) { |
| 880 | offset = file->f_op->llseek(file, 0, SEEK_CUR); |
| 881 | if (i_size_read(file->f_mapping->host) < offset) |
| 882 | do_truncate(file->f_path.dentry, offset, 0, file); |
| 883 | } |
| 884 | } |
| 885 | EXPORT_SYMBOL(dump_truncate); |