blob: b3c153ca435d24fdbdfcb909228b6b4787bb63f2 [file] [log] [blame]
Alex Kelly10c28d92012-09-26 21:52:08 -04001#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 Kelly179899f2012-10-04 17:15:24 -070017#include <linux/coredump.h>
Alex Kelly10c28d92012-09-26 21:52:08 -040018#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 Bergmann03927c82015-11-25 16:22:25 +010035#include <linux/timekeeping.h>
Alex Kelly10c28d92012-09-26 21:52:08 -040036
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 Kelly10c28d92012-09-26 21:52:08 -040044
45#include <trace/events/sched.h>
46
47int core_uses_pid;
Alex Kelly10c28d92012-09-26 21:52:08 -040048unsigned int core_pipe_limit;
Oleg Nesterov3ceadcf2013-07-03 15:08:22 -070049char core_pattern[CORENAME_MAX_SIZE] = "core";
50static int core_name_size = CORENAME_MAX_SIZE;
Alex Kelly10c28d92012-09-26 21:52:08 -040051
52struct core_name {
53 char *corename;
54 int used, size;
55};
Alex Kelly10c28d92012-09-26 21:52:08 -040056
57/* The maximal length of core_pattern is also specified in sysctl.c */
58
Oleg Nesterov3ceadcf2013-07-03 15:08:22 -070059static int expand_corename(struct core_name *cn, int size)
Alex Kelly10c28d92012-09-26 21:52:08 -040060{
Oleg Nesterove7fd1542013-07-03 15:08:16 -070061 char *corename = krealloc(cn->corename, size, GFP_KERNEL);
Alex Kelly10c28d92012-09-26 21:52:08 -040062
Oleg Nesterove7fd1542013-07-03 15:08:16 -070063 if (!corename)
Alex Kelly10c28d92012-09-26 21:52:08 -040064 return -ENOMEM;
Alex Kelly10c28d92012-09-26 21:52:08 -040065
Oleg Nesterov3ceadcf2013-07-03 15:08:22 -070066 if (size > core_name_size) /* racy but harmless */
67 core_name_size = size;
68
69 cn->size = ksize(corename);
Oleg Nesterove7fd1542013-07-03 15:08:16 -070070 cn->corename = corename;
Alex Kelly10c28d92012-09-26 21:52:08 -040071 return 0;
72}
73
Nicolas Ioossb4176b72015-06-25 15:03:53 -070074static __printf(2, 0) int cn_vprintf(struct core_name *cn, const char *fmt,
75 va_list arg)
Alex Kelly10c28d92012-09-26 21:52:08 -040076{
Oleg Nesterov5fe9d8c2013-07-03 15:08:19 -070077 int free, need;
Eric Dumazet404ca802014-04-19 10:15:07 -070078 va_list arg_copy;
Alex Kelly10c28d92012-09-26 21:52:08 -040079
Oleg Nesterov5fe9d8c2013-07-03 15:08:19 -070080again:
81 free = cn->size - cn->used;
Eric Dumazet404ca802014-04-19 10:15:07 -070082
83 va_copy(arg_copy, arg);
84 need = vsnprintf(cn->corename + cn->used, free, fmt, arg_copy);
85 va_end(arg_copy);
86
Oleg Nesterov5fe9d8c2013-07-03 15:08:19 -070087 if (need < free) {
88 cn->used += need;
89 return 0;
90 }
Alex Kelly10c28d92012-09-26 21:52:08 -040091
Oleg Nesterov3ceadcf2013-07-03 15:08:22 -070092 if (!expand_corename(cn, cn->size + need - free + 1))
Oleg Nesterov5fe9d8c2013-07-03 15:08:19 -070093 goto again;
Alex Kelly10c28d92012-09-26 21:52:08 -040094
Oleg Nesterov5fe9d8c2013-07-03 15:08:19 -070095 return -ENOMEM;
Alex Kelly10c28d92012-09-26 21:52:08 -040096}
97
Nicolas Ioossb4176b72015-06-25 15:03:53 -070098static __printf(2, 3) int cn_printf(struct core_name *cn, const char *fmt, ...)
Oleg Nesterovbc03c692013-07-03 15:08:17 -070099{
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 Ioossb4176b72015-06-25 15:03:53 -0700110static __printf(2, 3)
111int cn_esc_printf(struct core_name *cn, const char *fmt, ...)
Alex Kelly10c28d92012-09-26 21:52:08 -0400112{
Oleg Nesterov923bed032013-07-03 15:08:20 -0700113 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
121 for (; cur < cn->used; ++cur) {
122 if (cn->corename[cur] == '/')
123 cn->corename[cur] = '!';
124 }
125 return ret;
Alex Kelly10c28d92012-09-26 21:52:08 -0400126}
127
128static int cn_print_exe_file(struct core_name *cn)
129{
130 struct file *exe_file;
131 char *pathbuf, *path;
132 int ret;
133
134 exe_file = get_mm_exe_file(current->mm);
Oleg Nesterov923bed032013-07-03 15:08:20 -0700135 if (!exe_file)
136 return cn_esc_printf(cn, "%s (path unknown)", current->comm);
Alex Kelly10c28d92012-09-26 21:52:08 -0400137
138 pathbuf = kmalloc(PATH_MAX, GFP_TEMPORARY);
139 if (!pathbuf) {
140 ret = -ENOMEM;
141 goto put_exe_file;
142 }
143
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +0200144 path = file_path(exe_file, pathbuf, PATH_MAX);
Alex Kelly10c28d92012-09-26 21:52:08 -0400145 if (IS_ERR(path)) {
146 ret = PTR_ERR(path);
147 goto free_buf;
148 }
149
Oleg Nesterov923bed032013-07-03 15:08:20 -0700150 ret = cn_esc_printf(cn, "%s", path);
Alex Kelly10c28d92012-09-26 21:52:08 -0400151
152free_buf:
153 kfree(pathbuf);
154put_exe_file:
155 fput(exe_file);
156 return ret;
157}
158
159/* format_corename will inspect the pattern parameter, and output a
160 * name into corename, which must have space for at least
161 * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
162 */
Oleg Nesterov12a2b4b2012-10-04 17:15:25 -0700163static int format_corename(struct core_name *cn, struct coredump_params *cprm)
Alex Kelly10c28d92012-09-26 21:52:08 -0400164{
165 const struct cred *cred = current_cred();
166 const char *pat_ptr = core_pattern;
167 int ispipe = (*pat_ptr == '|');
168 int pid_in_pattern = 0;
169 int err = 0;
170
Oleg Nesterove7fd1542013-07-03 15:08:16 -0700171 cn->used = 0;
Oleg Nesterov3ceadcf2013-07-03 15:08:22 -0700172 cn->corename = NULL;
173 if (expand_corename(cn, core_name_size))
Alex Kelly10c28d92012-09-26 21:52:08 -0400174 return -ENOMEM;
Oleg Nesterov888ffc52013-07-03 15:08:23 -0700175 cn->corename[0] = '\0';
176
177 if (ispipe)
178 ++pat_ptr;
Alex Kelly10c28d92012-09-26 21:52:08 -0400179
180 /* Repeat as long as we have more pattern to process and more output
181 space */
182 while (*pat_ptr) {
183 if (*pat_ptr != '%') {
Alex Kelly10c28d92012-09-26 21:52:08 -0400184 err = cn_printf(cn, "%c", *pat_ptr++);
185 } else {
186 switch (*++pat_ptr) {
187 /* single % at the end, drop that */
188 case 0:
189 goto out;
190 /* Double percent, output one percent */
191 case '%':
192 err = cn_printf(cn, "%c", '%');
193 break;
194 /* pid */
195 case 'p':
196 pid_in_pattern = 1;
197 err = cn_printf(cn, "%d",
198 task_tgid_vnr(current));
199 break;
Stéphane Graber65aafb12013-09-11 14:24:32 -0700200 /* global pid */
201 case 'P':
202 err = cn_printf(cn, "%d",
203 task_tgid_nr(current));
204 break;
Oleg Nesterovb03023e2014-10-13 15:53:35 -0700205 case 'i':
206 err = cn_printf(cn, "%d",
207 task_pid_vnr(current));
208 break;
209 case 'I':
210 err = cn_printf(cn, "%d",
211 task_pid_nr(current));
212 break;
Alex Kelly10c28d92012-09-26 21:52:08 -0400213 /* uid */
214 case 'u':
Nicolas Iooss5202efe2015-06-25 15:03:51 -0700215 err = cn_printf(cn, "%u",
216 from_kuid(&init_user_ns,
217 cred->uid));
Alex Kelly10c28d92012-09-26 21:52:08 -0400218 break;
219 /* gid */
220 case 'g':
Nicolas Iooss5202efe2015-06-25 15:03:51 -0700221 err = cn_printf(cn, "%u",
222 from_kgid(&init_user_ns,
223 cred->gid));
Alex Kelly10c28d92012-09-26 21:52:08 -0400224 break;
Oleg Nesterov12a2b4b2012-10-04 17:15:25 -0700225 case 'd':
226 err = cn_printf(cn, "%d",
227 __get_dumpable(cprm->mm_flags));
228 break;
Alex Kelly10c28d92012-09-26 21:52:08 -0400229 /* signal that caused the coredump */
230 case 's':
Nicolas Ioossb4176b72015-06-25 15:03:53 -0700231 err = cn_printf(cn, "%d",
232 cprm->siginfo->si_signo);
Alex Kelly10c28d92012-09-26 21:52:08 -0400233 break;
234 /* UNIX time of coredump */
235 case 't': {
Arnd Bergmann03927c82015-11-25 16:22:25 +0100236 time64_t time;
237
238 time = ktime_get_real_seconds();
239 err = cn_printf(cn, "%lld", time);
Alex Kelly10c28d92012-09-26 21:52:08 -0400240 break;
241 }
242 /* hostname */
Oleg Nesterov923bed032013-07-03 15:08:20 -0700243 case 'h':
Alex Kelly10c28d92012-09-26 21:52:08 -0400244 down_read(&uts_sem);
Oleg Nesterov923bed032013-07-03 15:08:20 -0700245 err = cn_esc_printf(cn, "%s",
Alex Kelly10c28d92012-09-26 21:52:08 -0400246 utsname()->nodename);
247 up_read(&uts_sem);
Alex Kelly10c28d92012-09-26 21:52:08 -0400248 break;
Alex Kelly10c28d92012-09-26 21:52:08 -0400249 /* executable */
Oleg Nesterov923bed032013-07-03 15:08:20 -0700250 case 'e':
251 err = cn_esc_printf(cn, "%s", current->comm);
Alex Kelly10c28d92012-09-26 21:52:08 -0400252 break;
Alex Kelly10c28d92012-09-26 21:52:08 -0400253 case 'E':
254 err = cn_print_exe_file(cn);
255 break;
256 /* core limit size */
257 case 'c':
258 err = cn_printf(cn, "%lu",
259 rlimit(RLIMIT_CORE));
260 break;
261 default:
262 break;
263 }
264 ++pat_ptr;
265 }
266
267 if (err)
268 return err;
269 }
270
Oleg Nesterov888ffc52013-07-03 15:08:23 -0700271out:
Alex Kelly10c28d92012-09-26 21:52:08 -0400272 /* Backward compatibility with core_uses_pid:
273 *
274 * If core_pattern does not include a %p (as is the default)
275 * and core_uses_pid is set, then .%pid will be appended to
276 * the filename. Do not do this for piped commands. */
277 if (!ispipe && !pid_in_pattern && core_uses_pid) {
278 err = cn_printf(cn, ".%d", task_tgid_vnr(current));
279 if (err)
280 return err;
281 }
Alex Kelly10c28d92012-09-26 21:52:08 -0400282 return ispipe;
283}
284
Oleg Nesterov5fa534c2015-11-06 16:32:31 -0800285static int zap_process(struct task_struct *start, int exit_code, int flags)
Alex Kelly10c28d92012-09-26 21:52:08 -0400286{
287 struct task_struct *t;
288 int nr = 0;
289
Oleg Nesterov5fa534c2015-11-06 16:32:31 -0800290 /* ignore all signals except SIGKILL, see prepare_signal() */
291 start->signal->flags = SIGNAL_GROUP_COREDUMP | flags;
Alex Kelly10c28d92012-09-26 21:52:08 -0400292 start->signal->group_exit_code = exit_code;
293 start->signal->group_stop_count = 0;
294
Oleg Nesterovd61ba582015-11-06 16:32:34 -0800295 for_each_thread(start, t) {
Alex Kelly10c28d92012-09-26 21:52:08 -0400296 task_clear_jobctl_pending(t, JOBCTL_PENDING_MASK);
297 if (t != current && t->mm) {
298 sigaddset(&t->pending.signal, SIGKILL);
299 signal_wake_up(t, 1);
300 nr++;
301 }
Oleg Nesterovd61ba582015-11-06 16:32:34 -0800302 }
Alex Kelly10c28d92012-09-26 21:52:08 -0400303
304 return nr;
305}
306
Oleg Nesterov403bad72013-04-30 15:28:10 -0700307static int zap_threads(struct task_struct *tsk, struct mm_struct *mm,
308 struct core_state *core_state, int exit_code)
Alex Kelly10c28d92012-09-26 21:52:08 -0400309{
310 struct task_struct *g, *p;
311 unsigned long flags;
312 int nr = -EAGAIN;
313
314 spin_lock_irq(&tsk->sighand->siglock);
315 if (!signal_group_exit(tsk->signal)) {
316 mm->core_state = core_state;
Oleg Nesterov6cd8f0a2013-04-30 15:28:12 -0700317 tsk->signal->group_exit_task = tsk;
Oleg Nesterov5fa534c2015-11-06 16:32:31 -0800318 nr = zap_process(tsk, exit_code, 0);
Oleg Nesterov403bad72013-04-30 15:28:10 -0700319 clear_tsk_thread_flag(tsk, TIF_SIGPENDING);
Alex Kelly10c28d92012-09-26 21:52:08 -0400320 }
321 spin_unlock_irq(&tsk->sighand->siglock);
322 if (unlikely(nr < 0))
323 return nr;
324
Silesh C Vaed8adb2014-07-23 13:59:59 -0700325 tsk->flags |= PF_DUMPCORE;
Alex Kelly10c28d92012-09-26 21:52:08 -0400326 if (atomic_read(&mm->mm_users) == nr + 1)
327 goto done;
328 /*
329 * We should find and kill all tasks which use this mm, and we should
330 * count them correctly into ->nr_threads. We don't take tasklist
331 * lock, but this is safe wrt:
332 *
333 * fork:
334 * None of sub-threads can fork after zap_process(leader). All
335 * processes which were created before this point should be
336 * visible to zap_threads() because copy_process() adds the new
337 * process to the tail of init_task.tasks list, and lock/unlock
338 * of ->siglock provides a memory barrier.
339 *
340 * do_exit:
341 * The caller holds mm->mmap_sem. This means that the task which
342 * uses this mm can't pass exit_mm(), so it can't exit or clear
343 * its ->mm.
344 *
345 * de_thread:
346 * It does list_replace_rcu(&leader->tasks, &current->tasks),
347 * we must see either old or new leader, this does not matter.
348 * However, it can change p->sighand, so lock_task_sighand(p)
349 * must be used. Since p->mm != NULL and we hold ->mmap_sem
350 * it can't fail.
351 *
352 * Note also that "g" can be the old leader with ->mm == NULL
353 * and already unhashed and thus removed from ->thread_group.
354 * This is OK, __unhash_process()->list_del_rcu() does not
355 * clear the ->next pointer, we will find the new leader via
356 * next_thread().
357 */
358 rcu_read_lock();
359 for_each_process(g) {
360 if (g == tsk->group_leader)
361 continue;
362 if (g->flags & PF_KTHREAD)
363 continue;
Oleg Nesterovd61ba582015-11-06 16:32:34 -0800364
365 for_each_thread(g, p) {
366 if (unlikely(!p->mm))
367 continue;
368 if (unlikely(p->mm == mm)) {
369 lock_task_sighand(p, &flags);
370 nr += zap_process(p, exit_code,
371 SIGNAL_GROUP_EXIT);
372 unlock_task_sighand(p, &flags);
Alex Kelly10c28d92012-09-26 21:52:08 -0400373 }
Oleg Nesterovd61ba582015-11-06 16:32:34 -0800374 break;
375 }
Alex Kelly10c28d92012-09-26 21:52:08 -0400376 }
377 rcu_read_unlock();
378done:
379 atomic_set(&core_state->nr_threads, nr);
380 return nr;
381}
382
383static int coredump_wait(int exit_code, struct core_state *core_state)
384{
385 struct task_struct *tsk = current;
386 struct mm_struct *mm = tsk->mm;
387 int core_waiters = -EBUSY;
388
389 init_completion(&core_state->startup);
390 core_state->dumper.task = tsk;
391 core_state->dumper.next = NULL;
392
393 down_write(&mm->mmap_sem);
394 if (!mm->core_state)
395 core_waiters = zap_threads(tsk, mm, core_state, exit_code);
396 up_write(&mm->mmap_sem);
397
398 if (core_waiters > 0) {
399 struct core_thread *ptr;
400
401 wait_for_completion(&core_state->startup);
402 /*
403 * Wait for all the threads to become inactive, so that
404 * all the thread context (extended register state, like
405 * fpu etc) gets copied to the memory.
406 */
407 ptr = core_state->dumper.next;
408 while (ptr != NULL) {
409 wait_task_inactive(ptr->task, 0);
410 ptr = ptr->next;
411 }
412 }
413
414 return core_waiters;
415}
416
Oleg Nesterovacdedd92013-04-30 15:28:13 -0700417static void coredump_finish(struct mm_struct *mm, bool core_dumped)
Alex Kelly10c28d92012-09-26 21:52:08 -0400418{
419 struct core_thread *curr, *next;
420 struct task_struct *task;
421
Oleg Nesterov6cd8f0a2013-04-30 15:28:12 -0700422 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterovacdedd92013-04-30 15:28:13 -0700423 if (core_dumped && !__fatal_signal_pending(current))
424 current->signal->group_exit_code |= 0x80;
Oleg Nesterov6cd8f0a2013-04-30 15:28:12 -0700425 current->signal->group_exit_task = NULL;
426 current->signal->flags = SIGNAL_GROUP_EXIT;
427 spin_unlock_irq(&current->sighand->siglock);
428
Alex Kelly10c28d92012-09-26 21:52:08 -0400429 next = mm->core_state->dumper.next;
430 while ((curr = next) != NULL) {
431 next = curr->next;
432 task = curr->task;
433 /*
434 * see exit_mm(), curr->task must not see
435 * ->task == NULL before we read ->next.
436 */
437 smp_mb();
438 curr->task = NULL;
439 wake_up_process(task);
440 }
441
442 mm->core_state = NULL;
443}
444
Oleg Nesterov528f8272013-04-30 15:28:15 -0700445static bool dump_interrupted(void)
446{
447 /*
448 * SIGKILL or freezing() interrupt the coredumping. Perhaps we
449 * can do try_to_freeze() and check __fatal_signal_pending(),
450 * but then we need to teach dump_write() to restart and clear
451 * TIF_SIGPENDING.
452 */
453 return signal_pending(current);
454}
455
Alex Kelly10c28d92012-09-26 21:52:08 -0400456static void wait_for_dump_helpers(struct file *file)
457{
Al Virode32ec42013-03-21 11:16:56 -0400458 struct pipe_inode_info *pipe = file->private_data;
Alex Kelly10c28d92012-09-26 21:52:08 -0400459
460 pipe_lock(pipe);
461 pipe->readers++;
462 pipe->writers--;
Oleg Nesterovdc7ee2a2013-04-30 15:28:17 -0700463 wake_up_interruptible_sync(&pipe->wait);
464 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
465 pipe_unlock(pipe);
Alex Kelly10c28d92012-09-26 21:52:08 -0400466
Oleg Nesterovdc7ee2a2013-04-30 15:28:17 -0700467 /*
468 * We actually want wait_event_freezable() but then we need
469 * to clear TIF_SIGPENDING and improve dump_interrupted().
470 */
471 wait_event_interruptible(pipe->wait, pipe->readers == 1);
Alex Kelly10c28d92012-09-26 21:52:08 -0400472
Oleg Nesterovdc7ee2a2013-04-30 15:28:17 -0700473 pipe_lock(pipe);
Alex Kelly10c28d92012-09-26 21:52:08 -0400474 pipe->readers--;
475 pipe->writers++;
476 pipe_unlock(pipe);
Alex Kelly10c28d92012-09-26 21:52:08 -0400477}
478
479/*
480 * umh_pipe_setup
481 * helper function to customize the process used
482 * to collect the core in userspace. Specifically
483 * it sets up a pipe and installs it as fd 0 (stdin)
484 * for the process. Returns 0 on success, or
485 * PTR_ERR on failure.
486 * Note that it also sets the core limit to 1. This
487 * is a special value that we use to trap recursive
488 * core dumps
489 */
490static int umh_pipe_setup(struct subprocess_info *info, struct cred *new)
491{
492 struct file *files[2];
493 struct coredump_params *cp = (struct coredump_params *)info->data;
494 int err = create_pipe_files(files, 0);
495 if (err)
496 return err;
497
498 cp->file = files[1];
499
Al Viro45525b22012-10-16 13:30:07 -0400500 err = replace_fd(0, files[0], 0);
501 fput(files[0]);
Alex Kelly10c28d92012-09-26 21:52:08 -0400502 /* and disallow core files too */
503 current->signal->rlim[RLIMIT_CORE] = (struct rlimit){1, 1};
504
Al Viro45525b22012-10-16 13:30:07 -0400505 return err;
Alex Kelly10c28d92012-09-26 21:52:08 -0400506}
507
Al Viroec579412013-10-13 17:57:29 -0400508void do_coredump(const siginfo_t *siginfo)
Alex Kelly10c28d92012-09-26 21:52:08 -0400509{
510 struct core_state core_state;
511 struct core_name cn;
512 struct mm_struct *mm = current->mm;
513 struct linux_binfmt * binfmt;
514 const struct cred *old_cred;
515 struct cred *cred;
516 int retval = 0;
Alex Kelly10c28d92012-09-26 21:52:08 -0400517 int ispipe;
518 struct files_struct *displaced;
Jann Hornfbb18162015-09-09 15:38:28 -0700519 /* require nonrelative corefile path and be extra careful */
520 bool need_suid_safe = false;
Oleg Nesterovacdedd92013-04-30 15:28:13 -0700521 bool core_dumped = false;
Alex Kelly10c28d92012-09-26 21:52:08 -0400522 static atomic_t core_dump_count = ATOMIC_INIT(0);
523 struct coredump_params cprm = {
Denys Vlasenko5ab1c302012-10-04 17:15:29 -0700524 .siginfo = siginfo,
Al Viro541880d2012-11-05 13:11:26 -0500525 .regs = signal_pt_regs(),
Alex Kelly10c28d92012-09-26 21:52:08 -0400526 .limit = rlimit(RLIMIT_CORE),
527 /*
528 * We must use the same mm->flags while dumping core to avoid
529 * inconsistency of bit flags, since this flag is not protected
530 * by any locks.
531 */
532 .mm_flags = mm->flags,
533 };
534
Denys Vlasenko5ab1c302012-10-04 17:15:29 -0700535 audit_core_dumps(siginfo->si_signo);
Alex Kelly10c28d92012-09-26 21:52:08 -0400536
537 binfmt = mm->binfmt;
538 if (!binfmt || !binfmt->core_dump)
539 goto fail;
540 if (!__get_dumpable(cprm.mm_flags))
541 goto fail;
542
543 cred = prepare_creds();
544 if (!cred)
545 goto fail;
546 /*
547 * We cannot trust fsuid as being the "true" uid of the process
548 * nor do we know its entire history. We only know it was tainted
549 * so we dump it as root in mode 2, and only into a controlled
550 * environment (pipe handler or fully qualified path).
551 */
Kees Cooke579d2c2013-02-27 17:03:15 -0800552 if (__get_dumpable(cprm.mm_flags) == SUID_DUMP_ROOT) {
Alex Kelly10c28d92012-09-26 21:52:08 -0400553 /* Setuid core dump mode */
Alex Kelly10c28d92012-09-26 21:52:08 -0400554 cred->fsuid = GLOBAL_ROOT_UID; /* Dump root private */
Jann Hornfbb18162015-09-09 15:38:28 -0700555 need_suid_safe = true;
Alex Kelly10c28d92012-09-26 21:52:08 -0400556 }
557
Denys Vlasenko5ab1c302012-10-04 17:15:29 -0700558 retval = coredump_wait(siginfo->si_signo, &core_state);
Alex Kelly10c28d92012-09-26 21:52:08 -0400559 if (retval < 0)
560 goto fail_creds;
561
562 old_cred = override_creds(cred);
563
Oleg Nesterov12a2b4b2012-10-04 17:15:25 -0700564 ispipe = format_corename(&cn, &cprm);
Alex Kelly10c28d92012-09-26 21:52:08 -0400565
Lucas De Marchifb96c472013-04-30 15:28:06 -0700566 if (ispipe) {
Alex Kelly10c28d92012-09-26 21:52:08 -0400567 int dump_count;
568 char **helper_argv;
Lucas De Marchi907ed132013-04-30 15:28:07 -0700569 struct subprocess_info *sub_info;
Alex Kelly10c28d92012-09-26 21:52:08 -0400570
571 if (ispipe < 0) {
572 printk(KERN_WARNING "format_corename failed\n");
573 printk(KERN_WARNING "Aborting core\n");
Oleg Nesterove7fd1542013-07-03 15:08:16 -0700574 goto fail_unlock;
Alex Kelly10c28d92012-09-26 21:52:08 -0400575 }
576
577 if (cprm.limit == 1) {
578 /* See umh_pipe_setup() which sets RLIMIT_CORE = 1.
579 *
580 * Normally core limits are irrelevant to pipes, since
581 * we're not writing to the file system, but we use
Bastien Nocerafcbc32b2015-02-05 14:35:05 +0100582 * cprm.limit of 1 here as a special value, this is a
Alex Kelly10c28d92012-09-26 21:52:08 -0400583 * consistent way to catch recursive crashes.
584 * We can still crash if the core_pattern binary sets
585 * RLIM_CORE = !1, but it runs as root, and can do
586 * lots of stupid things.
587 *
588 * Note that we use task_tgid_vnr here to grab the pid
589 * of the process group leader. That way we get the
590 * right pid if a thread in a multi-threaded
591 * core_pattern process dies.
592 */
593 printk(KERN_WARNING
594 "Process %d(%s) has RLIMIT_CORE set to 1\n",
595 task_tgid_vnr(current), current->comm);
596 printk(KERN_WARNING "Aborting core\n");
597 goto fail_unlock;
598 }
599 cprm.limit = RLIM_INFINITY;
600
601 dump_count = atomic_inc_return(&core_dump_count);
602 if (core_pipe_limit && (core_pipe_limit < dump_count)) {
603 printk(KERN_WARNING "Pid %d(%s) over core_pipe_limit\n",
604 task_tgid_vnr(current), current->comm);
605 printk(KERN_WARNING "Skipping core dump\n");
606 goto fail_dropcount;
607 }
608
Oleg Nesterov888ffc52013-07-03 15:08:23 -0700609 helper_argv = argv_split(GFP_KERNEL, cn.corename, NULL);
Alex Kelly10c28d92012-09-26 21:52:08 -0400610 if (!helper_argv) {
611 printk(KERN_WARNING "%s failed to allocate memory\n",
612 __func__);
613 goto fail_dropcount;
614 }
615
Lucas De Marchi907ed132013-04-30 15:28:07 -0700616 retval = -ENOMEM;
617 sub_info = call_usermodehelper_setup(helper_argv[0],
618 helper_argv, NULL, GFP_KERNEL,
619 umh_pipe_setup, NULL, &cprm);
620 if (sub_info)
621 retval = call_usermodehelper_exec(sub_info,
622 UMH_WAIT_EXEC);
623
Alex Kelly10c28d92012-09-26 21:52:08 -0400624 argv_free(helper_argv);
625 if (retval) {
Oleg Nesterov888ffc52013-07-03 15:08:23 -0700626 printk(KERN_INFO "Core dump to |%s pipe failed\n",
Alex Kelly10c28d92012-09-26 21:52:08 -0400627 cn.corename);
628 goto close_fail;
Lucas De Marchifb96c472013-04-30 15:28:06 -0700629 }
Alex Kelly10c28d92012-09-26 21:52:08 -0400630 } else {
631 struct inode *inode;
632
633 if (cprm.limit < binfmt->min_coredump)
634 goto fail_unlock;
635
Jann Hornfbb18162015-09-09 15:38:28 -0700636 if (need_suid_safe && cn.corename[0] != '/') {
Alex Kelly10c28d92012-09-26 21:52:08 -0400637 printk(KERN_WARNING "Pid %d(%s) can only dump core "\
638 "to fully qualified path!\n",
639 task_tgid_vnr(current), current->comm);
640 printk(KERN_WARNING "Skipping core dump\n");
641 goto fail_unlock;
642 }
643
Jann Hornfbb18162015-09-09 15:38:28 -0700644 /*
645 * Unlink the file if it exists unless this is a SUID
646 * binary - in that case, we're running around with root
647 * privs and don't want to unlink another user's coredump.
648 */
649 if (!need_suid_safe) {
650 mm_segment_t old_fs;
651
652 old_fs = get_fs();
653 set_fs(KERNEL_DS);
654 /*
655 * If it doesn't exist, that's fine. If there's some
656 * other problem, we'll catch it at the filp_open().
657 */
658 (void) sys_unlink((const char __user *)cn.corename);
659 set_fs(old_fs);
660 }
661
662 /*
663 * There is a race between unlinking and creating the
664 * file, but if that causes an EEXIST here, that's
665 * fine - another process raced with us while creating
666 * the corefile, and the other process won. To userspace,
667 * what matters is that at least one of the two processes
668 * writes its coredump successfully, not which one.
669 */
Alex Kelly10c28d92012-09-26 21:52:08 -0400670 cprm.file = filp_open(cn.corename,
Jann Hornfbb18162015-09-09 15:38:28 -0700671 O_CREAT | 2 | O_NOFOLLOW |
672 O_LARGEFILE | O_EXCL,
Alex Kelly10c28d92012-09-26 21:52:08 -0400673 0600);
674 if (IS_ERR(cprm.file))
675 goto fail_unlock;
676
Al Viro496ad9a2013-01-23 17:07:38 -0500677 inode = file_inode(cprm.file);
Alex Kelly10c28d92012-09-26 21:52:08 -0400678 if (inode->i_nlink > 1)
679 goto close_fail;
680 if (d_unhashed(cprm.file->f_path.dentry))
681 goto close_fail;
682 /*
683 * AK: actually i see no reason to not allow this for named
684 * pipes etc, but keep the previous behaviour for now.
685 */
686 if (!S_ISREG(inode->i_mode))
687 goto close_fail;
688 /*
Jann Horn40f705a2015-09-09 15:38:30 -0700689 * Don't dump core if the filesystem changed owner or mode
690 * of the file during file creation. This is an issue when
691 * a process dumps core while its cwd is e.g. on a vfat
692 * filesystem.
Alex Kelly10c28d92012-09-26 21:52:08 -0400693 */
694 if (!uid_eq(inode->i_uid, current_fsuid()))
695 goto close_fail;
Jann Horn40f705a2015-09-09 15:38:30 -0700696 if ((inode->i_mode & 0677) != 0600)
697 goto close_fail;
Al Viro86cc0582015-04-03 15:23:17 -0400698 if (!(cprm.file->f_mode & FMODE_CAN_WRITE))
Alex Kelly10c28d92012-09-26 21:52:08 -0400699 goto close_fail;
700 if (do_truncate(cprm.file->f_path.dentry, 0, 0, cprm.file))
701 goto close_fail;
702 }
703
704 /* get us an unshared descriptor table; almost always a no-op */
705 retval = unshare_files(&displaced);
706 if (retval)
707 goto close_fail;
708 if (displaced)
709 put_files_struct(displaced);
Al Viroe86d35c2013-05-04 14:45:54 -0400710 if (!dump_interrupted()) {
711 file_start_write(cprm.file);
712 core_dumped = binfmt->core_dump(&cprm);
713 file_end_write(cprm.file);
714 }
Alex Kelly10c28d92012-09-26 21:52:08 -0400715 if (ispipe && core_pipe_limit)
716 wait_for_dump_helpers(cprm.file);
717close_fail:
718 if (cprm.file)
719 filp_close(cprm.file, NULL);
720fail_dropcount:
721 if (ispipe)
722 atomic_dec(&core_dump_count);
723fail_unlock:
724 kfree(cn.corename);
Oleg Nesterovacdedd92013-04-30 15:28:13 -0700725 coredump_finish(mm, core_dumped);
Alex Kelly10c28d92012-09-26 21:52:08 -0400726 revert_creds(old_cred);
727fail_creds:
728 put_cred(cred);
729fail:
730 return;
731}
732
733/*
734 * Core dumping helper functions. These are the only things you should
735 * do on a core-file: use only these functions to write out all the
736 * necessary info.
737 */
Al Viroecc8c772013-10-05 15:32:35 -0400738int dump_emit(struct coredump_params *cprm, const void *addr, int nr)
739{
740 struct file *file = cprm->file;
Al Viro2507a4f2013-10-08 09:11:48 -0400741 loff_t pos = file->f_pos;
742 ssize_t n;
Al Viroecc8c772013-10-05 15:32:35 -0400743 if (cprm->written + nr > cprm->limit)
744 return 0;
Al Viro2507a4f2013-10-08 09:11:48 -0400745 while (nr) {
746 if (dump_interrupted())
747 return 0;
Al Viro52da40a2013-11-15 21:58:33 -0500748 n = __kernel_write(file, addr, nr, &pos);
Al Viro2507a4f2013-10-08 09:11:48 -0400749 if (n <= 0)
750 return 0;
751 file->f_pos = pos;
752 cprm->written += n;
753 nr -= n;
754 }
Al Viroecc8c772013-10-05 15:32:35 -0400755 return 1;
756}
757EXPORT_SYMBOL(dump_emit);
758
Al Viro9b56d542013-10-08 09:26:08 -0400759int dump_skip(struct coredump_params *cprm, size_t nr)
Alex Kelly10c28d92012-09-26 21:52:08 -0400760{
Al Viro9b56d542013-10-08 09:26:08 -0400761 static char zeroes[PAGE_SIZE];
762 struct file *file = cprm->file;
Alex Kelly10c28d92012-09-26 21:52:08 -0400763 if (file->f_op->llseek && file->f_op->llseek != no_llseek) {
Al Viro9b56d542013-10-08 09:26:08 -0400764 if (cprm->written + nr > cprm->limit)
765 return 0;
Oleg Nesterov528f8272013-04-30 15:28:15 -0700766 if (dump_interrupted() ||
Al Viro9b56d542013-10-08 09:26:08 -0400767 file->f_op->llseek(file, nr, SEEK_CUR) < 0)
Alex Kelly10c28d92012-09-26 21:52:08 -0400768 return 0;
Al Viro9b56d542013-10-08 09:26:08 -0400769 cprm->written += nr;
770 return 1;
Alex Kelly10c28d92012-09-26 21:52:08 -0400771 } else {
Al Viro9b56d542013-10-08 09:26:08 -0400772 while (nr > PAGE_SIZE) {
773 if (!dump_emit(cprm, zeroes, PAGE_SIZE))
774 return 0;
775 nr -= PAGE_SIZE;
Alex Kelly10c28d92012-09-26 21:52:08 -0400776 }
Al Viro9b56d542013-10-08 09:26:08 -0400777 return dump_emit(cprm, zeroes, nr);
Alex Kelly10c28d92012-09-26 21:52:08 -0400778 }
Alex Kelly10c28d92012-09-26 21:52:08 -0400779}
Al Viro9b56d542013-10-08 09:26:08 -0400780EXPORT_SYMBOL(dump_skip);
Al Viro22a8cb82013-10-08 11:05:01 -0400781
782int dump_align(struct coredump_params *cprm, int align)
783{
784 unsigned mod = cprm->written & (align - 1);
785 if (align & (align - 1))
Al Virodb512422013-11-15 21:55:52 -0500786 return 0;
787 return mod ? dump_skip(cprm, align - mod) : 1;
Al Viro22a8cb82013-10-08 11:05:01 -0400788}
789EXPORT_SYMBOL(dump_align);