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