]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/coredump/coredump.c
coredump: when reconstructing original kernel coredump context, chop off trailing...
[thirdparty/systemd.git] / src / coredump / coredump.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2012 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <errno.h>
21 #include <stdio.h>
22 #include <sys/prctl.h>
23 #include <sys/xattr.h>
24 #include <unistd.h>
25
26 #ifdef HAVE_ELFUTILS
27 #include <dwarf.h>
28 #include <elfutils/libdwfl.h>
29 #endif
30
31 #include "sd-daemon.h"
32 #include "sd-journal.h"
33 #include "sd-login.h"
34 #include "sd-messages.h"
35
36 #include "acl-util.h"
37 #include "alloc-util.h"
38 #include "capability-util.h"
39 #include "cgroup-util.h"
40 #include "compress.h"
41 #include "conf-parser.h"
42 #include "copy.h"
43 #include "coredump-vacuum.h"
44 #include "dirent-util.h"
45 #include "escape.h"
46 #include "fd-util.h"
47 #include "fileio.h"
48 #include "fs-util.h"
49 #include "io-util.h"
50 #include "journal-importer.h"
51 #include "log.h"
52 #include "macro.h"
53 #include "missing.h"
54 #include "mkdir.h"
55 #include "parse-util.h"
56 #include "process-util.h"
57 #include "signal-util.h"
58 #include "socket-util.h"
59 #include "special.h"
60 #include "stacktrace.h"
61 #include "string-table.h"
62 #include "string-util.h"
63 #include "strv.h"
64 #include "user-util.h"
65 #include "util.h"
66
67 /* The maximum size up to which we process coredumps */
68 #define PROCESS_SIZE_MAX ((uint64_t) (2LLU*1024LLU*1024LLU*1024LLU))
69
70 /* The maximum size up to which we leave the coredump around on disk */
71 #define EXTERNAL_SIZE_MAX PROCESS_SIZE_MAX
72
73 /* The maximum size up to which we store the coredump in the journal */
74 #define JOURNAL_SIZE_MAX ((size_t) (767LU*1024LU*1024LU))
75
76 /* Make sure to not make this larger than the maximum journal entry
77 * size. See DATA_SIZE_MAX in journald-native.c. */
78 assert_cc(JOURNAL_SIZE_MAX <= DATA_SIZE_MAX);
79
80 enum {
81 /* We use this as array indexes for a couple of special fields we use for naming coredumping files, and
82 * attaching xattrs */
83 CONTEXT_PID,
84 CONTEXT_UID,
85 CONTEXT_GID,
86 CONTEXT_SIGNAL,
87 CONTEXT_TIMESTAMP,
88 CONTEXT_RLIMIT,
89 CONTEXT_COMM,
90 CONTEXT_EXE,
91 _CONTEXT_MAX
92 };
93
94 typedef enum CoredumpStorage {
95 COREDUMP_STORAGE_NONE,
96 COREDUMP_STORAGE_EXTERNAL,
97 COREDUMP_STORAGE_JOURNAL,
98 _COREDUMP_STORAGE_MAX,
99 _COREDUMP_STORAGE_INVALID = -1
100 } CoredumpStorage;
101
102 static const char* const coredump_storage_table[_COREDUMP_STORAGE_MAX] = {
103 [COREDUMP_STORAGE_NONE] = "none",
104 [COREDUMP_STORAGE_EXTERNAL] = "external",
105 [COREDUMP_STORAGE_JOURNAL] = "journal",
106 };
107
108 DEFINE_PRIVATE_STRING_TABLE_LOOKUP(coredump_storage, CoredumpStorage);
109 static DEFINE_CONFIG_PARSE_ENUM(config_parse_coredump_storage, coredump_storage, CoredumpStorage, "Failed to parse storage setting");
110
111 static CoredumpStorage arg_storage = COREDUMP_STORAGE_EXTERNAL;
112 static bool arg_compress = true;
113 static uint64_t arg_process_size_max = PROCESS_SIZE_MAX;
114 static uint64_t arg_external_size_max = EXTERNAL_SIZE_MAX;
115 static uint64_t arg_journal_size_max = JOURNAL_SIZE_MAX;
116 static uint64_t arg_keep_free = (uint64_t) -1;
117 static uint64_t arg_max_use = (uint64_t) -1;
118
119 static int parse_config(void) {
120 static const ConfigTableItem items[] = {
121 { "Coredump", "Storage", config_parse_coredump_storage, 0, &arg_storage },
122 { "Coredump", "Compress", config_parse_bool, 0, &arg_compress },
123 { "Coredump", "ProcessSizeMax", config_parse_iec_uint64, 0, &arg_process_size_max },
124 { "Coredump", "ExternalSizeMax", config_parse_iec_uint64, 0, &arg_external_size_max },
125 { "Coredump", "JournalSizeMax", config_parse_iec_size, 0, &arg_journal_size_max },
126 { "Coredump", "KeepFree", config_parse_iec_uint64, 0, &arg_keep_free },
127 { "Coredump", "MaxUse", config_parse_iec_uint64, 0, &arg_max_use },
128 {}
129 };
130
131 return config_parse_many_nulstr(PKGSYSCONFDIR "/coredump.conf",
132 CONF_PATHS_NULSTR("systemd/coredump.conf.d"),
133 "Coredump\0",
134 config_item_table_lookup, items,
135 false, NULL);
136 }
137
138 static inline uint64_t storage_size_max(void) {
139 return arg_storage == COREDUMP_STORAGE_EXTERNAL ? arg_external_size_max : arg_journal_size_max;
140 }
141
142 static int fix_acl(int fd, uid_t uid) {
143
144 #ifdef HAVE_ACL
145 _cleanup_(acl_freep) acl_t acl = NULL;
146 acl_entry_t entry;
147 acl_permset_t permset;
148 int r;
149
150 assert(fd >= 0);
151
152 if (uid <= SYSTEM_UID_MAX)
153 return 0;
154
155 /* Make sure normal users can read (but not write or delete)
156 * their own coredumps */
157
158 acl = acl_get_fd(fd);
159 if (!acl)
160 return log_error_errno(errno, "Failed to get ACL: %m");
161
162 if (acl_create_entry(&acl, &entry) < 0 ||
163 acl_set_tag_type(entry, ACL_USER) < 0 ||
164 acl_set_qualifier(entry, &uid) < 0)
165 return log_error_errno(errno, "Failed to patch ACL: %m");
166
167 if (acl_get_permset(entry, &permset) < 0 ||
168 acl_add_perm(permset, ACL_READ) < 0)
169 return log_warning_errno(errno, "Failed to patch ACL: %m");
170
171 r = calc_acl_mask_if_needed(&acl);
172 if (r < 0)
173 return log_warning_errno(r, "Failed to patch ACL: %m");
174
175 if (acl_set_fd(fd, acl) < 0)
176 return log_error_errno(errno, "Failed to apply ACL: %m");
177 #endif
178
179 return 0;
180 }
181
182 static int fix_xattr(int fd, const char *context[_CONTEXT_MAX]) {
183
184 static const char * const xattrs[_CONTEXT_MAX] = {
185 [CONTEXT_PID] = "user.coredump.pid",
186 [CONTEXT_UID] = "user.coredump.uid",
187 [CONTEXT_GID] = "user.coredump.gid",
188 [CONTEXT_SIGNAL] = "user.coredump.signal",
189 [CONTEXT_TIMESTAMP] = "user.coredump.timestamp",
190 [CONTEXT_COMM] = "user.coredump.comm",
191 [CONTEXT_EXE] = "user.coredump.exe",
192 };
193
194 int r = 0;
195 unsigned i;
196
197 assert(fd >= 0);
198
199 /* Attach some metadata to coredumps via extended
200 * attributes. Just because we can. */
201
202 for (i = 0; i < _CONTEXT_MAX; i++) {
203 int k;
204
205 if (isempty(context[i]) || !xattrs[i])
206 continue;
207
208 k = fsetxattr(fd, xattrs[i], context[i], strlen(context[i]), XATTR_CREATE);
209 if (k < 0 && r == 0)
210 r = -errno;
211 }
212
213 return r;
214 }
215
216 #define filename_escape(s) xescape((s), "./ ")
217
218 static inline const char *coredump_tmpfile_name(const char *s) {
219 return s ? s : "(unnamed temporary file)";
220 }
221
222 static int fix_permissions(
223 int fd,
224 const char *filename,
225 const char *target,
226 const char *context[_CONTEXT_MAX],
227 uid_t uid) {
228
229 int r;
230
231 assert(fd >= 0);
232 assert(target);
233 assert(context);
234
235 /* Ignore errors on these */
236 (void) fchmod(fd, 0640);
237 (void) fix_acl(fd, uid);
238 (void) fix_xattr(fd, context);
239
240 if (fsync(fd) < 0)
241 return log_error_errno(errno, "Failed to sync coredump %s: %m", coredump_tmpfile_name(filename));
242
243 r = link_tmpfile(fd, filename, target);
244 if (r < 0)
245 return log_error_errno(r, "Failed to move coredump %s into place: %m", target);
246
247 return 0;
248 }
249
250 static int maybe_remove_external_coredump(const char *filename, uint64_t size) {
251
252 /* Returns 1 if might remove, 0 if will not remove, < 0 on error. */
253
254 if (arg_storage == COREDUMP_STORAGE_EXTERNAL &&
255 size <= arg_external_size_max)
256 return 0;
257
258 if (!filename)
259 return 1;
260
261 if (unlink(filename) < 0 && errno != ENOENT)
262 return log_error_errno(errno, "Failed to unlink %s: %m", filename);
263
264 return 1;
265 }
266
267 static int make_filename(const char *context[_CONTEXT_MAX], char **ret) {
268 _cleanup_free_ char *c = NULL, *u = NULL, *p = NULL, *t = NULL;
269 sd_id128_t boot = {};
270 int r;
271
272 assert(context);
273
274 c = filename_escape(context[CONTEXT_COMM]);
275 if (!c)
276 return -ENOMEM;
277
278 u = filename_escape(context[CONTEXT_UID]);
279 if (!u)
280 return -ENOMEM;
281
282 r = sd_id128_get_boot(&boot);
283 if (r < 0)
284 return r;
285
286 p = filename_escape(context[CONTEXT_PID]);
287 if (!p)
288 return -ENOMEM;
289
290 t = filename_escape(context[CONTEXT_TIMESTAMP]);
291 if (!t)
292 return -ENOMEM;
293
294 if (asprintf(ret,
295 "/var/lib/systemd/coredump/core.%s.%s." SD_ID128_FORMAT_STR ".%s.%s000000",
296 c,
297 u,
298 SD_ID128_FORMAT_VAL(boot),
299 p,
300 t) < 0)
301 return -ENOMEM;
302
303 return 0;
304 }
305
306 static int save_external_coredump(
307 const char *context[_CONTEXT_MAX],
308 int input_fd,
309 char **ret_filename,
310 int *ret_node_fd,
311 int *ret_data_fd,
312 uint64_t *ret_size) {
313
314 _cleanup_free_ char *fn = NULL, *tmp = NULL;
315 _cleanup_close_ int fd = -1;
316 uint64_t rlimit, max_size;
317 struct stat st;
318 uid_t uid;
319 int r;
320
321 assert(context);
322 assert(ret_filename);
323 assert(ret_node_fd);
324 assert(ret_data_fd);
325 assert(ret_size);
326
327 r = parse_uid(context[CONTEXT_UID], &uid);
328 if (r < 0)
329 return log_error_errno(r, "Failed to parse UID: %m");
330
331 r = safe_atou64(context[CONTEXT_RLIMIT], &rlimit);
332 if (r < 0)
333 return log_error_errno(r, "Failed to parse resource limit: %s", context[CONTEXT_RLIMIT]);
334 if (rlimit < page_size()) {
335 /* Is coredumping disabled? Then don't bother saving/processing the coredump.
336 * Anything below PAGE_SIZE cannot give a readable coredump (the kernel uses
337 * ELF_EXEC_PAGESIZE which is not easily accessible, but is usually the same as PAGE_SIZE. */
338 log_info("Resource limits disable core dumping for process %s (%s).",
339 context[CONTEXT_PID], context[CONTEXT_COMM]);
340 return -EBADSLT;
341 }
342
343 /* Never store more than the process configured, or than we actually shall keep or process */
344 max_size = MIN(rlimit, MAX(arg_process_size_max, storage_size_max()));
345
346 r = make_filename(context, &fn);
347 if (r < 0)
348 return log_error_errno(r, "Failed to determine coredump file name: %m");
349
350 mkdir_p_label("/var/lib/systemd/coredump", 0755);
351
352 fd = open_tmpfile_linkable(fn, O_RDWR|O_CLOEXEC, &tmp);
353 if (fd < 0)
354 return log_error_errno(fd, "Failed to create temporary file for coredump %s: %m", fn);
355
356 r = copy_bytes(input_fd, fd, max_size, false);
357 if (r < 0) {
358 log_error_errno(r, "Cannot store coredump of %s (%s): %m", context[CONTEXT_PID], context[CONTEXT_COMM]);
359 goto fail;
360 } else if (r == 1)
361 log_struct(LOG_INFO,
362 LOG_MESSAGE("Core file was truncated to %zu bytes.", max_size),
363 "SIZE_LIMIT=%zu", max_size,
364 "MESSAGE_ID=" SD_MESSAGE_TRUNCATED_CORE_STR,
365 NULL);
366
367 if (fstat(fd, &st) < 0) {
368 log_error_errno(errno, "Failed to fstat core file %s: %m", coredump_tmpfile_name(tmp));
369 goto fail;
370 }
371
372 if (lseek(fd, 0, SEEK_SET) == (off_t) -1) {
373 log_error_errno(errno, "Failed to seek on %s: %m", coredump_tmpfile_name(tmp));
374 goto fail;
375 }
376
377 #if defined(HAVE_XZ) || defined(HAVE_LZ4)
378 /* If we will remove the coredump anyway, do not compress. */
379 if (arg_compress && !maybe_remove_external_coredump(NULL, st.st_size)) {
380
381 _cleanup_free_ char *fn_compressed = NULL, *tmp_compressed = NULL;
382 _cleanup_close_ int fd_compressed = -1;
383
384 fn_compressed = strappend(fn, COMPRESSED_EXT);
385 if (!fn_compressed) {
386 log_oom();
387 goto uncompressed;
388 }
389
390 fd_compressed = open_tmpfile_linkable(fn_compressed, O_RDWR|O_CLOEXEC, &tmp_compressed);
391 if (fd_compressed < 0) {
392 log_error_errno(fd_compressed, "Failed to create temporary file for coredump %s: %m", fn_compressed);
393 goto uncompressed;
394 }
395
396 r = compress_stream(fd, fd_compressed, -1);
397 if (r < 0) {
398 log_error_errno(r, "Failed to compress %s: %m", coredump_tmpfile_name(tmp_compressed));
399 goto fail_compressed;
400 }
401
402 r = fix_permissions(fd_compressed, tmp_compressed, fn_compressed, context, uid);
403 if (r < 0)
404 goto fail_compressed;
405
406 /* OK, this worked, we can get rid of the uncompressed version now */
407 if (tmp)
408 unlink_noerrno(tmp);
409
410 *ret_filename = fn_compressed; /* compressed */
411 *ret_node_fd = fd_compressed; /* compressed */
412 *ret_data_fd = fd; /* uncompressed */
413 *ret_size = (uint64_t) st.st_size; /* uncompressed */
414
415 fn_compressed = NULL;
416 fd = fd_compressed = -1;
417
418 return 0;
419
420 fail_compressed:
421 if (tmp_compressed)
422 (void) unlink(tmp_compressed);
423 }
424
425 uncompressed:
426 #endif
427
428 r = fix_permissions(fd, tmp, fn, context, uid);
429 if (r < 0)
430 goto fail;
431
432 *ret_filename = fn;
433 *ret_data_fd = fd;
434 *ret_node_fd = -1;
435 *ret_size = (uint64_t) st.st_size;
436
437 fn = NULL;
438 fd = -1;
439
440 return 0;
441
442 fail:
443 if (tmp)
444 (void) unlink(tmp);
445 return r;
446 }
447
448 static int allocate_journal_field(int fd, size_t size, char **ret, size_t *ret_size) {
449 _cleanup_free_ char *field = NULL;
450 ssize_t n;
451
452 assert(fd >= 0);
453 assert(ret);
454 assert(ret_size);
455
456 if (lseek(fd, 0, SEEK_SET) == (off_t) -1)
457 return log_warning_errno(errno, "Failed to seek: %m");
458
459 field = malloc(9 + size);
460 if (!field) {
461 log_warning("Failed to allocate memory for coredump, coredump will not be stored.");
462 return -ENOMEM;
463 }
464
465 memcpy(field, "COREDUMP=", 9);
466
467 n = read(fd, field + 9, size);
468 if (n < 0)
469 return log_error_errno((int) n, "Failed to read core data: %m");
470 if ((size_t) n < size) {
471 log_error("Core data too short.");
472 return -EIO;
473 }
474
475 *ret = field;
476 *ret_size = size + 9;
477
478 field = NULL;
479
480 return 0;
481 }
482
483 /* Joins /proc/[pid]/fd/ and /proc/[pid]/fdinfo/ into the following lines:
484 * 0:/dev/pts/23
485 * pos: 0
486 * flags: 0100002
487 *
488 * 1:/dev/pts/23
489 * pos: 0
490 * flags: 0100002
491 *
492 * 2:/dev/pts/23
493 * pos: 0
494 * flags: 0100002
495 * EOF
496 */
497 static int compose_open_fds(pid_t pid, char **open_fds) {
498 _cleanup_closedir_ DIR *proc_fd_dir = NULL;
499 _cleanup_close_ int proc_fdinfo_fd = -1;
500 _cleanup_free_ char *buffer = NULL;
501 _cleanup_fclose_ FILE *stream = NULL;
502 const char *fddelim = "", *path;
503 struct dirent *dent = NULL;
504 size_t size = 0;
505 int r = 0;
506
507 assert(pid >= 0);
508 assert(open_fds != NULL);
509
510 path = procfs_file_alloca(pid, "fd");
511 proc_fd_dir = opendir(path);
512 if (!proc_fd_dir)
513 return -errno;
514
515 proc_fdinfo_fd = openat(dirfd(proc_fd_dir), "../fdinfo", O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC|O_PATH);
516 if (proc_fdinfo_fd < 0)
517 return -errno;
518
519 stream = open_memstream(&buffer, &size);
520 if (!stream)
521 return -ENOMEM;
522
523 FOREACH_DIRENT(dent, proc_fd_dir, return -errno) {
524 _cleanup_fclose_ FILE *fdinfo = NULL;
525 _cleanup_free_ char *fdname = NULL;
526 char line[LINE_MAX];
527 int fd;
528
529 r = readlinkat_malloc(dirfd(proc_fd_dir), dent->d_name, &fdname);
530 if (r < 0)
531 return r;
532
533 fprintf(stream, "%s%s:%s\n", fddelim, dent->d_name, fdname);
534 fddelim = "\n";
535
536 /* Use the directory entry from /proc/[pid]/fd with /proc/[pid]/fdinfo */
537 fd = openat(proc_fdinfo_fd, dent->d_name, O_NOFOLLOW|O_CLOEXEC|O_RDONLY);
538 if (fd < 0)
539 continue;
540
541 fdinfo = fdopen(fd, "re");
542 if (fdinfo == NULL) {
543 close(fd);
544 continue;
545 }
546
547 FOREACH_LINE(line, fdinfo, break) {
548 fputs(line, stream);
549 if (!endswith(line, "\n"))
550 fputc('\n', stream);
551 }
552 }
553
554 errno = 0;
555 stream = safe_fclose(stream);
556
557 if (errno > 0)
558 return -errno;
559
560 *open_fds = buffer;
561 buffer = NULL;
562
563 return 0;
564 }
565
566 static int get_process_ns(pid_t pid, const char *namespace, ino_t *ns) {
567 const char *p;
568 struct stat stbuf;
569 _cleanup_close_ int proc_ns_dir_fd;
570
571 p = procfs_file_alloca(pid, "ns");
572
573 proc_ns_dir_fd = open(p, O_DIRECTORY | O_CLOEXEC | O_RDONLY);
574 if (proc_ns_dir_fd < 0)
575 return -errno;
576
577 if (fstatat(proc_ns_dir_fd, namespace, &stbuf, /* flags */0) < 0)
578 return -errno;
579
580 *ns = stbuf.st_ino;
581 return 0;
582 }
583
584 static int get_mount_namespace_leader(pid_t pid, pid_t *container_pid) {
585 pid_t cpid = pid, ppid = 0;
586 ino_t proc_mntns;
587 int r = 0;
588
589 r = get_process_ns(pid, "mnt", &proc_mntns);
590 if (r < 0)
591 return r;
592
593 for (;;) {
594 ino_t parent_mntns;
595
596 r = get_process_ppid(cpid, &ppid);
597 if (r < 0)
598 return r;
599
600 r = get_process_ns(ppid, "mnt", &parent_mntns);
601 if (r < 0)
602 return r;
603
604 if (proc_mntns != parent_mntns)
605 break;
606
607 if (ppid == 1)
608 return -ENOENT;
609
610 cpid = ppid;
611 }
612
613 *container_pid = ppid;
614 return 0;
615 }
616
617 /* Returns 1 if the parent was found.
618 * Returns 0 if there is not a process we can call the pid's
619 * container parent (the pid's process isn't 'containerized').
620 * Returns a negative number on errors.
621 */
622 static int get_process_container_parent_cmdline(pid_t pid, char** cmdline) {
623 int r = 0;
624 pid_t container_pid;
625 const char *proc_root_path;
626 struct stat root_stat, proc_root_stat;
627
628 /* To compare inodes of / and /proc/[pid]/root */
629 if (stat("/", &root_stat) < 0)
630 return -errno;
631
632 proc_root_path = procfs_file_alloca(pid, "root");
633 if (stat(proc_root_path, &proc_root_stat) < 0)
634 return -errno;
635
636 /* The process uses system root. */
637 if (proc_root_stat.st_ino == root_stat.st_ino) {
638 *cmdline = NULL;
639 return 0;
640 }
641
642 r = get_mount_namespace_leader(pid, &container_pid);
643 if (r < 0)
644 return r;
645
646 r = get_process_cmdline(container_pid, 0, false, cmdline);
647 if (r < 0)
648 return r;
649
650 return 1;
651 }
652
653 static int change_uid_gid(const char *context[]) {
654 uid_t uid;
655 gid_t gid;
656 int r;
657
658 r = parse_uid(context[CONTEXT_UID], &uid);
659 if (r < 0)
660 return r;
661
662 if (uid <= SYSTEM_UID_MAX) {
663 const char *user = "systemd-coredump";
664
665 r = get_user_creds(&user, &uid, &gid, NULL, NULL);
666 if (r < 0) {
667 log_warning_errno(r, "Cannot resolve %s user. Proceeding to dump core as root: %m", user);
668 uid = gid = 0;
669 }
670 } else {
671 r = parse_gid(context[CONTEXT_GID], &gid);
672 if (r < 0)
673 return r;
674 }
675
676 return drop_privileges(uid, gid, 0);
677 }
678
679 static int submit_coredump(
680 const char *context[_CONTEXT_MAX],
681 struct iovec *iovec,
682 size_t n_iovec_allocated,
683 size_t n_iovec,
684 int input_fd) {
685
686 _cleanup_close_ int coredump_fd = -1, coredump_node_fd = -1;
687 _cleanup_free_ char *core_message = NULL, *filename = NULL, *coredump_data = NULL;
688 uint64_t coredump_size = UINT64_MAX;
689 int r;
690
691 assert(context);
692 assert(iovec);
693 assert(n_iovec_allocated >= n_iovec + 3);
694 assert(input_fd >= 0);
695
696 /* Vacuum before we write anything again */
697 (void) coredump_vacuum(-1, arg_keep_free, arg_max_use);
698
699 /* Always stream the coredump to disk, if that's possible */
700 r = save_external_coredump(context, input_fd, &filename, &coredump_node_fd, &coredump_fd, &coredump_size);
701 if (r < 0)
702 /* Skip whole core dumping part */
703 goto log;
704
705 /* If we don't want to keep the coredump on disk, remove it now, as later on we will lack the privileges for
706 * it. However, we keep the fd to it, so that we can still process it and log it. */
707 r = maybe_remove_external_coredump(filename, coredump_size);
708 if (r < 0)
709 return r;
710 if (r == 0) {
711 const char *coredump_filename;
712
713 coredump_filename = strjoina("COREDUMP_FILENAME=", filename);
714 IOVEC_SET_STRING(iovec[n_iovec++], coredump_filename);
715 } else if (arg_storage == COREDUMP_STORAGE_EXTERNAL)
716 log_info("The core will not be stored: size %"PRIu64" is greater than %"PRIu64" (the configured maximum)",
717 coredump_size, arg_external_size_max);
718
719 /* Vacuum again, but exclude the coredump we just created */
720 (void) coredump_vacuum(coredump_node_fd >= 0 ? coredump_node_fd : coredump_fd, arg_keep_free, arg_max_use);
721
722 /* Now, let's drop privileges to become the user who owns the segfaulted process and allocate the coredump
723 * memory under the user's uid. This also ensures that the credentials journald will see are the ones of the
724 * coredumping user, thus making sure the user gets access to the core dump. Let's also get rid of all
725 * capabilities, if we run as root, we won't need them anymore. */
726 r = change_uid_gid(context);
727 if (r < 0)
728 return log_error_errno(r, "Failed to drop privileges: %m");
729
730 #ifdef HAVE_ELFUTILS
731 /* Try to get a strack trace if we can */
732 if (coredump_size <= arg_process_size_max) {
733 _cleanup_free_ char *stacktrace = NULL;
734
735 r = coredump_make_stack_trace(coredump_fd, context[CONTEXT_EXE], &stacktrace);
736 if (r >= 0)
737 core_message = strjoin("MESSAGE=Process ", context[CONTEXT_PID],
738 " (", context[CONTEXT_COMM], ") of user ",
739 context[CONTEXT_UID], " dumped core.\n\n",
740 stacktrace);
741 else if (r == -EINVAL)
742 log_warning("Failed to generate stack trace: %s", dwfl_errmsg(dwfl_errno()));
743 else
744 log_warning_errno(r, "Failed to generate stack trace: %m");
745 } else
746 log_debug("Not generating stack trace: core size %"PRIu64" is greater than %"PRIu64" (the configured maximum)",
747 coredump_size, arg_process_size_max);
748
749 if (!core_message)
750 #endif
751 log:
752 core_message = strjoin("MESSAGE=Process ", context[CONTEXT_PID], " (",
753 context[CONTEXT_COMM], ") of user ",
754 context[CONTEXT_UID], " dumped core.");
755 if (core_message)
756 IOVEC_SET_STRING(iovec[n_iovec++], core_message);
757
758 /* Optionally store the entire coredump in the journal */
759 if (arg_storage == COREDUMP_STORAGE_JOURNAL) {
760 if (coredump_size <= arg_journal_size_max) {
761 size_t sz = 0;
762
763 /* Store the coredump itself in the journal */
764
765 r = allocate_journal_field(coredump_fd, (size_t) coredump_size, &coredump_data, &sz);
766 if (r >= 0) {
767 iovec[n_iovec].iov_base = coredump_data;
768 iovec[n_iovec].iov_len = sz;
769 n_iovec++;
770 } else
771 log_warning_errno(r, "Failed to attach the core to the journal entry: %m");
772 } else
773 log_info("The core will not be stored: size %"PRIu64" is greater than %"PRIu64" (the configured maximum)",
774 coredump_size, arg_journal_size_max);
775 }
776
777 assert(n_iovec <= n_iovec_allocated);
778
779 r = sd_journal_sendv(iovec, n_iovec);
780 if (r < 0)
781 return log_error_errno(r, "Failed to log coredump: %m");
782
783 return 0;
784 }
785
786 static void map_context_fields(const struct iovec *iovec, const char *context[]) {
787
788 static const char * const context_field_names[_CONTEXT_MAX] = {
789 [CONTEXT_PID] = "COREDUMP_PID=",
790 [CONTEXT_UID] = "COREDUMP_UID=",
791 [CONTEXT_GID] = "COREDUMP_GID=",
792 [CONTEXT_SIGNAL] = "COREDUMP_SIGNAL=",
793 [CONTEXT_TIMESTAMP] = "COREDUMP_TIMESTAMP=",
794 [CONTEXT_COMM] = "COREDUMP_COMM=",
795 [CONTEXT_EXE] = "COREDUMP_EXE=",
796 [CONTEXT_RLIMIT] = "COREDUMP_RLIMIT=",
797 };
798
799 unsigned i;
800
801 assert(iovec);
802 assert(context);
803
804 for (i = 0; i < _CONTEXT_MAX; i++) {
805 size_t l;
806
807 l = strlen(context_field_names[i]);
808 if (iovec->iov_len < l)
809 continue;
810
811 if (memcmp(iovec->iov_base, context_field_names[i], l) != 0)
812 continue;
813
814 /* Note that these strings are NUL terminated, because we made sure that a trailing NUL byte is in the
815 * buffer, though not included in the iov_len count. (see below) */
816 context[i] = (char*) iovec->iov_base + l;
817 break;
818 }
819 }
820
821 static int process_socket(int fd) {
822 _cleanup_close_ int coredump_fd = -1;
823 struct iovec *iovec = NULL;
824 size_t n_iovec = 0, n_allocated = 0, i, k;
825 const char *context[_CONTEXT_MAX] = {};
826 int r;
827
828 assert(fd >= 0);
829
830 log_set_target(LOG_TARGET_AUTO);
831 log_parse_environment();
832 log_open();
833
834 log_debug("Processing coredump received on stdin...");
835
836 for (;;) {
837 union {
838 struct cmsghdr cmsghdr;
839 uint8_t buf[CMSG_SPACE(sizeof(int))];
840 } control = {};
841 struct msghdr mh = {
842 .msg_control = &control,
843 .msg_controllen = sizeof(control),
844 .msg_iovlen = 1,
845 };
846 ssize_t n;
847 ssize_t l;
848
849 if (!GREEDY_REALLOC(iovec, n_allocated, n_iovec + 3)) {
850 r = log_oom();
851 goto finish;
852 }
853
854 l = next_datagram_size_fd(fd);
855 if (l < 0) {
856 r = log_error_errno(l, "Failed to determine datagram size to read: %m");
857 goto finish;
858 }
859
860 assert(l >= 0);
861
862 iovec[n_iovec].iov_len = l;
863 iovec[n_iovec].iov_base = malloc(l + 1);
864 if (!iovec[n_iovec].iov_base) {
865 r = log_oom();
866 goto finish;
867 }
868
869 mh.msg_iov = iovec + n_iovec;
870
871 n = recvmsg(fd, &mh, MSG_NOSIGNAL|MSG_CMSG_CLOEXEC);
872 if (n < 0) {
873 free(iovec[n_iovec].iov_base);
874 r = log_error_errno(errno, "Failed to receive datagram: %m");
875 goto finish;
876 }
877
878 if (n == 0) {
879 struct cmsghdr *cmsg, *found = NULL;
880 /* The final zero-length datagram carries the file descriptor and tells us that we're done. */
881
882 free(iovec[n_iovec].iov_base);
883
884 CMSG_FOREACH(cmsg, &mh) {
885 if (cmsg->cmsg_level == SOL_SOCKET &&
886 cmsg->cmsg_type == SCM_RIGHTS &&
887 cmsg->cmsg_len == CMSG_LEN(sizeof(int))) {
888 assert(!found);
889 found = cmsg;
890 }
891 }
892
893 if (!found) {
894 log_error("Coredump file descriptor missing.");
895 r = -EBADMSG;
896 goto finish;
897 }
898
899 assert(coredump_fd < 0);
900 coredump_fd = *(int*) CMSG_DATA(found);
901 break;
902 }
903
904 /* Add trailing NUL byte, in case these are strings */
905 ((char*) iovec[n_iovec].iov_base)[n] = 0;
906 iovec[n_iovec].iov_len = (size_t) n;
907
908 cmsg_close_all(&mh);
909 map_context_fields(iovec + n_iovec, context);
910 n_iovec++;
911 }
912
913 if (!GREEDY_REALLOC(iovec, n_allocated, n_iovec + 3)) {
914 r = log_oom();
915 goto finish;
916 }
917
918 /* Make sure we got all data we really need */
919 assert(context[CONTEXT_PID]);
920 assert(context[CONTEXT_UID]);
921 assert(context[CONTEXT_GID]);
922 assert(context[CONTEXT_SIGNAL]);
923 assert(context[CONTEXT_TIMESTAMP]);
924 assert(context[CONTEXT_RLIMIT]);
925 assert(context[CONTEXT_COMM]);
926 assert(coredump_fd >= 0);
927
928 /* Small quirk: the journal fields contain the timestamp padded with six zeroes, so that the kernel-supplied 1s
929 * granularity timestamps becomes 1µs granularity, i.e. the granularity systemd usually operates in. Since we
930 * are reconstructing the original kernel context, we chop this off again, here. */
931 k = strlen(context[CONTEXT_TIMESTAMP]);
932 if (k > 6)
933 context[CONTEXT_TIMESTAMP] = strndupa(context[CONTEXT_TIMESTAMP], k - 6);
934
935 r = submit_coredump(context, iovec, n_allocated, n_iovec, coredump_fd);
936
937 finish:
938 for (i = 0; i < n_iovec; i++)
939 free(iovec[i].iov_base);
940 free(iovec);
941
942 return r;
943 }
944
945 static int send_iovec(const struct iovec iovec[], size_t n_iovec, int input_fd) {
946
947 static const union sockaddr_union sa = {
948 .un.sun_family = AF_UNIX,
949 .un.sun_path = "/run/systemd/coredump",
950 };
951 _cleanup_close_ int fd = -1;
952 size_t i;
953 int r;
954
955 assert(iovec || n_iovec <= 0);
956 assert(input_fd >= 0);
957
958 fd = socket(AF_UNIX, SOCK_SEQPACKET|SOCK_CLOEXEC, 0);
959 if (fd < 0)
960 return log_error_errno(errno, "Failed to create coredump socket: %m");
961
962 if (connect(fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0)
963 return log_error_errno(errno, "Failed to connect to coredump service: %m");
964
965 for (i = 0; i < n_iovec; i++) {
966 struct msghdr mh = {
967 .msg_iov = (struct iovec*) iovec + i,
968 .msg_iovlen = 1,
969 };
970 struct iovec copy[2];
971
972 for (;;) {
973 if (sendmsg(fd, &mh, MSG_NOSIGNAL) >= 0)
974 break;
975
976 if (errno == EMSGSIZE && mh.msg_iov[0].iov_len > 0) {
977 /* This field didn't fit? That's a pity. Given that this is just metadata,
978 * let's truncate the field at half, and try again. We append three dots, in
979 * order to show that this is truncated. */
980
981 if (mh.msg_iov != copy) {
982 /* We don't want to modify the caller's iovec, hence let's create our
983 * own array, consisting of two new iovecs, where the first is a
984 * (truncated) copy of what we want to send, and the second one
985 * contains the trailing dots. */
986 copy[0] = iovec[i];
987 copy[1] = (struct iovec) {
988 .iov_base = (char[]) { '.', '.', '.' },
989 .iov_len = 3,
990 };
991
992 mh.msg_iov = copy;
993 mh.msg_iovlen = 2;
994 }
995
996 copy[0].iov_len /= 2; /* halve it, and try again */
997 continue;
998 }
999
1000 return log_error_errno(errno, "Failed to send coredump datagram: %m");
1001 }
1002 }
1003
1004 r = send_one_fd(fd, input_fd, 0);
1005 if (r < 0)
1006 return log_error_errno(r, "Failed to send coredump fd: %m");
1007
1008 return 0;
1009 }
1010
1011 static int process_special_crash(const char *context[], int input_fd) {
1012 _cleanup_close_ int coredump_fd = -1, coredump_node_fd = -1;
1013 _cleanup_free_ char *filename = NULL;
1014 uint64_t coredump_size;
1015 int r;
1016
1017 assert(context);
1018 assert(input_fd >= 0);
1019
1020 /* If we are pid1 or journald, we cut things short, don't write to the journal, but still create a coredump. */
1021
1022 if (arg_storage != COREDUMP_STORAGE_NONE)
1023 arg_storage = COREDUMP_STORAGE_EXTERNAL;
1024
1025 r = save_external_coredump(context, input_fd, &filename, &coredump_node_fd, &coredump_fd, &coredump_size);
1026 if (r < 0)
1027 return r;
1028
1029 r = maybe_remove_external_coredump(filename, coredump_size);
1030 if (r < 0)
1031 return r;
1032
1033 log_notice("Detected coredump of the journal daemon or PID 1, diverted to %s.", filename);
1034
1035 return 0;
1036 }
1037
1038 static char* set_iovec_field(struct iovec iovec[27], size_t *n_iovec, const char *field, const char *value) {
1039 char *x;
1040
1041 x = strappend(field, value);
1042 if (x)
1043 IOVEC_SET_STRING(iovec[(*n_iovec)++], x);
1044 return x;
1045 }
1046
1047 static char* set_iovec_field_free(struct iovec iovec[27], size_t *n_iovec, const char *field, char *value) {
1048 char *x;
1049
1050 x = set_iovec_field(iovec, n_iovec, field, value);
1051 free(value);
1052 return x;
1053 }
1054
1055 static int gather_pid_metadata_and_process_special_crash(
1056 const char *context[_CONTEXT_MAX],
1057 char **comm_fallback,
1058 char **comm_ret,
1059 struct iovec *iovec, size_t *n_iovec) {
1060
1061 /* We need 26 empty slots in iovec!
1062 *
1063 * Note that if we fail on oom later on, we do not roll-back changes to the iovec structure. (It remains valid,
1064 * with the first n_iovec fields initialized.) */
1065
1066 _cleanup_free_ char *exe = NULL, *comm = NULL;
1067 uid_t owner_uid;
1068 pid_t pid;
1069 char *t;
1070 const char *p;
1071 int r, signo;
1072
1073 r = parse_pid(context[CONTEXT_PID], &pid);
1074 if (r < 0)
1075 return log_error_errno(r, "Failed to parse PID \"%s\": %m", context[CONTEXT_PID]);
1076
1077 r = get_process_comm(pid, &comm);
1078 if (r < 0) {
1079 log_warning_errno(r, "Failed to get COMM, falling back to the command line: %m");
1080 comm = strv_join(comm_fallback, " ");
1081 if (!comm)
1082 return log_oom();
1083 }
1084
1085 r = get_process_exe(pid, &exe);
1086 if (r < 0)
1087 log_warning_errno(r, "Failed to get EXE, ignoring: %m");
1088
1089 if (cg_pid_get_unit(pid, &t) >= 0) {
1090
1091 /* If this is PID 1 disable coredump collection, we'll unlikely be able to process it later on. */
1092 if (streq(t, SPECIAL_INIT_SCOPE)) {
1093 log_notice("Due to PID 1 having crashed coredump collection will now be turned off.");
1094 (void) write_string_file("/proc/sys/kernel/core_pattern", "|/bin/false", 0);
1095 }
1096
1097 /* Let's avoid dead-locks when processing journald and init crashes, as socket activation and logging
1098 * are unlikely to work then. */
1099 if (STR_IN_SET(t, SPECIAL_JOURNALD_SERVICE, SPECIAL_INIT_SCOPE)) {
1100 free(t);
1101 r = process_special_crash(context, STDIN_FILENO);
1102 if (r < 0)
1103 return r;
1104
1105 return 1; /* > 0 means: we have already processed it, because it's a special crash */
1106 }
1107
1108 set_iovec_field_free(iovec, n_iovec, "COREDUMP_UNIT=", t);
1109 }
1110
1111 /* OK, now we know it's not the journal, hence we can make use of it now. */
1112 log_set_target(LOG_TARGET_JOURNAL_OR_KMSG);
1113 log_open();
1114
1115 if (cg_pid_get_user_unit(pid, &t) >= 0)
1116 set_iovec_field_free(iovec, n_iovec, "COREDUMP_USER_UNIT=", t);
1117
1118 /* The next few are mandatory */
1119 if (!set_iovec_field(iovec, n_iovec, "COREDUMP_PID=", context[CONTEXT_PID]))
1120 return log_oom();
1121
1122 if (!set_iovec_field(iovec, n_iovec, "COREDUMP_UID=", context[CONTEXT_UID]))
1123 return log_oom();
1124
1125 if (!set_iovec_field(iovec, n_iovec, "COREDUMP_GID=", context[CONTEXT_GID]))
1126 return log_oom();
1127
1128 if (!set_iovec_field(iovec, n_iovec, "COREDUMP_SIGNAL=", context[CONTEXT_SIGNAL]))
1129 return log_oom();
1130
1131 if (!set_iovec_field(iovec, n_iovec, "COREDUMP_RLIMIT=", context[CONTEXT_RLIMIT]))
1132 return log_oom();
1133
1134 if (!set_iovec_field(iovec, n_iovec, "COREDUMP_COMM=", comm))
1135 return log_oom();
1136
1137 if (exe &&
1138 !set_iovec_field(iovec, n_iovec, "COREDUMP_EXE=", exe))
1139 return log_oom();
1140
1141 if (sd_pid_get_session(pid, &t) >= 0)
1142 set_iovec_field_free(iovec, n_iovec, "COREDUMP_SESSION=", t);
1143
1144 if (sd_pid_get_owner_uid(pid, &owner_uid) >= 0) {
1145 r = asprintf(&t, "COREDUMP_OWNER_UID=" UID_FMT, owner_uid);
1146 if (r > 0)
1147 IOVEC_SET_STRING(iovec[(*n_iovec)++], t);
1148 }
1149
1150 if (sd_pid_get_slice(pid, &t) >= 0)
1151 set_iovec_field_free(iovec, n_iovec, "COREDUMP_SLICE=", t);
1152
1153 if (get_process_cmdline(pid, 0, false, &t) >= 0)
1154 set_iovec_field_free(iovec, n_iovec, "COREDUMP_CMDLINE=", t);
1155
1156 if (cg_pid_get_path_shifted(pid, NULL, &t) >= 0)
1157 set_iovec_field_free(iovec, n_iovec, "COREDUMP_CGROUP=", t);
1158
1159 if (compose_open_fds(pid, &t) >= 0)
1160 set_iovec_field_free(iovec, n_iovec, "COREDUMP_OPEN_FDS=", t);
1161
1162 p = procfs_file_alloca(pid, "status");
1163 if (read_full_file(p, &t, NULL) >= 0)
1164 set_iovec_field_free(iovec, n_iovec, "COREDUMP_PROC_STATUS=", t);
1165
1166 p = procfs_file_alloca(pid, "maps");
1167 if (read_full_file(p, &t, NULL) >= 0)
1168 set_iovec_field_free(iovec, n_iovec, "COREDUMP_PROC_MAPS=", t);
1169
1170 p = procfs_file_alloca(pid, "limits");
1171 if (read_full_file(p, &t, NULL) >= 0)
1172 set_iovec_field_free(iovec, n_iovec, "COREDUMP_PROC_LIMITS=", t);
1173
1174 p = procfs_file_alloca(pid, "cgroup");
1175 if (read_full_file(p, &t, NULL) >=0)
1176 set_iovec_field_free(iovec, n_iovec, "COREDUMP_PROC_CGROUP=", t);
1177
1178 p = procfs_file_alloca(pid, "mountinfo");
1179 if (read_full_file(p, &t, NULL) >=0)
1180 set_iovec_field_free(iovec, n_iovec, "COREDUMP_PROC_MOUNTINFO=", t);
1181
1182 if (get_process_cwd(pid, &t) >= 0)
1183 set_iovec_field_free(iovec, n_iovec, "COREDUMP_CWD=", t);
1184
1185 if (get_process_root(pid, &t) >= 0) {
1186 bool proc_self_root_is_slash;
1187
1188 proc_self_root_is_slash = strcmp(t, "/") == 0;
1189
1190 set_iovec_field_free(iovec, n_iovec, "COREDUMP_ROOT=", t);
1191
1192 /* If the process' root is "/", then there is a chance it has
1193 * mounted own root and hence being containerized. */
1194 if (proc_self_root_is_slash && get_process_container_parent_cmdline(pid, &t) > 0)
1195 set_iovec_field_free(iovec, n_iovec, "COREDUMP_CONTAINER_CMDLINE=", t);
1196 }
1197
1198 if (get_process_environ(pid, &t) >= 0)
1199 set_iovec_field_free(iovec, n_iovec, "COREDUMP_ENVIRON=", t);
1200
1201 t = strjoin("COREDUMP_TIMESTAMP=", context[CONTEXT_TIMESTAMP], "000000", NULL);
1202 if (t)
1203 IOVEC_SET_STRING(iovec[(*n_iovec)++], t);
1204
1205 if (safe_atoi(context[CONTEXT_SIGNAL], &signo) >= 0 && SIGNAL_VALID(signo))
1206 set_iovec_field(iovec, n_iovec, "COREDUMP_SIGNAL_NAME=SIG", signal_to_string(signo));
1207
1208 if (comm_ret) {
1209 *comm_ret = comm;
1210 comm = NULL;
1211 }
1212
1213 return 0; /* == 0 means: we successfully acquired all metadata */
1214 }
1215
1216 static int process_kernel(int argc, char* argv[]) {
1217
1218 const char *context[_CONTEXT_MAX];
1219 struct iovec iovec[28];
1220 size_t i, n_iovec, n_to_free = 0;
1221 int r;
1222
1223 log_debug("Processing coredump received from the kernel...");
1224
1225 if (argc < CONTEXT_COMM + 1) {
1226 log_error("Not enough arguments passed by the kernel (%i, expected %i).", argc - 1, CONTEXT_COMM + 1 - 1);
1227 return -EINVAL;
1228 }
1229
1230 context[CONTEXT_PID] = argv[CONTEXT_PID + 1];
1231 context[CONTEXT_UID] = argv[CONTEXT_UID + 1];
1232 context[CONTEXT_GID] = argv[CONTEXT_GID + 1];
1233 context[CONTEXT_SIGNAL] = argv[CONTEXT_SIGNAL + 1];
1234 context[CONTEXT_TIMESTAMP] = argv[CONTEXT_TIMESTAMP + 1];
1235 context[CONTEXT_RLIMIT] = argv[CONTEXT_RLIMIT + 1];
1236
1237 r = gather_pid_metadata_and_process_special_crash(context, argv + CONTEXT_COMM + 1, NULL, iovec, &n_to_free);
1238 if (r < 0)
1239 goto finish;
1240 if (r > 0) {
1241 /* This was a special crash, and has already been processed. */
1242 r = 0;
1243 goto finish;
1244 }
1245
1246 n_iovec = n_to_free;
1247
1248 IOVEC_SET_STRING(iovec[n_iovec++], "MESSAGE_ID=" SD_MESSAGE_COREDUMP_STR);
1249
1250 assert_cc(2 == LOG_CRIT);
1251 IOVEC_SET_STRING(iovec[n_iovec++], "PRIORITY=2");
1252
1253 assert(n_iovec <= ELEMENTSOF(iovec));
1254
1255 r = send_iovec(iovec, n_iovec, STDIN_FILENO);
1256
1257 finish:
1258 for (i = 0; i < n_to_free; i++)
1259 free(iovec[i].iov_base);
1260
1261 return r;
1262 }
1263
1264 static int process_backtrace(int argc, char *argv[]) {
1265 const char *context[_CONTEXT_MAX];
1266 _cleanup_free_ char *comm = NULL, *message = NULL;
1267 _cleanup_free_ struct iovec *iovec = NULL;
1268 size_t n_iovec, n_allocated, n_to_free = 0, i;
1269 int r;
1270 JournalImporter importer = {
1271 .fd = STDIN_FILENO,
1272 };
1273
1274 log_debug("Processing backtrace on stdin...");
1275
1276 if (argc < CONTEXT_COMM + 1) {
1277 log_error("Not enough arguments passed (%i, expected %i).", argc - 1, CONTEXT_COMM + 1 - 1);
1278 return -EINVAL;
1279 }
1280
1281 context[CONTEXT_PID] = argv[CONTEXT_PID + 2];
1282 context[CONTEXT_UID] = argv[CONTEXT_UID + 2];
1283 context[CONTEXT_GID] = argv[CONTEXT_GID + 2];
1284 context[CONTEXT_SIGNAL] = argv[CONTEXT_SIGNAL + 2];
1285 context[CONTEXT_TIMESTAMP] = argv[CONTEXT_TIMESTAMP + 2];
1286 context[CONTEXT_RLIMIT] = argv[CONTEXT_RLIMIT + 2];
1287
1288 n_allocated = 33; /* 25 metadata, 2 static, +unknown input, rounded up */
1289 iovec = new(struct iovec, n_allocated);
1290 if (!iovec)
1291 return log_oom();
1292
1293 r = gather_pid_metadata_and_process_special_crash(context, argv + CONTEXT_COMM + 2, &comm, iovec, &n_to_free);
1294 if (r < 0)
1295 goto finish;
1296 if (r > 0) {
1297 /* This was a special crash, and has already been processed. */
1298 r = 0;
1299 goto finish;
1300 }
1301 n_iovec = n_to_free;
1302
1303 for (;;) {
1304 r = journal_importer_process_data(&importer);
1305 if (r < 0) {
1306 log_error_errno(r, "Failed to parse journal entry on stdin: %m");
1307 goto finish;
1308 }
1309 if (r == 1)
1310 break;
1311 }
1312
1313 if (!GREEDY_REALLOC(iovec, n_allocated, n_iovec + importer.iovw.count + 2))
1314 return log_oom();
1315
1316 if (journal_importer_eof(&importer)) {
1317 log_warning("Did not receive a full journal entry on stdin, ignoring message sent by reporter");
1318
1319 message = strjoin("MESSAGE=Process ", context[CONTEXT_PID], " (", comm, ")"
1320 " of user ", context[CONTEXT_UID],
1321 " failed with ", context[CONTEXT_SIGNAL]);
1322 if (!message) {
1323 r = log_oom();
1324 goto finish;
1325 }
1326 IOVEC_SET_STRING(iovec[n_iovec++], message);
1327 } else {
1328 for (i = 0; i < importer.iovw.count; i++)
1329 iovec[n_iovec++] = importer.iovw.iovec[i];
1330 }
1331
1332 IOVEC_SET_STRING(iovec[n_iovec++], "MESSAGE_ID=" SD_MESSAGE_BACKTRACE_STR);
1333 assert_cc(2 == LOG_CRIT);
1334 IOVEC_SET_STRING(iovec[n_iovec++], "PRIORITY=2");
1335
1336 assert(n_iovec <= n_allocated);
1337
1338 r = sd_journal_sendv(iovec, n_iovec);
1339 if (r < 0)
1340 log_error_errno(r, "Failed to log backtrace: %m");
1341
1342 finish:
1343 for (i = 0; i < n_to_free; i++)
1344 free(iovec[i].iov_base);
1345
1346 return r;
1347 }
1348
1349 int main(int argc, char *argv[]) {
1350 int r;
1351
1352 /* First, log to a safe place, since we don't know what crashed and it might
1353 * be journald which we'd rather not log to then. */
1354
1355 log_set_target(LOG_TARGET_KMSG);
1356 log_open();
1357
1358 /* Make sure we never enter a loop */
1359 (void) prctl(PR_SET_DUMPABLE, 0);
1360
1361 /* Ignore all parse errors */
1362 (void) parse_config();
1363
1364 log_debug("Selected storage '%s'.", coredump_storage_to_string(arg_storage));
1365 log_debug("Selected compression %s.", yes_no(arg_compress));
1366
1367 r = sd_listen_fds(false);
1368 if (r < 0) {
1369 log_error_errno(r, "Failed to determine number of file descriptor: %m");
1370 goto finish;
1371 }
1372
1373 /* If we got an fd passed, we are running in coredumpd mode. Otherwise we
1374 * are invoked from the kernel as coredump handler. */
1375 if (r == 0) {
1376 if (streq_ptr(argv[1], "--backtrace"))
1377 r = process_backtrace(argc, argv);
1378 else
1379 r = process_kernel(argc, argv);
1380 } else if (r == 1)
1381 r = process_socket(SD_LISTEN_FDS_START);
1382 else {
1383 log_error("Received unexpected number of file descriptors.");
1384 r = -EINVAL;
1385 }
1386
1387 finish:
1388 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
1389 }