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