blob: aa8ac69a548f03227ea08c66ee8464414ca96bf9 [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>
35
36#include <asm/uaccess.h>
37#include <asm/mmu_context.h>
38#include <asm/tlb.h>
39#include <asm/exec.h>
40
41#include <trace/events/task.h>
42#include "internal.h"
Alex Kelly179899f2012-10-04 17:15:24 -070043#include "coredump.h"
Alex Kelly10c28d92012-09-26 21:52:08 -040044
45#include <trace/events/sched.h>
46
47int core_uses_pid;
48char core_pattern[CORENAME_MAX_SIZE] = "core";
49unsigned int core_pipe_limit;
50
51struct core_name {
52 char *corename;
53 int used, size;
54};
55static atomic_t call_count = ATOMIC_INIT(1);
56
57/* The maximal length of core_pattern is also specified in sysctl.c */
58
59static int expand_corename(struct core_name *cn)
60{
61 char *old_corename = cn->corename;
62
63 cn->size = CORENAME_MAX_SIZE * atomic_inc_return(&call_count);
64 cn->corename = krealloc(old_corename, cn->size, GFP_KERNEL);
65
66 if (!cn->corename) {
67 kfree(old_corename);
68 return -ENOMEM;
69 }
70
71 return 0;
72}
73
74static int cn_printf(struct core_name *cn, const char *fmt, ...)
75{
76 char *cur;
77 int need;
78 int ret;
79 va_list arg;
80
81 va_start(arg, fmt);
82 need = vsnprintf(NULL, 0, fmt, arg);
83 va_end(arg);
84
85 if (likely(need < cn->size - cn->used - 1))
86 goto out_printf;
87
88 ret = expand_corename(cn);
89 if (ret)
90 goto expand_fail;
91
92out_printf:
93 cur = cn->corename + cn->used;
94 va_start(arg, fmt);
95 vsnprintf(cur, need + 1, fmt, arg);
96 va_end(arg);
97 cn->used += need;
98 return 0;
99
100expand_fail:
101 return ret;
102}
103
104static void cn_escape(char *str)
105{
106 for (; *str; str++)
107 if (*str == '/')
108 *str = '!';
109}
110
111static int cn_print_exe_file(struct core_name *cn)
112{
113 struct file *exe_file;
114 char *pathbuf, *path;
115 int ret;
116
117 exe_file = get_mm_exe_file(current->mm);
118 if (!exe_file) {
119 char *commstart = cn->corename + cn->used;
120 ret = cn_printf(cn, "%s (path unknown)", current->comm);
121 cn_escape(commstart);
122 return ret;
123 }
124
125 pathbuf = kmalloc(PATH_MAX, GFP_TEMPORARY);
126 if (!pathbuf) {
127 ret = -ENOMEM;
128 goto put_exe_file;
129 }
130
131 path = d_path(&exe_file->f_path, pathbuf, PATH_MAX);
132 if (IS_ERR(path)) {
133 ret = PTR_ERR(path);
134 goto free_buf;
135 }
136
137 cn_escape(path);
138
139 ret = cn_printf(cn, "%s", path);
140
141free_buf:
142 kfree(pathbuf);
143put_exe_file:
144 fput(exe_file);
145 return ret;
146}
147
148/* format_corename will inspect the pattern parameter, and output a
149 * name into corename, which must have space for at least
150 * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
151 */
Oleg Nesterov12a2b4b2012-10-04 17:15:25 -0700152static int format_corename(struct core_name *cn, struct coredump_params *cprm)
Alex Kelly10c28d92012-09-26 21:52:08 -0400153{
154 const struct cred *cred = current_cred();
155 const char *pat_ptr = core_pattern;
156 int ispipe = (*pat_ptr == '|');
157 int pid_in_pattern = 0;
158 int err = 0;
159
160 cn->size = CORENAME_MAX_SIZE * atomic_read(&call_count);
161 cn->corename = kmalloc(cn->size, GFP_KERNEL);
162 cn->used = 0;
163
164 if (!cn->corename)
165 return -ENOMEM;
166
167 /* Repeat as long as we have more pattern to process and more output
168 space */
169 while (*pat_ptr) {
170 if (*pat_ptr != '%') {
171 if (*pat_ptr == 0)
172 goto out;
173 err = cn_printf(cn, "%c", *pat_ptr++);
174 } else {
175 switch (*++pat_ptr) {
176 /* single % at the end, drop that */
177 case 0:
178 goto out;
179 /* Double percent, output one percent */
180 case '%':
181 err = cn_printf(cn, "%c", '%');
182 break;
183 /* pid */
184 case 'p':
185 pid_in_pattern = 1;
186 err = cn_printf(cn, "%d",
187 task_tgid_vnr(current));
188 break;
189 /* uid */
190 case 'u':
191 err = cn_printf(cn, "%d", cred->uid);
192 break;
193 /* gid */
194 case 'g':
195 err = cn_printf(cn, "%d", cred->gid);
196 break;
Oleg Nesterov12a2b4b2012-10-04 17:15:25 -0700197 case 'd':
198 err = cn_printf(cn, "%d",
199 __get_dumpable(cprm->mm_flags));
200 break;
Alex Kelly10c28d92012-09-26 21:52:08 -0400201 /* signal that caused the coredump */
202 case 's':
Denys Vlasenko5ab1c302012-10-04 17:15:29 -0700203 err = cn_printf(cn, "%ld", cprm->siginfo->si_signo);
Alex Kelly10c28d92012-09-26 21:52:08 -0400204 break;
205 /* UNIX time of coredump */
206 case 't': {
207 struct timeval tv;
208 do_gettimeofday(&tv);
209 err = cn_printf(cn, "%lu", tv.tv_sec);
210 break;
211 }
212 /* hostname */
213 case 'h': {
214 char *namestart = cn->corename + cn->used;
215 down_read(&uts_sem);
216 err = cn_printf(cn, "%s",
217 utsname()->nodename);
218 up_read(&uts_sem);
219 cn_escape(namestart);
220 break;
221 }
222 /* executable */
223 case 'e': {
224 char *commstart = cn->corename + cn->used;
225 err = cn_printf(cn, "%s", current->comm);
226 cn_escape(commstart);
227 break;
228 }
229 case 'E':
230 err = cn_print_exe_file(cn);
231 break;
232 /* core limit size */
233 case 'c':
234 err = cn_printf(cn, "%lu",
235 rlimit(RLIMIT_CORE));
236 break;
237 default:
238 break;
239 }
240 ++pat_ptr;
241 }
242
243 if (err)
244 return err;
245 }
246
247 /* Backward compatibility with core_uses_pid:
248 *
249 * If core_pattern does not include a %p (as is the default)
250 * and core_uses_pid is set, then .%pid will be appended to
251 * the filename. Do not do this for piped commands. */
252 if (!ispipe && !pid_in_pattern && core_uses_pid) {
253 err = cn_printf(cn, ".%d", task_tgid_vnr(current));
254 if (err)
255 return err;
256 }
257out:
258 return ispipe;
259}
260
261static int zap_process(struct task_struct *start, int exit_code)
262{
263 struct task_struct *t;
264 int nr = 0;
265
Alex Kelly10c28d92012-09-26 21:52:08 -0400266 start->signal->group_exit_code = exit_code;
267 start->signal->group_stop_count = 0;
268
269 t = start;
270 do {
271 task_clear_jobctl_pending(t, JOBCTL_PENDING_MASK);
272 if (t != current && t->mm) {
273 sigaddset(&t->pending.signal, SIGKILL);
274 signal_wake_up(t, 1);
275 nr++;
276 }
277 } while_each_thread(start, t);
278
279 return nr;
280}
281
Oleg Nesterov403bad72013-04-30 15:28:10 -0700282static int zap_threads(struct task_struct *tsk, struct mm_struct *mm,
283 struct core_state *core_state, int exit_code)
Alex Kelly10c28d92012-09-26 21:52:08 -0400284{
285 struct task_struct *g, *p;
286 unsigned long flags;
287 int nr = -EAGAIN;
288
289 spin_lock_irq(&tsk->sighand->siglock);
290 if (!signal_group_exit(tsk->signal)) {
291 mm->core_state = core_state;
292 nr = zap_process(tsk, exit_code);
Oleg Nesterov6cd8f0a2013-04-30 15:28:12 -0700293 tsk->signal->group_exit_task = tsk;
Oleg Nesterov403bad72013-04-30 15:28:10 -0700294 /* ignore all signals except SIGKILL, see prepare_signal() */
Oleg Nesterov6cd8f0a2013-04-30 15:28:12 -0700295 tsk->signal->flags = SIGNAL_GROUP_COREDUMP;
Oleg Nesterov403bad72013-04-30 15:28:10 -0700296 clear_tsk_thread_flag(tsk, TIF_SIGPENDING);
Alex Kelly10c28d92012-09-26 21:52:08 -0400297 }
298 spin_unlock_irq(&tsk->sighand->siglock);
299 if (unlikely(nr < 0))
300 return nr;
301
302 if (atomic_read(&mm->mm_users) == nr + 1)
303 goto done;
304 /*
305 * We should find and kill all tasks which use this mm, and we should
306 * count them correctly into ->nr_threads. We don't take tasklist
307 * lock, but this is safe wrt:
308 *
309 * fork:
310 * None of sub-threads can fork after zap_process(leader). All
311 * processes which were created before this point should be
312 * visible to zap_threads() because copy_process() adds the new
313 * process to the tail of init_task.tasks list, and lock/unlock
314 * of ->siglock provides a memory barrier.
315 *
316 * do_exit:
317 * The caller holds mm->mmap_sem. This means that the task which
318 * uses this mm can't pass exit_mm(), so it can't exit or clear
319 * its ->mm.
320 *
321 * de_thread:
322 * It does list_replace_rcu(&leader->tasks, &current->tasks),
323 * we must see either old or new leader, this does not matter.
324 * However, it can change p->sighand, so lock_task_sighand(p)
325 * must be used. Since p->mm != NULL and we hold ->mmap_sem
326 * it can't fail.
327 *
328 * Note also that "g" can be the old leader with ->mm == NULL
329 * and already unhashed and thus removed from ->thread_group.
330 * This is OK, __unhash_process()->list_del_rcu() does not
331 * clear the ->next pointer, we will find the new leader via
332 * next_thread().
333 */
334 rcu_read_lock();
335 for_each_process(g) {
336 if (g == tsk->group_leader)
337 continue;
338 if (g->flags & PF_KTHREAD)
339 continue;
340 p = g;
341 do {
342 if (p->mm) {
343 if (unlikely(p->mm == mm)) {
344 lock_task_sighand(p, &flags);
345 nr += zap_process(p, exit_code);
Oleg Nesterov6cd8f0a2013-04-30 15:28:12 -0700346 p->signal->flags = SIGNAL_GROUP_EXIT;
Alex Kelly10c28d92012-09-26 21:52:08 -0400347 unlock_task_sighand(p, &flags);
348 }
349 break;
350 }
351 } while_each_thread(g, p);
352 }
353 rcu_read_unlock();
354done:
355 atomic_set(&core_state->nr_threads, nr);
356 return nr;
357}
358
359static int coredump_wait(int exit_code, struct core_state *core_state)
360{
361 struct task_struct *tsk = current;
362 struct mm_struct *mm = tsk->mm;
363 int core_waiters = -EBUSY;
364
365 init_completion(&core_state->startup);
366 core_state->dumper.task = tsk;
367 core_state->dumper.next = NULL;
368
369 down_write(&mm->mmap_sem);
370 if (!mm->core_state)
371 core_waiters = zap_threads(tsk, mm, core_state, exit_code);
372 up_write(&mm->mmap_sem);
373
374 if (core_waiters > 0) {
375 struct core_thread *ptr;
376
377 wait_for_completion(&core_state->startup);
378 /*
379 * Wait for all the threads to become inactive, so that
380 * all the thread context (extended register state, like
381 * fpu etc) gets copied to the memory.
382 */
383 ptr = core_state->dumper.next;
384 while (ptr != NULL) {
385 wait_task_inactive(ptr->task, 0);
386 ptr = ptr->next;
387 }
388 }
389
390 return core_waiters;
391}
392
Oleg Nesterovacdedd92013-04-30 15:28:13 -0700393static void coredump_finish(struct mm_struct *mm, bool core_dumped)
Alex Kelly10c28d92012-09-26 21:52:08 -0400394{
395 struct core_thread *curr, *next;
396 struct task_struct *task;
397
Oleg Nesterov6cd8f0a2013-04-30 15:28:12 -0700398 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterovacdedd92013-04-30 15:28:13 -0700399 if (core_dumped && !__fatal_signal_pending(current))
400 current->signal->group_exit_code |= 0x80;
Oleg Nesterov6cd8f0a2013-04-30 15:28:12 -0700401 current->signal->group_exit_task = NULL;
402 current->signal->flags = SIGNAL_GROUP_EXIT;
403 spin_unlock_irq(&current->sighand->siglock);
404
Alex Kelly10c28d92012-09-26 21:52:08 -0400405 next = mm->core_state->dumper.next;
406 while ((curr = next) != NULL) {
407 next = curr->next;
408 task = curr->task;
409 /*
410 * see exit_mm(), curr->task must not see
411 * ->task == NULL before we read ->next.
412 */
413 smp_mb();
414 curr->task = NULL;
415 wake_up_process(task);
416 }
417
418 mm->core_state = NULL;
419}
420
Oleg Nesterov528f8272013-04-30 15:28:15 -0700421static bool dump_interrupted(void)
422{
423 /*
424 * SIGKILL or freezing() interrupt the coredumping. Perhaps we
425 * can do try_to_freeze() and check __fatal_signal_pending(),
426 * but then we need to teach dump_write() to restart and clear
427 * TIF_SIGPENDING.
428 */
429 return signal_pending(current);
430}
431
Alex Kelly10c28d92012-09-26 21:52:08 -0400432static void wait_for_dump_helpers(struct file *file)
433{
434 struct pipe_inode_info *pipe;
435
Al Viro496ad9a2013-01-23 17:07:38 -0500436 pipe = file_inode(file)->i_pipe;
Alex Kelly10c28d92012-09-26 21:52:08 -0400437
438 pipe_lock(pipe);
439 pipe->readers++;
440 pipe->writers--;
441
442 while ((pipe->readers > 1) && (!signal_pending(current))) {
443 wake_up_interruptible_sync(&pipe->wait);
444 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
445 pipe_wait(pipe);
446 }
447
448 pipe->readers--;
449 pipe->writers++;
450 pipe_unlock(pipe);
451
452}
453
454/*
455 * umh_pipe_setup
456 * helper function to customize the process used
457 * to collect the core in userspace. Specifically
458 * it sets up a pipe and installs it as fd 0 (stdin)
459 * for the process. Returns 0 on success, or
460 * PTR_ERR on failure.
461 * Note that it also sets the core limit to 1. This
462 * is a special value that we use to trap recursive
463 * core dumps
464 */
465static int umh_pipe_setup(struct subprocess_info *info, struct cred *new)
466{
467 struct file *files[2];
468 struct coredump_params *cp = (struct coredump_params *)info->data;
469 int err = create_pipe_files(files, 0);
470 if (err)
471 return err;
472
473 cp->file = files[1];
474
Al Viro45525b22012-10-16 13:30:07 -0400475 err = replace_fd(0, files[0], 0);
476 fput(files[0]);
Alex Kelly10c28d92012-09-26 21:52:08 -0400477 /* and disallow core files too */
478 current->signal->rlim[RLIMIT_CORE] = (struct rlimit){1, 1};
479
Al Viro45525b22012-10-16 13:30:07 -0400480 return err;
Alex Kelly10c28d92012-09-26 21:52:08 -0400481}
482
Al Viro541880d2012-11-05 13:11:26 -0500483void do_coredump(siginfo_t *siginfo)
Alex Kelly10c28d92012-09-26 21:52:08 -0400484{
485 struct core_state core_state;
486 struct core_name cn;
487 struct mm_struct *mm = current->mm;
488 struct linux_binfmt * binfmt;
489 const struct cred *old_cred;
490 struct cred *cred;
491 int retval = 0;
492 int flag = 0;
493 int ispipe;
494 struct files_struct *displaced;
495 bool need_nonrelative = false;
Oleg Nesterovacdedd92013-04-30 15:28:13 -0700496 bool core_dumped = false;
Alex Kelly10c28d92012-09-26 21:52:08 -0400497 static atomic_t core_dump_count = ATOMIC_INIT(0);
498 struct coredump_params cprm = {
Denys Vlasenko5ab1c302012-10-04 17:15:29 -0700499 .siginfo = siginfo,
Al Viro541880d2012-11-05 13:11:26 -0500500 .regs = signal_pt_regs(),
Alex Kelly10c28d92012-09-26 21:52:08 -0400501 .limit = rlimit(RLIMIT_CORE),
502 /*
503 * We must use the same mm->flags while dumping core to avoid
504 * inconsistency of bit flags, since this flag is not protected
505 * by any locks.
506 */
507 .mm_flags = mm->flags,
508 };
509
Denys Vlasenko5ab1c302012-10-04 17:15:29 -0700510 audit_core_dumps(siginfo->si_signo);
Alex Kelly10c28d92012-09-26 21:52:08 -0400511
512 binfmt = mm->binfmt;
513 if (!binfmt || !binfmt->core_dump)
514 goto fail;
515 if (!__get_dumpable(cprm.mm_flags))
516 goto fail;
517
518 cred = prepare_creds();
519 if (!cred)
520 goto fail;
521 /*
522 * We cannot trust fsuid as being the "true" uid of the process
523 * nor do we know its entire history. We only know it was tainted
524 * so we dump it as root in mode 2, and only into a controlled
525 * environment (pipe handler or fully qualified path).
526 */
Kees Cooke579d2c2013-02-27 17:03:15 -0800527 if (__get_dumpable(cprm.mm_flags) == SUID_DUMP_ROOT) {
Alex Kelly10c28d92012-09-26 21:52:08 -0400528 /* Setuid core dump mode */
529 flag = O_EXCL; /* Stop rewrite attacks */
530 cred->fsuid = GLOBAL_ROOT_UID; /* Dump root private */
531 need_nonrelative = true;
532 }
533
Denys Vlasenko5ab1c302012-10-04 17:15:29 -0700534 retval = coredump_wait(siginfo->si_signo, &core_state);
Alex Kelly10c28d92012-09-26 21:52:08 -0400535 if (retval < 0)
536 goto fail_creds;
537
538 old_cred = override_creds(cred);
539
Oleg Nesterov12a2b4b2012-10-04 17:15:25 -0700540 ispipe = format_corename(&cn, &cprm);
Alex Kelly10c28d92012-09-26 21:52:08 -0400541
Lucas De Marchifb96c472013-04-30 15:28:06 -0700542 if (ispipe) {
Alex Kelly10c28d92012-09-26 21:52:08 -0400543 int dump_count;
544 char **helper_argv;
Lucas De Marchi907ed132013-04-30 15:28:07 -0700545 struct subprocess_info *sub_info;
Alex Kelly10c28d92012-09-26 21:52:08 -0400546
547 if (ispipe < 0) {
548 printk(KERN_WARNING "format_corename failed\n");
549 printk(KERN_WARNING "Aborting core\n");
550 goto fail_corename;
551 }
552
553 if (cprm.limit == 1) {
554 /* See umh_pipe_setup() which sets RLIMIT_CORE = 1.
555 *
556 * Normally core limits are irrelevant to pipes, since
557 * we're not writing to the file system, but we use
558 * cprm.limit of 1 here as a speacial value, this is a
559 * consistent way to catch recursive crashes.
560 * We can still crash if the core_pattern binary sets
561 * RLIM_CORE = !1, but it runs as root, and can do
562 * lots of stupid things.
563 *
564 * Note that we use task_tgid_vnr here to grab the pid
565 * of the process group leader. That way we get the
566 * right pid if a thread in a multi-threaded
567 * core_pattern process dies.
568 */
569 printk(KERN_WARNING
570 "Process %d(%s) has RLIMIT_CORE set to 1\n",
571 task_tgid_vnr(current), current->comm);
572 printk(KERN_WARNING "Aborting core\n");
573 goto fail_unlock;
574 }
575 cprm.limit = RLIM_INFINITY;
576
577 dump_count = atomic_inc_return(&core_dump_count);
578 if (core_pipe_limit && (core_pipe_limit < dump_count)) {
579 printk(KERN_WARNING "Pid %d(%s) over core_pipe_limit\n",
580 task_tgid_vnr(current), current->comm);
581 printk(KERN_WARNING "Skipping core dump\n");
582 goto fail_dropcount;
583 }
584
585 helper_argv = argv_split(GFP_KERNEL, cn.corename+1, NULL);
586 if (!helper_argv) {
587 printk(KERN_WARNING "%s failed to allocate memory\n",
588 __func__);
589 goto fail_dropcount;
590 }
591
Lucas De Marchi907ed132013-04-30 15:28:07 -0700592 retval = -ENOMEM;
593 sub_info = call_usermodehelper_setup(helper_argv[0],
594 helper_argv, NULL, GFP_KERNEL,
595 umh_pipe_setup, NULL, &cprm);
596 if (sub_info)
597 retval = call_usermodehelper_exec(sub_info,
598 UMH_WAIT_EXEC);
599
Alex Kelly10c28d92012-09-26 21:52:08 -0400600 argv_free(helper_argv);
601 if (retval) {
Lucas De Marchifb96c472013-04-30 15:28:06 -0700602 printk(KERN_INFO "Core dump to %s pipe failed\n",
Alex Kelly10c28d92012-09-26 21:52:08 -0400603 cn.corename);
604 goto close_fail;
Lucas De Marchifb96c472013-04-30 15:28:06 -0700605 }
Alex Kelly10c28d92012-09-26 21:52:08 -0400606 } else {
607 struct inode *inode;
608
609 if (cprm.limit < binfmt->min_coredump)
610 goto fail_unlock;
611
612 if (need_nonrelative && cn.corename[0] != '/') {
613 printk(KERN_WARNING "Pid %d(%s) can only dump core "\
614 "to fully qualified path!\n",
615 task_tgid_vnr(current), current->comm);
616 printk(KERN_WARNING "Skipping core dump\n");
617 goto fail_unlock;
618 }
619
620 cprm.file = filp_open(cn.corename,
621 O_CREAT | 2 | O_NOFOLLOW | O_LARGEFILE | flag,
622 0600);
623 if (IS_ERR(cprm.file))
624 goto fail_unlock;
625
Al Viro496ad9a2013-01-23 17:07:38 -0500626 inode = file_inode(cprm.file);
Alex Kelly10c28d92012-09-26 21:52:08 -0400627 if (inode->i_nlink > 1)
628 goto close_fail;
629 if (d_unhashed(cprm.file->f_path.dentry))
630 goto close_fail;
631 /*
632 * AK: actually i see no reason to not allow this for named
633 * pipes etc, but keep the previous behaviour for now.
634 */
635 if (!S_ISREG(inode->i_mode))
636 goto close_fail;
637 /*
638 * Dont allow local users get cute and trick others to coredump
639 * into their pre-created files.
640 */
641 if (!uid_eq(inode->i_uid, current_fsuid()))
642 goto close_fail;
643 if (!cprm.file->f_op || !cprm.file->f_op->write)
644 goto close_fail;
645 if (do_truncate(cprm.file->f_path.dentry, 0, 0, cprm.file))
646 goto close_fail;
647 }
648
649 /* get us an unshared descriptor table; almost always a no-op */
650 retval = unshare_files(&displaced);
651 if (retval)
652 goto close_fail;
653 if (displaced)
654 put_files_struct(displaced);
Oleg Nesterov528f8272013-04-30 15:28:15 -0700655 core_dumped = !dump_interrupted() && binfmt->core_dump(&cprm);
Alex Kelly10c28d92012-09-26 21:52:08 -0400656
657 if (ispipe && core_pipe_limit)
658 wait_for_dump_helpers(cprm.file);
659close_fail:
660 if (cprm.file)
661 filp_close(cprm.file, NULL);
662fail_dropcount:
663 if (ispipe)
664 atomic_dec(&core_dump_count);
665fail_unlock:
666 kfree(cn.corename);
667fail_corename:
Oleg Nesterovacdedd92013-04-30 15:28:13 -0700668 coredump_finish(mm, core_dumped);
Alex Kelly10c28d92012-09-26 21:52:08 -0400669 revert_creds(old_cred);
670fail_creds:
671 put_cred(cred);
672fail:
673 return;
674}
675
676/*
677 * Core dumping helper functions. These are the only things you should
678 * do on a core-file: use only these functions to write out all the
679 * necessary info.
680 */
681int dump_write(struct file *file, const void *addr, int nr)
682{
Oleg Nesterov528f8272013-04-30 15:28:15 -0700683 return !dump_interrupted() &&
684 access_ok(VERIFY_READ, addr, nr) &&
685 file->f_op->write(file, addr, nr, &file->f_pos) == nr;
Alex Kelly10c28d92012-09-26 21:52:08 -0400686}
687EXPORT_SYMBOL(dump_write);
688
689int dump_seek(struct file *file, loff_t off)
690{
691 int ret = 1;
692
693 if (file->f_op->llseek && file->f_op->llseek != no_llseek) {
Oleg Nesterov528f8272013-04-30 15:28:15 -0700694 if (dump_interrupted() ||
695 file->f_op->llseek(file, off, SEEK_CUR) < 0)
Alex Kelly10c28d92012-09-26 21:52:08 -0400696 return 0;
697 } else {
698 char *buf = (char *)get_zeroed_page(GFP_KERNEL);
699
700 if (!buf)
701 return 0;
702 while (off > 0) {
703 unsigned long n = off;
704
705 if (n > PAGE_SIZE)
706 n = PAGE_SIZE;
707 if (!dump_write(file, buf, n)) {
708 ret = 0;
709 break;
710 }
711 off -= n;
712 }
713 free_page((unsigned long)buf);
714 }
715 return ret;
716}
717EXPORT_SYMBOL(dump_seek);