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