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