]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/main.c
journald: systemd.journald.max_level_* kernel command line options (#4427)
[thirdparty/systemd.git] / src / core / main.c
CommitLineData
a7334b09
LP
1/***
2 This file is part of systemd.
3
4 Copyright 2010 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
a7334b09
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.
a7334b09 15
5430f7f2 16 You should have received a copy of the GNU Lesser General Public License
a7334b09
LP
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
60918275 20#include <errno.h>
3dfc9763 21#include <fcntl.h>
f170852a 22#include <getopt.h>
97c4f35c 23#include <signal.h>
3dfc9763
LP
24#include <stdio.h>
25#include <string.h>
664f88a7 26#include <sys/mount.h>
3dfc9763 27#include <sys/prctl.h>
b9e74c39 28#include <sys/reboot.h>
3dfc9763
LP
29#include <sys/stat.h>
30#include <unistd.h>
b64a3d86
LP
31#ifdef HAVE_SECCOMP
32#include <seccomp.h>
33#endif
3dfc9763
LP
34#ifdef HAVE_VALGRIND_VALGRIND_H
35#include <valgrind/valgrind.h>
36#endif
54b434b1 37
718db961 38#include "sd-bus.h"
cf0fbc49 39#include "sd-daemon.h"
3dfc9763 40
b5efdb8a 41#include "alloc-util.h"
d9d93745 42#include "architecture.h"
3dfc9763
LP
43#include "build.h"
44#include "bus-error.h"
45#include "bus-util.h"
430f0182 46#include "capability-util.h"
24efb112 47#include "clock-util.h"
3dfc9763 48#include "conf-parser.h"
618234a5 49#include "cpu-set-util.h"
3dfc9763
LP
50#include "dbus-manager.h"
51#include "def.h"
52#include "env-util.h"
3ffd4af2 53#include "fd-util.h"
3dfc9763 54#include "fdset.h"
718db961 55#include "fileio.h"
24882e06 56#include "formats-util.h"
f4f15635 57#include "fs-util.h"
3dfc9763
LP
58#include "hostname-setup.h"
59#include "ima-setup.h"
60#include "killall.h"
61#include "kmod-setup.h"
d7b8eec7 62#include "load-fragment.h"
3dfc9763 63#include "log.h"
b6e66135 64#include "loopback-setup.h"
b6e66135 65#include "machine-id-setup.h"
3dfc9763
LP
66#include "manager.h"
67#include "missing.h"
68#include "mount-setup.h"
69#include "pager.h"
6bedfcbb 70#include "parse-util.h"
4e731273 71#include "proc-cmdline.h"
3dfc9763 72#include "process-util.h"
8869a0b4 73#include "raw-clone.h"
78f22b97 74#include "rlimit-util.h"
83f12b27
FS
75#ifdef HAVE_SECCOMP
76#include "seccomp-util.h"
77#endif
b6e66135 78#include "selinux-setup.h"
3dfc9763
LP
79#include "selinux-util.h"
80#include "signal-util.h"
ffbd2c4d 81#include "smack-setup.h"
3dfc9763 82#include "special.h"
8fcde012 83#include "stat-util.h"
15a5e950 84#include "stdio-util.h"
3dfc9763
LP
85#include "strv.h"
86#include "switch-root.h"
87#include "terminal-util.h"
8612da97 88#include "umask-util.h"
b1d4f8e1 89#include "user-util.h"
3dfc9763
LP
90#include "virt.h"
91#include "watchdog.h"
b6e66135 92
f170852a
LP
93static enum {
94 ACTION_RUN,
e965d56d 95 ACTION_HELP,
9ba0bc4e 96 ACTION_VERSION,
e537352b 97 ACTION_TEST,
494294d6 98 ACTION_DUMP_CONFIGURATION_ITEMS
fa0f4d8a 99} arg_action = ACTION_RUN;
fa0f4d8a 100static char *arg_default_unit = NULL;
463d0d15 101static bool arg_system = false;
fa0f4d8a 102static bool arg_dump_core = true;
fa0f4d8a 103static int arg_crash_chvt = -1;
b9e74c39
LP
104static bool arg_crash_shell = false;
105static bool arg_crash_reboot = false;
fa0f4d8a 106static bool arg_confirm_spawn = false;
b6e2f329 107static ShowStatus arg_show_status = _SHOW_STATUS_UNSET;
bf4df7c3 108static bool arg_switched_root = false;
ea4b98e6 109static bool arg_no_pager = false;
0c85a4f3 110static char ***arg_join_controllers = NULL;
706343f4 111static ExecOutput arg_default_std_output = EXEC_OUTPUT_JOURNAL;
0a494f1f 112static ExecOutput arg_default_std_error = EXEC_OUTPUT_INHERIT;
1f19a534
OS
113static usec_t arg_default_restart_usec = DEFAULT_RESTART_USEC;
114static usec_t arg_default_timeout_start_usec = DEFAULT_TIMEOUT_USEC;
115static usec_t arg_default_timeout_stop_usec = DEFAULT_TIMEOUT_USEC;
3f41e1e5
LN
116static usec_t arg_default_start_limit_interval = DEFAULT_START_LIMIT_INTERVAL;
117static unsigned arg_default_start_limit_burst = DEFAULT_START_LIMIT_BURST;
e96d6be7
LP
118static usec_t arg_runtime_watchdog = 0;
119static usec_t arg_shutdown_watchdog = 10 * USEC_PER_MINUTE;
97d0e5f8 120static char **arg_default_environment = NULL;
517d56b1 121static struct rlimit *arg_default_rlimit[_RLIMIT_MAX] = {};
a103496c 122static uint64_t arg_capability_bounding_set = CAP_ALL;
3a43da28 123static nsec_t arg_timer_slack_nsec = NSEC_INFINITY;
bd8f585b 124static usec_t arg_default_timer_accuracy_usec = 1 * USEC_PER_MINUTE;
d3b1c508
LP
125static Set* arg_syscall_archs = NULL;
126static FILE* arg_serialization = NULL;
085afe36 127static bool arg_default_cpu_accounting = false;
13c31542 128static bool arg_default_io_accounting = false;
085afe36
LP
129static bool arg_default_blockio_accounting = false;
130static bool arg_default_memory_accounting = false;
9ded9cd1 131static bool arg_default_tasks_accounting = true;
79baeeb9 132static uint64_t arg_default_tasks_max = UINT64_MAX;
ee48dbd5 133static sd_id128_t arg_machine_id = {};
24dd31c1 134static CADBurstAction arg_cad_burst_action = CAD_BURST_ACTION_REBOOT;
4fc935ca 135
b9e74c39
LP
136noreturn static void freeze_or_reboot(void) {
137
138 if (arg_crash_reboot) {
139 log_notice("Rebooting in 10s...");
140 (void) sleep(10);
141
142 log_notice("Rebooting now...");
143 (void) reboot(RB_AUTOBOOT);
144 log_emergency_errno(errno, "Failed to reboot: %m");
145 }
146
147 log_emergency("Freezing execution.");
148 freeze();
149}
150
919ce0b7 151noreturn static void crash(int sig) {
7d06dad9
MS
152 struct sigaction sa;
153 pid_t pid;
97c4f35c 154
abb26902
LP
155 if (getpid() != 1)
156 /* Pass this on immediately, if this is not PID 1 */
92ca4cac 157 (void) raise(sig);
abb26902 158 else if (!arg_dump_core)
4104970e 159 log_emergency("Caught <%s>, not dumping core.", signal_to_string(sig));
97c4f35c 160 else {
7d06dad9 161 sa = (struct sigaction) {
189d5bac 162 .sa_handler = nop_signal_handler,
b92bea5d
ZJS
163 .sa_flags = SA_NOCLDSTOP|SA_RESTART,
164 };
97c4f35c 165
6f5e3f35 166 /* We want to wait for the core process, hence let's enable SIGCHLD */
92ca4cac 167 (void) sigaction(SIGCHLD, &sa, NULL);
6f5e3f35 168
8869a0b4 169 pid = raw_clone(SIGCHLD);
e62d8c39 170 if (pid < 0)
56f64d95 171 log_emergency_errno(errno, "Caught <%s>, cannot fork for core dump: %m", signal_to_string(sig));
97c4f35c 172 else if (pid == 0) {
97c4f35c 173 /* Enable default signal handler for core dump */
15a90032 174
92ca4cac
LP
175 sa = (struct sigaction) {
176 .sa_handler = SIG_DFL,
177 };
178 (void) sigaction(sig, &sa, NULL);
97c4f35c 179
15a90032
LP
180 /* Don't limit the coredump size */
181 (void) setrlimit(RLIMIT_CORE, &RLIMIT_MAKE_CONST(RLIM_INFINITY));
97c4f35c
LP
182
183 /* Just to be sure... */
e62d9b81 184 (void) chdir("/");
97c4f35c
LP
185
186 /* Raise the signal again */
ee05e779 187 pid = raw_getpid();
92ca4cac 188 (void) kill(pid, sig); /* raise() would kill the parent */
97c4f35c
LP
189
190 assert_not_reached("We shouldn't be here...");
92ca4cac 191 _exit(EXIT_FAILURE);
4fc935ca 192 } else {
8e12a6ae
LP
193 siginfo_t status;
194 int r;
4fc935ca
LP
195
196 /* Order things nicely. */
e62d8c39
ZJS
197 r = wait_for_terminate(pid, &status);
198 if (r < 0)
da927ba9 199 log_emergency_errno(r, "Caught <%s>, waitpid() failed: %m", signal_to_string(sig));
8e12a6ae 200 else if (status.si_code != CLD_DUMPED)
ee05e779
ZJS
201 log_emergency("Caught <%s>, core dump failed (child "PID_FMT", code=%s, status=%i/%s).",
202 signal_to_string(sig),
203 pid, sigchld_code_to_string(status.si_code),
204 status.si_status,
205 strna(status.si_code == CLD_EXITED
38107f5a 206 ? exit_status_to_string(status.si_status, EXIT_STATUS_MINIMAL)
ee05e779 207 : signal_to_string(status.si_status)));
4fc935ca 208 else
4104970e 209 log_emergency("Caught <%s>, dumped core as pid "PID_FMT".", signal_to_string(sig), pid);
97c4f35c
LP
210 }
211 }
212
b9e74c39 213 if (arg_crash_chvt >= 0)
92ca4cac 214 (void) chvt(arg_crash_chvt);
601f6a1e 215
7d06dad9
MS
216 sa = (struct sigaction) {
217 .sa_handler = SIG_IGN,
218 .sa_flags = SA_NOCLDSTOP|SA_NOCLDWAIT|SA_RESTART,
219 };
220
221 /* Let the kernel reap children for us */
222 (void) sigaction(SIGCHLD, &sa, NULL);
8c43883a 223
7d06dad9 224 if (arg_crash_shell) {
b9e74c39 225 log_notice("Executing crash shell in 10s...");
92ca4cac 226 (void) sleep(10);
4fc935ca 227
8869a0b4 228 pid = raw_clone(SIGCHLD);
cd3bd60a 229 if (pid < 0)
56f64d95 230 log_emergency_errno(errno, "Failed to fork off crash shell: %m");
6f5e3f35 231 else if (pid == 0) {
b9e74c39 232 (void) setsid();
92ca4cac
LP
233 (void) make_console_stdio();
234 (void) execle("/bin/sh", "/bin/sh", NULL, environ);
6f5e3f35 235
ee05e779 236 log_emergency_errno(errno, "execle() failed: %m");
92ca4cac 237 _exit(EXIT_FAILURE);
b9e74c39
LP
238 } else {
239 log_info("Spawned crash shell as PID "PID_FMT".", pid);
4cf0b03b 240 (void) wait_for_terminate(pid, NULL);
b9e74c39 241 }
4fc935ca
LP
242 }
243
b9e74c39 244 freeze_or_reboot();
97c4f35c
LP
245}
246
247static void install_crash_handler(void) {
297d563d 248 static const struct sigaction sa = {
b92bea5d 249 .sa_handler = crash,
297d563d 250 .sa_flags = SA_NODEFER, /* So that we can raise the signal again from the signal handler */
b92bea5d 251 };
297d563d 252 int r;
97c4f35c 253
297d563d
LP
254 /* We ignore the return value here, since, we don't mind if we
255 * cannot set up a crash handler */
256 r = sigaction_many(&sa, SIGNALS_CRASH_HANDLER, -1);
257 if (r < 0)
258 log_debug_errno(r, "I had trouble setting up the crash handler, ignoring: %m");
97c4f35c 259}
f170852a 260
56d96fc0
LP
261static int console_setup(void) {
262 _cleanup_close_ int tty_fd = -1;
263 int r;
80876c20 264
512947d4 265 tty_fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC);
23bbb0de
MS
266 if (tty_fd < 0)
267 return log_error_errno(tty_fd, "Failed to open /dev/console: %m");
80876c20 268
56d96fc0
LP
269 /* We don't want to force text mode. plymouth may be showing
270 * pictures already from initrd. */
512947d4 271 r = reset_terminal_fd(tty_fd, false);
23bbb0de
MS
272 if (r < 0)
273 return log_error_errno(r, "Failed to reset /dev/console: %m");
843d2643 274
56d96fc0 275 return 0;
80876c20
LP
276}
277
b9e74c39
LP
278static int parse_crash_chvt(const char *value) {
279 int b;
280
281 if (safe_atoi(value, &arg_crash_chvt) >= 0)
282 return 0;
283
284 b = parse_boolean(value);
285 if (b < 0)
286 return b;
287
288 if (b > 0)
289 arg_crash_chvt = 0; /* switch to where kmsg goes */
290 else
291 arg_crash_chvt = -1; /* turn off switching */
292
293 return 0;
294}
295
ee48dbd5 296static int set_machine_id(const char *m) {
e042eab7 297 sd_id128_t t;
8b26cdbd 298 assert(m);
ee48dbd5 299
e042eab7 300 if (sd_id128_from_string(m, &t) < 0)
ee48dbd5
NC
301 return -EINVAL;
302
e042eab7 303 if (sd_id128_is_null(t))
ee48dbd5
NC
304 return -EINVAL;
305
e042eab7 306 arg_machine_id = t;
ee48dbd5
NC
307 return 0;
308}
309
059cb385 310static int parse_proc_cmdline_item(const char *key, const char *value) {
f170852a 311
059cb385 312 int r;
f170852a 313
059cb385 314 assert(key);
5192bd19 315
059cb385 316 if (streq(key, "systemd.unit") && value) {
bf4df7c3
LP
317
318 if (!in_initrd())
e6e242ad 319 return free_and_strdup(&arg_default_unit, value);
bf4df7c3 320
059cb385 321 } else if (streq(key, "rd.systemd.unit") && value) {
bf4df7c3 322
ca05941b 323 if (in_initrd())
e6e242ad 324 return free_and_strdup(&arg_default_unit, value);
f170852a 325
059cb385 326 } else if (streq(key, "systemd.dump_core") && value) {
4fc935ca 327
059cb385 328 r = parse_boolean(value);
fb472900 329 if (r < 0)
059cb385 330 log_warning("Failed to parse dump core switch %s. Ignoring.", value);
4fc935ca 331 else
fa0f4d8a 332 arg_dump_core = r;
4fc935ca 333
b9e74c39
LP
334 } else if (streq(key, "systemd.crash_chvt") && value) {
335
336 if (parse_crash_chvt(value) < 0)
337 log_warning("Failed to parse crash chvt switch %s. Ignoring.", value);
338
059cb385 339 } else if (streq(key, "systemd.crash_shell") && value) {
4fc935ca 340
059cb385 341 r = parse_boolean(value);
fb472900 342 if (r < 0)
059cb385 343 log_warning("Failed to parse crash shell switch %s. Ignoring.", value);
4fc935ca 344 else
fa0f4d8a 345 arg_crash_shell = r;
5e7ee61c 346
b9e74c39 347 } else if (streq(key, "systemd.crash_reboot") && value) {
5e7ee61c 348
b9e74c39
LP
349 r = parse_boolean(value);
350 if (r < 0)
351 log_warning("Failed to parse crash reboot switch %s. Ignoring.", value);
5e7ee61c 352 else
b9e74c39 353 arg_crash_reboot = r;
5e7ee61c 354
059cb385 355 } else if (streq(key, "systemd.confirm_spawn") && value) {
601f6a1e 356
059cb385
LP
357 r = parse_boolean(value);
358 if (r < 0)
359 log_warning("Failed to parse confirm spawn switch %s. Ignoring.", value);
601f6a1e 360 else
059cb385 361 arg_confirm_spawn = r;
601f6a1e 362
059cb385 363 } else if (streq(key, "systemd.show_status") && value) {
9e58ff9c 364
059cb385 365 r = parse_show_status(value, &arg_show_status);
d450b6f2 366 if (r < 0)
059cb385
LP
367 log_warning("Failed to parse show status switch %s. Ignoring.", value);
368
369 } else if (streq(key, "systemd.default_standard_output") && value) {
0a494f1f 370
059cb385 371 r = exec_output_from_string(value);
fb472900 372 if (r < 0)
059cb385 373 log_warning("Failed to parse default standard output switch %s. Ignoring.", value);
0a494f1f
LP
374 else
375 arg_default_std_output = r;
0a494f1f 376
059cb385
LP
377 } else if (streq(key, "systemd.default_standard_error") && value) {
378
379 r = exec_output_from_string(value);
fb472900 380 if (r < 0)
059cb385 381 log_warning("Failed to parse default standard error switch %s. Ignoring.", value);
0a494f1f
LP
382 else
383 arg_default_std_error = r;
9e7c5357 384
059cb385
LP
385 } else if (streq(key, "systemd.setenv") && value) {
386
387 if (env_assignment_is_valid(value)) {
e21fea24
KS
388 char **env;
389
059cb385 390 env = strv_env_set(arg_default_environment, value);
e21fea24
KS
391 if (env)
392 arg_default_environment = env;
393 else
279d3c9c 394 log_warning_errno(ENOMEM, "Setting environment variable '%s' failed, ignoring: %m", value);
e21fea24 395 } else
059cb385 396 log_warning("Environment variable name '%s' is not valid. Ignoring.", value);
9e58ff9c 397
ee48dbd5
NC
398 } else if (streq(key, "systemd.machine_id") && value) {
399
400 r = set_machine_id(value);
401 if (r < 0)
402 log_warning("MachineID '%s' is not valid. Ignoring.", value);
403
059cb385 404 } else if (streq(key, "quiet") && !value) {
d7b15e0a 405
b6e2f329 406 if (arg_show_status == _SHOW_STATUS_UNSET)
d450b6f2 407 arg_show_status = SHOW_STATUS_AUTO;
059cb385
LP
408
409 } else if (streq(key, "debug") && !value) {
d7b15e0a 410
1de1c9c3
LP
411 /* Note that log_parse_environment() handles 'debug'
412 * too, and sets the log level to LOG_DEBUG. */
d7b15e0a 413
75f86906 414 if (detect_container() > 0)
b2103dcc 415 log_set_target(LOG_TARGET_CONSOLE);
059cb385 416
dcd61450 417 } else if (!value) {
e2c9a131 418 const char *target;
f170852a
LP
419
420 /* SysV compatibility */
e2c9a131
EV
421 target = runlevel_to_target(key);
422 if (target)
423 return free_and_strdup(&arg_default_unit, target);
959718c6
TB
424
425 } else if (streq(key, "systemd.default_timeout_start_sec") && value) {
426
427 r = parse_sec(value, &arg_default_timeout_start_usec);
428 if (r < 0)
429 log_warning_errno(r, "Failed to parse default start timeout: %s, ignoring.", value);
430
431 if (arg_default_timeout_start_usec <= 0)
432 arg_default_timeout_start_usec = USEC_INFINITY;
f170852a
LP
433 }
434
435 return 0;
436}
437
e8e581bf
ZJS
438#define DEFINE_SETTER(name, func, descr) \
439 static int name(const char *unit, \
440 const char *filename, \
441 unsigned line, \
442 const char *section, \
71a61510 443 unsigned section_line, \
e8e581bf
ZJS
444 const char *lvalue, \
445 int ltype, \
446 const char *rvalue, \
447 void *data, \
448 void *userdata) { \
449 \
450 int r; \
451 \
452 assert(filename); \
453 assert(lvalue); \
454 assert(rvalue); \
455 \
456 r = func(rvalue); \
457 if (r < 0) \
d1cefe0a
LP
458 log_syntax(unit, LOG_ERR, filename, line, r, \
459 "Invalid " descr "'%s': %m", \
460 rvalue); \
e8e581bf
ZJS
461 \
462 return 0; \
463 }
487393e9 464
e8e581bf
ZJS
465DEFINE_SETTER(config_parse_level2, log_set_max_level_from_string, "log level")
466DEFINE_SETTER(config_parse_target, log_set_target_from_string, "target")
467DEFINE_SETTER(config_parse_color, log_show_color_from_string, "color" )
468DEFINE_SETTER(config_parse_location, log_show_location_from_string, "location")
487393e9 469
4d7213b2
LP
470static int config_parse_cpu_affinity2(
471 const char *unit,
472 const char *filename,
473 unsigned line,
474 const char *section,
475 unsigned section_line,
476 const char *lvalue,
477 int ltype,
478 const char *rvalue,
479 void *data,
480 void *userdata) {
487393e9 481
4b40bc38 482 _cleanup_cpu_free_ cpu_set_t *c = NULL;
f5c72b73 483 int ncpus;
487393e9 484
765d143b 485 ncpus = parse_cpu_set_and_warn(rvalue, &c, unit, filename, line, lvalue);
f5c72b73
FB
486 if (ncpus < 0)
487 return ncpus;
487393e9 488
f5c72b73
FB
489 if (sched_setaffinity(0, CPU_ALLOC_SIZE(ncpus), c) < 0)
490 log_warning("Failed to set CPU affinity: %m");
487393e9 491
487393e9
LP
492 return 0;
493}
494
4d7213b2
LP
495static int config_parse_show_status(
496 const char* unit,
497 const char *filename,
498 unsigned line,
499 const char *section,
500 unsigned section_line,
501 const char *lvalue,
502 int ltype,
503 const char *rvalue,
504 void *data,
505 void *userdata) {
506
507 int k;
508 ShowStatus *b = data;
509
510 assert(filename);
511 assert(lvalue);
512 assert(rvalue);
513 assert(data);
514
515 k = parse_show_status(rvalue, b);
516 if (k < 0) {
12ca818f 517 log_syntax(unit, LOG_ERR, filename, line, k, "Failed to parse show status setting, ignoring: %s", rvalue);
4d7213b2
LP
518 return 0;
519 }
520
521 return 0;
522}
523
b9e74c39
LP
524static int config_parse_crash_chvt(
525 const char* unit,
526 const char *filename,
527 unsigned line,
528 const char *section,
529 unsigned section_line,
530 const char *lvalue,
531 int ltype,
532 const char *rvalue,
533 void *data,
534 void *userdata) {
535
536 int r;
537
538 assert(filename);
539 assert(lvalue);
540 assert(rvalue);
b9e74c39
LP
541
542 r = parse_crash_chvt(rvalue);
543 if (r < 0) {
544 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse CrashChangeVT= setting, ignoring: %s", rvalue);
545 return 0;
546 }
547
548 return 0;
549}
550
e8e581bf
ZJS
551static int config_parse_join_controllers(const char *unit,
552 const char *filename,
553 unsigned line,
554 const char *section,
71a61510 555 unsigned section_line,
e8e581bf
ZJS
556 const char *lvalue,
557 int ltype,
558 const char *rvalue,
559 void *data,
560 void *userdata) {
0c85a4f3 561
3875c85b 562 const char *whole_rvalue = rvalue;
0c85a4f3 563 unsigned n = 0;
0c85a4f3
LP
564
565 assert(filename);
566 assert(lvalue);
567 assert(rvalue);
568
fe382237 569 arg_join_controllers = strv_free_free(arg_join_controllers);
0c85a4f3 570
d4ebeb4f
FB
571 for (;;) {
572 _cleanup_free_ char *word = NULL;
573 char **l;
574 int r;
0c85a4f3 575
d4ebeb4f 576 r = extract_first_word(&rvalue, &word, WHITESPACE, EXTRACT_QUOTES);
3875c85b
FB
577 if (r < 0) {
578 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid value for %s: %s", lvalue, whole_rvalue);
d4ebeb4f 579 return r;
3875c85b 580 }
d4ebeb4f
FB
581 if (r == 0)
582 break;
0c85a4f3 583
d4ebeb4f 584 l = strv_split(word, ",");
1592ec21 585 if (!l)
aa8aeac0 586 return log_oom();
0c85a4f3
LP
587 strv_uniq(l);
588
589 if (strv_length(l) <= 1) {
590 strv_free(l);
591 continue;
592 }
593
594 if (!arg_join_controllers) {
595 arg_join_controllers = new(char**, 2);
596 if (!arg_join_controllers) {
597 strv_free(l);
14212119 598 return log_oom();
0c85a4f3
LP
599 }
600
601 arg_join_controllers[0] = l;
602 arg_join_controllers[1] = NULL;
603
604 n = 1;
605 } else {
606 char ***a;
607 char ***t;
608
609 t = new0(char**, n+2);
610 if (!t) {
611 strv_free(l);
14212119 612 return log_oom();
0c85a4f3
LP
613 }
614
615 n = 0;
616
617 for (a = arg_join_controllers; *a; a++) {
618
619 if (strv_overlap(*a, l)) {
e287086b 620 if (strv_extend_strv(&l, *a, false) < 0) {
0c85a4f3
LP
621 strv_free(l);
622 strv_free_free(t);
14212119 623 return log_oom();
0c85a4f3
LP
624 }
625
0c85a4f3
LP
626 } else {
627 char **c;
628
629 c = strv_copy(*a);
630 if (!c) {
631 strv_free(l);
632 strv_free_free(t);
14212119 633 return log_oom();
0c85a4f3
LP
634 }
635
636 t[n++] = c;
637 }
638 }
639
640 t[n++] = strv_uniq(l);
641
642 strv_free_free(arg_join_controllers);
643 arg_join_controllers = t;
644 }
645 }
d4ebeb4f 646 if (!isempty(rvalue))
12ca818f 647 log_syntax(unit, LOG_ERR, filename, line, 0, "Trailing garbage, ignoring.");
0c85a4f3
LP
648
649 return 0;
650}
651
24dd31c1
LN
652static DEFINE_CONFIG_PARSE_ENUM(config_parse_cad_burst_action, cad_burst_action, CADBurstAction, "Failed to parse service restart specifier");
653
487393e9
LP
654static int parse_config_file(void) {
655
f975e971 656 const ConfigTableItem items[] = {
d3b1c508
LP
657 { "Manager", "LogLevel", config_parse_level2, 0, NULL },
658 { "Manager", "LogTarget", config_parse_target, 0, NULL },
659 { "Manager", "LogColor", config_parse_color, 0, NULL },
660 { "Manager", "LogLocation", config_parse_location, 0, NULL },
661 { "Manager", "DumpCore", config_parse_bool, 0, &arg_dump_core },
b9e74c39
LP
662 { "Manager", "CrashChVT", /* legacy */ config_parse_crash_chvt, 0, NULL },
663 { "Manager", "CrashChangeVT", config_parse_crash_chvt, 0, NULL },
d3b1c508 664 { "Manager", "CrashShell", config_parse_bool, 0, &arg_crash_shell },
b9e74c39 665 { "Manager", "CrashReboot", config_parse_bool, 0, &arg_crash_reboot },
d3b1c508 666 { "Manager", "ShowStatus", config_parse_show_status, 0, &arg_show_status },
d3b1c508
LP
667 { "Manager", "CPUAffinity", config_parse_cpu_affinity2, 0, NULL },
668 { "Manager", "JoinControllers", config_parse_join_controllers, 0, &arg_join_controllers },
669 { "Manager", "RuntimeWatchdogSec", config_parse_sec, 0, &arg_runtime_watchdog },
670 { "Manager", "ShutdownWatchdogSec", config_parse_sec, 0, &arg_shutdown_watchdog },
a103496c 671 { "Manager", "CapabilityBoundingSet", config_parse_capability_set, 0, &arg_capability_bounding_set },
89fffa27 672#ifdef HAVE_SECCOMP
d3b1c508 673 { "Manager", "SystemCallArchitectures", config_parse_syscall_archs, 0, &arg_syscall_archs },
89fffa27 674#endif
d3b1c508 675 { "Manager", "TimerSlackNSec", config_parse_nsec, 0, &arg_timer_slack_nsec },
bd8f585b 676 { "Manager", "DefaultTimerAccuracySec", config_parse_sec, 0, &arg_default_timer_accuracy_usec },
d3b1c508
LP
677 { "Manager", "DefaultStandardOutput", config_parse_output, 0, &arg_default_std_output },
678 { "Manager", "DefaultStandardError", config_parse_output, 0, &arg_default_std_error },
679 { "Manager", "DefaultTimeoutStartSec", config_parse_sec, 0, &arg_default_timeout_start_usec },
680 { "Manager", "DefaultTimeoutStopSec", config_parse_sec, 0, &arg_default_timeout_stop_usec },
681 { "Manager", "DefaultRestartSec", config_parse_sec, 0, &arg_default_restart_usec },
f0367da7
LP
682 { "Manager", "DefaultStartLimitInterval", config_parse_sec, 0, &arg_default_start_limit_interval }, /* obsolete alias */
683 { "Manager", "DefaultStartLimitIntervalSec",config_parse_sec, 0, &arg_default_start_limit_interval },
d3b1c508
LP
684 { "Manager", "DefaultStartLimitBurst", config_parse_unsigned, 0, &arg_default_start_limit_burst },
685 { "Manager", "DefaultEnvironment", config_parse_environ, 0, &arg_default_environment },
d0a7c5f6
LP
686 { "Manager", "DefaultLimitCPU", config_parse_limit, RLIMIT_CPU, arg_default_rlimit },
687 { "Manager", "DefaultLimitFSIZE", config_parse_limit, RLIMIT_FSIZE, arg_default_rlimit },
688 { "Manager", "DefaultLimitDATA", config_parse_limit, RLIMIT_DATA, arg_default_rlimit },
689 { "Manager", "DefaultLimitSTACK", config_parse_limit, RLIMIT_STACK, arg_default_rlimit },
690 { "Manager", "DefaultLimitCORE", config_parse_limit, RLIMIT_CORE, arg_default_rlimit },
691 { "Manager", "DefaultLimitRSS", config_parse_limit, RLIMIT_RSS, arg_default_rlimit },
692 { "Manager", "DefaultLimitNOFILE", config_parse_limit, RLIMIT_NOFILE, arg_default_rlimit },
693 { "Manager", "DefaultLimitAS", config_parse_limit, RLIMIT_AS, arg_default_rlimit },
694 { "Manager", "DefaultLimitNPROC", config_parse_limit, RLIMIT_NPROC, arg_default_rlimit },
695 { "Manager", "DefaultLimitMEMLOCK", config_parse_limit, RLIMIT_MEMLOCK, arg_default_rlimit },
696 { "Manager", "DefaultLimitLOCKS", config_parse_limit, RLIMIT_LOCKS, arg_default_rlimit },
697 { "Manager", "DefaultLimitSIGPENDING", config_parse_limit, RLIMIT_SIGPENDING, arg_default_rlimit },
698 { "Manager", "DefaultLimitMSGQUEUE", config_parse_limit, RLIMIT_MSGQUEUE, arg_default_rlimit },
699 { "Manager", "DefaultLimitNICE", config_parse_limit, RLIMIT_NICE, arg_default_rlimit },
700 { "Manager", "DefaultLimitRTPRIO", config_parse_limit, RLIMIT_RTPRIO, arg_default_rlimit },
701 { "Manager", "DefaultLimitRTTIME", config_parse_limit, RLIMIT_RTTIME, arg_default_rlimit },
085afe36 702 { "Manager", "DefaultCPUAccounting", config_parse_bool, 0, &arg_default_cpu_accounting },
13c31542 703 { "Manager", "DefaultIOAccounting", config_parse_bool, 0, &arg_default_io_accounting },
085afe36
LP
704 { "Manager", "DefaultBlockIOAccounting", config_parse_bool, 0, &arg_default_blockio_accounting },
705 { "Manager", "DefaultMemoryAccounting", config_parse_bool, 0, &arg_default_memory_accounting },
03a7b521 706 { "Manager", "DefaultTasksAccounting", config_parse_bool, 0, &arg_default_tasks_accounting },
0af20ea2 707 { "Manager", "DefaultTasksMax", config_parse_tasks_max, 0, &arg_default_tasks_max },
24dd31c1 708 { "Manager", "CtrlAltDelBurstAction", config_parse_cad_burst_action, 0, &arg_cad_burst_action},
d3b1c508 709 {}
487393e9
LP
710 };
711
1b907b5c 712 const char *fn, *conf_dirs_nulstr;
487393e9 713
463d0d15 714 fn = arg_system ?
75eb6154
LP
715 PKGSYSCONFDIR "/system.conf" :
716 PKGSYSCONFDIR "/user.conf";
717
463d0d15 718 conf_dirs_nulstr = arg_system ?
75eb6154
LP
719 CONF_PATHS_NULSTR("systemd/system.conf.d") :
720 CONF_PATHS_NULSTR("systemd/user.conf.d");
721
43688c49 722 config_parse_many_nulstr(fn, conf_dirs_nulstr, "Manager\0", config_item_table_lookup, items, false, NULL);
36c16a7c
LP
723
724 /* Traditionally "0" was used to turn off the default unit timeouts. Fix this up so that we used USEC_INFINITY
725 * like everywhere else. */
726 if (arg_default_timeout_start_usec <= 0)
727 arg_default_timeout_start_usec = USEC_INFINITY;
728 if (arg_default_timeout_stop_usec <= 0)
729 arg_default_timeout_stop_usec = USEC_INFINITY;
487393e9 730
487393e9
LP
731 return 0;
732}
733
06af2a04
TB
734static void manager_set_defaults(Manager *m) {
735
736 assert(m);
737
738 m->default_timer_accuracy_usec = arg_default_timer_accuracy_usec;
739 m->default_std_output = arg_default_std_output;
740 m->default_std_error = arg_default_std_error;
741 m->default_timeout_start_usec = arg_default_timeout_start_usec;
742 m->default_timeout_stop_usec = arg_default_timeout_stop_usec;
743 m->default_restart_usec = arg_default_restart_usec;
744 m->default_start_limit_interval = arg_default_start_limit_interval;
745 m->default_start_limit_burst = arg_default_start_limit_burst;
746 m->default_cpu_accounting = arg_default_cpu_accounting;
13c31542 747 m->default_io_accounting = arg_default_io_accounting;
06af2a04
TB
748 m->default_blockio_accounting = arg_default_blockio_accounting;
749 m->default_memory_accounting = arg_default_memory_accounting;
03a7b521 750 m->default_tasks_accounting = arg_default_tasks_accounting;
0af20ea2 751 m->default_tasks_max = arg_default_tasks_max;
06af2a04
TB
752
753 manager_set_default_rlimits(m, arg_default_rlimit);
754 manager_environment_add(m, NULL, arg_default_environment);
755}
756
f170852a
LP
757static int parse_argv(int argc, char *argv[]) {
758
759 enum {
760 ARG_LOG_LEVEL = 0x100,
761 ARG_LOG_TARGET,
bbe63281
LP
762 ARG_LOG_COLOR,
763 ARG_LOG_LOCATION,
2f198e2f 764 ARG_UNIT,
edb9aaa8 765 ARG_SYSTEM,
af2d49f7 766 ARG_USER,
e537352b 767 ARG_TEST,
b87c2aa6 768 ARG_NO_PAGER,
9ba0bc4e 769 ARG_VERSION,
80876c20 770 ARG_DUMP_CONFIGURATION_ITEMS,
9e58ff9c 771 ARG_DUMP_CORE,
b9e74c39 772 ARG_CRASH_CHVT,
9e58ff9c 773 ARG_CRASH_SHELL,
b9e74c39 774 ARG_CRASH_REBOOT,
a16e1123 775 ARG_CONFIRM_SPAWN,
9e58ff9c 776 ARG_SHOW_STATUS,
4288f619 777 ARG_DESERIALIZE,
2660882b 778 ARG_SWITCHED_ROOT,
0a494f1f 779 ARG_DEFAULT_STD_OUTPUT,
ee48dbd5
NC
780 ARG_DEFAULT_STD_ERROR,
781 ARG_MACHINE_ID
f170852a
LP
782 };
783
784 static const struct option options[] = {
a16e1123
LP
785 { "log-level", required_argument, NULL, ARG_LOG_LEVEL },
786 { "log-target", required_argument, NULL, ARG_LOG_TARGET },
bbe63281
LP
787 { "log-color", optional_argument, NULL, ARG_LOG_COLOR },
788 { "log-location", optional_argument, NULL, ARG_LOG_LOCATION },
2f198e2f 789 { "unit", required_argument, NULL, ARG_UNIT },
edb9aaa8 790 { "system", no_argument, NULL, ARG_SYSTEM },
af2d49f7 791 { "user", no_argument, NULL, ARG_USER },
a16e1123 792 { "test", no_argument, NULL, ARG_TEST },
b87c2aa6 793 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
a16e1123 794 { "help", no_argument, NULL, 'h' },
9ba0bc4e 795 { "version", no_argument, NULL, ARG_VERSION },
a16e1123 796 { "dump-configuration-items", no_argument, NULL, ARG_DUMP_CONFIGURATION_ITEMS },
a5d87bf0 797 { "dump-core", optional_argument, NULL, ARG_DUMP_CORE },
b9e74c39 798 { "crash-chvt", required_argument, NULL, ARG_CRASH_CHVT },
a5d87bf0 799 { "crash-shell", optional_argument, NULL, ARG_CRASH_SHELL },
b9e74c39 800 { "crash-reboot", optional_argument, NULL, ARG_CRASH_REBOOT },
a5d87bf0 801 { "confirm-spawn", optional_argument, NULL, ARG_CONFIRM_SPAWN },
6e98720f 802 { "show-status", optional_argument, NULL, ARG_SHOW_STATUS },
a16e1123 803 { "deserialize", required_argument, NULL, ARG_DESERIALIZE },
2660882b 804 { "switched-root", no_argument, NULL, ARG_SWITCHED_ROOT },
0a494f1f
LP
805 { "default-standard-output", required_argument, NULL, ARG_DEFAULT_STD_OUTPUT, },
806 { "default-standard-error", required_argument, NULL, ARG_DEFAULT_STD_ERROR, },
ee48dbd5 807 { "machine-id", required_argument, NULL, ARG_MACHINE_ID },
fb472900 808 {}
f170852a
LP
809 };
810
811 int c, r;
812
813 assert(argc >= 1);
814 assert(argv);
815
b770165a
LP
816 if (getpid() == 1)
817 opterr = 0;
818
099663ff 819 while ((c = getopt_long(argc, argv, "hDbsz:", options, NULL)) >= 0)
f170852a
LP
820
821 switch (c) {
822
823 case ARG_LOG_LEVEL:
fb472900
ZJS
824 r = log_set_max_level_from_string(optarg);
825 if (r < 0) {
f170852a
LP
826 log_error("Failed to parse log level %s.", optarg);
827 return r;
828 }
829
830 break;
831
832 case ARG_LOG_TARGET:
fb472900
ZJS
833 r = log_set_target_from_string(optarg);
834 if (r < 0) {
f170852a
LP
835 log_error("Failed to parse log target %s.", optarg);
836 return r;
837 }
838
839 break;
840
bbe63281
LP
841 case ARG_LOG_COLOR:
842
d0b170c8 843 if (optarg) {
fb472900
ZJS
844 r = log_show_color_from_string(optarg);
845 if (r < 0) {
d0b170c8
LP
846 log_error("Failed to parse log color setting %s.", optarg);
847 return r;
848 }
849 } else
850 log_show_color(true);
bbe63281
LP
851
852 break;
853
854 case ARG_LOG_LOCATION:
d0b170c8 855 if (optarg) {
fb472900
ZJS
856 r = log_show_location_from_string(optarg);
857 if (r < 0) {
d0b170c8
LP
858 log_error("Failed to parse log location setting %s.", optarg);
859 return r;
860 }
861 } else
862 log_show_location(true);
bbe63281
LP
863
864 break;
865
0a494f1f 866 case ARG_DEFAULT_STD_OUTPUT:
fb472900
ZJS
867 r = exec_output_from_string(optarg);
868 if (r < 0) {
0a494f1f
LP
869 log_error("Failed to parse default standard output setting %s.", optarg);
870 return r;
871 } else
872 arg_default_std_output = r;
873 break;
874
875 case ARG_DEFAULT_STD_ERROR:
fb472900
ZJS
876 r = exec_output_from_string(optarg);
877 if (r < 0) {
0a494f1f
LP
878 log_error("Failed to parse default standard error output setting %s.", optarg);
879 return r;
880 } else
881 arg_default_std_error = r;
882 break;
883
2f198e2f 884 case ARG_UNIT:
f170852a 885
e6e242ad 886 r = free_and_strdup(&arg_default_unit, optarg);
23bbb0de
MS
887 if (r < 0)
888 return log_error_errno(r, "Failed to set default unit %s: %m", optarg);
f170852a
LP
889
890 break;
891
edb9aaa8 892 case ARG_SYSTEM:
463d0d15 893 arg_system = true;
edb9aaa8 894 break;
a5dab5ce 895
af2d49f7 896 case ARG_USER:
463d0d15 897 arg_system = false;
a5dab5ce 898 break;
a5dab5ce 899
e965d56d 900 case ARG_TEST:
fa0f4d8a 901 arg_action = ACTION_TEST;
b87c2aa6
ZJS
902 break;
903
904 case ARG_NO_PAGER:
905 arg_no_pager = true;
e965d56d
LP
906 break;
907
9ba0bc4e
ZJS
908 case ARG_VERSION:
909 arg_action = ACTION_VERSION;
910 break;
911
e537352b 912 case ARG_DUMP_CONFIGURATION_ITEMS:
fa0f4d8a 913 arg_action = ACTION_DUMP_CONFIGURATION_ITEMS;
e537352b
LP
914 break;
915
9e58ff9c 916 case ARG_DUMP_CORE:
b9e74c39
LP
917 if (!optarg)
918 arg_dump_core = true;
919 else {
920 r = parse_boolean(optarg);
921 if (r < 0)
922 return log_error_errno(r, "Failed to parse dump core boolean: %s", optarg);
923 arg_dump_core = r;
a5d87bf0 924 }
b9e74c39
LP
925 break;
926
927 case ARG_CRASH_CHVT:
928 r = parse_crash_chvt(optarg);
929 if (r < 0)
930 return log_error_errno(r, "Failed to parse crash virtual terminal index: %s", optarg);
9e58ff9c
LP
931 break;
932
933 case ARG_CRASH_SHELL:
b9e74c39
LP
934 if (!optarg)
935 arg_crash_shell = true;
936 else {
937 r = parse_boolean(optarg);
938 if (r < 0)
939 return log_error_errno(r, "Failed to parse crash shell boolean: %s", optarg);
940 arg_crash_shell = r;
941 }
942 break;
943
944 case ARG_CRASH_REBOOT:
945 if (!optarg)
946 arg_crash_reboot = true;
947 else {
948 r = parse_boolean(optarg);
949 if (r < 0)
950 return log_error_errno(r, "Failed to parse crash shell boolean: %s", optarg);
951 arg_crash_reboot = r;
a5d87bf0 952 }
9e58ff9c
LP
953 break;
954
80876c20 955 case ARG_CONFIRM_SPAWN:
a5d87bf0
LP
956 r = optarg ? parse_boolean(optarg) : 1;
957 if (r < 0) {
958 log_error("Failed to parse confirm spawn boolean %s.", optarg);
959 return r;
960 }
961 arg_confirm_spawn = r;
80876c20
LP
962 break;
963
9e58ff9c 964 case ARG_SHOW_STATUS:
d450b6f2
ZJS
965 if (optarg) {
966 r = parse_show_status(optarg, &arg_show_status);
967 if (r < 0) {
968 log_error("Failed to parse show status boolean %s.", optarg);
969 return r;
970 }
971 } else
972 arg_show_status = SHOW_STATUS_YES;
6e98720f 973 break;
a5d87bf0 974
a16e1123
LP
975 case ARG_DESERIALIZE: {
976 int fd;
977 FILE *f;
978
01e10de3
LP
979 r = safe_atoi(optarg, &fd);
980 if (r < 0 || fd < 0) {
a16e1123 981 log_error("Failed to parse deserialize option %s.", optarg);
b9e74c39 982 return -EINVAL;
a16e1123
LP
983 }
984
b9e74c39 985 (void) fd_cloexec(fd, true);
01e10de3
LP
986
987 f = fdopen(fd, "r");
4a62c710
MS
988 if (!f)
989 return log_error_errno(errno, "Failed to open serialization fd: %m");
a16e1123 990
74ca738f 991 safe_fclose(arg_serialization);
d3b1c508 992 arg_serialization = f;
a16e1123
LP
993
994 break;
995 }
996
2660882b 997 case ARG_SWITCHED_ROOT:
bf4df7c3 998 arg_switched_root = true;
d03bc1b8
HH
999 break;
1000
ee48dbd5
NC
1001 case ARG_MACHINE_ID:
1002 r = set_machine_id(optarg);
54500613
LP
1003 if (r < 0)
1004 return log_error_errno(r, "MachineID '%s' is not valid.", optarg);
ee48dbd5
NC
1005 break;
1006
f170852a 1007 case 'h':
fa0f4d8a 1008 arg_action = ACTION_HELP;
f170852a
LP
1009 break;
1010
1d2e23ab
LP
1011 case 'D':
1012 log_set_max_level(LOG_DEBUG);
1013 break;
1014
099663ff
LP
1015 case 'b':
1016 case 's':
1017 case 'z':
1018 /* Just to eat away the sysvinit kernel
1019 * cmdline args without getopt() error
1020 * messages that we'll parse in
1021 * parse_proc_cmdline_word() or ignore. */
f170852a 1022
099663ff 1023 case '?':
601185b4 1024 if (getpid() != 1)
099663ff 1025 return -EINVAL;
601185b4
ZJS
1026 else
1027 return 0;
099663ff 1028
601185b4
ZJS
1029 default:
1030 assert_not_reached("Unhandled option code.");
f170852a
LP
1031 }
1032
d821e6d6
LP
1033 if (optind < argc && getpid() != 1) {
1034 /* Hmm, when we aren't run as init system
1035 * let's complain about excess arguments */
1036
1037 log_error("Excess arguments.");
1038 return -EINVAL;
1039 }
1040
f170852a
LP
1041 return 0;
1042}
1043
1044static int help(void) {
1045
2e33c433 1046 printf("%s [OPTIONS...]\n\n"
af2d49f7 1047 "Starts up and maintains the system or user services.\n\n"
e537352b 1048 " -h --help Show this help\n"
e537352b 1049 " --test Determine startup sequence, dump it and exit\n"
b87c2aa6 1050 " --no-pager Do not pipe output into a pager\n"
80876c20 1051 " --dump-configuration-items Dump understood unit configuration items\n"
9e58ff9c 1052 " --unit=UNIT Set default unit\n"
edb9aaa8 1053 " --system Run a system instance, even if PID != 1\n"
af2d49f7 1054 " --user Run a user instance\n"
b9e74c39
LP
1055 " --dump-core[=BOOL] Dump core on crash\n"
1056 " --crash-vt=NR Change to specified VT on crash\n"
1057 " --crash-reboot[=BOOL] Reboot on crash\n"
1058 " --crash-shell[=BOOL] Run shell on crash\n"
1059 " --confirm-spawn[=BOOL] Ask for confirmation when spawning processes\n"
1060 " --show-status[=BOOL] Show status updates on the console during bootup\n"
c1dc6153 1061 " --log-target=TARGET Set log target (console, journal, kmsg, journal-or-kmsg, null)\n"
9e58ff9c 1062 " --log-level=LEVEL Set log level (debug, info, notice, warning, err, crit, alert, emerg)\n"
b9e74c39
LP
1063 " --log-color[=BOOL] Highlight important log messages\n"
1064 " --log-location[=BOOL] Include code location in log messages\n"
0a494f1f
LP
1065 " --default-standard-output= Set default standard output for services\n"
1066 " --default-standard-error= Set default standard error output for services\n",
5b6319dc 1067 program_invocation_short_name);
f170852a
LP
1068
1069 return 0;
1070}
1071
b3680f49 1072static int prepare_reexecute(Manager *m, FILE **_f, FDSet **_fds, bool switching_root) {
48b90859
LP
1073 _cleanup_fdset_free_ FDSet *fds = NULL;
1074 _cleanup_fclose_ FILE *f = NULL;
a16e1123
LP
1075 int r;
1076
1077 assert(m);
1078 assert(_f);
1079 assert(_fds);
1080
6b78f9b4 1081 r = manager_open_serialization(m, &f);
48b90859
LP
1082 if (r < 0)
1083 return log_error_errno(r, "Failed to create serialization file: %m");
a16e1123 1084
71445ae7 1085 /* Make sure nothing is really destructed when we shut down */
313cefa1 1086 m->n_reloading++;
718db961 1087 bus_manager_send_reloading(m, true);
71445ae7 1088
6b78f9b4 1089 fds = fdset_new();
48b90859
LP
1090 if (!fds)
1091 return log_oom();
a16e1123 1092
b3680f49 1093 r = manager_serialize(m, f, fds, switching_root);
48b90859
LP
1094 if (r < 0)
1095 return log_error_errno(r, "Failed to serialize state: %m");
a16e1123 1096
48b90859
LP
1097 if (fseeko(f, 0, SEEK_SET) == (off_t) -1)
1098 return log_error_errno(errno, "Failed to rewind serialization fd: %m");
a16e1123 1099
6b78f9b4 1100 r = fd_cloexec(fileno(f), false);
48b90859
LP
1101 if (r < 0)
1102 return log_error_errno(r, "Failed to disable O_CLOEXEC for serialization: %m");
a16e1123 1103
6b78f9b4 1104 r = fdset_cloexec(fds, false);
48b90859
LP
1105 if (r < 0)
1106 return log_error_errno(r, "Failed to disable O_CLOEXEC for serialization fds: %m");
a16e1123
LP
1107
1108 *_f = f;
1109 *_fds = fds;
1110
48b90859
LP
1111 f = NULL;
1112 fds = NULL;
a16e1123 1113
48b90859 1114 return 0;
a16e1123
LP
1115}
1116
4096d6f5
LP
1117static int bump_rlimit_nofile(struct rlimit *saved_rlimit) {
1118 struct rlimit nl;
1119 int r;
1120
1121 assert(saved_rlimit);
1122
1123 /* Save the original RLIMIT_NOFILE so that we can reset it
1124 * later when transitioning from the initrd to the main
1125 * systemd or suchlike. */
4a62c710 1126 if (getrlimit(RLIMIT_NOFILE, saved_rlimit) < 0)
3ce40911 1127 return log_warning_errno(errno, "Reading RLIMIT_NOFILE failed, ignoring: %m");
4096d6f5
LP
1128
1129 /* Make sure forked processes get the default kernel setting */
1130 if (!arg_default_rlimit[RLIMIT_NOFILE]) {
1131 struct rlimit *rl;
1132
1133 rl = newdup(struct rlimit, saved_rlimit, 1);
1134 if (!rl)
1135 return log_oom();
1136
1137 arg_default_rlimit[RLIMIT_NOFILE] = rl;
1138 }
1139
1140 /* Bump up the resource limit for ourselves substantially */
1141 nl.rlim_cur = nl.rlim_max = 64*1024;
1142 r = setrlimit_closest(RLIMIT_NOFILE, &nl);
23bbb0de 1143 if (r < 0)
3ce40911 1144 return log_warning_errno(r, "Setting RLIMIT_NOFILE failed, ignoring: %m");
4096d6f5
LP
1145
1146 return 0;
1147}
1148
80758717 1149static void test_usr(void) {
80758717 1150
ed1c99fc 1151 /* Check that /usr is not a separate fs */
80758717 1152
871c44a7
LP
1153 if (dir_is_empty("/usr") <= 0)
1154 return;
1155
8b173b5e 1156 log_warning("/usr appears to be on its own filesystem and is not already mounted. This is not a supported setup. "
871c44a7
LP
1157 "Some things will probably break (sometimes even silently) in mysterious ways. "
1158 "Consult http://freedesktop.org/wiki/Software/systemd/separate-usr-is-broken for more information.");
1159}
1160
a07fdfa3
LP
1161static int initialize_join_controllers(void) {
1162 /* By default, mount "cpu" + "cpuacct" together, and "net_cls"
1163 * + "net_prio". We'd like to add "cpuset" to the mix, but
f131770b 1164 * "cpuset" doesn't really work for groups with no initialized
a07fdfa3
LP
1165 * attributes. */
1166
1167 arg_join_controllers = new(char**, 3);
1168 if (!arg_join_controllers)
1169 return -ENOMEM;
1170
1171 arg_join_controllers[0] = strv_new("cpu", "cpuacct", NULL);
fe382237
LP
1172 if (!arg_join_controllers[0])
1173 goto oom;
a6b26d90 1174
fe382237
LP
1175 arg_join_controllers[1] = strv_new("net_cls", "net_prio", NULL);
1176 if (!arg_join_controllers[1])
1177 goto oom;
a07fdfa3 1178
fe382237 1179 arg_join_controllers[2] = NULL;
a07fdfa3 1180 return 0;
fe382237
LP
1181
1182oom:
1183 arg_join_controllers = strv_free_free(arg_join_controllers);
1184 return -ENOMEM;
a07fdfa3
LP
1185}
1186
d3b1c508
LP
1187static int enforce_syscall_archs(Set *archs) {
1188#ifdef HAVE_SECCOMP
1189 scmp_filter_ctx *seccomp;
1190 Iterator i;
1191 void *id;
1192 int r;
1193
83f12b27
FS
1194 if (!is_seccomp_available())
1195 return 0;
1196
d3b1c508
LP
1197 seccomp = seccomp_init(SCMP_ACT_ALLOW);
1198 if (!seccomp)
1199 return log_oom();
1200
1201 SET_FOREACH(id, arg_syscall_archs, i) {
1202 r = seccomp_arch_add(seccomp, PTR_TO_UINT32(id) - 1);
1203 if (r == -EEXIST)
1204 continue;
1205 if (r < 0) {
da927ba9 1206 log_error_errno(r, "Failed to add architecture to seccomp: %m");
d3b1c508
LP
1207 goto finish;
1208 }
1209 }
1210
8a8bf3c0
LP
1211 r = seccomp_attr_set(seccomp, SCMP_FLTATR_CTL_NNP, 0);
1212 if (r < 0) {
da927ba9 1213 log_error_errno(r, "Failed to unset NO_NEW_PRIVS: %m");
8a8bf3c0
LP
1214 goto finish;
1215 }
1216
d3b1c508
LP
1217 r = seccomp_load(seccomp);
1218 if (r < 0)
da927ba9 1219 log_error_errno(r, "Failed to add install architecture seccomp: %m");
d3b1c508
LP
1220
1221finish:
1222 seccomp_release(seccomp);
1223 return r;
1224#else
1225 return 0;
1226#endif
1227}
1228
b6e2f329
LP
1229static int status_welcome(void) {
1230 _cleanup_free_ char *pretty_name = NULL, *ansi_color = NULL;
1231 int r;
1232
1233 r = parse_env_file("/etc/os-release", NEWLINE,
1234 "PRETTY_NAME", &pretty_name,
1235 "ANSI_COLOR", &ansi_color,
1236 NULL);
ece174c5 1237 if (r == -ENOENT)
5ae4d543
LP
1238 r = parse_env_file("/usr/lib/os-release", NEWLINE,
1239 "PRETTY_NAME", &pretty_name,
1240 "ANSI_COLOR", &ansi_color,
1241 NULL);
b6e2f329
LP
1242
1243 if (r < 0 && r != -ENOENT)
da927ba9 1244 log_warning_errno(r, "Failed to read os-release file: %m");
b6e2f329 1245
dc9b5816
ZJS
1246 if (log_get_show_color())
1247 return status_printf(NULL, false, false,
1248 "\nWelcome to \x1B[%sm%s\x1B[0m!\n",
1249 isempty(ansi_color) ? "1" : ansi_color,
1250 isempty(pretty_name) ? "Linux" : pretty_name);
1251 else
1252 return status_printf(NULL, false, false,
1253 "\nWelcome to %s!\n",
1254 isempty(pretty_name) ? "Linux" : pretty_name);
b6e2f329
LP
1255}
1256
fdd25311
LP
1257static int write_container_id(void) {
1258 const char *c;
19854865 1259 int r;
fdd25311
LP
1260
1261 c = getenv("container");
1262 if (isempty(c))
1263 return 0;
1264
8612da97
LP
1265 RUN_WITH_UMASK(0022)
1266 r = write_string_file("/run/systemd/container", c, WRITE_STRING_FILE_CREATE);
19854865 1267 if (r < 0)
f1f849b0 1268 return log_warning_errno(r, "Failed to write /run/systemd/container, ignoring: %m");
19854865
LP
1269
1270 return 1;
1271}
1272
1273static int bump_unix_max_dgram_qlen(void) {
1274 _cleanup_free_ char *qlen = NULL;
1275 unsigned long v;
1276 int r;
1277
1278 /* Let's bump the net.unix.max_dgram_qlen sysctl. The kernel
1279 * default of 16 is simply too low. We set the value really
1280 * really early during boot, so that it is actually applied to
1281 * all our sockets, including the $NOTIFY_SOCKET one. */
1282
1283 r = read_one_line_file("/proc/sys/net/unix/max_dgram_qlen", &qlen);
1284 if (r < 0)
1285 return log_warning_errno(r, "Failed to read AF_UNIX datagram queue length, ignoring: %m");
1286
1287 r = safe_atolu(qlen, &v);
1288 if (r < 0)
1289 return log_warning_errno(r, "Failed to parse AF_UNIX datagram queue length, ignoring: %m");
1290
1291 if (v >= DEFAULT_UNIX_MAX_DGRAM_QLEN)
1292 return 0;
1293
1294 qlen = mfree(qlen);
1295 if (asprintf(&qlen, "%lu\n", DEFAULT_UNIX_MAX_DGRAM_QLEN) < 0)
1296 return log_oom();
1297
1298 r = write_string_file("/proc/sys/net/unix/max_dgram_qlen", qlen, 0);
1299 if (r < 0)
1300 return log_full_errno(IN_SET(r, -EROFS, -EPERM, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
1301 "Failed to bump AF_UNIX datagram queue length, ignoring: %m");
1302
1303 return 1;
fdd25311
LP
1304}
1305
32391275
FB
1306static int fixup_environment(void) {
1307 _cleanup_free_ char *term = NULL;
1308 int r;
1309
84af7821
LP
1310 /* We expect the environment to be set correctly
1311 * if run inside a container. */
1312 if (detect_container() > 0)
1313 return 0;
1314
32391275
FB
1315 /* When started as PID1, the kernel uses /dev/console
1316 * for our stdios and uses TERM=linux whatever the
1317 * backend device used by the console. We try to make
1318 * a better guess here since some consoles might not
1319 * have support for color mode for example.
1320 *
1321 * However if TERM was configured through the kernel
1322 * command line then leave it alone. */
1323
1324 r = get_proc_cmdline_key("TERM=", &term);
1325 if (r < 0)
1326 return r;
1327
1328 if (r == 0) {
6af760f3 1329 term = strdup(default_term_for_tty("/dev/console"));
32391275 1330 if (!term)
84af7821 1331 return -ENOMEM;
32391275
FB
1332 }
1333
1334 if (setenv("TERM", term, 1) < 0)
1335 return -errno;
1336
1337 return 0;
1338}
1339
60918275
LP
1340int main(int argc, char *argv[]) {
1341 Manager *m = NULL;
22f4096c 1342 int r, retval = EXIT_FAILURE;
9d76d730
LP
1343 usec_t before_startup, after_startup;
1344 char timespan[FORMAT_TIMESPAN_MAX];
a16e1123
LP
1345 FDSet *fds = NULL;
1346 bool reexecute = false;
b9080b03 1347 const char *shutdown_verb = NULL;
86caf095
LP
1348 dual_timestamp initrd_timestamp = DUAL_TIMESTAMP_NULL;
1349 dual_timestamp userspace_timestamp = DUAL_TIMESTAMP_NULL;
1350 dual_timestamp kernel_timestamp = DUAL_TIMESTAMP_NULL;
1351 dual_timestamp security_start_timestamp = DUAL_TIMESTAMP_NULL;
1352 dual_timestamp security_finish_timestamp = DUAL_TIMESTAMP_NULL;
5d6b1584 1353 static char systemd[] = "systemd";
2660882b 1354 bool skip_setup = false;
d3b1c508 1355 unsigned j;
0b3325e7 1356 bool loaded_policy = false;
e96d6be7 1357 bool arm_reboot_watchdog = false;
bf4df7c3 1358 bool queue_default_job = false;
5f5c2f38 1359 bool empty_etc = false;
41669317 1360 char *switch_root_dir = NULL, *switch_root_init = NULL;
86caf095 1361 struct rlimit saved_rlimit_nofile = RLIMIT_MAKE_CONST(0);
cb6531be 1362 const char *error_message = NULL;
27b14a22 1363
058dc6f3 1364#ifdef HAVE_SYSV_COMPAT
2cb1a60d 1365 if (getpid() != 1 && strstr(program_invocation_short_name, "init")) {
35b8ca3a 1366 /* This is compatibility support for SysV, where
2cb1a60d
LP
1367 * calling init as a user is identical to telinit. */
1368
2cb1a60d 1369 execv(SYSTEMCTL_BINARY_PATH, argv);
56f64d95 1370 log_error_errno(errno, "Failed to exec " SYSTEMCTL_BINARY_PATH ": %m");
2cb1a60d
LP
1371 return 1;
1372 }
058dc6f3 1373#endif
2cb1a60d 1374
c3a170f3
HH
1375 dual_timestamp_from_monotonic(&kernel_timestamp, 0);
1376 dual_timestamp_get(&userspace_timestamp);
1377
0b3325e7
LP
1378 /* Determine if this is a reexecution or normal bootup. We do
1379 * the full command line parsing much later, so let's just
1380 * have a quick peek here. */
db813c2a
LP
1381 if (strv_find(argv+1, "--deserialize"))
1382 skip_setup = true;
0b3325e7 1383
2660882b
LP
1384 /* If we have switched root, do all the special setup
1385 * things */
db813c2a
LP
1386 if (strv_find(argv+1, "--switched-root"))
1387 skip_setup = false;
d03bc1b8 1388
f3b6a3ed
LP
1389 /* If we get started via the /sbin/init symlink then we are
1390 called 'init'. After a subsequent reexecution we are then
1391 called 'systemd'. That is confusing, hence let's call us
1392 systemd right-away. */
f3b6a3ed
LP
1393 program_invocation_short_name = systemd;
1394 prctl(PR_SET_NAME, systemd);
5d6b1584 1395
9a0e6896
LP
1396 saved_argv = argv;
1397 saved_argc = argc;
f3b6a3ed 1398
c1dc6153 1399 log_set_upgrade_syslog_to_journal(true);
bbe63281 1400
90dc8c2e
MG
1401 /* Disable the umask logic */
1402 if (getpid() == 1)
1403 umask(0);
1404
75f86906 1405 if (getpid() == 1 && detect_container() <= 0) {
4f8d551f 1406
a866073d 1407 /* Running outside of a container as PID 1 */
463d0d15 1408 arg_system = true;
a866073d
LP
1409 log_set_target(LOG_TARGET_KMSG);
1410 log_open();
1411
21bf2ab0 1412 if (in_initrd())
c3a170f3 1413 initrd_timestamp = userspace_timestamp;
c3ba6250 1414
2660882b 1415 if (!skip_setup) {
d723cd65
AK
1416 r = mount_setup_early();
1417 if (r < 0) {
1418 error_message = "Failed to early mount API filesystems";
1419 goto finish;
1420 }
c2e0d600 1421 dual_timestamp_get(&security_start_timestamp);
cb6531be
ZJS
1422 if (mac_selinux_setup(&loaded_policy) < 0) {
1423 error_message = "Failed to load SELinux policy";
0b3325e7 1424 goto finish;
cb6531be
ZJS
1425 } else if (mac_smack_setup(&loaded_policy) < 0) {
1426 error_message = "Failed to load SMACK policy";
ffbd2c4d 1427 goto finish;
96694e99
IP
1428 } else if (ima_setup() < 0) {
1429 error_message = "Failed to load IMA policy";
1430 goto finish;
cb6531be 1431 }
c2e0d600 1432 dual_timestamp_get(&security_finish_timestamp);
81611586 1433 }
0b3325e7 1434
c3dacc8b 1435 if (mac_selinux_init() < 0) {
cb6531be 1436 error_message = "Failed to initialize SELinux policy";
0ff4cdd9 1437 goto finish;
cb6531be 1438 }
7948c4df 1439
72edcff5 1440 if (!skip_setup) {
6369641d 1441 if (clock_is_localtime(NULL) > 0) {
0b3325e7 1442 int min;
7948c4df 1443
c264aeab
KS
1444 /*
1445 * The very first call of settimeofday() also does a time warp in the kernel.
1446 *
1447 * In the rtc-in-local time mode, we set the kernel's timezone, and rely on
1448 * external tools to take care of maintaining the RTC and do all adjustments.
1449 * This matches the behavior of Windows, which leaves the RTC alone if the
1450 * registry tells that the RTC runs in UTC.
1451 */
24efb112 1452 r = clock_set_timezone(&min);
0b3325e7 1453 if (r < 0)
da927ba9 1454 log_error_errno(r, "Failed to apply local time delta, ignoring: %m");
0b3325e7
LP
1455 else
1456 log_info("RTC configured in localtime, applying delta of %i minutes to system time.", min);
19e65613
KS
1457 } else if (!in_initrd()) {
1458 /*
c264aeab 1459 * Do a dummy very first call to seal the kernel's time warp magic.
19e65613 1460 *
61233823 1461 * Do not call this from inside the initrd. The initrd might not
19e65613
KS
1462 * carry /etc/adjtime with LOCAL, but the real system could be set up
1463 * that way. In such case, we need to delay the time-warp or the sealing
1464 * until we reach the real system.
c264aeab
KS
1465 *
1466 * Do no set the kernel's timezone. The concept of local time cannot
1467 * be supported reliably, the time will jump or be incorrect at every daylight
1468 * saving time change. All kernel local time concepts will be treated
1469 * as UTC that way.
19e65613 1470 */
021dd87b 1471 (void) clock_reset_timewarp();
72edcff5 1472 }
021dd87b
LP
1473
1474 r = clock_apply_epoch();
1475 if (r < 0)
1476 log_error_errno(r, "Current system time is before build time, but cannot correct: %m");
1477 else if (r > 0)
1478 log_info("System time before build time, advancing clock.");
72edcff5 1479 }
a866073d
LP
1480
1481 /* Set the default for later on, but don't actually
1482 * open the logs like this for now. Note that if we
1483 * are transitioning from the initrd there might still
1484 * be journal fd open, and we shouldn't attempt
1485 * opening that before we parsed /proc/cmdline which
1486 * might redirect output elsewhere. */
1487 log_set_target(LOG_TARGET_JOURNAL_OR_KMSG);
1488
1489 } else if (getpid() == 1) {
a866073d 1490 /* Running inside a container, as PID 1 */
463d0d15 1491 arg_system = true;
a866073d 1492 log_set_target(LOG_TARGET_CONSOLE);
99f09825 1493 log_close_console(); /* force reopen of /dev/console */
a866073d
LP
1494 log_open();
1495
1496 /* For the later on, see above... */
1497 log_set_target(LOG_TARGET_JOURNAL);
1498
c3a170f3
HH
1499 /* clear the kernel timestamp,
1500 * because we are in a container */
0f5f63c3 1501 kernel_timestamp = DUAL_TIMESTAMP_NULL;
c3a170f3 1502 } else {
a866073d 1503 /* Running as user instance */
463d0d15 1504 arg_system = false;
eeecf6e6 1505 log_set_target(LOG_TARGET_AUTO);
871e5809 1506 log_open();
c3a170f3
HH
1507
1508 /* clear the kernel timestamp,
1509 * because we are not PID 1 */
6513d561 1510 kernel_timestamp = DUAL_TIMESTAMP_NULL;
bbe63281 1511 }
a5dab5ce 1512
15a90032
LP
1513 if (getpid() == 1) {
1514 /* Don't limit the core dump size, so that coredump handlers such as systemd-coredump (which honour the limit)
1515 * will process core dumps for system services by default. */
206fc4b2
ZJS
1516 if (setrlimit(RLIMIT_CORE, &RLIMIT_MAKE_CONST(RLIM_INFINITY)) < 0)
1517 log_warning_errno(errno, "Failed to set RLIMIT_CORE: %m");
15a90032
LP
1518
1519 /* But at the same time, turn off the core_pattern logic by default, so that no coredumps are stored
1520 * until the systemd-coredump tool is enabled via sysctl. */
1521 if (!skip_setup)
1522 (void) write_string_file("/proc/sys/kernel/core_pattern", "|/bin/false", 0);
1523 }
1524
6edefe0b 1525 if (arg_system) {
84af7821
LP
1526 if (fixup_environment() < 0) {
1527 error_message = "Failed to fix up PID1 environment";
1528 goto finish;
1529 }
32391275 1530
3a18b604
FB
1531 /* Try to figure out if we can use colors with the console. No
1532 * need to do that for user instances since they never log
1533 * into the console. */
1534 log_show_color(colors_enabled());
c76cf844
AK
1535 r = make_null_stdio();
1536 if (r < 0)
1537 log_warning_errno(r, "Failed to redirect standard streams to /dev/null: %m");
3a18b604
FB
1538 }
1539
a07fdfa3 1540 r = initialize_join_controllers();
cb6531be 1541 if (r < 0) {
ff9b60f3 1542 error_message = "Failed to initialize cgroup controllers";
0c85a4f3 1543 goto finish;
cb6531be 1544 }
0c85a4f3 1545
f170852a
LP
1546 /* Mount /proc, /sys and friends, so that /proc/cmdline and
1547 * /proc/$PID/fd is available. */
c1dae1b3 1548 if (getpid() == 1) {
f84f9974
LP
1549
1550 /* Load the kernel modules early, so that we kdbus.ko is loaded before kdbusfs shall be mounted */
2e75e2a8
DM
1551 if (!skip_setup)
1552 kmod_setup();
2e75e2a8 1553
0c85a4f3 1554 r = mount_setup(loaded_policy);
cb6531be
ZJS
1555 if (r < 0) {
1556 error_message = "Failed to mount API filesystems";
8efe3c01 1557 goto finish;
cb6531be 1558 }
0c85a4f3 1559 }
4ade7963
LP
1560
1561 /* Reset all signal handlers. */
ce30c8dc
LP
1562 (void) reset_all_signal_handlers();
1563 (void) ignore_signals(SIGNALS_IGNORE, -1);
078e4539 1564
f5058264 1565 arg_default_tasks_max = system_tasks_max_scale(DEFAULT_TASKS_MAX_PERCENTAGE, 100U);
79baeeb9 1566
cb6531be
ZJS
1567 if (parse_config_file() < 0) {
1568 error_message = "Failed to parse config file";
487393e9 1569 goto finish;
cb6531be 1570 }
487393e9 1571
463d0d15 1572 if (arg_system) {
b5884878
LP
1573 r = parse_proc_cmdline(parse_proc_cmdline_item);
1574 if (r < 0)
da927ba9 1575 log_warning_errno(r, "Failed to parse kernel command line, ignoring: %m");
b5884878 1576 }
f170852a 1577
1de1c9c3
LP
1578 /* Note that this also parses bits from the kernel command
1579 * line, including "debug". */
f170852a
LP
1580 log_parse_environment();
1581
cb6531be
ZJS
1582 if (parse_argv(argc, argv) < 0) {
1583 error_message = "Failed to parse commandline arguments";
f170852a 1584 goto finish;
cb6531be 1585 }
f170852a 1586
10c961b9
AK
1587 /* Initialize default unit */
1588 if (!arg_default_unit) {
f6dd106c
AK
1589 arg_default_unit = strdup(SPECIAL_DEFAULT_TARGET);
1590 if (!arg_default_unit) {
1591 r = log_oom();
10c961b9
AK
1592 error_message = "Failed to set default unit";
1593 goto finish;
1594 }
1595 }
1596
6bae23a0
TB
1597 if (arg_action == ACTION_TEST &&
1598 geteuid() == 0) {
b5c6cf87
LP
1599 log_error("Don't run test mode as root.");
1600 goto finish;
1601 }
1602
463d0d15 1603 if (!arg_system &&
6bae23a0
TB
1604 arg_action == ACTION_RUN &&
1605 sd_booted() <= 0) {
1606 log_error("Trying to run as user instance, but the system has not been booted with systemd.");
1607 goto finish;
1608 }
1609
463d0d15 1610 if (arg_system &&
fe783b03
LP
1611 arg_action == ACTION_RUN &&
1612 running_in_chroot() > 0) {
1613 log_error("Cannot be run in a chroot() environment.");
1614 goto finish;
1615 }
1616
74e7579c 1617 if (arg_action == ACTION_TEST || arg_action == ACTION_HELP) {
ea4b98e6 1618 pager_open(arg_no_pager, false);
74e7579c
AK
1619 skip_setup = true;
1620 }
b87c2aa6 1621
fa0f4d8a 1622 if (arg_action == ACTION_HELP) {
f170852a
LP
1623 retval = help();
1624 goto finish;
9ba0bc4e
ZJS
1625 } else if (arg_action == ACTION_VERSION) {
1626 retval = version();
1627 goto finish;
fa0f4d8a 1628 } else if (arg_action == ACTION_DUMP_CONFIGURATION_ITEMS) {
13811bf9 1629 pager_open(arg_no_pager, false);
e537352b 1630 unit_dump_config_items(stdout);
22f4096c 1631 retval = EXIT_SUCCESS;
e537352b 1632 goto finish;
f170852a
LP
1633 }
1634
463d0d15 1635 if (!arg_system &&
8be28fb1
KS
1636 !getenv("XDG_RUNTIME_DIR")) {
1637 log_error("Trying to run as user instance, but $XDG_RUNTIME_DIR is not set.");
1638 goto finish;
1639 }
1640
fa0f4d8a 1641 assert_se(arg_action == ACTION_RUN || arg_action == ACTION_TEST);
f170852a 1642
871e5809
LP
1643 /* Close logging fds, in order not to confuse fdset below */
1644 log_close();
1645
a16e1123 1646 /* Remember open file descriptors for later deserialization */
01e10de3
LP
1647 r = fdset_new_fill(&fds);
1648 if (r < 0) {
da927ba9 1649 log_emergency_errno(r, "Failed to allocate fd set: %m");
cb6531be 1650 error_message = "Failed to allocate fd set";
01e10de3
LP
1651 goto finish;
1652 } else
1653 fdset_cloexec(fds, true);
a16e1123 1654
d3b1c508
LP
1655 if (arg_serialization)
1656 assert_se(fdset_remove(fds, fileno(arg_serialization)) >= 0);
a16e1123 1657
463d0d15 1658 if (arg_system)
80876c20
LP
1659 /* Become a session leader if we aren't one yet. */
1660 setsid();
4ade7963 1661
befb5b6a 1662 /* Move out of the way, so that we won't block unmounts */
d250afe7 1663 assert_se(chdir("/") == 0);
befb5b6a 1664
2146621b
LP
1665 /* Reset the console, but only if this is really init and we
1666 * are freshly booted */
463d0d15 1667 if (arg_system && arg_action == ACTION_RUN) {
56d96fc0
LP
1668
1669 /* If we are init, we connect stdin/stdout/stderr to
1670 * /dev/null and make sure we don't have a controlling
1671 * tty. */
1672 release_terminal();
1673
1674 if (getpid() == 1 && !skip_setup)
1675 console_setup();
1676 }
4ade7963 1677
18149b9f 1678 /* Open the logging devices, if possible and necessary */
843d2643 1679 log_open();
4ade7963 1680
b6e2f329
LP
1681 if (arg_show_status == _SHOW_STATUS_UNSET)
1682 arg_show_status = SHOW_STATUS_YES;
1683
5373d602
LP
1684 /* Make sure we leave a core dump without panicing the
1685 * kernel. */
ab422445 1686 if (getpid() == 1) {
4fc935ca 1687 install_crash_handler();
97c4f35c 1688
0c85a4f3
LP
1689 r = mount_cgroup_controllers(arg_join_controllers);
1690 if (r < 0)
1691 goto finish;
1692 }
1693
463d0d15 1694 if (arg_system) {
75f86906 1695 int v;
c20f5ac7 1696
0d8c31ff
ZJS
1697 log_info(PACKAGE_STRING " running in %ssystem mode. (" SYSTEMD_FEATURES ")",
1698 arg_action == ACTION_TEST ? "test " : "" );
c20f5ac7 1699
75f86906
LP
1700 v = detect_virtualization();
1701 if (v > 0)
1702 log_info("Detected virtualization %s.", virtualization_to_string(v));
c20f5ac7 1703
fdd25311
LP
1704 write_container_id();
1705
d3f86679 1706 log_info("Detected architecture %s.", architecture_to_string(uname_architecture()));
d9d93745 1707
26a1efdf
LP
1708 if (in_initrd())
1709 log_info("Running in initial RAM disk.");
1710
3408ba01
LP
1711 /* Let's check whether /etc is already populated. We
1712 * don't actually really check for that, but use
1713 * /etc/machine-id as flag file. This allows container
1714 * managers and installers to provision a couple of
1715 * files already. If the container manager wants to
1716 * provision the machine ID itself it should pass
ee33e53a 1717 * $container_uuid to PID 1. */
3408ba01 1718
baa1bdf7 1719 empty_etc = access("/etc/machine-id", F_OK) < 0;
5f5c2f38
LP
1720 if (empty_etc)
1721 log_info("Running with unpopulated /etc.");
d8160f21 1722 } else {
1f97091d
LP
1723 _cleanup_free_ char *t;
1724
1725 t = uid_to_name(getuid());
0d8c31ff
ZJS
1726 log_debug(PACKAGE_STRING " running in %suser mode for user "UID_FMT"/%s. (" SYSTEMD_FEATURES ")",
1727 arg_action == ACTION_TEST ? " test" : "", getuid(), t);
d8160f21 1728 }
a5dab5ce 1729
463d0d15 1730 if (arg_system && !skip_setup) {
031886ed 1731 if (arg_show_status > 0)
888c6216
LP
1732 status_welcome();
1733
888c6216 1734 hostname_setup();
4b1afed0 1735 machine_id_setup(NULL, arg_machine_id, NULL);
888c6216 1736 loopback_setup();
19854865 1737 bump_unix_max_dgram_qlen();
490aed58 1738
80758717 1739 test_usr();
af5bc85d 1740 }
302e8c4c 1741
463d0d15 1742 if (arg_system && arg_runtime_watchdog > 0 && arg_runtime_watchdog != USEC_INFINITY)
e96d6be7
LP
1743 watchdog_set_timeout(&arg_runtime_watchdog);
1744
3a43da28 1745 if (arg_timer_slack_nsec != NSEC_INFINITY)
aa0f64ac 1746 if (prctl(PR_SET_TIMERSLACK, arg_timer_slack_nsec) < 0)
56f64d95 1747 log_error_errno(errno, "Failed to adjust timer slack: %m");
aa0f64ac 1748
a103496c
IP
1749 if (!cap_test_all(arg_capability_bounding_set)) {
1750 r = capability_bounding_set_drop_usermode(arg_capability_bounding_set);
ec8927ca 1751 if (r < 0) {
da927ba9 1752 log_emergency_errno(r, "Failed to drop capability bounding set of usermode helpers: %m");
cb6531be 1753 error_message = "Failed to drop capability bounding set of usermode helpers";
ec8927ca
LP
1754 goto finish;
1755 }
a103496c 1756 r = capability_bounding_set_drop(arg_capability_bounding_set, true);
939b8f14 1757 if (r < 0) {
da927ba9 1758 log_emergency_errno(r, "Failed to drop capability bounding set: %m");
cb6531be 1759 error_message = "Failed to drop capability bounding set";
939b8f14
LP
1760 goto finish;
1761 }
ec8927ca
LP
1762 }
1763
d3b1c508
LP
1764 if (arg_syscall_archs) {
1765 r = enforce_syscall_archs(arg_syscall_archs);
cb6531be
ZJS
1766 if (r < 0) {
1767 error_message = "Failed to set syscall architectures";
d3b1c508 1768 goto finish;
cb6531be 1769 }
d3b1c508
LP
1770 }
1771
463d0d15 1772 if (!arg_system)
d4447f4d 1773 /* Become reaper of our children */
61b9b203 1774 if (prctl(PR_SET_CHILD_SUBREAPER, 1) < 0)
56f64d95 1775 log_warning_errno(errno, "Failed to make us a subreaper: %m");
d4447f4d 1776
463d0d15 1777 if (arg_system) {
3ce40911 1778 (void) bump_rlimit_nofile(&saved_rlimit_nofile);
4096d6f5 1779
5f5c2f38 1780 if (empty_etc) {
304b3079 1781 r = unit_file_preset_all(UNIT_FILE_SYSTEM, false, NULL, UNIT_FILE_PRESET_ENABLE_ONLY, false, NULL, 0);
5f5c2f38 1782 if (r < 0)
287a0de4 1783 log_full_errno(r == -EEXIST ? LOG_NOTICE : LOG_WARNING, r, "Failed to populate /etc with preset unit settings, ignoring: %m");
5f5c2f38
LP
1784 else
1785 log_info("Populated /etc with preset unit settings.");
1786 }
1787 }
1788
463d0d15 1789 r = manager_new(arg_system ? UNIT_FILE_SYSTEM : UNIT_FILE_USER, arg_action == ACTION_TEST, &m);
e96d6be7 1790 if (r < 0) {
da927ba9 1791 log_emergency_errno(r, "Failed to allocate manager object: %m");
cb6531be 1792 error_message = "Failed to allocate manager object";
60918275
LP
1793 goto finish;
1794 }
1795
9e58ff9c 1796 m->confirm_spawn = arg_confirm_spawn;
e96d6be7
LP
1797 m->runtime_watchdog = arg_runtime_watchdog;
1798 m->shutdown_watchdog = arg_shutdown_watchdog;
c3a170f3
HH
1799 m->userspace_timestamp = userspace_timestamp;
1800 m->kernel_timestamp = kernel_timestamp;
c3a170f3 1801 m->initrd_timestamp = initrd_timestamp;
c2e0d600
TA
1802 m->security_start_timestamp = security_start_timestamp;
1803 m->security_finish_timestamp = security_finish_timestamp;
24dd31c1 1804 m->cad_burst_action = arg_cad_burst_action;
9e58ff9c 1805
06af2a04 1806 manager_set_defaults(m);
27d340c7 1807 manager_set_show_status(m, arg_show_status);
e2680723 1808 manager_set_first_boot(m, empty_etc);
27d340c7 1809
bf4df7c3 1810 /* Remember whether we should queue the default job */
d3b1c508 1811 queue_default_job = !arg_serialization || arg_switched_root;
bf4df7c3 1812
9d76d730
LP
1813 before_startup = now(CLOCK_MONOTONIC);
1814
d3b1c508 1815 r = manager_startup(m, arg_serialization, fds);
e96d6be7 1816 if (r < 0)
da927ba9 1817 log_error_errno(r, "Failed to fully start up daemon: %m");
a16e1123 1818
bf4df7c3
LP
1819 /* This will close all file descriptors that were opened, but
1820 * not claimed by any unit. */
2feceb5e 1821 fds = fdset_free(fds);
f50e0a01 1822
74ca738f 1823 arg_serialization = safe_fclose(arg_serialization);
bf4df7c3
LP
1824
1825 if (queue_default_job) {
4afd3348 1826 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1c27d3f3 1827 Unit *target = NULL;
bacbccb7 1828 Job *default_unit_job;
398ef8ba 1829
fa0f4d8a 1830 log_debug("Activating default unit: %s", arg_default_unit);
a16e1123 1831
e96d6be7 1832 r = manager_load_unit(m, arg_default_unit, NULL, &error, &target);
718db961
LP
1833 if (r < 0)
1834 log_error("Failed to load default target: %s", bus_error_message(&error, r));
1835 else if (target->load_state == UNIT_ERROR || target->load_state == UNIT_NOT_FOUND)
c33b3297 1836 log_error_errno(target->load_error, "Failed to load default target: %m");
ac155bb8 1837 else if (target->load_state == UNIT_MASKED)
6daf4f90 1838 log_error("Default target masked.");
27b14a22 1839
ac155bb8 1840 if (!target || target->load_state != UNIT_LOADED) {
a16e1123 1841 log_info("Trying to load rescue target...");
1c27d3f3 1842
e96d6be7
LP
1843 r = manager_load_unit(m, SPECIAL_RESCUE_TARGET, NULL, &error, &target);
1844 if (r < 0) {
4104970e 1845 log_emergency("Failed to load rescue target: %s", bus_error_message(&error, r));
cb6531be 1846 error_message = "Failed to load rescue target";
a16e1123 1847 goto finish;
11ddb6f4 1848 } else if (target->load_state == UNIT_ERROR || target->load_state == UNIT_NOT_FOUND) {
c33b3297 1849 log_emergency_errno(target->load_error, "Failed to load rescue target: %m");
cb6531be 1850 error_message = "Failed to load rescue target";
1c27d3f3 1851 goto finish;
ac155bb8 1852 } else if (target->load_state == UNIT_MASKED) {
4104970e 1853 log_emergency("Rescue target masked.");
cb6531be 1854 error_message = "Rescue target masked";
00dc5d76 1855 goto finish;
a16e1123
LP
1856 }
1857 }
37d88da7 1858
ac155bb8 1859 assert(target->load_state == UNIT_LOADED);
00dc5d76 1860
fa0f4d8a 1861 if (arg_action == ACTION_TEST) {
40d50879 1862 printf("-> By units:\n");
a16e1123
LP
1863 manager_dump_units(m, stdout, "\t");
1864 }
1865
4bd29fe5 1866 r = manager_add_job(m, JOB_START, target, JOB_ISOLATE, &error, &default_unit_job);
ab17a050 1867 if (r == -EPERM) {
718db961 1868 log_debug("Default target could not be isolated, starting instead: %s", bus_error_message(&error, r));
ab17a050 1869
5022ce71
LP
1870 sd_bus_error_free(&error);
1871
4bd29fe5 1872 r = manager_add_job(m, JOB_START, target, JOB_REPLACE, &error, &default_unit_job);
ab17a050 1873 if (r < 0) {
4104970e 1874 log_emergency("Failed to start default target: %s", bus_error_message(&error, r));
cb6531be 1875 error_message = "Failed to start default target";
ab17a050
LP
1876 goto finish;
1877 }
1878 } else if (r < 0) {
4104970e 1879 log_emergency("Failed to isolate default target: %s", bus_error_message(&error, r));
cb6531be 1880 error_message = "Failed to isolate default target";
37d88da7
LP
1881 goto finish;
1882 }
ab17a050 1883
bacbccb7 1884 m->default_unit_job_id = default_unit_job->id;
60918275 1885
07672f49
LP
1886 after_startup = now(CLOCK_MONOTONIC);
1887 log_full(arg_action == ACTION_TEST ? LOG_INFO : LOG_DEBUG,
1888 "Loaded units and determined initial transaction in %s.",
fdb14b7e 1889 format_timespan(timespan, sizeof(timespan), after_startup - before_startup, 100 * USEC_PER_MSEC));
07672f49 1890
fa0f4d8a 1891 if (arg_action == ACTION_TEST) {
40d50879 1892 printf("-> By jobs:\n");
a16e1123 1893 manager_dump_jobs(m, stdout, "\t");
22f4096c 1894 retval = EXIT_SUCCESS;
a16e1123
LP
1895 goto finish;
1896 }
e965d56d 1897 }
d46de8a1 1898
a16e1123 1899 for (;;) {
e96d6be7
LP
1900 r = manager_loop(m);
1901 if (r < 0) {
da927ba9 1902 log_emergency_errno(r, "Failed to run main loop: %m");
cb6531be 1903 error_message = "Failed to run main loop";
a16e1123
LP
1904 goto finish;
1905 }
11dd41ce 1906
a16e1123 1907 switch (m->exit_code) {
e965d56d 1908
a16e1123 1909 case MANAGER_RELOAD:
e015090f 1910 log_info("Reloading.");
06af2a04
TB
1911
1912 r = parse_config_file();
1913 if (r < 0)
1914 log_error("Failed to parse config file.");
1915
1916 manager_set_defaults(m);
1917
e96d6be7
LP
1918 r = manager_reload(m);
1919 if (r < 0)
da927ba9 1920 log_error_errno(r, "Failed to reload: %m");
a16e1123 1921 break;
cea8e32e 1922
a16e1123 1923 case MANAGER_REEXECUTE:
664f88a7 1924
cb6531be 1925 if (prepare_reexecute(m, &arg_serialization, &fds, false) < 0) {
6b9af963 1926 error_message = "Failed to prepare for reexecution";
a16e1123 1927 goto finish;
cb6531be 1928 }
60918275 1929
a16e1123 1930 reexecute = true;
e015090f 1931 log_notice("Reexecuting.");
a16e1123
LP
1932 goto finish;
1933
664f88a7
LP
1934 case MANAGER_SWITCH_ROOT:
1935 /* Steal the switch root parameters */
41669317 1936 switch_root_dir = m->switch_root;
664f88a7
LP
1937 switch_root_init = m->switch_root_init;
1938 m->switch_root = m->switch_root_init = NULL;
1939
1940 if (!switch_root_init)
cb6531be 1941 if (prepare_reexecute(m, &arg_serialization, &fds, true) < 0) {
6b9af963 1942 error_message = "Failed to prepare for reexecution";
664f88a7 1943 goto finish;
cb6531be 1944 }
664f88a7
LP
1945
1946 reexecute = true;
1947 log_notice("Switching root.");
1948 goto finish;
1949
287419c1 1950 case MANAGER_EXIT:
97792515
LP
1951 retval = m->return_value;
1952
463d0d15 1953 if (MANAGER_IS_USER(m)) {
8ebfe0cb
DH
1954 log_debug("Exit.");
1955 goto finish;
1956 }
1957
1958 /* fallthrough */
b9080b03
FF
1959 case MANAGER_REBOOT:
1960 case MANAGER_POWEROFF:
1961 case MANAGER_HALT:
1962 case MANAGER_KEXEC: {
1963 static const char * const table[_MANAGER_EXIT_CODE_MAX] = {
287419c1 1964 [MANAGER_EXIT] = "exit",
b9080b03
FF
1965 [MANAGER_REBOOT] = "reboot",
1966 [MANAGER_POWEROFF] = "poweroff",
1967 [MANAGER_HALT] = "halt",
1968 [MANAGER_KEXEC] = "kexec"
1969 };
1970
1971 assert_se(shutdown_verb = table[m->exit_code]);
e96d6be7 1972 arm_reboot_watchdog = m->exit_code == MANAGER_REBOOT;
b9080b03
FF
1973
1974 log_notice("Shutting down.");
1975 goto finish;
1976 }
1977
a16e1123
LP
1978 default:
1979 assert_not_reached("Unknown exit code.");
1980 }
1981 }
f170852a 1982
60918275 1983finish:
b87c2aa6
ZJS
1984 pager_close();
1985
97792515 1986 if (m)
81f5fc2d 1987 arg_shutdown_watchdog = m->shutdown_watchdog;
fe382237 1988
06d8d842 1989 m = manager_free(m);
60918275 1990
1f6b4113 1991 for (j = 0; j < ELEMENTSOF(arg_default_rlimit); j++)
a1e58e8e 1992 arg_default_rlimit[j] = mfree(arg_default_rlimit[j]);
c93ff2e9 1993
97b11eed 1994 arg_default_unit = mfree(arg_default_unit);
fe382237 1995 arg_join_controllers = strv_free_free(arg_join_controllers);
97b11eed 1996 arg_default_environment = strv_free(arg_default_environment);
525d3cc7 1997 arg_syscall_archs = set_free(arg_syscall_archs);
d3b1c508 1998
cc56fafe 1999 mac_selinux_finish();
b2bb3dbe 2000
a16e1123 2001 if (reexecute) {
664f88a7 2002 const char **args;
e564a982 2003 unsigned i, args_size;
a16e1123 2004
664f88a7
LP
2005 /* Close and disarm the watchdog, so that the new
2006 * instance can reinitialize it, but doesn't get
2007 * rebooted while we do that */
2008 watchdog_close(true);
a16e1123 2009
4096d6f5
LP
2010 /* Reset the RLIMIT_NOFILE to the kernel default, so
2011 * that the new systemd can pass the kernel default to
2012 * its child processes */
2013 if (saved_rlimit_nofile.rlim_cur > 0)
92ca4cac 2014 (void) setrlimit(RLIMIT_NOFILE, &saved_rlimit_nofile);
4096d6f5 2015
41669317 2016 if (switch_root_dir) {
cee530bb
LP
2017 /* Kill all remaining processes from the
2018 * initrd, but don't wait for them, so that we
2019 * can handle the SIGCHLD for them after
2020 * deserializing. */
0bee65f0 2021 broadcast_signal(SIGTERM, false, true);
bd3fa1d2 2022
5a4bf02f
HH
2023 /* And switch root with MS_MOVE, because we remove the old directory afterwards and detach it. */
2024 r = switch_root(switch_root_dir, "/mnt", true, MS_MOVE);
41669317 2025 if (r < 0)
da927ba9 2026 log_error_errno(r, "Failed to switch root, trying to continue: %m");
41669317 2027 }
a16e1123 2028
d03bc1b8 2029 args_size = MAX(6, argc+1);
e564a982 2030 args = newa(const char*, args_size);
a16e1123 2031
664f88a7 2032 if (!switch_root_init) {
5ffa8c81 2033 char sfd[DECIMAL_STR_MAX(int) + 1];
a16e1123 2034
664f88a7
LP
2035 /* First try to spawn ourselves with the right
2036 * path, and with full serialization. We do
2037 * this only if the user didn't specify an
2038 * explicit init to spawn. */
edb9aaa8 2039
d3b1c508 2040 assert(arg_serialization);
664f88a7 2041 assert(fds);
edb9aaa8 2042
5ffa8c81 2043 xsprintf(sfd, "%i", fileno(arg_serialization));
edb9aaa8 2044
664f88a7
LP
2045 i = 0;
2046 args[i++] = SYSTEMD_BINARY_PATH;
41669317 2047 if (switch_root_dir)
2660882b 2048 args[i++] = "--switched-root";
463d0d15 2049 args[i++] = arg_system ? "--system" : "--user";
664f88a7
LP
2050 args[i++] = "--deserialize";
2051 args[i++] = sfd;
2052 args[i++] = NULL;
edb9aaa8 2053
e564a982 2054 assert(i <= args_size);
dcadc967
EV
2055
2056 /*
2057 * We want valgrind to print its memory usage summary before reexecution.
2058 * Valgrind won't do this is on its own on exec(), but it will do it on exit().
2059 * Hence, to ensure we get a summary here, fork() off a child, let it exit() cleanly,
2060 * so that it prints the summary, and wait() for it in the parent, before proceeding into the exec().
2061 */
2062 valgrind_summary_hack();
2063
92ca4cac 2064 (void) execv(args[0], (char* const*) args);
664f88a7 2065 }
6e98720f 2066
664f88a7
LP
2067 /* Try the fallback, if there is any, without any
2068 * serialization. We pass the original argv[] and
2069 * envp[]. (Well, modulo the ordering changes due to
2070 * getopt() in argv[], and some cleanups in envp[],
2071 * but let's hope that doesn't matter.) */
a16e1123 2072
74ca738f 2073 arg_serialization = safe_fclose(arg_serialization);
2feceb5e 2074 fds = fdset_free(fds);
a16e1123 2075
bd64d82c
ZJS
2076 /* Reopen the console */
2077 (void) make_console_stdio();
2078
d3b1c508 2079 for (j = 1, i = 1; j < (unsigned) argc; j++)
664f88a7 2080 args[i++] = argv[j];
a16e1123 2081 args[i++] = NULL;
e564a982 2082 assert(i <= args_size);
b8f83232 2083
1b6d7fa7 2084 /* Reenable any blocked signals, especially important
5a85ca1c 2085 * if we switch from initial ramdisk to init=... */
ce30c8dc
LP
2086 (void) reset_all_signal_handlers();
2087 (void) reset_signal_mask();
5a85ca1c 2088
b8f83232
LP
2089 if (switch_root_init) {
2090 args[0] = switch_root_init;
92ca4cac 2091 (void) execv(args[0], (char* const*) args);
56f64d95 2092 log_warning_errno(errno, "Failed to execute configured init, trying fallback: %m");
b8f83232
LP
2093 }
2094
2095 args[0] = "/sbin/init";
92ca4cac 2096 (void) execv(args[0], (char* const*) args);
a16e1123 2097
745e2fb7
KS
2098 if (errno == ENOENT) {
2099 log_warning("No /sbin/init, trying fallback");
b8f83232 2100
745e2fb7
KS
2101 args[0] = "/bin/sh";
2102 args[1] = NULL;
92ca4cac 2103 (void) execv(args[0], (char* const*) args);
56f64d95 2104 log_error_errno(errno, "Failed to execute /bin/sh, giving up: %m");
745e2fb7 2105 } else
56f64d95 2106 log_warning_errno(errno, "Failed to execute /sbin/init, giving up: %m");
a16e1123
LP
2107 }
2108
74ca738f 2109 arg_serialization = safe_fclose(arg_serialization);
2feceb5e 2110 fds = fdset_free(fds);
a16e1123 2111
54b434b1
LP
2112#ifdef HAVE_VALGRIND_VALGRIND_H
2113 /* If we are PID 1 and running under valgrind, then let's exit
2114 * here explicitly. valgrind will only generate nice output on
2115 * exit(), not on exec(), hence let's do the former not the
2116 * latter here. */
2117 if (getpid() == 1 && RUNNING_ON_VALGRIND)
2118 return 0;
2119#endif
2120
b9080b03 2121 if (shutdown_verb) {
b1e90ec5 2122 char log_level[DECIMAL_STR_MAX(int) + 1];
287419c1
AC
2123 char exit_code[DECIMAL_STR_MAX(uint8_t) + 1];
2124 const char* command_line[11] = {
b9080b03
FF
2125 SYSTEMD_SHUTDOWN_BINARY_PATH,
2126 shutdown_verb,
b1e90ec5
ZJS
2127 "--log-level", log_level,
2128 "--log-target",
b9080b03 2129 };
b1e90ec5 2130 unsigned pos = 5;
e3e45d4f 2131 _cleanup_strv_free_ char **env_block = NULL;
15bd5aee
LP
2132
2133 assert(command_line[pos] == NULL);
e3e45d4f 2134 env_block = strv_copy(environ);
b9080b03 2135
5ffa8c81 2136 xsprintf(log_level, "%d", log_get_max_level());
b1e90ec5
ZJS
2137
2138 switch (log_get_target()) {
92ca4cac 2139
b1e90ec5
ZJS
2140 case LOG_TARGET_KMSG:
2141 case LOG_TARGET_JOURNAL_OR_KMSG:
2142 case LOG_TARGET_SYSLOG_OR_KMSG:
2143 command_line[pos++] = "kmsg";
2144 break;
2145
10f00ff1
ILG
2146 case LOG_TARGET_NULL:
2147 command_line[pos++] = "null";
2148 break;
2149
b1e90ec5
ZJS
2150 case LOG_TARGET_CONSOLE:
2151 default:
2152 command_line[pos++] = "console";
2153 break;
2154 };
2155
2156 if (log_get_show_color())
2157 command_line[pos++] = "--log-color";
2158
2159 if (log_get_show_location())
2160 command_line[pos++] = "--log-location";
2161
287419c1
AC
2162 if (streq(shutdown_verb, "exit")) {
2163 command_line[pos++] = "--exit-code";
2164 command_line[pos++] = exit_code;
97792515 2165 xsprintf(exit_code, "%d", retval);
287419c1
AC
2166 }
2167
26abdc73 2168 assert(pos < ELEMENTSOF(command_line));
b1e90ec5 2169
5146c619 2170 if (arm_reboot_watchdog && arg_shutdown_watchdog > 0 && arg_shutdown_watchdog != USEC_INFINITY) {
e3e45d4f 2171 char *e;
d18f337c 2172
e96d6be7
LP
2173 /* If we reboot let's set the shutdown
2174 * watchdog and tell the shutdown binary to
2175 * repeatedly ping it */
c2cc6b9a
LP
2176 r = watchdog_set_timeout(&arg_shutdown_watchdog);
2177 watchdog_close(r < 0);
e96d6be7 2178
e3e45d4f
SP
2179 /* Tell the binary how often to ping, ignore failure */
2180 if (asprintf(&e, "WATCHDOG_USEC="USEC_FMT, arg_shutdown_watchdog) > 0)
92ca4cac 2181 (void) strv_push(&env_block, e);
e3e45d4f 2182 } else
e96d6be7
LP
2183 watchdog_close(true);
2184
66713f77
LP
2185 /* Avoid the creation of new processes forked by the
2186 * kernel; at this point, we will not listen to the
2187 * signals anyway */
75f86906 2188 if (detect_container() <= 0)
e155a0aa 2189 (void) cg_uninstall_release_agent(SYSTEMD_CGROUP_CONTROLLER);
ad929bcc 2190
d18f337c 2191 execve(SYSTEMD_SHUTDOWN_BINARY_PATH, (char **) command_line, env_block);
56f64d95 2192 log_error_errno(errno, "Failed to execute shutdown binary, %s: %m",
b1e90ec5 2193 getpid() == 1 ? "freezing" : "quitting");
b9080b03
FF
2194 }
2195
cb6531be
ZJS
2196 if (getpid() == 1) {
2197 if (error_message)
2198 manager_status_printf(NULL, STATUS_TYPE_EMERGENCY,
1fc464f6 2199 ANSI_HIGHLIGHT_RED "!!!!!!" ANSI_NORMAL,
cb6531be 2200 "%s, freezing.", error_message);
b9e74c39 2201 freeze_or_reboot();
cb6531be 2202 }
c3b3c274 2203
60918275
LP
2204 return retval;
2205}