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