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