]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/coredump/coredump.c
coredumpctl: delay the "on tty" refusal until as late as possible
[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,
34c10968
LP
96 _COREDUMP_STORAGE_MAX,
97 _COREDUMP_STORAGE_INVALID = -1
98} CoredumpStorage;
99
34c10968
LP
100static const char* const coredump_storage_table[_COREDUMP_STORAGE_MAX] = {
101 [COREDUMP_STORAGE_NONE] = "none",
102 [COREDUMP_STORAGE_EXTERNAL] = "external",
103 [COREDUMP_STORAGE_JOURNAL] = "journal",
34c10968
LP
104};
105
106DEFINE_PRIVATE_STRING_TABLE_LOOKUP(coredump_storage, CoredumpStorage);
8c9571d0 107static DEFINE_CONFIG_PARSE_ENUM(config_parse_coredump_storage, coredump_storage, CoredumpStorage, "Failed to parse storage setting");
34727273
ZJS
108
109static CoredumpStorage arg_storage = COREDUMP_STORAGE_EXTERNAL;
8c9571d0 110static bool arg_compress = true;
59f448cf
LP
111static uint64_t arg_process_size_max = PROCESS_SIZE_MAX;
112static uint64_t arg_external_size_max = EXTERNAL_SIZE_MAX;
34727273 113static size_t arg_journal_size_max = JOURNAL_SIZE_MAX;
59f448cf
LP
114static uint64_t arg_keep_free = (uint64_t) -1;
115static uint64_t arg_max_use = (uint64_t) -1;
34c10968
LP
116
117static int parse_config(void) {
34c10968 118 static const ConfigTableItem items[] = {
8c9571d0
LP
119 { "Coredump", "Storage", config_parse_coredump_storage, 0, &arg_storage },
120 { "Coredump", "Compress", config_parse_bool, 0, &arg_compress },
59f448cf
LP
121 { "Coredump", "ProcessSizeMax", config_parse_iec_uint64, 0, &arg_process_size_max },
122 { "Coredump", "ExternalSizeMax", config_parse_iec_uint64, 0, &arg_external_size_max },
8c9571d0 123 { "Coredump", "JournalSizeMax", config_parse_iec_size, 0, &arg_journal_size_max },
59f448cf
LP
124 { "Coredump", "KeepFree", config_parse_iec_uint64, 0, &arg_keep_free },
125 { "Coredump", "MaxUse", config_parse_iec_uint64, 0, &arg_max_use },
34c10968
LP
126 {}
127 };
128
43688c49 129 return config_parse_many_nulstr(PKGSYSCONFDIR "/coredump.conf",
75eb6154 130 CONF_PATHS_NULSTR("systemd/coredump.conf.d"),
301af7e4
JT
131 "Coredump\0",
132 config_item_table_lookup, items,
133 false, NULL);
34c10968
LP
134}
135
136static int fix_acl(int fd, uid_t uid) {
137
138#ifdef HAVE_ACL
139 _cleanup_(acl_freep) acl_t acl = NULL;
140 acl_entry_t entry;
141 acl_permset_t permset;
709f6e46 142 int r;
34c10968 143
b59233e6
LP
144 assert(fd >= 0);
145
34c10968
LP
146 if (uid <= SYSTEM_UID_MAX)
147 return 0;
148
149 /* Make sure normal users can read (but not write or delete)
150 * their own coredumps */
151
152 acl = acl_get_fd(fd);
4a62c710
MS
153 if (!acl)
154 return log_error_errno(errno, "Failed to get ACL: %m");
34c10968
LP
155
156 if (acl_create_entry(&acl, &entry) < 0 ||
157 acl_set_tag_type(entry, ACL_USER) < 0 ||
d710aaf7
ZJS
158 acl_set_qualifier(entry, &uid) < 0)
159 return log_error_errno(errno, "Failed to patch ACL: %m");
34c10968
LP
160
161 if (acl_get_permset(entry, &permset) < 0 ||
709f6e46
MS
162 acl_add_perm(permset, ACL_READ) < 0)
163 return log_warning_errno(errno, "Failed to patch ACL: %m");
164
165 r = calc_acl_mask_if_needed(&acl);
166 if (r < 0)
167 return log_warning_errno(r, "Failed to patch ACL: %m");
34c10968 168
4a62c710
MS
169 if (acl_set_fd(fd, acl) < 0)
170 return log_error_errno(errno, "Failed to apply ACL: %m");
34c10968
LP
171#endif
172
173 return 0;
174}
175
3c171f0b 176static int fix_xattr(int fd, const char *context[_CONTEXT_MAX]) {
0cd77f97 177
3c171f0b
LP
178 static const char * const xattrs[_CONTEXT_MAX] = {
179 [CONTEXT_PID] = "user.coredump.pid",
180 [CONTEXT_UID] = "user.coredump.uid",
181 [CONTEXT_GID] = "user.coredump.gid",
182 [CONTEXT_SIGNAL] = "user.coredump.signal",
183 [CONTEXT_TIMESTAMP] = "user.coredump.timestamp",
184 [CONTEXT_COMM] = "user.coredump.comm",
185 [CONTEXT_EXE] = "user.coredump.exe",
0cd77f97
LP
186 };
187
34c10968 188 int r = 0;
0cd77f97 189 unsigned i;
34c10968 190
b59233e6
LP
191 assert(fd >= 0);
192
1eef15b1 193 /* Attach some metadata to coredumps via extended
34c10968
LP
194 * attributes. Just because we can. */
195
3c171f0b 196 for (i = 0; i < _CONTEXT_MAX; i++) {
1eef15b1
ZJS
197 int k;
198
3c171f0b 199 if (isempty(context[i]) || !xattrs[i])
0cd77f97 200 continue;
34c10968 201
3c171f0b 202 k = fsetxattr(fd, xattrs[i], context[i], strlen(context[i]), XATTR_CREATE);
1eef15b1 203 if (k < 0 && r == 0)
34c10968 204 r = -errno;
0cd77f97 205 }
34c10968
LP
206
207 return r;
208}
209
b0b21dce 210#define filename_escape(s) xescape((s), "./ ")
34c10968 211
0c773903
EV
212static inline const char *coredump_tmpfile_name(const char *s) {
213 return s ? s : "(unnamed temporary file)";
214}
215
b59233e6
LP
216static int fix_permissions(
217 int fd,
218 const char *filename,
219 const char *target,
3c171f0b 220 const char *context[_CONTEXT_MAX],
b59233e6
LP
221 uid_t uid) {
222
03532f0a
LP
223 int r;
224
b59233e6 225 assert(fd >= 0);
b59233e6 226 assert(target);
3c171f0b 227 assert(context);
cfd652ed
ZJS
228
229 /* Ignore errors on these */
3c171f0b
LP
230 (void) fchmod(fd, 0640);
231 (void) fix_acl(fd, uid);
232 (void) fix_xattr(fd, context);
cfd652ed 233
4a62c710 234 if (fsync(fd) < 0)
0c773903 235 return log_error_errno(errno, "Failed to sync coredump %s: %m", coredump_tmpfile_name(filename));
cfd652ed 236
03532f0a
LP
237 r = link_tmpfile(fd, filename, target);
238 if (r < 0)
239 return log_error_errno(r, "Failed to move coredump %s into place: %m", target);
cfd652ed
ZJS
240
241 return 0;
242}
243
59f448cf 244static int maybe_remove_external_coredump(const char *filename, uint64_t size) {
cfd652ed 245
b59233e6 246 /* Returns 1 if might remove, 0 if will not remove, < 0 on error. */
cfd652ed 247
fc6cec86 248 if (arg_storage == COREDUMP_STORAGE_EXTERNAL &&
cfd652ed
ZJS
249 size <= arg_external_size_max)
250 return 0;
251
252 if (!filename)
253 return 1;
254
4a62c710
MS
255 if (unlink(filename) < 0 && errno != ENOENT)
256 return log_error_errno(errno, "Failed to unlink %s: %m", filename);
cfd652ed
ZJS
257
258 return 1;
259}
260
3c171f0b 261static int make_filename(const char *context[_CONTEXT_MAX], char **ret) {
b59233e6 262 _cleanup_free_ char *c = NULL, *u = NULL, *p = NULL, *t = NULL;
a7f7d1bd 263 sd_id128_t boot = {};
34c10968
LP
264 int r;
265
3c171f0b 266 assert(context);
34c10968 267
3c171f0b 268 c = filename_escape(context[CONTEXT_COMM]);
34c10968 269 if (!c)
b59233e6 270 return -ENOMEM;
34c10968 271
3c171f0b 272 u = filename_escape(context[CONTEXT_UID]);
0dc5d23c 273 if (!u)
b59233e6 274 return -ENOMEM;
34c10968
LP
275
276 r = sd_id128_get_boot(&boot);
b59233e6 277 if (r < 0)
34c10968 278 return r;
34c10968 279
3c171f0b 280 p = filename_escape(context[CONTEXT_PID]);
b59233e6
LP
281 if (!p)
282 return -ENOMEM;
283
3c171f0b 284 t = filename_escape(context[CONTEXT_TIMESTAMP]);
b59233e6
LP
285 if (!t)
286 return -ENOMEM;
287
288 if (asprintf(ret,
0dc5d23c 289 "/var/lib/systemd/coredump/core.%s.%s." SD_ID128_FORMAT_STR ".%s.%s000000",
34c10968 290 c,
0dc5d23c 291 u,
34c10968
LP
292 SD_ID128_FORMAT_VAL(boot),
293 p,
b59233e6
LP
294 t) < 0)
295 return -ENOMEM;
296
297 return 0;
298}
299
300static int save_external_coredump(
3c171f0b
LP
301 const char *context[_CONTEXT_MAX],
302 int input_fd,
b59233e6 303 char **ret_filename,
5f3e0a74
HW
304 int *ret_node_fd,
305 int *ret_data_fd,
59f448cf 306 uint64_t *ret_size) {
b59233e6
LP
307
308 _cleanup_free_ char *fn = NULL, *tmp = NULL;
309 _cleanup_close_ int fd = -1;
bdfd7b2c 310 uint64_t rlimit, max_size;
b59233e6 311 struct stat st;
3c171f0b 312 uid_t uid;
b59233e6
LP
313 int r;
314
3c171f0b 315 assert(context);
b59233e6 316 assert(ret_filename);
5f3e0a74
HW
317 assert(ret_node_fd);
318 assert(ret_data_fd);
b59233e6
LP
319 assert(ret_size);
320
3c171f0b
LP
321 r = parse_uid(context[CONTEXT_UID], &uid);
322 if (r < 0)
323 return log_error_errno(r, "Failed to parse UID: %m");
324
bdfd7b2c
LP
325 r = safe_atou64(context[CONTEXT_RLIMIT], &rlimit);
326 if (r < 0)
327 return log_error_errno(r, "Failed to parse resource limit: %s", context[CONTEXT_RLIMIT]);
6998b540
ZJS
328 if (rlimit < page_size()) {
329 /* Is coredumping disabled? Then don't bother saving/processing the coredump.
330 * Anything below PAGE_SIZE cannot give a readable coredump (the kernel uses
331 * ELF_EXEC_PAGESIZE which is not easily accessible, but is usually the same as PAGE_SIZE. */
332 log_info("Core dumping has been disabled for process %s (%s).", context[CONTEXT_PID], context[CONTEXT_COMM]);
bdfd7b2c
LP
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
7ed03ce6
JF
561static int get_process_ns(pid_t pid, const char *namespace, ino_t *ns) {
562 const char *p;
563 struct stat stbuf;
564 _cleanup_close_ int proc_ns_dir_fd;
565
566 p = procfs_file_alloca(pid, "ns");
567
568 proc_ns_dir_fd = open(p, O_DIRECTORY | O_CLOEXEC | O_RDONLY);
569 if (proc_ns_dir_fd < 0)
570 return -errno;
571
572 if (fstatat(proc_ns_dir_fd, namespace, &stbuf, /* flags */0) < 0)
573 return -errno;
574
575 *ns = stbuf.st_ino;
576 return 0;
577}
578
579static int get_mount_namespace_leader(pid_t pid, pid_t *container_pid) {
580 pid_t cpid = pid, ppid = 0;
581 ino_t proc_mntns;
582 int r = 0;
583
584 r = get_process_ns(pid, "mnt", &proc_mntns);
585 if (r < 0)
586 return r;
587
588 while (1) {
589 ino_t parent_mntns;
590
591 r = get_process_ppid(cpid, &ppid);
592 if (r < 0)
593 return r;
594
595 r = get_process_ns(ppid, "mnt", &parent_mntns);
596 if (r < 0)
597 return r;
598
599 if (proc_mntns != parent_mntns)
600 break;
601
602 if (ppid == 1)
603 return -ENOENT;
604
605 cpid = ppid;
606 }
607
608 *container_pid = ppid;
609 return 0;
610}
611
612/* Returns 1 if the parent was found.
613 * Returns 0 if there is not a process we can call the pid's
614 * container parent (the pid's process isn't 'containerized').
615 * Returns a negative number on errors.
616 */
617static int get_process_container_parent_cmdline(pid_t pid, char** cmdline) {
618 int r = 0;
619 pid_t container_pid;
620 const char *proc_root_path;
621 struct stat root_stat, proc_root_stat;
622
623 /* To compare inodes of / and /proc/[pid]/root */
624 if (stat("/", &root_stat) < 0)
625 return -errno;
626
627 proc_root_path = procfs_file_alloca(pid, "root");
628 if (stat(proc_root_path, &proc_root_stat) < 0)
629 return -errno;
630
631 /* The process uses system root. */
632 if (proc_root_stat.st_ino == root_stat.st_ino) {
633 *cmdline = NULL;
634 return 0;
635 }
636
637 r = get_mount_namespace_leader(pid, &container_pid);
638 if (r < 0)
639 return r;
640
641 return get_process_cmdline(container_pid, 0, false, cmdline);
642}
643
3c171f0b
LP
644static int change_uid_gid(const char *context[]) {
645 uid_t uid;
646 gid_t gid;
647 int r;
34c10968 648
3c171f0b
LP
649 r = parse_uid(context[CONTEXT_UID], &uid);
650 if (r < 0)
651 return r;
8c8549db 652
888e378d
LP
653 if (uid <= SYSTEM_UID_MAX) {
654 const char *user = "systemd-coredump";
655
656 r = get_user_creds(&user, &uid, &gid, NULL, NULL);
657 if (r < 0) {
658 log_warning_errno(r, "Cannot resolve %s user. Proceeding to dump core as root: %m", user);
659 uid = gid = 0;
660 }
661 } else {
662 r = parse_gid(context[CONTEXT_GID], &gid);
663 if (r < 0)
664 return r;
665 }
3c171f0b
LP
666
667 return drop_privileges(uid, gid, 0);
668}
8c8549db 669
3c171f0b
LP
670static int submit_coredump(
671 const char *context[_CONTEXT_MAX],
672 struct iovec *iovec,
673 size_t n_iovec_allocated,
674 size_t n_iovec,
675 int input_fd) {
34c10968 676
5f3e0a74 677 _cleanup_close_ int coredump_fd = -1, coredump_node_fd = -1;
3c171f0b 678 _cleanup_free_ char *core_message = NULL, *filename = NULL, *coredump_data = NULL;
a5ca3649 679 uint64_t coredump_size = UINT64_MAX;
3c171f0b 680 int r;
f5e04665 681
3c171f0b
LP
682 assert(context);
683 assert(iovec);
684 assert(n_iovec_allocated >= n_iovec + 3);
685 assert(input_fd >= 0);
f5e04665 686
3c171f0b
LP
687 /* Vacuum before we write anything again */
688 (void) coredump_vacuum(-1, arg_keep_free, arg_max_use);
803a3464 689
3c171f0b
LP
690 /* Always stream the coredump to disk, if that's possible */
691 r = save_external_coredump(context, input_fd, &filename, &coredump_node_fd, &coredump_fd, &coredump_size);
692 if (r < 0)
693 /* Skip whole core dumping part */
694 goto log;
695
696 /* If we don't want to keep the coredump on disk, remove it now, as later on we will lack the privileges for
697 * it. However, we keep the fd to it, so that we can still process it and log it. */
698 r = maybe_remove_external_coredump(filename, coredump_size);
699 if (r < 0)
700 return r;
701 if (r == 0) {
702 const char *coredump_filename;
703
704 coredump_filename = strjoina("COREDUMP_FILENAME=", filename);
705 IOVEC_SET_STRING(iovec[n_iovec++], coredump_filename);
f5e04665
LP
706 }
707
3c171f0b
LP
708 /* Vacuum again, but exclude the coredump we just created */
709 (void) coredump_vacuum(coredump_node_fd >= 0 ? coredump_node_fd : coredump_fd, arg_keep_free, arg_max_use);
8c9571d0 710
3c171f0b
LP
711 /* Now, let's drop privileges to become the user who owns the segfaulted process and allocate the coredump
712 * memory under the user's uid. This also ensures that the credentials journald will see are the ones of the
713 * coredumping user, thus making sure the user gets access to the core dump. Let's also get rid of all
714 * capabilities, if we run as root, we won't need them anymore. */
715 r = change_uid_gid(context);
716 if (r < 0)
717 return log_error_errno(r, "Failed to drop privileges: %m");
34c10968 718
3c171f0b
LP
719#ifdef HAVE_ELFUTILS
720 /* Try to get a strack trace if we can */
721 if (coredump_size <= arg_process_size_max) {
722 _cleanup_free_ char *stacktrace = NULL;
723
724 r = coredump_make_stack_trace(coredump_fd, context[CONTEXT_EXE], &stacktrace);
725 if (r >= 0)
726 core_message = strjoin("MESSAGE=Process ", context[CONTEXT_PID], " (", context[CONTEXT_COMM], ") of user ", context[CONTEXT_UID], " dumped core.\n\n", stacktrace, NULL);
727 else if (r == -EINVAL)
728 log_warning("Failed to generate stack trace: %s", dwfl_errmsg(dwfl_errno()));
729 else
730 log_warning_errno(r, "Failed to generate stack trace: %m");
34c10968 731 }
803a3464 732
3c171f0b
LP
733 if (!core_message)
734#endif
735log:
736 core_message = strjoin("MESSAGE=Process ", context[CONTEXT_PID], " (", context[CONTEXT_COMM], ") of user ", context[CONTEXT_UID], " dumped core.", NULL);
737 if (core_message)
738 IOVEC_SET_STRING(iovec[n_iovec++], core_message);
739
740 /* Optionally store the entire coredump in the journal */
fc6cec86 741 if (arg_storage == COREDUMP_STORAGE_JOURNAL &&
3c171f0b
LP
742 coredump_size <= arg_journal_size_max) {
743 size_t sz = 0;
744
745 /* Store the coredump itself in the journal */
746
747 r = allocate_journal_field(coredump_fd, (size_t) coredump_size, &coredump_data, &sz);
748 if (r >= 0) {
749 iovec[n_iovec].iov_base = coredump_data;
750 iovec[n_iovec].iov_len = sz;
751 n_iovec++;
752 }
f5e04665
LP
753 }
754
3c171f0b
LP
755 assert(n_iovec <= n_iovec_allocated);
756
757 r = sd_journal_sendv(iovec, n_iovec);
758 if (r < 0)
759 return log_error_errno(r, "Failed to log coredump: %m");
760
761 return 0;
762}
763
764static void map_context_fields(const struct iovec *iovec, const char *context[]) {
765
766 static const char * const context_field_names[_CONTEXT_MAX] = {
767 [CONTEXT_PID] = "COREDUMP_PID=",
768 [CONTEXT_UID] = "COREDUMP_UID=",
769 [CONTEXT_GID] = "COREDUMP_GID=",
770 [CONTEXT_SIGNAL] = "COREDUMP_SIGNAL=",
771 [CONTEXT_TIMESTAMP] = "COREDUMP_TIMESTAMP=",
772 [CONTEXT_COMM] = "COREDUMP_COMM=",
773 [CONTEXT_EXE] = "COREDUMP_EXE=",
bdfd7b2c 774 [CONTEXT_RLIMIT] = "COREDUMP_RLIMIT=",
3c171f0b
LP
775 };
776
777 unsigned i;
778
779 assert(iovec);
780 assert(context);
781
782 for (i = 0; i < _CONTEXT_MAX; i++) {
783 size_t l;
784
785 l = strlen(context_field_names[i]);
786 if (iovec->iov_len < l)
787 continue;
788
789 if (memcmp(iovec->iov_base, context_field_names[i], l) != 0)
790 continue;
791
792 /* Note that these strings are NUL terminated, because we made sure that a trailing NUL byte is in the
793 * buffer, though not included in the iov_len count. (see below) */
794 context[i] = (char*) iovec->iov_base + l;
795 break;
796 }
797}
798
799static int process_socket(int fd) {
800 _cleanup_close_ int coredump_fd = -1;
801 struct iovec *iovec = NULL;
802 size_t n_iovec = 0, n_iovec_allocated = 0, i;
803 const char *context[_CONTEXT_MAX] = {};
804 int r;
805
806 assert(fd >= 0);
807
808 log_set_target(LOG_TARGET_AUTO);
809 log_parse_environment();
810 log_open();
811
812 for (;;) {
813 union {
814 struct cmsghdr cmsghdr;
815 uint8_t buf[CMSG_SPACE(sizeof(int))];
816 } control = {};
817 struct msghdr mh = {
818 .msg_control = &control,
819 .msg_controllen = sizeof(control),
820 .msg_iovlen = 1,
821 };
822 ssize_t n;
fe1ef0f8 823 ssize_t l;
3c171f0b
LP
824
825 if (!GREEDY_REALLOC(iovec, n_iovec_allocated, n_iovec + 3)) {
826 r = log_oom();
827 goto finish;
828 }
829
fe1ef0f8
EV
830 l = next_datagram_size_fd(fd);
831 if (l < 0) {
832 r = log_error_errno(l, "Failed to determine datagram size to read: %m");
3c171f0b
LP
833 goto finish;
834 }
835
836 assert(l >= 0);
837
838 iovec[n_iovec].iov_len = l;
839 iovec[n_iovec].iov_base = malloc(l + 1);
3c171f0b
LP
840 if (!iovec[n_iovec].iov_base) {
841 r = log_oom();
842 goto finish;
843 }
844
845 mh.msg_iov = iovec + n_iovec;
846
847 n = recvmsg(fd, &mh, MSG_NOSIGNAL|MSG_CMSG_CLOEXEC);
848 if (n < 0) {
849 free(iovec[n_iovec].iov_base);
850 r = log_error_errno(errno, "Failed to receive datagram: %m");
851 goto finish;
852 }
853
854 if (n == 0) {
855 struct cmsghdr *cmsg, *found = NULL;
856 /* The final zero-length datagram carries the file descriptor and tells us that we're done. */
857
858 free(iovec[n_iovec].iov_base);
859
860 CMSG_FOREACH(cmsg, &mh) {
861 if (cmsg->cmsg_level == SOL_SOCKET &&
862 cmsg->cmsg_type == SCM_RIGHTS &&
863 cmsg->cmsg_len == CMSG_LEN(sizeof(int))) {
864 assert(!found);
865 found = cmsg;
866 }
867 }
868
869 if (!found) {
870 log_error("Coredump file descriptor missing.");
871 r = -EBADMSG;
872 goto finish;
873 }
874
875 assert(coredump_fd < 0);
876 coredump_fd = *(int*) CMSG_DATA(found);
877 break;
878 }
879
880 /* Add trailing NUL byte, in case these are strings */
881 ((char*) iovec[n_iovec].iov_base)[n] = 0;
882 iovec[n_iovec].iov_len = (size_t) n;
883
884 cmsg_close_all(&mh);
885 map_context_fields(iovec + n_iovec, context);
886 n_iovec++;
887 }
888
889 if (!GREEDY_REALLOC(iovec, n_iovec_allocated, n_iovec + 3)) {
890 r = log_oom();
34c10968
LP
891 goto finish;
892 }
893
61233823 894 /* Make sure we got all data we really need */
3c171f0b
LP
895 assert(context[CONTEXT_PID]);
896 assert(context[CONTEXT_UID]);
897 assert(context[CONTEXT_GID]);
898 assert(context[CONTEXT_SIGNAL]);
899 assert(context[CONTEXT_TIMESTAMP]);
bdfd7b2c 900 assert(context[CONTEXT_RLIMIT]);
3c171f0b
LP
901 assert(context[CONTEXT_COMM]);
902 assert(coredump_fd >= 0);
903
904 r = submit_coredump(context, iovec, n_iovec_allocated, n_iovec, coredump_fd);
905
906finish:
907 for (i = 0; i < n_iovec; i++)
908 free(iovec[i].iov_base);
909 free(iovec);
910
911 return r;
912}
913
914static int send_iovec(const struct iovec iovec[], size_t n_iovec, int input_fd) {
915
916 static const union sockaddr_union sa = {
917 .un.sun_family = AF_UNIX,
918 .un.sun_path = "/run/systemd/coredump",
919 };
920 _cleanup_close_ int fd = -1;
921 size_t i;
922 int r;
923
924 assert(iovec || n_iovec <= 0);
925 assert(input_fd >= 0);
926
927 fd = socket(AF_UNIX, SOCK_SEQPACKET|SOCK_CLOEXEC, 0);
928 if (fd < 0)
929 return log_error_errno(errno, "Failed to create coredump socket: %m");
930
fc2fffe7 931 if (connect(fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0)
3c171f0b
LP
932 return log_error_errno(errno, "Failed to connect to coredump service: %m");
933
934 for (i = 0; i < n_iovec; i++) {
fec603eb
LP
935 struct msghdr mh = {
936 .msg_iov = (struct iovec*) iovec + i,
937 .msg_iovlen = 1,
938 };
939 struct iovec copy[2];
940
941 for (;;) {
942 if (sendmsg(fd, &mh, MSG_NOSIGNAL) >= 0)
943 break;
944
945 if (errno == EMSGSIZE && mh.msg_iov[0].iov_len > 0) {
946 /* This field didn't fit? That's a pity. Given that this is just metadata,
947 * let's truncate the field at half, and try again. We append three dots, in
948 * order to show that this is truncated. */
949
950 if (mh.msg_iov != copy) {
951 /* We don't want to modify the caller's iovec, hence let's create our
952 * own array, consisting of two new iovecs, where the first is a
953 * (truncated) copy of what we want to send, and the second one
954 * contains the trailing dots. */
955 copy[0] = iovec[i];
956 copy[1] = (struct iovec) {
957 .iov_base = (char[]) { '.', '.', '.' },
958 .iov_len = 3,
959 };
960
961 mh.msg_iov = copy;
962 mh.msg_iovlen = 2;
963 }
964
965 copy[0].iov_len /= 2; /* halve it, and try again */
966 continue;
967 }
3c171f0b 968
3c171f0b 969 return log_error_errno(errno, "Failed to send coredump datagram: %m");
fec603eb 970 }
1eef15b1
ZJS
971 }
972
3c171f0b
LP
973 r = send_one_fd(fd, input_fd, 0);
974 if (r < 0)
975 return log_error_errno(r, "Failed to send coredump fd: %m");
1eef15b1 976
3c171f0b
LP
977 return 0;
978}
1eef15b1 979
78f043f7 980static int process_special_crash(const char *context[], int input_fd) {
3c171f0b
LP
981 _cleanup_close_ int coredump_fd = -1, coredump_node_fd = -1;
982 _cleanup_free_ char *filename = NULL;
983 uint64_t coredump_size;
984 int r;
803a3464 985
3c171f0b
LP
986 assert(context);
987 assert(input_fd >= 0);
803a3464 988
78f043f7 989 /* If we are pid1 or journald, we cut things short, don't write to the journal, but still create a coredump. */
34c10968 990
3c171f0b
LP
991 if (arg_storage != COREDUMP_STORAGE_NONE)
992 arg_storage = COREDUMP_STORAGE_EXTERNAL;
34c10968 993
3c171f0b
LP
994 r = save_external_coredump(context, input_fd, &filename, &coredump_node_fd, &coredump_fd, &coredump_size);
995 if (r < 0)
996 return r;
34c10968 997
3c171f0b
LP
998 r = maybe_remove_external_coredump(filename, coredump_size);
999 if (r < 0)
1000 return r;
34c10968 1001
78f043f7
LP
1002 log_notice("Detected coredump of the journal daemon or PID 1, diverted to %s.", filename);
1003
3c171f0b
LP
1004 return 0;
1005}
1006
1007static int process_kernel(int argc, char* argv[]) {
1008
1009 /* The small core field we allocate on the stack, to keep things simple */
1010 char
1011 *core_pid = NULL, *core_uid = NULL, *core_gid = NULL, *core_signal = NULL,
1012 *core_session = NULL, *core_exe = NULL, *core_comm = NULL, *core_cmdline = NULL,
1013 *core_cgroup = NULL, *core_cwd = NULL, *core_root = NULL, *core_unit = NULL,
bdfd7b2c 1014 *core_user_unit = NULL, *core_slice = NULL, *core_timestamp = NULL, *core_rlimit = NULL;
3c171f0b
LP
1015
1016 /* The larger ones we allocate on the heap */
1017 _cleanup_free_ char
1018 *core_owner_uid = NULL, *core_open_fds = NULL, *core_proc_status = NULL,
d7032b1f 1019 *core_proc_maps = NULL, *core_proc_limits = NULL, *core_proc_cgroup = NULL, *core_environ = NULL,
7ed03ce6 1020 *core_proc_mountinfo = NULL, *core_container_cmdline = NULL;
3c171f0b
LP
1021
1022 _cleanup_free_ char *exe = NULL, *comm = NULL;
1023 const char *context[_CONTEXT_MAX];
7ed03ce6
JF
1024 bool proc_self_root_is_slash;
1025 struct iovec iovec[27];
3c171f0b
LP
1026 size_t n_iovec = 0;
1027 uid_t owner_uid;
1028 const char *p;
1029 pid_t pid;
1030 char *t;
1031 int r;
1032
1033 if (argc < CONTEXT_COMM + 1) {
1034 log_error("Not enough arguments passed from kernel (%i, expected %i).", argc - 1, CONTEXT_COMM + 1 - 1);
1035 return -EINVAL;
1036 }
1037
1038 r = parse_pid(argv[CONTEXT_PID + 1], &pid);
1039 if (r < 0)
1040 return log_error_errno(r, "Failed to parse PID.");
1041
1042 r = get_process_comm(pid, &comm);
1043 if (r < 0) {
1044 log_warning_errno(r, "Failed to get COMM, falling back to the command line: %m");
1045 comm = strv_join(argv + CONTEXT_COMM + 1, " ");
1046 if (!comm)
1047 return log_oom();
1048 }
1049
1050 r = get_process_exe(pid, &exe);
1051 if (r < 0)
1052 log_warning_errno(r, "Failed to get EXE, ignoring: %m");
1053
1054 context[CONTEXT_PID] = argv[CONTEXT_PID + 1];
1055 context[CONTEXT_UID] = argv[CONTEXT_UID + 1];
1056 context[CONTEXT_GID] = argv[CONTEXT_GID + 1];
1057 context[CONTEXT_SIGNAL] = argv[CONTEXT_SIGNAL + 1];
1058 context[CONTEXT_TIMESTAMP] = argv[CONTEXT_TIMESTAMP + 1];
bdfd7b2c 1059 context[CONTEXT_RLIMIT] = argv[CONTEXT_RLIMIT + 1];
3c171f0b
LP
1060 context[CONTEXT_COMM] = comm;
1061 context[CONTEXT_EXE] = exe;
1062
1063 if (cg_pid_get_unit(pid, &t) >= 0) {
1064
c8091d92
LP
1065 /* If this is PID 1 disable coredump collection, we'll unlikely be able to process it later on. */
1066 if (streq(t, SPECIAL_INIT_SCOPE)) {
1067 log_notice("Due to PID 1 having crashed coredump collection will now be turned off.");
1068 (void) write_string_file("/proc/sys/kernel/core_pattern", "|/bin/false", 0);
1069 }
1070
78f043f7
LP
1071 /* Let's avoid dead-locks when processing journald and init crashes, as socket activation and logging
1072 * are unlikely to work then. */
1073 if (STR_IN_SET(t, SPECIAL_JOURNALD_SERVICE, SPECIAL_INIT_SCOPE)) {
3c171f0b 1074 free(t);
78f043f7 1075 return process_special_crash(context, STDIN_FILENO);
803a3464
LP
1076 }
1077
63c372cb 1078 core_unit = strjoina("COREDUMP_UNIT=", t);
8c8549db
LP
1079 free(t);
1080
3c171f0b 1081 IOVEC_SET_STRING(iovec[n_iovec++], core_unit);
8c8549db 1082 }
803a3464 1083
3c171f0b 1084 /* OK, now we know it's not the journal, hence we can make use of it now. */
803a3464
LP
1085 log_set_target(LOG_TARGET_JOURNAL_OR_KMSG);
1086 log_open();
1087
3c171f0b
LP
1088 if (cg_pid_get_user_unit(pid, &t) >= 0) {
1089 core_user_unit = strjoina("COREDUMP_USER_UNIT=", t);
1090 free(t);
1091
1092 IOVEC_SET_STRING(iovec[n_iovec++], core_user_unit);
1093 }
1094
1095 core_pid = strjoina("COREDUMP_PID=", context[CONTEXT_PID]);
1096 IOVEC_SET_STRING(iovec[n_iovec++], core_pid);
f5e04665 1097
3c171f0b
LP
1098 core_uid = strjoina("COREDUMP_UID=", context[CONTEXT_UID]);
1099 IOVEC_SET_STRING(iovec[n_iovec++], core_uid);
f5e04665 1100
3c171f0b
LP
1101 core_gid = strjoina("COREDUMP_GID=", context[CONTEXT_GID]);
1102 IOVEC_SET_STRING(iovec[n_iovec++], core_gid);
f5e04665 1103
3c171f0b
LP
1104 core_signal = strjoina("COREDUMP_SIGNAL=", context[CONTEXT_SIGNAL]);
1105 IOVEC_SET_STRING(iovec[n_iovec++], core_signal);
f5e04665 1106
bdfd7b2c
LP
1107 core_rlimit = strjoina("COREDUMP_RLIMIT=", context[CONTEXT_RLIMIT]);
1108 IOVEC_SET_STRING(iovec[n_iovec++], core_rlimit);
1109
f5e04665 1110 if (sd_pid_get_session(pid, &t) >= 0) {
63c372cb 1111 core_session = strjoina("COREDUMP_SESSION=", t);
f5e04665
LP
1112 free(t);
1113
3c171f0b 1114 IOVEC_SET_STRING(iovec[n_iovec++], core_session);
f5e04665
LP
1115 }
1116
a035f819 1117 if (sd_pid_get_owner_uid(pid, &owner_uid) >= 0) {
3c171f0b 1118 r = asprintf(&core_owner_uid, "COREDUMP_OWNER_UID=" UID_FMT, owner_uid);
7de80bfe 1119 if (r > 0)
3c171f0b 1120 IOVEC_SET_STRING(iovec[n_iovec++], core_owner_uid);
a035f819
LP
1121 }
1122
1123 if (sd_pid_get_slice(pid, &t) >= 0) {
63c372cb 1124 core_slice = strjoina("COREDUMP_SLICE=", t);
a035f819
LP
1125 free(t);
1126
3c171f0b 1127 IOVEC_SET_STRING(iovec[n_iovec++], core_slice);
a035f819
LP
1128 }
1129
1eef15b1 1130 if (comm) {
63c372cb 1131 core_comm = strjoina("COREDUMP_COMM=", comm);
3c171f0b 1132 IOVEC_SET_STRING(iovec[n_iovec++], core_comm);
1eef15b1
ZJS
1133 }
1134
1135 if (exe) {
63c372cb 1136 core_exe = strjoina("COREDUMP_EXE=", exe);
3c171f0b 1137 IOVEC_SET_STRING(iovec[n_iovec++], core_exe);
f5e04665
LP
1138 }
1139
9bdbc2e2 1140 if (get_process_cmdline(pid, 0, false, &t) >= 0) {
63c372cb 1141 core_cmdline = strjoina("COREDUMP_CMDLINE=", t);
f5e04665
LP
1142 free(t);
1143
3c171f0b 1144 IOVEC_SET_STRING(iovec[n_iovec++], core_cmdline);
f5e04665
LP
1145 }
1146
a035f819 1147 if (cg_pid_get_path_shifted(pid, NULL, &t) >= 0) {
63c372cb 1148 core_cgroup = strjoina("COREDUMP_CGROUP=", t);
a035f819
LP
1149 free(t);
1150
3c171f0b 1151 IOVEC_SET_STRING(iovec[n_iovec++], core_cgroup);
a035f819
LP
1152 }
1153
3f132692
JF
1154 if (compose_open_fds(pid, &t) >= 0) {
1155 core_open_fds = strappend("COREDUMP_OPEN_FDS=", t);
1156 free(t);
1157
1158 if (core_open_fds)
3c171f0b 1159 IOVEC_SET_STRING(iovec[n_iovec++], core_open_fds);
3f132692
JF
1160 }
1161
1162 p = procfs_file_alloca(pid, "status");
1163 if (read_full_file(p, &t, NULL) >= 0) {
1164 core_proc_status = strappend("COREDUMP_PROC_STATUS=", t);
1165 free(t);
1166
1167 if (core_proc_status)
3c171f0b 1168 IOVEC_SET_STRING(iovec[n_iovec++], core_proc_status);
3f132692
JF
1169 }
1170
1171 p = procfs_file_alloca(pid, "maps");
1172 if (read_full_file(p, &t, NULL) >= 0) {
1173 core_proc_maps = strappend("COREDUMP_PROC_MAPS=", t);
1174 free(t);
1175
1176 if (core_proc_maps)
3c171f0b 1177 IOVEC_SET_STRING(iovec[n_iovec++], core_proc_maps);
3f132692
JF
1178 }
1179
1180 p = procfs_file_alloca(pid, "limits");
1181 if (read_full_file(p, &t, NULL) >= 0) {
1182 core_proc_limits = strappend("COREDUMP_PROC_LIMITS=", t);
1183 free(t);
1184
1185 if (core_proc_limits)
3c171f0b 1186 IOVEC_SET_STRING(iovec[n_iovec++], core_proc_limits);
3f132692
JF
1187 }
1188
1189 p = procfs_file_alloca(pid, "cgroup");
1190 if (read_full_file(p, &t, NULL) >=0) {
1191 core_proc_cgroup = strappend("COREDUMP_PROC_CGROUP=", t);
1192 free(t);
1193
1194 if (core_proc_cgroup)
3c171f0b 1195 IOVEC_SET_STRING(iovec[n_iovec++], core_proc_cgroup);
3f132692
JF
1196 }
1197
d7032b1f
JF
1198 p = procfs_file_alloca(pid, "mountinfo");
1199 if (read_full_file(p, &t, NULL) >=0) {
1200 core_proc_mountinfo = strappend("COREDUMP_PROC_MOUNTINFO=", t);
1201 free(t);
1202
1203 if (core_proc_mountinfo)
1204 IOVEC_SET_STRING(iovec[n_iovec++], core_proc_mountinfo);
1205 }
1206
3f132692 1207 if (get_process_cwd(pid, &t) >= 0) {
63c372cb 1208 core_cwd = strjoina("COREDUMP_CWD=", t);
3f132692
JF
1209 free(t);
1210
3c171f0b 1211 IOVEC_SET_STRING(iovec[n_iovec++], core_cwd);
3f132692
JF
1212 }
1213
1214 if (get_process_root(pid, &t) >= 0) {
63c372cb 1215 core_root = strjoina("COREDUMP_ROOT=", t);
3f132692 1216
3c171f0b 1217 IOVEC_SET_STRING(iovec[n_iovec++], core_root);
7ed03ce6
JF
1218
1219 /* If the process' root is "/", then there is a chance it has
1220 * mounted own root and hence being containerized. */
1221 proc_self_root_is_slash = strcmp(t, "/") == 0;
1222 free(t);
1223 if (proc_self_root_is_slash && get_process_container_parent_cmdline(pid, &t) > 0) {
1224 core_container_cmdline = strappend("COREDUMP_CONTAINER_CMDLINE=", t);
1225 free(t);
1226
1227 if (core_container_cmdline)
1228 IOVEC_SET_STRING(iovec[n_iovec++], core_container_cmdline);
1229 }
3f132692
JF
1230 }
1231
1232 if (get_process_environ(pid, &t) >= 0) {
1233 core_environ = strappend("COREDUMP_ENVIRON=", t);
1234 free(t);
1235
1236 if (core_environ)
3c171f0b 1237 IOVEC_SET_STRING(iovec[n_iovec++], core_environ);
3f132692
JF
1238 }
1239
81d62103 1240 core_timestamp = strjoina("COREDUMP_TIMESTAMP=", context[CONTEXT_TIMESTAMP], "000000");
3c171f0b 1241 IOVEC_SET_STRING(iovec[n_iovec++], core_timestamp);
f5e04665 1242
3c171f0b 1243 IOVEC_SET_STRING(iovec[n_iovec++], "MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1");
4850d39a
LP
1244
1245 assert_cc(2 == LOG_CRIT);
3c171f0b 1246 IOVEC_SET_STRING(iovec[n_iovec++], "PRIORITY=2");
0dc5d23c 1247
3c171f0b 1248 assert(n_iovec <= ELEMENTSOF(iovec));
34c10968 1249
3c171f0b
LP
1250 return send_iovec(iovec, n_iovec, STDIN_FILENO);
1251}
34c10968 1252
3c171f0b
LP
1253int main(int argc, char *argv[]) {
1254 int r;
fee80f69 1255
3c171f0b
LP
1256 /* First, log to a safe place, since we don't know what crashed and it might be journald which we'd rather not
1257 * log to then. */
8d4e028f 1258
3c171f0b
LP
1259 log_set_target(LOG_TARGET_KMSG);
1260 log_open();
8d4e028f 1261
3c171f0b
LP
1262 /* Make sure we never enter a loop */
1263 (void) prctl(PR_SET_DUMPABLE, 0);
8d4e028f 1264
3c171f0b
LP
1265 /* Ignore all parse errors */
1266 (void) parse_config();
fee80f69 1267
3c171f0b
LP
1268 log_debug("Selected storage '%s'.", coredump_storage_to_string(arg_storage));
1269 log_debug("Selected compression %s.", yes_no(arg_compress));
fee80f69 1270
3c171f0b
LP
1271 r = sd_listen_fds(false);
1272 if (r < 0) {
1273 log_error_errno(r, "Failed to determine number of file descriptor: %m");
1274 goto finish;
fee80f69
LP
1275 }
1276
3c171f0b
LP
1277 /* If we got an fd passed, we are running in coredumpd mode. Otherwise we are invoked from the kernel as
1278 * coredump handler */
1279 if (r == 0)
1280 r = process_kernel(argc, argv);
1281 else if (r == 1)
1282 r = process_socket(SD_LISTEN_FDS_START);
1283 else {
1284 log_error("Received unexpected number of file descriptors.");
1285 r = -EINVAL;
1286 }
f5e04665
LP
1287
1288finish:
f5e04665
LP
1289 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
1290}