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