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