]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/coredump/coredump.c
machinectl: hide legend in a case when no data (#3839)
[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
4d229b31 26#ifdef HAVE_ELFUTILS
3c171f0b
LP
27#include <dwarf.h>
28#include <elfutils/libdwfl.h>
4d229b31
UTL
29#endif
30
f11943c5
LP
31#include "sd-journal.h"
32#include "sd-login.h"
3c171f0b 33#include "sd-daemon.h"
4f5dd394
LP
34
35#include "acl-util.h"
b5efdb8a 36#include "alloc-util.h"
430f0182 37#include "capability-util.h"
ba1261bc 38#include "cgroup-util.h"
4f5dd394 39#include "compress.h"
34c10968
LP
40#include "conf-parser.h"
41#include "copy.h"
f11943c5 42#include "coredump-vacuum.h"
a0956174 43#include "dirent-util.h"
4f5dd394 44#include "escape.h"
3ffd4af2 45#include "fd-util.h"
4f5dd394 46#include "fileio.h"
f4f15635 47#include "fs-util.h"
afc5dbf3 48#include "io-util.h"
4f5dd394
LP
49#include "journald-native.h"
50#include "log.h"
51#include "macro.h"
0c773903 52#include "missing.h"
4f5dd394 53#include "mkdir.h"
6bedfcbb 54#include "parse-util.h"
0b452006 55#include "process-util.h"
3c171f0b 56#include "socket-util.h"
4f5dd394
LP
57#include "special.h"
58#include "stacktrace.h"
8b43440b 59#include "string-table.h"
07630cea 60#include "string-util.h"
4f5dd394 61#include "strv.h"
b1d4f8e1 62#include "user-util.h"
4f5dd394 63#include "util.h"
34727273 64
34c10968 65/* The maximum size up to which we process coredumps */
59f448cf 66#define PROCESS_SIZE_MAX ((uint64_t) (2LLU*1024LLU*1024LLU*1024LLU))
34c10968 67
bdfd7b2c 68/* The maximum size up to which we leave the coredump around on disk */
34c10968
LP
69#define EXTERNAL_SIZE_MAX PROCESS_SIZE_MAX
70
bdfd7b2c 71/* The maximum size up to which we store the coredump in the journal */
34c10968 72#define JOURNAL_SIZE_MAX ((size_t) (767LU*1024LU*1024LU))
f5e04665 73
c4aa09b0 74/* Make sure to not make this larger than the maximum journal entry
874bc134
ZJS
75 * size. See DATA_SIZE_MAX in journald-native.c. */
76assert_cc(JOURNAL_SIZE_MAX <= DATA_SIZE_MAX);
f5e04665
LP
77
78enum {
3c171f0b
LP
79 /* We use this as array indexes for a couple of special fields we use for naming coredumping files, and
80 * attaching xattrs */
81 CONTEXT_PID,
82 CONTEXT_UID,
83 CONTEXT_GID,
84 CONTEXT_SIGNAL,
85 CONTEXT_TIMESTAMP,
bdfd7b2c 86 CONTEXT_RLIMIT,
3c171f0b
LP
87 CONTEXT_COMM,
88 CONTEXT_EXE,
89 _CONTEXT_MAX
f5e04665
LP
90};
91
34c10968
LP
92typedef enum CoredumpStorage {
93 COREDUMP_STORAGE_NONE,
94 COREDUMP_STORAGE_EXTERNAL,
95 COREDUMP_STORAGE_JOURNAL,
96 COREDUMP_STORAGE_BOTH,
97 _COREDUMP_STORAGE_MAX,
98 _COREDUMP_STORAGE_INVALID = -1
99} CoredumpStorage;
100
34c10968
LP
101static const char* const coredump_storage_table[_COREDUMP_STORAGE_MAX] = {
102 [COREDUMP_STORAGE_NONE] = "none",
103 [COREDUMP_STORAGE_EXTERNAL] = "external",
104 [COREDUMP_STORAGE_JOURNAL] = "journal",
105 [COREDUMP_STORAGE_BOTH] = "both",
106};
107
108DEFINE_PRIVATE_STRING_TABLE_LOOKUP(coredump_storage, CoredumpStorage);
8c9571d0 109static DEFINE_CONFIG_PARSE_ENUM(config_parse_coredump_storage, coredump_storage, CoredumpStorage, "Failed to parse storage setting");
34727273
ZJS
110
111static CoredumpStorage arg_storage = COREDUMP_STORAGE_EXTERNAL;
8c9571d0 112static bool arg_compress = true;
59f448cf
LP
113static uint64_t arg_process_size_max = PROCESS_SIZE_MAX;
114static uint64_t arg_external_size_max = EXTERNAL_SIZE_MAX;
34727273 115static size_t arg_journal_size_max = JOURNAL_SIZE_MAX;
59f448cf
LP
116static uint64_t arg_keep_free = (uint64_t) -1;
117static uint64_t arg_max_use = (uint64_t) -1;
34c10968
LP
118
119static int parse_config(void) {
34c10968 120 static const ConfigTableItem items[] = {
8c9571d0
LP
121 { "Coredump", "Storage", config_parse_coredump_storage, 0, &arg_storage },
122 { "Coredump", "Compress", config_parse_bool, 0, &arg_compress },
59f448cf
LP
123 { "Coredump", "ProcessSizeMax", config_parse_iec_uint64, 0, &arg_process_size_max },
124 { "Coredump", "ExternalSizeMax", config_parse_iec_uint64, 0, &arg_external_size_max },
8c9571d0 125 { "Coredump", "JournalSizeMax", config_parse_iec_size, 0, &arg_journal_size_max },
59f448cf
LP
126 { "Coredump", "KeepFree", config_parse_iec_uint64, 0, &arg_keep_free },
127 { "Coredump", "MaxUse", config_parse_iec_uint64, 0, &arg_max_use },
34c10968
LP
128 {}
129 };
130
75eb6154
LP
131 return config_parse_many(PKGSYSCONFDIR "/coredump.conf",
132 CONF_PATHS_NULSTR("systemd/coredump.conf.d"),
301af7e4
JT
133 "Coredump\0",
134 config_item_table_lookup, items,
135 false, NULL);
34c10968
LP
136}
137
138static int fix_acl(int fd, uid_t uid) {
139
140#ifdef HAVE_ACL
141 _cleanup_(acl_freep) acl_t acl = NULL;
142 acl_entry_t entry;
143 acl_permset_t permset;
709f6e46 144 int r;
34c10968 145
b59233e6
LP
146 assert(fd >= 0);
147
34c10968
LP
148 if (uid <= SYSTEM_UID_MAX)
149 return 0;
150
151 /* Make sure normal users can read (but not write or delete)
152 * their own coredumps */
153
154 acl = acl_get_fd(fd);
4a62c710
MS
155 if (!acl)
156 return log_error_errno(errno, "Failed to get ACL: %m");
34c10968
LP
157
158 if (acl_create_entry(&acl, &entry) < 0 ||
159 acl_set_tag_type(entry, ACL_USER) < 0 ||
d710aaf7
ZJS
160 acl_set_qualifier(entry, &uid) < 0)
161 return log_error_errno(errno, "Failed to patch ACL: %m");
34c10968
LP
162
163 if (acl_get_permset(entry, &permset) < 0 ||
709f6e46
MS
164 acl_add_perm(permset, ACL_READ) < 0)
165 return log_warning_errno(errno, "Failed to patch ACL: %m");
166
167 r = calc_acl_mask_if_needed(&acl);
168 if (r < 0)
169 return log_warning_errno(r, "Failed to patch ACL: %m");
34c10968 170
4a62c710
MS
171 if (acl_set_fd(fd, acl) < 0)
172 return log_error_errno(errno, "Failed to apply ACL: %m");
34c10968
LP
173#endif
174
175 return 0;
176}
177
3c171f0b 178static int fix_xattr(int fd, const char *context[_CONTEXT_MAX]) {
0cd77f97 179
3c171f0b
LP
180 static const char * const xattrs[_CONTEXT_MAX] = {
181 [CONTEXT_PID] = "user.coredump.pid",
182 [CONTEXT_UID] = "user.coredump.uid",
183 [CONTEXT_GID] = "user.coredump.gid",
184 [CONTEXT_SIGNAL] = "user.coredump.signal",
185 [CONTEXT_TIMESTAMP] = "user.coredump.timestamp",
186 [CONTEXT_COMM] = "user.coredump.comm",
187 [CONTEXT_EXE] = "user.coredump.exe",
0cd77f97
LP
188 };
189
34c10968 190 int r = 0;
0cd77f97 191 unsigned i;
34c10968 192
b59233e6
LP
193 assert(fd >= 0);
194
1eef15b1 195 /* Attach some metadata to coredumps via extended
34c10968
LP
196 * attributes. Just because we can. */
197
3c171f0b 198 for (i = 0; i < _CONTEXT_MAX; i++) {
1eef15b1
ZJS
199 int k;
200
3c171f0b 201 if (isempty(context[i]) || !xattrs[i])
0cd77f97 202 continue;
34c10968 203
3c171f0b 204 k = fsetxattr(fd, xattrs[i], context[i], strlen(context[i]), XATTR_CREATE);
1eef15b1 205 if (k < 0 && r == 0)
34c10968 206 r = -errno;
0cd77f97 207 }
34c10968
LP
208
209 return r;
210}
211
b0b21dce 212#define filename_escape(s) xescape((s), "./ ")
34c10968 213
0c773903
EV
214static inline const char *coredump_tmpfile_name(const char *s) {
215 return s ? s : "(unnamed temporary file)";
216}
217
b59233e6
LP
218static int fix_permissions(
219 int fd,
220 const char *filename,
221 const char *target,
3c171f0b 222 const char *context[_CONTEXT_MAX],
b59233e6
LP
223 uid_t uid) {
224
03532f0a
LP
225 int r;
226
b59233e6 227 assert(fd >= 0);
b59233e6 228 assert(target);
3c171f0b 229 assert(context);
cfd652ed
ZJS
230
231 /* Ignore errors on these */
3c171f0b
LP
232 (void) fchmod(fd, 0640);
233 (void) fix_acl(fd, uid);
234 (void) fix_xattr(fd, context);
cfd652ed 235
4a62c710 236 if (fsync(fd) < 0)
0c773903 237 return log_error_errno(errno, "Failed to sync coredump %s: %m", coredump_tmpfile_name(filename));
cfd652ed 238
03532f0a
LP
239 r = link_tmpfile(fd, filename, target);
240 if (r < 0)
241 return log_error_errno(r, "Failed to move coredump %s into place: %m", target);
cfd652ed
ZJS
242
243 return 0;
244}
245
59f448cf 246static int maybe_remove_external_coredump(const char *filename, uint64_t size) {
cfd652ed 247
b59233e6 248 /* Returns 1 if might remove, 0 if will not remove, < 0 on error. */
cfd652ed
ZJS
249
250 if (IN_SET(arg_storage, COREDUMP_STORAGE_EXTERNAL, COREDUMP_STORAGE_BOTH) &&
251 size <= arg_external_size_max)
252 return 0;
253
254 if (!filename)
255 return 1;
256
4a62c710
MS
257 if (unlink(filename) < 0 && errno != ENOENT)
258 return log_error_errno(errno, "Failed to unlink %s: %m", filename);
cfd652ed
ZJS
259
260 return 1;
261}
262
3c171f0b 263static int make_filename(const char *context[_CONTEXT_MAX], char **ret) {
b59233e6 264 _cleanup_free_ char *c = NULL, *u = NULL, *p = NULL, *t = NULL;
a7f7d1bd 265 sd_id128_t boot = {};
34c10968
LP
266 int r;
267
3c171f0b 268 assert(context);
34c10968 269
3c171f0b 270 c = filename_escape(context[CONTEXT_COMM]);
34c10968 271 if (!c)
b59233e6 272 return -ENOMEM;
34c10968 273
3c171f0b 274 u = filename_escape(context[CONTEXT_UID]);
0dc5d23c 275 if (!u)
b59233e6 276 return -ENOMEM;
34c10968
LP
277
278 r = sd_id128_get_boot(&boot);
b59233e6 279 if (r < 0)
34c10968 280 return r;
34c10968 281
3c171f0b 282 p = filename_escape(context[CONTEXT_PID]);
b59233e6
LP
283 if (!p)
284 return -ENOMEM;
285
3c171f0b 286 t = filename_escape(context[CONTEXT_TIMESTAMP]);
b59233e6
LP
287 if (!t)
288 return -ENOMEM;
289
290 if (asprintf(ret,
0dc5d23c 291 "/var/lib/systemd/coredump/core.%s.%s." SD_ID128_FORMAT_STR ".%s.%s000000",
34c10968 292 c,
0dc5d23c 293 u,
34c10968
LP
294 SD_ID128_FORMAT_VAL(boot),
295 p,
b59233e6
LP
296 t) < 0)
297 return -ENOMEM;
298
299 return 0;
300}
301
302static int save_external_coredump(
3c171f0b
LP
303 const char *context[_CONTEXT_MAX],
304 int input_fd,
b59233e6 305 char **ret_filename,
5f3e0a74
HW
306 int *ret_node_fd,
307 int *ret_data_fd,
59f448cf 308 uint64_t *ret_size) {
b59233e6
LP
309
310 _cleanup_free_ char *fn = NULL, *tmp = NULL;
311 _cleanup_close_ int fd = -1;
bdfd7b2c 312 uint64_t rlimit, max_size;
b59233e6 313 struct stat st;
3c171f0b 314 uid_t uid;
b59233e6
LP
315 int r;
316
3c171f0b 317 assert(context);
b59233e6 318 assert(ret_filename);
5f3e0a74
HW
319 assert(ret_node_fd);
320 assert(ret_data_fd);
b59233e6
LP
321 assert(ret_size);
322
3c171f0b
LP
323 r = parse_uid(context[CONTEXT_UID], &uid);
324 if (r < 0)
325 return log_error_errno(r, "Failed to parse UID: %m");
326
bdfd7b2c
LP
327 r = safe_atou64(context[CONTEXT_RLIMIT], &rlimit);
328 if (r < 0)
329 return log_error_errno(r, "Failed to parse resource limit: %s", context[CONTEXT_RLIMIT]);
330 if (rlimit <= 0) {
331 /* Is coredumping disabled? Then don't bother saving/processing the coredump */
332 log_info("Core Dumping has been disabled for process %s (%s).", context[CONTEXT_PID], context[CONTEXT_COMM]);
333 return -EBADSLT;
334 }
335
336 /* Never store more than the process configured, or than we actually shall keep or process */
337 max_size = MIN(rlimit, MAX(arg_process_size_max, arg_external_size_max));
338
3c171f0b 339 r = make_filename(context, &fn);
23bbb0de
MS
340 if (r < 0)
341 return log_error_errno(r, "Failed to determine coredump file name: %m");
34c10968 342
d2e54fae 343 mkdir_p_label("/var/lib/systemd/coredump", 0755);
803a3464 344
03532f0a 345 fd = open_tmpfile_linkable(fn, O_RDWR|O_CLOEXEC, &tmp);
4a62c710 346 if (fd < 0)
03532f0a 347 return log_error_errno(fd, "Failed to create temporary file for coredump %s: %m", fn);
803a3464 348
bdfd7b2c 349 r = copy_bytes(input_fd, fd, max_size, false);
84ee0960 350 if (r == -EFBIG) {
3c171f0b 351 log_error("Coredump of %s (%s) is larger than configured processing limit, refusing.", context[CONTEXT_PID], context[CONTEXT_COMM]);
93240d3a
LP
352 goto fail;
353 } else if (IN_SET(r, -EDQUOT, -ENOSPC)) {
3c171f0b 354 log_error("Not enough disk space for coredump of %s (%s), refusing.", context[CONTEXT_PID], context[CONTEXT_COMM]);
93240d3a
LP
355 goto fail;
356 } else if (r < 0) {
da927ba9 357 log_error_errno(r, "Failed to dump coredump to file: %m");
34c10968
LP
358 goto fail;
359 }
803a3464 360
34c10968 361 if (fstat(fd, &st) < 0) {
0c773903 362 log_error_errno(errno, "Failed to fstat coredump %s: %m", coredump_tmpfile_name(tmp));
34c10968
LP
363 goto fail;
364 }
365
7849c2ac 366 if (lseek(fd, 0, SEEK_SET) == (off_t) -1) {
0c773903 367 log_error_errno(errno, "Failed to seek on %s: %m", coredump_tmpfile_name(tmp));
b59233e6 368 goto fail;
7849c2ac
TA
369 }
370
d89c8fdf 371#if defined(HAVE_XZ) || defined(HAVE_LZ4)
cfd652ed 372 /* If we will remove the coredump anyway, do not compress. */
34727273 373 if (maybe_remove_external_coredump(NULL, st.st_size) == 0
8c9571d0 374 && arg_compress) {
cfd652ed 375
b59233e6
LP
376 _cleanup_free_ char *fn_compressed = NULL, *tmp_compressed = NULL;
377 _cleanup_close_ int fd_compressed = -1;
cfd652ed 378
d89c8fdf 379 fn_compressed = strappend(fn, COMPRESSED_EXT);
b59233e6 380 if (!fn_compressed) {
d89c8fdf 381 log_oom();
cfd652ed
ZJS
382 goto uncompressed;
383 }
384
03532f0a
LP
385 fd_compressed = open_tmpfile_linkable(fn_compressed, O_RDWR|O_CLOEXEC, &tmp_compressed);
386 if (fd_compressed < 0) {
387 log_error_errno(fd_compressed, "Failed to create temporary file for coredump %s: %m", fn_compressed);
b59233e6 388 goto uncompressed;
03532f0a 389 }
cfd652ed 390
d89c8fdf 391 r = compress_stream(fd, fd_compressed, -1);
b59233e6 392 if (r < 0) {
0c773903 393 log_error_errno(r, "Failed to compress %s: %m", coredump_tmpfile_name(tmp_compressed));
b59233e6
LP
394 goto fail_compressed;
395 }
396
3c171f0b 397 r = fix_permissions(fd_compressed, tmp_compressed, fn_compressed, context, uid);
cfd652ed 398 if (r < 0)
b59233e6
LP
399 goto fail_compressed;
400
401 /* OK, this worked, we can get rid of the uncompressed version now */
0c773903
EV
402 if (tmp)
403 unlink_noerrno(tmp);
cfd652ed 404
59f448cf 405 *ret_filename = fn_compressed; /* compressed */
5f3e0a74
HW
406 *ret_node_fd = fd_compressed; /* compressed */
407 *ret_data_fd = fd; /* uncompressed */
59f448cf 408 *ret_size = (uint64_t) st.st_size; /* uncompressed */
cfd652ed 409
b59233e6 410 fn_compressed = NULL;
5f3e0a74 411 fd = fd_compressed = -1;
cfd652ed
ZJS
412
413 return 0;
414
b59233e6 415 fail_compressed:
0c773903
EV
416 if (tmp_compressed)
417 (void) unlink(tmp_compressed);
34c10968 418 }
cfd652ed
ZJS
419
420uncompressed:
3b1a55e1 421#endif
5f3e0a74 422
3c171f0b 423 r = fix_permissions(fd, tmp, fn, context, uid);
cfd652ed
ZJS
424 if (r < 0)
425 goto fail;
34c10968
LP
426
427 *ret_filename = fn;
5f3e0a74
HW
428 *ret_data_fd = fd;
429 *ret_node_fd = -1;
59f448cf 430 *ret_size = (uint64_t) st.st_size;
34c10968
LP
431
432 fn = NULL;
433 fd = -1;
434
435 return 0;
436
437fail:
0c773903
EV
438 if (tmp)
439 (void) unlink(tmp);
34c10968
LP
440 return r;
441}
442
443static int allocate_journal_field(int fd, size_t size, char **ret, size_t *ret_size) {
444 _cleanup_free_ char *field = NULL;
445 ssize_t n;
446
8d4e028f 447 assert(fd >= 0);
34c10968
LP
448 assert(ret);
449 assert(ret_size);
450
4a62c710
MS
451 if (lseek(fd, 0, SEEK_SET) == (off_t) -1)
452 return log_warning_errno(errno, "Failed to seek: %m");
803a3464 453
34c10968
LP
454 field = malloc(9 + size);
455 if (!field) {
cfd652ed 456 log_warning("Failed to allocate memory for coredump, coredump will not be stored.");
34c10968
LP
457 return -ENOMEM;
458 }
459
460 memcpy(field, "COREDUMP=", 9);
461
462 n = read(fd, field + 9, size);
23bbb0de
MS
463 if (n < 0)
464 return log_error_errno((int) n, "Failed to read core data: %m");
34c10968
LP
465 if ((size_t) n < size) {
466 log_error("Core data too short.");
467 return -EIO;
468 }
469
470 *ret = field;
471 *ret_size = size + 9;
472
473 field = NULL;
474
475 return 0;
476}
803a3464 477
3f132692
JF
478/* Joins /proc/[pid]/fd/ and /proc/[pid]/fdinfo/ into the following lines:
479 * 0:/dev/pts/23
480 * pos: 0
481 * flags: 0100002
482 *
483 * 1:/dev/pts/23
484 * pos: 0
485 * flags: 0100002
486 *
487 * 2:/dev/pts/23
488 * pos: 0
489 * flags: 0100002
490 * EOF
491 */
492static int compose_open_fds(pid_t pid, char **open_fds) {
4d84bc2f
LP
493 _cleanup_closedir_ DIR *proc_fd_dir = NULL;
494 _cleanup_close_ int proc_fdinfo_fd = -1;
495 _cleanup_free_ char *buffer = NULL;
3f132692 496 _cleanup_fclose_ FILE *stream = NULL;
59059b4a 497 const char *fddelim = "", *path;
3f132692 498 struct dirent *dent = NULL;
4d84bc2f 499 size_t size = 0;
3f132692
JF
500 int r = 0;
501
502 assert(pid >= 0);
503 assert(open_fds != NULL);
504
59059b4a 505 path = procfs_file_alloca(pid, "fd");
3f132692 506 proc_fd_dir = opendir(path);
59059b4a
ZJS
507 if (!proc_fd_dir)
508 return -errno;
3f132692 509
4d84bc2f 510 proc_fdinfo_fd = openat(dirfd(proc_fd_dir), "../fdinfo", O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC|O_PATH);
59059b4a
ZJS
511 if (proc_fdinfo_fd < 0)
512 return -errno;
3f132692 513
4d84bc2f 514 stream = open_memstream(&buffer, &size);
3f132692
JF
515 if (!stream)
516 return -ENOMEM;
517
4d84bc2f 518 FOREACH_DIRENT(dent, proc_fd_dir, return -errno) {
3f132692 519 _cleanup_fclose_ FILE *fdinfo = NULL;
4d84bc2f 520 _cleanup_free_ char *fdname = NULL;
59059b4a 521 char line[LINE_MAX];
4d84bc2f 522 int fd;
3f132692 523
59059b4a 524 r = readlinkat_malloc(dirfd(proc_fd_dir), dent->d_name, &fdname);
3f132692
JF
525 if (r < 0)
526 return r;
527
528 fprintf(stream, "%s%s:%s\n", fddelim, dent->d_name, fdname);
529 fddelim = "\n";
530
531 /* Use the directory entry from /proc/[pid]/fd with /proc/[pid]/fdinfo */
59059b4a
ZJS
532 fd = openat(proc_fdinfo_fd, dent->d_name, O_NOFOLLOW|O_CLOEXEC|O_RDONLY);
533 if (fd < 0)
3f132692
JF
534 continue;
535
59059b4a
ZJS
536 fdinfo = fdopen(fd, "re");
537 if (fdinfo == NULL) {
538 close(fd);
3f132692 539 continue;
59059b4a 540 }
3f132692 541
4d84bc2f
LP
542 FOREACH_LINE(line, fdinfo, break) {
543 fputs(line, stream);
544 if (!endswith(line, "\n"))
545 fputc('\n', stream);
546 }
3f132692
JF
547 }
548
4d84bc2f 549 errno = 0;
74ca738f 550 stream = safe_fclose(stream);
4d84bc2f 551
b3267152 552 if (errno > 0)
4d84bc2f
LP
553 return -errno;
554
555 *open_fds = buffer;
556 buffer = NULL;
557
3f132692
JF
558 return 0;
559}
560
3c171f0b
LP
561static int change_uid_gid(const char *context[]) {
562 uid_t uid;
563 gid_t gid;
564 int r;
34c10968 565
3c171f0b
LP
566 r = parse_uid(context[CONTEXT_UID], &uid);
567 if (r < 0)
568 return r;
8c8549db 569
888e378d
LP
570 if (uid <= SYSTEM_UID_MAX) {
571 const char *user = "systemd-coredump";
572
573 r = get_user_creds(&user, &uid, &gid, NULL, NULL);
574 if (r < 0) {
575 log_warning_errno(r, "Cannot resolve %s user. Proceeding to dump core as root: %m", user);
576 uid = gid = 0;
577 }
578 } else {
579 r = parse_gid(context[CONTEXT_GID], &gid);
580 if (r < 0)
581 return r;
582 }
3c171f0b
LP
583
584 return drop_privileges(uid, gid, 0);
585}
8c8549db 586
3c171f0b
LP
587static int submit_coredump(
588 const char *context[_CONTEXT_MAX],
589 struct iovec *iovec,
590 size_t n_iovec_allocated,
591 size_t n_iovec,
592 int input_fd) {
34c10968 593
5f3e0a74 594 _cleanup_close_ int coredump_fd = -1, coredump_node_fd = -1;
3c171f0b 595 _cleanup_free_ char *core_message = NULL, *filename = NULL, *coredump_data = NULL;
59f448cf 596 uint64_t coredump_size;
3c171f0b 597 int r;
f5e04665 598
3c171f0b
LP
599 assert(context);
600 assert(iovec);
601 assert(n_iovec_allocated >= n_iovec + 3);
602 assert(input_fd >= 0);
f5e04665 603
3c171f0b
LP
604 /* Vacuum before we write anything again */
605 (void) coredump_vacuum(-1, arg_keep_free, arg_max_use);
803a3464 606
3c171f0b
LP
607 /* Always stream the coredump to disk, if that's possible */
608 r = save_external_coredump(context, input_fd, &filename, &coredump_node_fd, &coredump_fd, &coredump_size);
609 if (r < 0)
610 /* Skip whole core dumping part */
611 goto log;
612
613 /* If we don't want to keep the coredump on disk, remove it now, as later on we will lack the privileges for
614 * it. However, we keep the fd to it, so that we can still process it and log it. */
615 r = maybe_remove_external_coredump(filename, coredump_size);
616 if (r < 0)
617 return r;
618 if (r == 0) {
619 const char *coredump_filename;
620
621 coredump_filename = strjoina("COREDUMP_FILENAME=", filename);
622 IOVEC_SET_STRING(iovec[n_iovec++], coredump_filename);
f5e04665
LP
623 }
624
3c171f0b
LP
625 /* Vacuum again, but exclude the coredump we just created */
626 (void) coredump_vacuum(coredump_node_fd >= 0 ? coredump_node_fd : coredump_fd, arg_keep_free, arg_max_use);
8c9571d0 627
3c171f0b
LP
628 /* Now, let's drop privileges to become the user who owns the segfaulted process and allocate the coredump
629 * memory under the user's uid. This also ensures that the credentials journald will see are the ones of the
630 * coredumping user, thus making sure the user gets access to the core dump. Let's also get rid of all
631 * capabilities, if we run as root, we won't need them anymore. */
632 r = change_uid_gid(context);
633 if (r < 0)
634 return log_error_errno(r, "Failed to drop privileges: %m");
34c10968 635
3c171f0b
LP
636#ifdef HAVE_ELFUTILS
637 /* Try to get a strack trace if we can */
638 if (coredump_size <= arg_process_size_max) {
639 _cleanup_free_ char *stacktrace = NULL;
640
641 r = coredump_make_stack_trace(coredump_fd, context[CONTEXT_EXE], &stacktrace);
642 if (r >= 0)
643 core_message = strjoin("MESSAGE=Process ", context[CONTEXT_PID], " (", context[CONTEXT_COMM], ") of user ", context[CONTEXT_UID], " dumped core.\n\n", stacktrace, NULL);
644 else if (r == -EINVAL)
645 log_warning("Failed to generate stack trace: %s", dwfl_errmsg(dwfl_errno()));
646 else
647 log_warning_errno(r, "Failed to generate stack trace: %m");
34c10968 648 }
803a3464 649
3c171f0b
LP
650 if (!core_message)
651#endif
652log:
653 core_message = strjoin("MESSAGE=Process ", context[CONTEXT_PID], " (", context[CONTEXT_COMM], ") of user ", context[CONTEXT_UID], " dumped core.", NULL);
654 if (core_message)
655 IOVEC_SET_STRING(iovec[n_iovec++], core_message);
656
657 /* Optionally store the entire coredump in the journal */
658 if (IN_SET(arg_storage, COREDUMP_STORAGE_JOURNAL, COREDUMP_STORAGE_BOTH) &&
659 coredump_size <= arg_journal_size_max) {
660 size_t sz = 0;
661
662 /* Store the coredump itself in the journal */
663
664 r = allocate_journal_field(coredump_fd, (size_t) coredump_size, &coredump_data, &sz);
665 if (r >= 0) {
666 iovec[n_iovec].iov_base = coredump_data;
667 iovec[n_iovec].iov_len = sz;
668 n_iovec++;
669 }
f5e04665
LP
670 }
671
3c171f0b
LP
672 assert(n_iovec <= n_iovec_allocated);
673
674 r = sd_journal_sendv(iovec, n_iovec);
675 if (r < 0)
676 return log_error_errno(r, "Failed to log coredump: %m");
677
678 return 0;
679}
680
681static void map_context_fields(const struct iovec *iovec, const char *context[]) {
682
683 static const char * const context_field_names[_CONTEXT_MAX] = {
684 [CONTEXT_PID] = "COREDUMP_PID=",
685 [CONTEXT_UID] = "COREDUMP_UID=",
686 [CONTEXT_GID] = "COREDUMP_GID=",
687 [CONTEXT_SIGNAL] = "COREDUMP_SIGNAL=",
688 [CONTEXT_TIMESTAMP] = "COREDUMP_TIMESTAMP=",
689 [CONTEXT_COMM] = "COREDUMP_COMM=",
690 [CONTEXT_EXE] = "COREDUMP_EXE=",
bdfd7b2c 691 [CONTEXT_RLIMIT] = "COREDUMP_RLIMIT=",
3c171f0b
LP
692 };
693
694 unsigned i;
695
696 assert(iovec);
697 assert(context);
698
699 for (i = 0; i < _CONTEXT_MAX; i++) {
700 size_t l;
701
702 l = strlen(context_field_names[i]);
703 if (iovec->iov_len < l)
704 continue;
705
706 if (memcmp(iovec->iov_base, context_field_names[i], l) != 0)
707 continue;
708
709 /* Note that these strings are NUL terminated, because we made sure that a trailing NUL byte is in the
710 * buffer, though not included in the iov_len count. (see below) */
711 context[i] = (char*) iovec->iov_base + l;
712 break;
713 }
714}
715
716static int process_socket(int fd) {
717 _cleanup_close_ int coredump_fd = -1;
718 struct iovec *iovec = NULL;
719 size_t n_iovec = 0, n_iovec_allocated = 0, i;
720 const char *context[_CONTEXT_MAX] = {};
721 int r;
722
723 assert(fd >= 0);
724
725 log_set_target(LOG_TARGET_AUTO);
726 log_parse_environment();
727 log_open();
728
729 for (;;) {
730 union {
731 struct cmsghdr cmsghdr;
732 uint8_t buf[CMSG_SPACE(sizeof(int))];
733 } control = {};
734 struct msghdr mh = {
735 .msg_control = &control,
736 .msg_controllen = sizeof(control),
737 .msg_iovlen = 1,
738 };
739 ssize_t n;
fe1ef0f8 740 ssize_t l;
3c171f0b
LP
741
742 if (!GREEDY_REALLOC(iovec, n_iovec_allocated, n_iovec + 3)) {
743 r = log_oom();
744 goto finish;
745 }
746
fe1ef0f8
EV
747 l = next_datagram_size_fd(fd);
748 if (l < 0) {
749 r = log_error_errno(l, "Failed to determine datagram size to read: %m");
3c171f0b
LP
750 goto finish;
751 }
752
753 assert(l >= 0);
754
755 iovec[n_iovec].iov_len = l;
756 iovec[n_iovec].iov_base = malloc(l + 1);
3c171f0b
LP
757 if (!iovec[n_iovec].iov_base) {
758 r = log_oom();
759 goto finish;
760 }
761
762 mh.msg_iov = iovec + n_iovec;
763
764 n = recvmsg(fd, &mh, MSG_NOSIGNAL|MSG_CMSG_CLOEXEC);
765 if (n < 0) {
766 free(iovec[n_iovec].iov_base);
767 r = log_error_errno(errno, "Failed to receive datagram: %m");
768 goto finish;
769 }
770
771 if (n == 0) {
772 struct cmsghdr *cmsg, *found = NULL;
773 /* The final zero-length datagram carries the file descriptor and tells us that we're done. */
774
775 free(iovec[n_iovec].iov_base);
776
777 CMSG_FOREACH(cmsg, &mh) {
778 if (cmsg->cmsg_level == SOL_SOCKET &&
779 cmsg->cmsg_type == SCM_RIGHTS &&
780 cmsg->cmsg_len == CMSG_LEN(sizeof(int))) {
781 assert(!found);
782 found = cmsg;
783 }
784 }
785
786 if (!found) {
787 log_error("Coredump file descriptor missing.");
788 r = -EBADMSG;
789 goto finish;
790 }
791
792 assert(coredump_fd < 0);
793 coredump_fd = *(int*) CMSG_DATA(found);
794 break;
795 }
796
797 /* Add trailing NUL byte, in case these are strings */
798 ((char*) iovec[n_iovec].iov_base)[n] = 0;
799 iovec[n_iovec].iov_len = (size_t) n;
800
801 cmsg_close_all(&mh);
802 map_context_fields(iovec + n_iovec, context);
803 n_iovec++;
804 }
805
806 if (!GREEDY_REALLOC(iovec, n_iovec_allocated, n_iovec + 3)) {
807 r = log_oom();
34c10968
LP
808 goto finish;
809 }
810
61233823 811 /* Make sure we got all data we really need */
3c171f0b
LP
812 assert(context[CONTEXT_PID]);
813 assert(context[CONTEXT_UID]);
814 assert(context[CONTEXT_GID]);
815 assert(context[CONTEXT_SIGNAL]);
816 assert(context[CONTEXT_TIMESTAMP]);
bdfd7b2c 817 assert(context[CONTEXT_RLIMIT]);
3c171f0b
LP
818 assert(context[CONTEXT_COMM]);
819 assert(coredump_fd >= 0);
820
821 r = submit_coredump(context, iovec, n_iovec_allocated, n_iovec, coredump_fd);
822
823finish:
824 for (i = 0; i < n_iovec; i++)
825 free(iovec[i].iov_base);
826 free(iovec);
827
828 return r;
829}
830
831static int send_iovec(const struct iovec iovec[], size_t n_iovec, int input_fd) {
832
833 static const union sockaddr_union sa = {
834 .un.sun_family = AF_UNIX,
835 .un.sun_path = "/run/systemd/coredump",
836 };
837 _cleanup_close_ int fd = -1;
838 size_t i;
839 int r;
840
841 assert(iovec || n_iovec <= 0);
842 assert(input_fd >= 0);
843
844 fd = socket(AF_UNIX, SOCK_SEQPACKET|SOCK_CLOEXEC, 0);
845 if (fd < 0)
846 return log_error_errno(errno, "Failed to create coredump socket: %m");
847
fc2fffe7 848 if (connect(fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0)
3c171f0b
LP
849 return log_error_errno(errno, "Failed to connect to coredump service: %m");
850
851 for (i = 0; i < n_iovec; i++) {
fec603eb
LP
852 struct msghdr mh = {
853 .msg_iov = (struct iovec*) iovec + i,
854 .msg_iovlen = 1,
855 };
856 struct iovec copy[2];
857
858 for (;;) {
859 if (sendmsg(fd, &mh, MSG_NOSIGNAL) >= 0)
860 break;
861
862 if (errno == EMSGSIZE && mh.msg_iov[0].iov_len > 0) {
863 /* This field didn't fit? That's a pity. Given that this is just metadata,
864 * let's truncate the field at half, and try again. We append three dots, in
865 * order to show that this is truncated. */
866
867 if (mh.msg_iov != copy) {
868 /* We don't want to modify the caller's iovec, hence let's create our
869 * own array, consisting of two new iovecs, where the first is a
870 * (truncated) copy of what we want to send, and the second one
871 * contains the trailing dots. */
872 copy[0] = iovec[i];
873 copy[1] = (struct iovec) {
874 .iov_base = (char[]) { '.', '.', '.' },
875 .iov_len = 3,
876 };
877
878 mh.msg_iov = copy;
879 mh.msg_iovlen = 2;
880 }
881
882 copy[0].iov_len /= 2; /* halve it, and try again */
883 continue;
884 }
3c171f0b 885
3c171f0b 886 return log_error_errno(errno, "Failed to send coredump datagram: %m");
fec603eb 887 }
1eef15b1
ZJS
888 }
889
3c171f0b
LP
890 r = send_one_fd(fd, input_fd, 0);
891 if (r < 0)
892 return log_error_errno(r, "Failed to send coredump fd: %m");
1eef15b1 893
3c171f0b
LP
894 return 0;
895}
1eef15b1 896
78f043f7 897static int process_special_crash(const char *context[], int input_fd) {
3c171f0b
LP
898 _cleanup_close_ int coredump_fd = -1, coredump_node_fd = -1;
899 _cleanup_free_ char *filename = NULL;
900 uint64_t coredump_size;
901 int r;
803a3464 902
3c171f0b
LP
903 assert(context);
904 assert(input_fd >= 0);
803a3464 905
78f043f7 906 /* If we are pid1 or journald, we cut things short, don't write to the journal, but still create a coredump. */
34c10968 907
3c171f0b
LP
908 if (arg_storage != COREDUMP_STORAGE_NONE)
909 arg_storage = COREDUMP_STORAGE_EXTERNAL;
34c10968 910
3c171f0b
LP
911 r = save_external_coredump(context, input_fd, &filename, &coredump_node_fd, &coredump_fd, &coredump_size);
912 if (r < 0)
913 return r;
34c10968 914
3c171f0b
LP
915 r = maybe_remove_external_coredump(filename, coredump_size);
916 if (r < 0)
917 return r;
34c10968 918
78f043f7
LP
919 log_notice("Detected coredump of the journal daemon or PID 1, diverted to %s.", filename);
920
3c171f0b
LP
921 return 0;
922}
923
924static int process_kernel(int argc, char* argv[]) {
925
926 /* The small core field we allocate on the stack, to keep things simple */
927 char
928 *core_pid = NULL, *core_uid = NULL, *core_gid = NULL, *core_signal = NULL,
929 *core_session = NULL, *core_exe = NULL, *core_comm = NULL, *core_cmdline = NULL,
930 *core_cgroup = NULL, *core_cwd = NULL, *core_root = NULL, *core_unit = NULL,
bdfd7b2c 931 *core_user_unit = NULL, *core_slice = NULL, *core_timestamp = NULL, *core_rlimit = NULL;
3c171f0b
LP
932
933 /* The larger ones we allocate on the heap */
934 _cleanup_free_ char
935 *core_owner_uid = NULL, *core_open_fds = NULL, *core_proc_status = NULL,
936 *core_proc_maps = NULL, *core_proc_limits = NULL, *core_proc_cgroup = NULL, *core_environ = NULL;
937
938 _cleanup_free_ char *exe = NULL, *comm = NULL;
939 const char *context[_CONTEXT_MAX];
bdfd7b2c 940 struct iovec iovec[25];
3c171f0b
LP
941 size_t n_iovec = 0;
942 uid_t owner_uid;
943 const char *p;
944 pid_t pid;
945 char *t;
946 int r;
947
948 if (argc < CONTEXT_COMM + 1) {
949 log_error("Not enough arguments passed from kernel (%i, expected %i).", argc - 1, CONTEXT_COMM + 1 - 1);
950 return -EINVAL;
951 }
952
953 r = parse_pid(argv[CONTEXT_PID + 1], &pid);
954 if (r < 0)
955 return log_error_errno(r, "Failed to parse PID.");
956
957 r = get_process_comm(pid, &comm);
958 if (r < 0) {
959 log_warning_errno(r, "Failed to get COMM, falling back to the command line: %m");
960 comm = strv_join(argv + CONTEXT_COMM + 1, " ");
961 if (!comm)
962 return log_oom();
963 }
964
965 r = get_process_exe(pid, &exe);
966 if (r < 0)
967 log_warning_errno(r, "Failed to get EXE, ignoring: %m");
968
969 context[CONTEXT_PID] = argv[CONTEXT_PID + 1];
970 context[CONTEXT_UID] = argv[CONTEXT_UID + 1];
971 context[CONTEXT_GID] = argv[CONTEXT_GID + 1];
972 context[CONTEXT_SIGNAL] = argv[CONTEXT_SIGNAL + 1];
973 context[CONTEXT_TIMESTAMP] = argv[CONTEXT_TIMESTAMP + 1];
bdfd7b2c 974 context[CONTEXT_RLIMIT] = argv[CONTEXT_RLIMIT + 1];
3c171f0b
LP
975 context[CONTEXT_COMM] = comm;
976 context[CONTEXT_EXE] = exe;
977
978 if (cg_pid_get_unit(pid, &t) >= 0) {
979
c8091d92
LP
980 /* If this is PID 1 disable coredump collection, we'll unlikely be able to process it later on. */
981 if (streq(t, SPECIAL_INIT_SCOPE)) {
982 log_notice("Due to PID 1 having crashed coredump collection will now be turned off.");
983 (void) write_string_file("/proc/sys/kernel/core_pattern", "|/bin/false", 0);
984 }
985
78f043f7
LP
986 /* Let's avoid dead-locks when processing journald and init crashes, as socket activation and logging
987 * are unlikely to work then. */
988 if (STR_IN_SET(t, SPECIAL_JOURNALD_SERVICE, SPECIAL_INIT_SCOPE)) {
3c171f0b 989 free(t);
78f043f7 990 return process_special_crash(context, STDIN_FILENO);
803a3464
LP
991 }
992
63c372cb 993 core_unit = strjoina("COREDUMP_UNIT=", t);
8c8549db
LP
994 free(t);
995
3c171f0b 996 IOVEC_SET_STRING(iovec[n_iovec++], core_unit);
8c8549db 997 }
803a3464 998
3c171f0b 999 /* OK, now we know it's not the journal, hence we can make use of it now. */
803a3464
LP
1000 log_set_target(LOG_TARGET_JOURNAL_OR_KMSG);
1001 log_open();
1002
3c171f0b
LP
1003 if (cg_pid_get_user_unit(pid, &t) >= 0) {
1004 core_user_unit = strjoina("COREDUMP_USER_UNIT=", t);
1005 free(t);
1006
1007 IOVEC_SET_STRING(iovec[n_iovec++], core_user_unit);
1008 }
1009
1010 core_pid = strjoina("COREDUMP_PID=", context[CONTEXT_PID]);
1011 IOVEC_SET_STRING(iovec[n_iovec++], core_pid);
f5e04665 1012
3c171f0b
LP
1013 core_uid = strjoina("COREDUMP_UID=", context[CONTEXT_UID]);
1014 IOVEC_SET_STRING(iovec[n_iovec++], core_uid);
f5e04665 1015
3c171f0b
LP
1016 core_gid = strjoina("COREDUMP_GID=", context[CONTEXT_GID]);
1017 IOVEC_SET_STRING(iovec[n_iovec++], core_gid);
f5e04665 1018
3c171f0b
LP
1019 core_signal = strjoina("COREDUMP_SIGNAL=", context[CONTEXT_SIGNAL]);
1020 IOVEC_SET_STRING(iovec[n_iovec++], core_signal);
f5e04665 1021
bdfd7b2c
LP
1022 core_rlimit = strjoina("COREDUMP_RLIMIT=", context[CONTEXT_RLIMIT]);
1023 IOVEC_SET_STRING(iovec[n_iovec++], core_rlimit);
1024
f5e04665 1025 if (sd_pid_get_session(pid, &t) >= 0) {
63c372cb 1026 core_session = strjoina("COREDUMP_SESSION=", t);
f5e04665
LP
1027 free(t);
1028
3c171f0b 1029 IOVEC_SET_STRING(iovec[n_iovec++], core_session);
f5e04665
LP
1030 }
1031
a035f819 1032 if (sd_pid_get_owner_uid(pid, &owner_uid) >= 0) {
3c171f0b 1033 r = asprintf(&core_owner_uid, "COREDUMP_OWNER_UID=" UID_FMT, owner_uid);
7de80bfe 1034 if (r > 0)
3c171f0b 1035 IOVEC_SET_STRING(iovec[n_iovec++], core_owner_uid);
a035f819
LP
1036 }
1037
1038 if (sd_pid_get_slice(pid, &t) >= 0) {
63c372cb 1039 core_slice = strjoina("COREDUMP_SLICE=", t);
a035f819
LP
1040 free(t);
1041
3c171f0b 1042 IOVEC_SET_STRING(iovec[n_iovec++], core_slice);
a035f819
LP
1043 }
1044
1eef15b1 1045 if (comm) {
63c372cb 1046 core_comm = strjoina("COREDUMP_COMM=", comm);
3c171f0b 1047 IOVEC_SET_STRING(iovec[n_iovec++], core_comm);
1eef15b1
ZJS
1048 }
1049
1050 if (exe) {
63c372cb 1051 core_exe = strjoina("COREDUMP_EXE=", exe);
3c171f0b 1052 IOVEC_SET_STRING(iovec[n_iovec++], core_exe);
f5e04665
LP
1053 }
1054
9bdbc2e2 1055 if (get_process_cmdline(pid, 0, false, &t) >= 0) {
63c372cb 1056 core_cmdline = strjoina("COREDUMP_CMDLINE=", t);
f5e04665
LP
1057 free(t);
1058
3c171f0b 1059 IOVEC_SET_STRING(iovec[n_iovec++], core_cmdline);
f5e04665
LP
1060 }
1061
a035f819 1062 if (cg_pid_get_path_shifted(pid, NULL, &t) >= 0) {
63c372cb 1063 core_cgroup = strjoina("COREDUMP_CGROUP=", t);
a035f819
LP
1064 free(t);
1065
3c171f0b 1066 IOVEC_SET_STRING(iovec[n_iovec++], core_cgroup);
a035f819
LP
1067 }
1068
3f132692
JF
1069 if (compose_open_fds(pid, &t) >= 0) {
1070 core_open_fds = strappend("COREDUMP_OPEN_FDS=", t);
1071 free(t);
1072
1073 if (core_open_fds)
3c171f0b 1074 IOVEC_SET_STRING(iovec[n_iovec++], core_open_fds);
3f132692
JF
1075 }
1076
1077 p = procfs_file_alloca(pid, "status");
1078 if (read_full_file(p, &t, NULL) >= 0) {
1079 core_proc_status = strappend("COREDUMP_PROC_STATUS=", t);
1080 free(t);
1081
1082 if (core_proc_status)
3c171f0b 1083 IOVEC_SET_STRING(iovec[n_iovec++], core_proc_status);
3f132692
JF
1084 }
1085
1086 p = procfs_file_alloca(pid, "maps");
1087 if (read_full_file(p, &t, NULL) >= 0) {
1088 core_proc_maps = strappend("COREDUMP_PROC_MAPS=", t);
1089 free(t);
1090
1091 if (core_proc_maps)
3c171f0b 1092 IOVEC_SET_STRING(iovec[n_iovec++], core_proc_maps);
3f132692
JF
1093 }
1094
1095 p = procfs_file_alloca(pid, "limits");
1096 if (read_full_file(p, &t, NULL) >= 0) {
1097 core_proc_limits = strappend("COREDUMP_PROC_LIMITS=", t);
1098 free(t);
1099
1100 if (core_proc_limits)
3c171f0b 1101 IOVEC_SET_STRING(iovec[n_iovec++], core_proc_limits);
3f132692
JF
1102 }
1103
1104 p = procfs_file_alloca(pid, "cgroup");
1105 if (read_full_file(p, &t, NULL) >=0) {
1106 core_proc_cgroup = strappend("COREDUMP_PROC_CGROUP=", t);
1107 free(t);
1108
1109 if (core_proc_cgroup)
3c171f0b 1110 IOVEC_SET_STRING(iovec[n_iovec++], core_proc_cgroup);
3f132692
JF
1111 }
1112
1113 if (get_process_cwd(pid, &t) >= 0) {
63c372cb 1114 core_cwd = strjoina("COREDUMP_CWD=", t);
3f132692
JF
1115 free(t);
1116
3c171f0b 1117 IOVEC_SET_STRING(iovec[n_iovec++], core_cwd);
3f132692
JF
1118 }
1119
1120 if (get_process_root(pid, &t) >= 0) {
63c372cb 1121 core_root = strjoina("COREDUMP_ROOT=", t);
3f132692
JF
1122 free(t);
1123
3c171f0b 1124 IOVEC_SET_STRING(iovec[n_iovec++], core_root);
3f132692
JF
1125 }
1126
1127 if (get_process_environ(pid, &t) >= 0) {
1128 core_environ = strappend("COREDUMP_ENVIRON=", t);
1129 free(t);
1130
1131 if (core_environ)
3c171f0b 1132 IOVEC_SET_STRING(iovec[n_iovec++], core_environ);
3f132692
JF
1133 }
1134
81d62103 1135 core_timestamp = strjoina("COREDUMP_TIMESTAMP=", context[CONTEXT_TIMESTAMP], "000000");
3c171f0b 1136 IOVEC_SET_STRING(iovec[n_iovec++], core_timestamp);
f5e04665 1137
3c171f0b 1138 IOVEC_SET_STRING(iovec[n_iovec++], "MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1");
4850d39a
LP
1139
1140 assert_cc(2 == LOG_CRIT);
3c171f0b 1141 IOVEC_SET_STRING(iovec[n_iovec++], "PRIORITY=2");
0dc5d23c 1142
3c171f0b 1143 assert(n_iovec <= ELEMENTSOF(iovec));
34c10968 1144
3c171f0b
LP
1145 return send_iovec(iovec, n_iovec, STDIN_FILENO);
1146}
34c10968 1147
3c171f0b
LP
1148int main(int argc, char *argv[]) {
1149 int r;
fee80f69 1150
3c171f0b
LP
1151 /* First, log to a safe place, since we don't know what crashed and it might be journald which we'd rather not
1152 * log to then. */
8d4e028f 1153
3c171f0b
LP
1154 log_set_target(LOG_TARGET_KMSG);
1155 log_open();
8d4e028f 1156
3c171f0b
LP
1157 /* Make sure we never enter a loop */
1158 (void) prctl(PR_SET_DUMPABLE, 0);
8d4e028f 1159
3c171f0b
LP
1160 /* Ignore all parse errors */
1161 (void) parse_config();
fee80f69 1162
3c171f0b
LP
1163 log_debug("Selected storage '%s'.", coredump_storage_to_string(arg_storage));
1164 log_debug("Selected compression %s.", yes_no(arg_compress));
fee80f69 1165
3c171f0b
LP
1166 r = sd_listen_fds(false);
1167 if (r < 0) {
1168 log_error_errno(r, "Failed to determine number of file descriptor: %m");
1169 goto finish;
fee80f69
LP
1170 }
1171
3c171f0b
LP
1172 /* If we got an fd passed, we are running in coredumpd mode. Otherwise we are invoked from the kernel as
1173 * coredump handler */
1174 if (r == 0)
1175 r = process_kernel(argc, argv);
1176 else if (r == 1)
1177 r = process_socket(SD_LISTEN_FDS_START);
1178 else {
1179 log_error("Received unexpected number of file descriptors.");
1180 r = -EINVAL;
1181 }
f5e04665
LP
1182
1183finish:
f5e04665
LP
1184 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
1185}