]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/manager.c
manager: add manager_set_unit_defaults() call that sets all unit defaults in one go
[thirdparty/systemd.git] / src / core / manager.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
a7334b09 2
60918275 3#include <errno.h>
400f1a33
LP
4#include <fcntl.h>
5#include <linux/kd.h>
e46b13c8 6#include <sys/epoll.h>
400f1a33 7#include <sys/inotify.h>
e1414003 8#include <sys/ioctl.h>
ca6ce62d 9#include <sys/mount.h>
400f1a33 10#include <sys/reboot.h>
8742514c 11#include <sys/timerfd.h>
40efaaed 12#include <sys/utsname.h>
400f1a33
LP
13#include <sys/wait.h>
14#include <unistd.h>
830f6caa 15
349cc4a5 16#if HAVE_AUDIT
4927fcae 17#include <libaudit.h>
830f6caa 18#endif
60918275 19
718db961 20#include "sd-daemon.h"
718db961 21#include "sd-messages.h"
3536f49e 22#include "sd-path.h"
81527be1 23
57b7a260 24#include "all-units.h"
d68c645b 25#include "alloc-util.h"
400f1a33
LP
26#include "audit-fd.h"
27#include "boot-timestamps.h"
28#include "bus-common-errors.h"
29#include "bus-error.h"
30#include "bus-kernel.h"
31#include "bus-util.h"
00d9ef85 32#include "clean-ipc.h"
af6b0ecc 33#include "clock-util.h"
29e6b0c1 34#include "common-signal.h"
08951245 35#include "confidential-virt.h"
28db6fbf 36#include "constants.h"
19d22d43 37#include "core-varlink.h"
786d19fd 38#include "creds-util.h"
400f1a33
LP
39#include "dbus-job.h"
40#include "dbus-manager.h"
41#include "dbus-unit.h"
42#include "dbus.h"
d063a527 43#include "dirent-util.h"
400f1a33 44#include "env-util.h"
4f5dd394 45#include "escape.h"
ec75e8e0 46#include "event-util.h"
89711996 47#include "exec-util.h"
d3070fbd 48#include "execute.h"
400f1a33 49#include "exit-status.h"
3ffd4af2 50#include "fd-util.h"
0d39fa9c 51#include "fileio.h"
385093b7 52#include "generator-setup.h"
60918275 53#include "hashmap.h"
baa6a42d 54#include "initrd-util.h"
9e5fd717 55#include "inotify-util.h"
5cfa33e0 56#include "install.h"
19d22d43 57#include "io-util.h"
0690160e 58#include "label-util.h"
d904afc7 59#include "load-fragment.h"
786d19fd 60#include "locale-setup.h"
16354eff 61#include "log.h"
400f1a33 62#include "macro.h"
3ffd4af2 63#include "manager.h"
2a341bb9 64#include "manager-dump.h"
a01ba4b2 65#include "manager-serialize.h"
0a970718 66#include "memory-util.h"
35cd0ba5 67#include "mkdir-label.h"
ca6ce62d 68#include "mount-util.h"
4bd03515 69#include "os-util.h"
6bedfcbb 70#include "parse-util.h"
400f1a33
LP
71#include "path-lookup.h"
72#include "path-util.h"
73#include "process-util.h"
6bb00842 74#include "psi-util.h"
ea430986 75#include "ratelimit.h"
31ce987c 76#include "rlimit-util.h"
c6878637 77#include "rm-rf.h"
45ae2f72 78#include "selinux-util.h"
400f1a33 79#include "signal-util.h"
57b7a260 80#include "socket-util.h"
514f4ef5 81#include "special.h"
8fcde012 82#include "stat-util.h"
8b43440b 83#include "string-table.h"
07630cea 84#include "string-util.h"
400f1a33 85#include "strv.h"
dd1db3c2 86#include "strxcpyx.h"
6123dfaa 87#include "sysctl-util.h"
a6ecbf83 88#include "syslog-util.h"
400f1a33
LP
89#include "terminal-util.h"
90#include "time-util.h"
91#include "transaction.h"
63e8df04 92#include "uid-range.h"
affb60b1 93#include "umask-util.h"
400f1a33 94#include "unit-name.h"
00d9ef85 95#include "user-util.h"
5dc4c17f 96#include "virt.h"
e96d6be7 97#include "watchdog.h"
60918275 98
a47806fa 99#define NOTIFY_RCVBUF_SIZE (8*1024*1024)
d8fdc620 100#define CGROUPS_AGENT_RCVBUF_SIZE (8*1024*1024)
a47806fa 101
03b717a3 102/* Initial delay and the interval for printing status messages about running jobs */
1b4154a8
ZJS
103#define JOBS_IN_PROGRESS_WAIT_USEC (2*USEC_PER_SEC)
104#define JOBS_IN_PROGRESS_QUIET_WAIT_USEC (25*USEC_PER_SEC)
fd08a840 105#define JOBS_IN_PROGRESS_PERIOD_USEC (USEC_PER_SEC / 3)
03b717a3
MS
106#define JOBS_IN_PROGRESS_PERIOD_DIVISOR 3
107
5238e957 108/* If there are more than 1K bus messages queue across our API and direct buses, then let's not add more on top until
e0a08581
LP
109 * the queue gets more empty. */
110#define MANAGER_BUS_BUSY_THRESHOLD 1024LU
111
112/* How many units and jobs to process of the bus queue before returning to the event loop. */
113#define MANAGER_BUS_MESSAGE_BUDGET 100U
114
718db961 115static int manager_dispatch_notify_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
d8fdc620 116static int manager_dispatch_cgroups_agent_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
718db961
LP
117static int manager_dispatch_signal_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
118static int manager_dispatch_time_change_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
119static int manager_dispatch_idle_pipe_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
00d9ef85 120static int manager_dispatch_user_lookup_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
718db961 121static int manager_dispatch_jobs_in_progress(sd_event_source *source, usec_t usec, void *userdata);
752b5905 122static int manager_dispatch_run_queue(sd_event_source *source, void *userdata);
575b300b 123static int manager_dispatch_sigchld(sd_event_source *source, void *userdata);
bbf5fd8e 124static int manager_dispatch_timezone_change(sd_event_source *source, const struct inotify_event *event, void *userdata);
64691d20 125static int manager_run_environment_generators(Manager *m);
e801700e 126static int manager_run_generators(Manager *m);
06a4eb07 127static void manager_vacuum(Manager *m);
718db961 128
1b4154a8 129static usec_t manager_watch_jobs_next_time(Manager *m) {
3889fc6f
ZJS
130 usec_t timeout;
131
132 if (MANAGER_IS_USER(m))
133 /* Let the user manager without a timeout show status quickly, so the system manager can make
134 * use of it, if it wants to. */
135 timeout = JOBS_IN_PROGRESS_WAIT_USEC * 2 / 3;
136 else if (show_status_on(m->show_status))
137 /* When status is on, just use the usual timeout. */
138 timeout = JOBS_IN_PROGRESS_WAIT_USEC;
139 else
140 timeout = JOBS_IN_PROGRESS_QUIET_WAIT_USEC;
141
142 return usec_add(now(CLOCK_MONOTONIC), timeout);
1b4154a8
ZJS
143}
144
2ae56591 145static void manager_watch_jobs_in_progress(Manager *m) {
e5723c89 146 usec_t next;
cfa9677b 147 int r;
e5723c89 148
718db961 149 assert(m);
03b717a3 150
42bf1ae1
FB
151 /* We do not want to show the cylon animation if the user
152 * needs to confirm service executions otherwise confirmation
153 * messages will be screwed by the cylon animation. */
b0eb2944 154 if (!manager_is_confirm_spawn_disabled(m))
42bf1ae1
FB
155 return;
156
718db961 157 if (m->jobs_in_progress_event_source)
2ae56591 158 return;
03b717a3 159
1b4154a8 160 next = manager_watch_jobs_next_time(m);
cfa9677b 161 r = sd_event_add_time(
6a0f1f6d
LP
162 m->event,
163 &m->jobs_in_progress_event_source,
164 CLOCK_MONOTONIC,
165 next, 0,
166 manager_dispatch_jobs_in_progress, m);
cfa9677b
MM
167 if (r < 0)
168 return;
7dfbe2e3
TG
169
170 (void) sd_event_source_set_description(m->jobs_in_progress_event_source, "manager-jobs-in-progress");
03b717a3
MS
171}
172
fbd0b64f 173#define CYLON_BUFFER_EXTRA (2*STRLEN(ANSI_RED) + STRLEN(ANSI_HIGHLIGHT_RED) + 2*STRLEN(ANSI_NORMAL))
03b717a3 174
03b717a3
MS
175static void draw_cylon(char buffer[], size_t buflen, unsigned width, unsigned pos) {
176 char *p = buffer;
177
178 assert(buflen >= CYLON_BUFFER_EXTRA + width + 1);
179 assert(pos <= width+1); /* 0 or width+1 mean that the center light is behind the corner */
180
181 if (pos > 1) {
6282c859
MS
182 if (pos > 2)
183 p = mempset(p, ' ', pos-2);
64c3610b
FB
184 if (log_get_show_color())
185 p = stpcpy(p, ANSI_RED);
03b717a3
MS
186 *p++ = '*';
187 }
188
189 if (pos > 0 && pos <= width) {
64c3610b
FB
190 if (log_get_show_color())
191 p = stpcpy(p, ANSI_HIGHLIGHT_RED);
03b717a3
MS
192 *p++ = '*';
193 }
194
64c3610b
FB
195 if (log_get_show_color())
196 p = stpcpy(p, ANSI_NORMAL);
03b717a3
MS
197
198 if (pos < width) {
64c3610b
FB
199 if (log_get_show_color())
200 p = stpcpy(p, ANSI_RED);
03b717a3 201 *p++ = '*';
6282c859
MS
202 if (pos < width-1)
203 p = mempset(p, ' ', width-1-pos);
64c3610b
FB
204 if (log_get_show_color())
205 strcpy(p, ANSI_NORMAL);
03b717a3 206 }
03b717a3
MS
207}
208
1addc46c 209static void manager_flip_auto_status(Manager *m, bool enable, const char *reason) {
f755e3b7
LP
210 assert(m);
211
cb8ccb22
ZJS
212 if (enable) {
213 if (m->show_status == SHOW_STATUS_AUTO)
7365a296 214 manager_set_show_status(m, SHOW_STATUS_TEMPORARY, reason);
cb8ccb22
ZJS
215 } else {
216 if (m->show_status == SHOW_STATUS_TEMPORARY)
7365a296 217 manager_set_show_status(m, SHOW_STATUS_AUTO, reason);
cb8ccb22
ZJS
218 }
219}
220
03b717a3 221static void manager_print_jobs_in_progress(Manager *m) {
03b717a3 222 Job *j;
03b717a3
MS
223 unsigned counter = 0, print_nr;
224 char cylon[6 + CYLON_BUFFER_EXTRA + 1];
225 unsigned cylon_pos;
4c989f89 226 uint64_t timeout = 0;
03b717a3 227
718db961 228 assert(m);
9c3349e2 229 assert(m->n_running_jobs > 0);
718db961 230
7365a296 231 manager_flip_auto_status(m, true, "delay");
d450b6f2 232
03b717a3
MS
233 print_nr = (m->jobs_in_progress_iteration / JOBS_IN_PROGRESS_PERIOD_DIVISOR) % m->n_running_jobs;
234
90e74a66 235 HASHMAP_FOREACH(j, m->jobs)
03b717a3
MS
236 if (j->state == JOB_RUNNING && counter++ == print_nr)
237 break;
238
e970a72e
MS
239 /* m->n_running_jobs must be consistent with the contents of m->jobs,
240 * so the above loop must have succeeded in finding j. */
241 assert(counter == print_nr + 1);
51d122af 242 assert(j);
5a82a91a 243
03b717a3
MS
244 cylon_pos = m->jobs_in_progress_iteration % 14;
245 if (cylon_pos >= 8)
246 cylon_pos = 14 - cylon_pos;
247 draw_cylon(cylon, sizeof(cylon), 6, cylon_pos);
248
8bb310c3
ZJS
249 m->jobs_in_progress_iteration++;
250
3889fc6f 251 char job_of_n[STRLEN("( of ) ") + DECIMAL_STR_MAX(unsigned)*2] = "";
5291f26d 252 if (m->n_running_jobs > 1)
3889fc6f 253 xsprintf(job_of_n, "(%u of %u) ", counter, m->n_running_jobs);
03b717a3 254
4c989f89 255 (void) job_get_timeout(j, &timeout);
8bb310c3 256
04d232d8
ZJS
257 /* We want to use enough information for the user to identify previous lines talking about the same
258 * unit, but keep the message as short as possible. So if 'Starting foo.service' or 'Starting
3889fc6f 259 * foo.service - Description' were used, 'foo.service' is enough here. On the other hand, if we used
04d232d8
ZJS
260 * 'Starting Description' before, then we shall also use 'Description' here. So we pass NULL as the
261 * second argument to unit_status_string(). */
262 const char *ident = unit_status_string(j->unit, NULL);
263
3889fc6f 264 const char *time = FORMAT_TIMESPAN(now(CLOCK_MONOTONIC) - j->begin_usec, 1*USEC_PER_SEC);
4c989f89 265 const char *limit = timeout > 0 ? FORMAT_TIMESPAN(timeout - j->begin_usec, 1*USEC_PER_SEC) : "no limit";
3889fc6f
ZJS
266
267 if (m->status_unit_format == STATUS_UNIT_FORMAT_DESCRIPTION)
268 /* When using 'Description', we effectively don't have enough space to show the nested status
269 * without ellipsization, so let's not even try. */
270 manager_status_printf(m, STATUS_TYPE_EPHEMERAL, cylon,
271 "%sA %s job is running for %s (%s / %s)",
272 job_of_n,
273 job_type_to_string(j->type),
274 ident,
275 time, limit);
276 else {
277 const char *status_text = unit_status_text(j->unit);
278
279 manager_status_printf(m, STATUS_TYPE_EPHEMERAL, cylon,
280 "%sJob %s/%s running (%s / %s)%s%s",
281 job_of_n,
282 ident,
283 job_type_to_string(j->type),
284 time, limit,
285 status_text ? ": " : "",
286 strempty(status_text));
287 }
288
289 sd_notifyf(false,
290 "STATUS=%sUser job %s/%s running (%s / %s)...",
291 job_of_n,
292 ident,
293 job_type_to_string(j->type),
294 time, limit);
295 m->status_ready = false;
03b717a3
MS
296}
297
e46b13c8 298static int have_ask_password(void) {
c2b2df60 299 _cleanup_closedir_ DIR *dir = NULL;
e46b13c8
ZJS
300
301 dir = opendir("/run/systemd/ask-password");
302 if (!dir) {
303 if (errno == ENOENT)
304 return false;
305 else
306 return -errno;
307 }
308
c7f0d9e5 309 FOREACH_DIRENT_ALL(de, dir, return -errno)
e46b13c8
ZJS
310 if (startswith(de->d_name, "ask."))
311 return true;
8fb3f009 312 return false;
e46b13c8
ZJS
313}
314
315static int manager_dispatch_ask_password_fd(sd_event_source *source,
316 int fd, uint32_t revents, void *userdata) {
99534007 317 Manager *m = ASSERT_PTR(userdata);
e46b13c8 318
665dfe93 319 (void) flush_fd(fd);
e46b13c8
ZJS
320
321 m->have_ask_password = have_ask_password();
322 if (m->have_ask_password < 0)
323 /* Log error but continue. Negative have_ask_password
324 * is treated as unknown status. */
c33b3297 325 log_error_errno(m->have_ask_password, "Failed to list /run/systemd/ask-password: %m");
e46b13c8
ZJS
326
327 return 0;
328}
329
330static void manager_close_ask_password(Manager *m) {
331 assert(m);
332
5dcadb4c 333 m->ask_password_event_source = sd_event_source_disable_unref(m->ask_password_event_source);
90990e28 334 m->ask_password_inotify_fd = safe_close(m->ask_password_inotify_fd);
e46b13c8
ZJS
335 m->have_ask_password = -EINVAL;
336}
337
338static int manager_check_ask_password(Manager *m) {
339 int r;
340
341 assert(m);
342
343 if (!m->ask_password_event_source) {
344 assert(m->ask_password_inotify_fd < 0);
345
17e4b070 346 (void) mkdir_p_label("/run/systemd/ask-password", 0755);
e46b13c8
ZJS
347
348 m->ask_password_inotify_fd = inotify_init1(IN_NONBLOCK|IN_CLOEXEC);
4a62c710 349 if (m->ask_password_inotify_fd < 0)
330b8fb3 350 return log_error_errno(errno, "Failed to create inotify object: %m");
e46b13c8 351
27c3112d
FB
352 r = inotify_add_watch_and_warn(m->ask_password_inotify_fd,
353 "/run/systemd/ask-password",
354 IN_CREATE|IN_DELETE|IN_MOVE);
355 if (r < 0) {
e46b13c8 356 manager_close_ask_password(m);
27c3112d 357 return r;
e46b13c8
ZJS
358 }
359
360 r = sd_event_add_io(m->event, &m->ask_password_event_source,
361 m->ask_password_inotify_fd, EPOLLIN,
362 manager_dispatch_ask_password_fd, m);
363 if (r < 0) {
df3d3bdf 364 log_error_errno(r, "Failed to add event source for /run/systemd/ask-password: %m");
e46b13c8 365 manager_close_ask_password(m);
df3d3bdf 366 return r;
e46b13c8
ZJS
367 }
368
7dfbe2e3
TG
369 (void) sd_event_source_set_description(m->ask_password_event_source, "manager-ask-password");
370
e46b13c8
ZJS
371 /* Queries might have been added meanwhile... */
372 manager_dispatch_ask_password_fd(m->ask_password_event_source,
373 m->ask_password_inotify_fd, EPOLLIN, m);
374 }
375
376 return m->have_ask_password;
377}
378
31a7eb86 379static int manager_watch_idle_pipe(Manager *m) {
31a7eb86
ZJS
380 int r;
381
718db961
LP
382 assert(m);
383
384 if (m->idle_pipe_event_source)
31a7eb86
ZJS
385 return 0;
386
387 if (m->idle_pipe[2] < 0)
388 return 0;
389
151b9b96 390 r = sd_event_add_io(m->event, &m->idle_pipe_event_source, m->idle_pipe[2], EPOLLIN, manager_dispatch_idle_pipe_fd, m);
23bbb0de
MS
391 if (r < 0)
392 return log_error_errno(r, "Failed to watch idle pipe: %m");
31a7eb86 393
7dfbe2e3
TG
394 (void) sd_event_source_set_description(m->idle_pipe_event_source, "manager-idle-pipe");
395
31a7eb86 396 return 0;
31a7eb86
ZJS
397}
398
718db961
LP
399static void manager_close_idle_pipe(Manager *m) {
400 assert(m);
31a7eb86 401
5dcadb4c 402 m->idle_pipe_event_source = sd_event_source_disable_unref(m->idle_pipe_event_source);
cd72bd8a 403
3d94f76c
LP
404 safe_close_pair(m->idle_pipe);
405 safe_close_pair(m->idle_pipe + 2);
31a7eb86
ZJS
406}
407
8742514c 408static int manager_setup_time_change(Manager *m) {
718db961 409 int r;
b92bea5d 410
718db961 411 assert(m);
8742514c 412
638cece4 413 if (MANAGER_IS_TEST_RUN(m))
0d8c31ff
ZJS
414 return 0;
415
5dcadb4c 416 m->time_change_event_source = sd_event_source_disable_unref(m->time_change_event_source);
7feedd18 417
ec75e8e0 418 r = event_add_time_change(m->event, &m->time_change_event_source, manager_dispatch_time_change_fd, m);
23bbb0de
MS
419 if (r < 0)
420 return log_error_errno(r, "Failed to create time change event source: %m");
8742514c 421
a5cc7e5a
LP
422 /* Schedule this slightly earlier than the .timer event sources */
423 r = sd_event_source_set_priority(m->time_change_event_source, SD_EVENT_PRIORITY_NORMAL-1);
424 if (r < 0)
425 return log_error_errno(r, "Failed to set priority of time change event sources: %m");
426
8742514c
LP
427 log_debug("Set up TFD_TIMER_CANCEL_ON_SET timerfd.");
428
429 return 0;
430}
431
bbf5fd8e
LP
432static int manager_read_timezone_stat(Manager *m) {
433 struct stat st;
434 bool changed;
435
436 assert(m);
437
438 /* Read the current stat() data of /etc/localtime so that we detect changes */
439 if (lstat("/etc/localtime", &st) < 0) {
440 log_debug_errno(errno, "Failed to stat /etc/localtime, ignoring: %m");
441 changed = m->etc_localtime_accessible;
442 m->etc_localtime_accessible = false;
443 } else {
444 usec_t k;
445
446 k = timespec_load(&st.st_mtim);
447 changed = !m->etc_localtime_accessible || k != m->etc_localtime_mtime;
448
449 m->etc_localtime_mtime = k;
450 m->etc_localtime_accessible = true;
451 }
452
453 return changed;
454}
455
456static int manager_setup_timezone_change(Manager *m) {
a5cc7e5a 457 _cleanup_(sd_event_source_unrefp) sd_event_source *new_event = NULL;
bbf5fd8e
LP
458 int r;
459
460 assert(m);
461
638cece4 462 if (MANAGER_IS_TEST_RUN(m))
bbf5fd8e
LP
463 return 0;
464
465 /* We watch /etc/localtime for three events: change of the link count (which might mean removal from /etc even
466 * though another link might be kept), renames, and file close operations after writing. Note we don't bother
467 * with IN_DELETE_SELF, as that would just report when the inode is removed entirely, i.e. after the link count
468 * went to zero and all fds to it are closed.
469 *
470 * Note that we never follow symlinks here. This is a simplification, but should cover almost all cases
471 * correctly.
472 *
473 * Note that we create the new event source first here, before releasing the old one. This should optimize
474 * behaviour as this way sd-event can reuse the old watch in case the inode didn't change. */
475
476 r = sd_event_add_inotify(m->event, &new_event, "/etc/localtime",
477 IN_ATTRIB|IN_MOVE_SELF|IN_CLOSE_WRITE|IN_DONT_FOLLOW, manager_dispatch_timezone_change, m);
0cb21d8c
LP
478 if (r == -ENOENT) {
479 /* If the file doesn't exist yet, subscribe to /etc instead, and wait until it is created either by
480 * O_CREATE or by rename() */
481
482 log_debug_errno(r, "/etc/localtime doesn't exist yet, watching /etc instead.");
bbf5fd8e
LP
483 r = sd_event_add_inotify(m->event, &new_event, "/etc",
484 IN_CREATE|IN_MOVED_TO|IN_ONLYDIR, manager_dispatch_timezone_change, m);
0cb21d8c 485 }
bbf5fd8e
LP
486 if (r < 0)
487 return log_error_errno(r, "Failed to create timezone change event source: %m");
488
a5cc7e5a
LP
489 /* Schedule this slightly earlier than the .timer event sources */
490 r = sd_event_source_set_priority(new_event, SD_EVENT_PRIORITY_NORMAL-1);
491 if (r < 0)
492 return log_error_errno(r, "Failed to set priority of timezone change event sources: %m");
493
bbf5fd8e 494 sd_event_source_unref(m->timezone_change_event_source);
a5cc7e5a 495 m->timezone_change_event_source = TAKE_PTR(new_event);
bbf5fd8e
LP
496
497 return 0;
498}
499
80876c20 500static int enable_special_signals(Manager *m) {
254d1313 501 _cleanup_close_ int fd = -EBADF;
80876c20
LP
502
503 assert(m);
504
638cece4 505 if (MANAGER_IS_TEST_RUN(m))
37453b3a
EV
506 return 0;
507
a41b539e 508 /* Enable that we get SIGINT on control-alt-del. In containers
c9999773
LP
509 * this will fail with EPERM (older) or EINVAL (newer), so
510 * ignore that. */
4c701096 511 if (reboot(RB_DISABLE_CAD) < 0 && !IN_SET(errno, EPERM, EINVAL))
56f64d95 512 log_warning_errno(errno, "Failed to enable ctrl-alt-del handling: %m");
80876c20 513
a41b539e
LP
514 fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC);
515 if (fd < 0) {
516 /* Support systems without virtual console */
517 if (fd != -ENOENT)
56f64d95 518 log_warning_errno(errno, "Failed to open /dev/tty0: %m");
a41b539e 519 } else {
80876c20
LP
520 /* Enable that we get SIGWINCH on kbrequest */
521 if (ioctl(fd, KDSIGACCEPT, SIGWINCH) < 0)
56f64d95 522 log_warning_errno(errno, "Failed to enable kbrequest handling: %m");
80876c20
LP
523 }
524
525 return 0;
526}
527
8750ac02
ZJS
528#define RTSIG_IF_AVAILABLE(signum) (signum <= SIGRTMAX ? signum : -1)
529
ce578209 530static int manager_setup_signals(Manager *m) {
b92bea5d
ZJS
531 struct sigaction sa = {
532 .sa_handler = SIG_DFL,
533 .sa_flags = SA_NOCLDSTOP|SA_RESTART,
534 };
718db961
LP
535 sigset_t mask;
536 int r;
60918275 537
ce578209
LP
538 assert(m);
539
57c0c30e
LP
540 assert_se(sigaction(SIGCHLD, &sa, NULL) == 0);
541
4dffec14
LP
542 /* We make liberal use of realtime signals here. On
543 * Linux/glibc we have 30 of them (with the exception of Linux
544 * on hppa, see below), between SIGRTMIN+0 ... SIGRTMIN+30
545 * (aka SIGRTMAX). */
7d793605 546
4dffec14 547 assert_se(sigemptyset(&mask) == 0);
7d793605
LP
548 sigset_add_many(&mask,
549 SIGCHLD, /* Child died */
550 SIGTERM, /* Reexecute daemon */
551 SIGHUP, /* Reload configuration */
54d04cd1 552 SIGUSR1, /* systemd: reconnect to D-Bus */
7d793605
LP
553 SIGUSR2, /* systemd: dump status */
554 SIGINT, /* Kernel sends us this on control-alt-del */
555 SIGWINCH, /* Kernel sends us this on kbrequest (alt-arrowup) */
556 SIGPWR, /* Some kernel drivers and upsd send us this on power failure */
4dffec14 557
7d793605 558 SIGRTMIN+0, /* systemd: start default.target */
0003d1ab 559 SIGRTMIN+1, /* systemd: isolate rescue.target */
7d793605
LP
560 SIGRTMIN+2, /* systemd: isolate emergency.target */
561 SIGRTMIN+3, /* systemd: start halt.target */
562 SIGRTMIN+4, /* systemd: start poweroff.target */
563 SIGRTMIN+5, /* systemd: start reboot.target */
0003d1ab 564 SIGRTMIN+6, /* systemd: start kexec.target */
13ffc607 565 SIGRTMIN+7, /* systemd: start soft-reboot.target */
4dffec14
LP
566
567 /* ... space for more special targets ... */
568
0003d1ab
LP
569 SIGRTMIN+13, /* systemd: Immediate halt */
570 SIGRTMIN+14, /* systemd: Immediate poweroff */
571 SIGRTMIN+15, /* systemd: Immediate reboot */
572 SIGRTMIN+16, /* systemd: Immediate kexec */
13ffc607 573 SIGRTMIN+17, /* systemd: Immediate soft-reboot */
29e6b0c1
LP
574 SIGRTMIN+18, /* systemd: control command */
575
576 /* ... space ... */
4dffec14 577
0658666b
LP
578 SIGRTMIN+20, /* systemd: enable status messages */
579 SIGRTMIN+21, /* systemd: disable status messages */
253ee27a
LP
580 SIGRTMIN+22, /* systemd: set log level to LOG_DEBUG */
581 SIGRTMIN+23, /* systemd: set log level to LOG_INFO */
600b704e 582 SIGRTMIN+24, /* systemd: Immediate exit (--user only) */
463aef23 583 SIGRTMIN+25, /* systemd: reexecute manager */
4dffec14 584
8750ac02
ZJS
585 /* Apparently Linux on hppa had fewer RT signals until v3.18,
586 * SIGRTMAX was SIGRTMIN+25, and then SIGRTMIN was lowered,
587 * see commit v3.17-7614-g1f25df2eff.
588 *
589 * We cannot unconditionally make use of those signals here,
590 * so let's use a runtime check. Since these commands are
591 * accessible by different means and only really a safety
592 * net, the missing functionality on hppa shouldn't matter.
593 */
594
595 RTSIG_IF_AVAILABLE(SIGRTMIN+26), /* systemd: set log target to journal-or-kmsg */
596 RTSIG_IF_AVAILABLE(SIGRTMIN+27), /* systemd: set log target to console */
597 RTSIG_IF_AVAILABLE(SIGRTMIN+28), /* systemd: set log target to kmsg */
598 RTSIG_IF_AVAILABLE(SIGRTMIN+29), /* systemd: set log target to syslog-or-kmsg (obsolete) */
4dffec14
LP
599
600 /* ... one free signal here SIGRTMIN+30 ... */
7d793605 601 -1);
ce578209
LP
602 assert_se(sigprocmask(SIG_SETMASK, &mask, NULL) == 0);
603
718db961
LP
604 m->signal_fd = signalfd(-1, &mask, SFD_NONBLOCK|SFD_CLOEXEC);
605 if (m->signal_fd < 0)
ce578209
LP
606 return -errno;
607
151b9b96 608 r = sd_event_add_io(m->event, &m->signal_event_source, m->signal_fd, EPOLLIN, manager_dispatch_signal_fd, m);
718db961
LP
609 if (r < 0)
610 return r;
ce578209 611
7dfbe2e3
TG
612 (void) sd_event_source_set_description(m->signal_event_source, "manager-signal");
613
d8fdc620
LP
614 /* Process signals a bit earlier than the rest of things, but later than notify_fd processing, so that the
615 * notify processing can still figure out to which process/service a message belongs, before we reap the
616 * process. Also, process this before handling cgroup notifications, so that we always collect child exit
617 * status information before detecting that there's no process in a cgroup. */
618 r = sd_event_source_set_priority(m->signal_event_source, SD_EVENT_PRIORITY_NORMAL-6);
29083707
LP
619 if (r < 0)
620 return r;
621
463d0d15 622 if (MANAGER_IS_SYSTEM(m))
80876c20 623 return enable_special_signals(m);
e1414003 624
ce578209
LP
625 return 0;
626}
627
1ad6e8b3 628static char** sanitize_environment(char **l) {
f069efb4 629
47cf8ff2 630 /* Let's remove some environment variables that we need ourselves to communicate with our clients */
f069efb4 631 strv_env_unset_many(
1ad6e8b3 632 l,
8047ac8f
LP
633 "CACHE_DIRECTORY",
634 "CONFIGURATION_DIRECTORY",
bb0c0d6f 635 "CREDENTIALS_DIRECTORY",
47cf8ff2
LP
636 "EXIT_CODE",
637 "EXIT_STATUS",
638 "INVOCATION_ID",
639 "JOURNAL_STREAM",
640 "LISTEN_FDNAMES",
641 "LISTEN_FDS",
642 "LISTEN_PID",
8047ac8f 643 "LOGS_DIRECTORY",
c792a2e5 644 "LOG_NAMESPACE",
f069efb4
LP
645 "MAINPID",
646 "MANAGERPID",
6bb00842
LP
647 "MEMORY_PRESSURE_WATCH",
648 "MEMORY_PRESSURE_WRITE",
c792a2e5
LP
649 "MONITOR_EXIT_CODE",
650 "MONITOR_EXIT_STATUS",
651 "MONITOR_INVOCATION_ID",
652 "MONITOR_SERVICE_RESULT",
653 "MONITOR_UNIT",
47cf8ff2 654 "NOTIFY_SOCKET",
dcf3c3c3 655 "PIDFILE",
47cf8ff2
LP
656 "REMOTE_ADDR",
657 "REMOTE_PORT",
8047ac8f 658 "RUNTIME_DIRECTORY",
47cf8ff2 659 "SERVICE_RESULT",
8047ac8f 660 "STATE_DIRECTORY",
c792a2e5
LP
661 "SYSTEMD_EXEC_PID",
662 "TRIGGER_PATH",
663 "TRIGGER_TIMER_MONOTONIC_USEC",
664 "TRIGGER_TIMER_REALTIME_USEC",
665 "TRIGGER_UNIT",
f069efb4
LP
666 "WATCHDOG_PID",
667 "WATCHDOG_USEC",
668 NULL);
47cf8ff2
LP
669
670 /* Let's order the environment alphabetically, just to make it pretty */
305757d8 671 return strv_sort(l);
f069efb4
LP
672}
673
79a224c4 674int manager_default_environment(Manager *m) {
db11487d
ZJS
675 int r;
676
71ecc858
LP
677 assert(m);
678
1ad6e8b3
LP
679 m->transient_environment = strv_free(m->transient_environment);
680
463d0d15 681 if (MANAGER_IS_SYSTEM(m)) {
c792a2e5
LP
682 /* The system manager always starts with a clean environment for its children. It does not
683 * import the kernel's or the parents' exported variables.
e21fea24 684 *
c792a2e5
LP
685 * The initial passed environment is untouched to keep /proc/self/environ valid; it is used
686 * for tagging the init process inside containers. */
1ad6e8b3 687 m->transient_environment = strv_new("PATH=" DEFAULT_PATH);
db11487d
ZJS
688 if (!m->transient_environment)
689 return log_oom();
e21fea24
KS
690
691 /* Import locale variables LC_*= from configuration */
1ad6e8b3 692 (void) locale_setup(&m->transient_environment);
db11487d 693 } else {
aaf057c4 694 /* The user manager passes its own environment along to its children, except for $PATH. */
1ad6e8b3 695 m->transient_environment = strv_copy(environ);
db11487d
ZJS
696 if (!m->transient_environment)
697 return log_oom();
698
aaf057c4 699 r = strv_env_replace_strdup(&m->transient_environment, "PATH=" DEFAULT_USER_PATH);
db11487d
ZJS
700 if (r < 0)
701 return log_oom();
db11487d 702 }
8b55b8c4 703
1ad6e8b3 704 sanitize_environment(m->transient_environment);
e21fea24 705 return 0;
71ecc858
LP
706}
707
3536f49e
YW
708static int manager_setup_prefix(Manager *m) {
709 struct table_entry {
710 uint64_t type;
711 const char *suffix;
712 };
713
72fd1768 714 static const struct table_entry paths_system[_EXEC_DIRECTORY_TYPE_MAX] = {
9978e631
ZJS
715 [EXEC_DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME, NULL },
716 [EXEC_DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE, NULL },
717 [EXEC_DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE, NULL },
718 [EXEC_DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS, NULL },
3536f49e
YW
719 [EXEC_DIRECTORY_CONFIGURATION] = { SD_PATH_SYSTEM_CONFIGURATION, NULL },
720 };
721
72fd1768 722 static const struct table_entry paths_user[_EXEC_DIRECTORY_TYPE_MAX] = {
9978e631 723 [EXEC_DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME, NULL },
f9c91932 724 [EXEC_DIRECTORY_STATE] = { SD_PATH_USER_STATE_PRIVATE, NULL },
9978e631 725 [EXEC_DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE, NULL },
f9c91932 726 [EXEC_DIRECTORY_LOGS] = { SD_PATH_USER_STATE_PRIVATE, "log" },
9978e631 727 [EXEC_DIRECTORY_CONFIGURATION] = { SD_PATH_USER_CONFIGURATION, NULL },
3536f49e
YW
728 };
729
3536f49e
YW
730 assert(m);
731
24b45970
ZJS
732 const struct table_entry *p = MANAGER_IS_SYSTEM(m) ? paths_system : paths_user;
733 int r;
3536f49e 734
24b45970 735 for (ExecDirectoryType i = 0; i < _EXEC_DIRECTORY_TYPE_MAX; i++) {
51327bcc 736 r = sd_path_lookup(p[i].type, p[i].suffix, &m->prefix[i]);
3536f49e 737 if (r < 0)
998df7ce
ZJS
738 return log_warning_errno(r, "Failed to lookup %s path: %m",
739 exec_directory_type_to_string(i));
3536f49e
YW
740 }
741
742 return 0;
743}
744
e8630e69
ZJS
745static void manager_free_unit_name_maps(Manager *m) {
746 m->unit_id_map = hashmap_free(m->unit_id_map);
747 m->unit_name_map = hashmap_free(m->unit_name_map);
3fb2326f 748 m->unit_path_cache = set_free(m->unit_path_cache);
c2911d48 749 m->unit_cache_timestamp_hash = 0;
e8630e69
ZJS
750}
751
279d81dd
LP
752static int manager_setup_run_queue(Manager *m) {
753 int r;
754
755 assert(m);
756 assert(!m->run_queue_event_source);
757
758 r = sd_event_add_defer(m->event, &m->run_queue_event_source, manager_dispatch_run_queue, m);
759 if (r < 0)
760 return r;
761
762 r = sd_event_source_set_priority(m->run_queue_event_source, SD_EVENT_PRIORITY_IDLE);
763 if (r < 0)
764 return r;
765
766 r = sd_event_source_set_enabled(m->run_queue_event_source, SD_EVENT_OFF);
767 if (r < 0)
768 return r;
769
770 (void) sd_event_source_set_description(m->run_queue_event_source, "manager-run-queue");
771
772 return 0;
773}
774
575b300b
LP
775static int manager_setup_sigchld_event_source(Manager *m) {
776 int r;
777
778 assert(m);
779 assert(!m->sigchld_event_source);
780
781 r = sd_event_add_defer(m->event, &m->sigchld_event_source, manager_dispatch_sigchld, m);
782 if (r < 0)
783 return r;
784
785 r = sd_event_source_set_priority(m->sigchld_event_source, SD_EVENT_PRIORITY_NORMAL-7);
786 if (r < 0)
787 return r;
788
789 r = sd_event_source_set_enabled(m->sigchld_event_source, SD_EVENT_OFF);
790 if (r < 0)
791 return r;
792
793 (void) sd_event_source_set_description(m->sigchld_event_source, "manager-sigchld");
794
795 return 0;
796}
797
29e6b0c1
LP
798int manager_setup_memory_pressure_event_source(Manager *m) {
799 int r;
800
801 assert(m);
802
803 m->memory_pressure_event_source = sd_event_source_disable_unref(m->memory_pressure_event_source);
804
805 r = sd_event_add_memory_pressure(m->event, &m->memory_pressure_event_source, NULL, NULL);
806 if (r < 0)
807 log_full_errno(ERRNO_IS_NOT_SUPPORTED(r) || ERRNO_IS_PRIVILEGE(r) || (r == -EHOSTDOWN) ? LOG_DEBUG : LOG_NOTICE, r,
808 "Failed to establish memory pressure event source, ignoring: %m");
c9e120e0 809 else if (m->defaults.memory_pressure_threshold_usec != USEC_INFINITY) {
6bb00842
LP
810
811 /* If there's a default memory pressure threshold set, also apply it to the service manager itself */
812 r = sd_event_source_set_memory_pressure_period(
813 m->memory_pressure_event_source,
c9e120e0 814 m->defaults.memory_pressure_threshold_usec,
6bb00842
LP
815 MEMORY_PRESSURE_DEFAULT_WINDOW_USEC);
816 if (r < 0)
817 log_warning_errno(r, "Failed to adjust memory pressure threshold, ignoring: %m");
818 }
29e6b0c1
LP
819
820 return 0;
821}
822
2ad591a3
LP
823static int manager_find_credentials_dirs(Manager *m) {
824 const char *e;
825 int r;
826
827 assert(m);
828
829 r = get_credentials_dir(&e);
830 if (r < 0) {
831 if (r != -ENXIO)
832 log_debug_errno(r, "Failed to determine credentials directory, ignoring: %m");
833 } else {
834 m->received_credentials_directory = strdup(e);
835 if (!m->received_credentials_directory)
836 return -ENOMEM;
837 }
838
839 r = get_encrypted_credentials_dir(&e);
840 if (r < 0) {
841 if (r != -ENXIO)
842 log_debug_errno(r, "Failed to determine encrypted credentials directory, ignoring: %m");
843 } else {
844 m->received_encrypted_credentials_directory = strdup(e);
845 if (!m->received_encrypted_credentials_directory)
846 return -ENOMEM;
847 }
848
849 return 0;
850}
851
d35fe8c0 852void manager_set_switching_root(Manager *m, bool switching_root) {
7fa49280
LP
853 assert(m);
854
d35fe8c0
FB
855 m->switching_root = MANAGER_IS_SYSTEM(m) && switching_root;
856}
857
4870133b 858int manager_new(RuntimeScope runtime_scope, ManagerTestRunFlags test_run_flags, Manager **_m) {
c70cac54 859 _cleanup_(manager_freep) Manager *m = NULL;
e3dd987c 860 int r;
8e274523
LP
861
862 assert(_m);
4870133b 863 assert(IN_SET(runtime_scope, RUNTIME_SCOPE_SYSTEM, RUNTIME_SCOPE_USER));
ce578209 864
3ad228ce 865 m = new(Manager, 1);
915b3753 866 if (!m)
8e274523 867 return -ENOMEM;
60918275 868
3ad228ce 869 *m = (Manager) {
4870133b 870 .runtime_scope = runtime_scope,
3ad228ce
LP
871 .objective = _MANAGER_OBJECTIVE_INVALID,
872
36cf4507
ZJS
873 .status_unit_format = STATUS_UNIT_FORMAT_DEFAULT,
874
c9e120e0
LP
875 .defaults = {
876 .timer_accuracy_usec = USEC_PER_MINUTE,
877 .memory_accounting = MEMORY_ACCOUNTING_DEFAULT,
878 .tasks_accounting = true,
879 .tasks_max = TASKS_MAX_UNSET,
880 .timeout_start_usec = manager_default_timeout(runtime_scope),
881 .timeout_stop_usec = manager_default_timeout(runtime_scope),
882 .restart_usec = DEFAULT_RESTART_USEC,
883 .device_timeout_usec = manager_default_timeout(runtime_scope),
884 .oom_policy = OOM_STOP,
885 .memory_pressure_watch = CGROUP_PRESSURE_WATCH_AUTO,
886 .memory_pressure_threshold_usec = USEC_INFINITY,
887 },
3ad228ce
LP
888
889 .original_log_level = -1,
890 .original_log_target = _LOG_TARGET_INVALID,
891
986935cf
FB
892 .watchdog_overridden[WATCHDOG_RUNTIME] = USEC_INFINITY,
893 .watchdog_overridden[WATCHDOG_REBOOT] = USEC_INFINITY,
894 .watchdog_overridden[WATCHDOG_KEXEC] = USEC_INFINITY,
5717062e 895 .watchdog_overridden[WATCHDOG_PRETIMEOUT] = USEC_INFINITY,
986935cf 896
44a41954
FB
897 .show_status_overridden = _SHOW_STATUS_INVALID,
898
254d1313
ZJS
899 .notify_fd = -EBADF,
900 .cgroups_agent_fd = -EBADF,
901 .signal_fd = -EBADF,
19ee48a6 902 .user_lookup_fds = PIPE_EBADF,
254d1313
ZJS
903 .private_listen_fd = -EBADF,
904 .dev_autofs_fd = -EBADF,
905 .cgroup_inotify_fd = -EBADF,
906 .pin_cgroupfs_fd = -EBADF,
907 .ask_password_inotify_fd = -EBADF,
908 .idle_pipe = { -EBADF, -EBADF, -EBADF, -EBADF},
3ad228ce
LP
909
910 /* start as id #1, so that we can leave #0 around as "null-like" value */
911 .current_job_id = 1,
912
913 .have_ask_password = -EINVAL, /* we don't know */
914 .first_boot = -1,
915 .test_run_flags = test_run_flags,
afcfaa69 916
d9365956
LB
917 .dump_ratelimit = {
918 .interval = 10 * USEC_PER_MINUTE,
919 .burst = 10,
920 },
3ad228ce 921 };
80876c20 922
349cc4a5 923#if ENABLE_EFI
463d0d15 924 if (MANAGER_IS_SYSTEM(m) && detect_container() <= 0)
9f9f0342
LP
925 boot_timestamps(m->timestamps + MANAGER_TIMESTAMP_USERSPACE,
926 m->timestamps + MANAGER_TIMESTAMP_FIRMWARE,
927 m->timestamps + MANAGER_TIMESTAMP_LOADER);
463d0d15
LP
928#endif
929
f2341e0a 930 /* Prepare log fields we can use for structured logging */
463d0d15
LP
931 if (MANAGER_IS_SYSTEM(m)) {
932 m->unit_log_field = "UNIT=";
933 m->unit_log_format_string = "UNIT=%s";
4b58153d
LP
934
935 m->invocation_log_field = "INVOCATION_ID=";
f1c50bec 936 m->invocation_log_format_string = "INVOCATION_ID=%s";
463d0d15
LP
937 } else {
938 m->unit_log_field = "USER_UNIT=";
939 m->unit_log_format_string = "USER_UNIT=%s";
4b58153d
LP
940
941 m->invocation_log_field = "USER_INVOCATION_ID=";
f1c50bec 942 m->invocation_log_format_string = "USER_INVOCATION_ID=%s";
463d0d15 943 }
f2341e0a 944
2e5c94b9 945 /* Reboot immediately if the user hits C-A-D more often than 7x per 2s */
7d1e61ca 946 m->ctrl_alt_del_ratelimit = (const RateLimit) { .interval = 2 * USEC_PER_SEC, .burst = 7 };
2e5c94b9 947
e21fea24
KS
948 r = manager_default_environment(m);
949 if (r < 0)
c70cac54 950 return r;
1137a57c 951
d5099efc 952 r = hashmap_ensure_allocated(&m->units, &string_hash_ops);
718db961 953 if (r < 0)
c70cac54 954 return r;
60918275 955
548f6937 956 r = hashmap_ensure_allocated(&m->cgroup_unit, &path_hash_ops);
718db961 957 if (r < 0)
c70cac54 958 return r;
9152c765 959
d5099efc 960 r = hashmap_ensure_allocated(&m->watch_bus, &string_hash_ops);
718db961 961 if (r < 0)
c70cac54 962 return r;
05e343b7 963
da8e1782
MO
964 r = prioq_ensure_allocated(&m->run_queue, compare_job_priority);
965 if (r < 0)
966 return r;
967
e8112e67 968 r = manager_setup_prefix(m);
718db961 969 if (r < 0)
c70cac54 970 return r;
8742514c 971
2ad591a3
LP
972 r = manager_find_credentials_dirs(m);
973 if (r < 0)
974 return r;
bb0c0d6f 975
e8112e67 976 r = sd_event_default(&m->event);
8742514c 977 if (r < 0)
c70cac54 978 return r;
9152c765 979
e8112e67 980 r = manager_setup_run_queue(m);
a1d32bac 981 if (r < 0)
c70cac54 982 return r;
8e274523 983
5dd2f5ff 984 if (FLAGS_SET(test_run_flags, MANAGER_TEST_RUN_MINIMAL)) {
e8112e67
ZJS
985 m->cgroup_root = strdup("");
986 if (!m->cgroup_root)
987 return -ENOMEM;
988 } else {
989 r = manager_setup_signals(m);
990 if (r < 0)
991 return r;
8c47c732 992
e8112e67
ZJS
993 r = manager_setup_cgroup(m);
994 if (r < 0)
995 return r;
575b300b 996
e8112e67
ZJS
997 r = manager_setup_time_change(m);
998 if (r < 0)
999 return r;
9670d583 1000
bbf5fd8e
LP
1001 r = manager_read_timezone_stat(m);
1002 if (r < 0)
1003 return r;
1004
ea5c5f68 1005 (void) manager_setup_timezone_change(m);
bbf5fd8e 1006
e8112e67
ZJS
1007 r = manager_setup_sigchld_event_source(m);
1008 if (r < 0)
1009 return r;
b1994387 1010
29e6b0c1
LP
1011 r = manager_setup_memory_pressure_event_source(m);
1012 if (r < 0)
1013 return r;
1014
b1994387 1015#if HAVE_LIBBPF
ba187c9c 1016 if (MANAGER_IS_SYSTEM(m) && lsm_bpf_supported(/* initialize = */ true)) {
b1994387
ILG
1017 r = lsm_bpf_setup(m);
1018 if (r < 0)
299d9417 1019 log_warning_errno(r, "Failed to setup LSM BPF, ignoring: %m");
b1994387
ILG
1020 }
1021#endif
e8112e67 1022 }
e27fe688 1023
2f8c48b6
AZ
1024 if (test_run_flags == 0) {
1025 if (MANAGER_IS_SYSTEM(m))
1026 r = mkdir_label("/run/systemd/units", 0755);
1027 else {
1028 _cleanup_free_ char *units_path = NULL;
1029 r = xdg_user_runtime_dir(&units_path, "/systemd/units");
1030 if (r < 0)
1031 return r;
1032 r = mkdir_p_label(units_path, 0755);
1033 }
1034
d3070fbd 1035 if (r < 0 && r != -EEXIST)
c70cac54 1036 return r;
d3070fbd
LP
1037 }
1038
232f6754
ZJS
1039 /* Note that we do not set up the notify fd here. We do that after deserialization,
1040 * since they might have gotten serialized across the reexec. */
3536f49e 1041
1cc6c93a
YW
1042 *_m = TAKE_PTR(m);
1043
8e274523 1044 return 0;
60918275
LP
1045}
1046
d86f9d52 1047static int manager_setup_notify(Manager *m) {
7181dbdb 1048 int r;
d86f9d52 1049
638cece4 1050 if (MANAGER_IS_TEST_RUN(m))
0d8c31ff
ZJS
1051 return 0;
1052
d86f9d52 1053 if (m->notify_fd < 0) {
254d1313 1054 _cleanup_close_ int fd = -EBADF;
f36a9d59
ZJS
1055 union sockaddr_union sa;
1056 socklen_t sa_len;
d86f9d52
LP
1057
1058 /* First free all secondary fields */
a1e58e8e 1059 m->notify_socket = mfree(m->notify_socket);
5dcadb4c 1060 m->notify_event_source = sd_event_source_disable_unref(m->notify_event_source);
d86f9d52
LP
1061
1062 fd = socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0);
4a62c710
MS
1063 if (fd < 0)
1064 return log_error_errno(errno, "Failed to allocate notification socket: %m");
d86f9d52 1065
28e7e934 1066 fd_increase_rxbuf(fd, NOTIFY_RCVBUF_SIZE);
a47806fa 1067
b910cc72 1068 m->notify_socket = path_join(m->prefix[EXEC_DIRECTORY_RUNTIME], "systemd/notify");
498e87d6
LP
1069 if (!m->notify_socket)
1070 return log_oom();
1071
f36a9d59
ZJS
1072 r = sockaddr_un_set_path(&sa.un, m->notify_socket);
1073 if (r < 0)
1074 return log_error_errno(r, "Notify socket '%s' not valid for AF_UNIX socket address, refusing.",
1075 m->notify_socket);
1076 sa_len = r;
15a3e96f 1077
498e87d6 1078 (void) mkdir_parents_label(m->notify_socket, 0755);
fbda85b0 1079 (void) sockaddr_un_unlink(&sa.un);
7181dbdb 1080
45ae2f72 1081 r = mac_selinux_bind(fd, &sa.sa, sa_len);
4a62c710 1082 if (r < 0)
45ae2f72 1083 return log_error_errno(r, "bind(%s) failed: %m", m->notify_socket);
d86f9d52 1084
2ff48e98 1085 r = setsockopt_int(fd, SOL_SOCKET, SO_PASSCRED, true);
4a62c710 1086 if (r < 0)
2ff48e98 1087 return log_error_errno(r, "SO_PASSCRED failed: %m");
d86f9d52 1088
c10d6bdb 1089 m->notify_fd = TAKE_FD(fd);
d86f9d52
LP
1090
1091 log_debug("Using notification socket %s", m->notify_socket);
1092 }
1093
1094 if (!m->notify_event_source) {
151b9b96 1095 r = sd_event_add_io(m->event, &m->notify_event_source, m->notify_fd, EPOLLIN, manager_dispatch_notify_fd, m);
895b3a7b
MS
1096 if (r < 0)
1097 return log_error_errno(r, "Failed to allocate notify event source: %m");
d86f9d52 1098
d8fdc620
LP
1099 /* Process notification messages a bit earlier than SIGCHLD, so that we can still identify to which
1100 * service an exit message belongs. */
575b300b 1101 r = sd_event_source_set_priority(m->notify_event_source, SD_EVENT_PRIORITY_NORMAL-8);
23bbb0de
MS
1102 if (r < 0)
1103 return log_error_errno(r, "Failed to set priority of notify event source: %m");
7dfbe2e3
TG
1104
1105 (void) sd_event_source_set_description(m->notify_event_source, "manager-notify");
d86f9d52
LP
1106 }
1107
1108 return 0;
1109}
1110
d8fdc620
LP
1111static int manager_setup_cgroups_agent(Manager *m) {
1112
1113 static const union sockaddr_union sa = {
1114 .un.sun_family = AF_UNIX,
1115 .un.sun_path = "/run/systemd/cgroups-agent",
1116 };
1117 int r;
1118
1119 /* This creates a listening socket we receive cgroups agent messages on. We do not use D-Bus for delivering
1120 * these messages from the cgroups agent binary to PID 1, as the cgroups agent binary is very short-living, and
1121 * each instance of it needs a new D-Bus connection. Since D-Bus connections are SOCK_STREAM/AF_UNIX, on
1122 * overloaded systems the backlog of the D-Bus socket becomes relevant, as not more than the configured number
1123 * of D-Bus connections may be queued until the kernel will start dropping further incoming connections,
1124 * possibly resulting in lost cgroups agent messages. To avoid this, we'll use a private SOCK_DGRAM/AF_UNIX
1125 * socket, where no backlog is relevant as communication may take place without an actual connect() cycle, and
1126 * we thus won't lose messages.
1127 *
1128 * Note that PID 1 will forward the agent message to system bus, so that the user systemd instance may listen
1129 * to it. The system instance hence listens on this special socket, but the user instances listen on the system
1130 * bus for these messages. */
1131
638cece4 1132 if (MANAGER_IS_TEST_RUN(m))
d8fdc620
LP
1133 return 0;
1134
1135 if (!MANAGER_IS_SYSTEM(m))
1136 return 0;
1137
c22800e4 1138 r = cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER);
b4cccbc1
LP
1139 if (r < 0)
1140 return log_error_errno(r, "Failed to determine whether unified cgroups hierarchy is used: %m");
1141 if (r > 0) /* We don't need this anymore on the unified hierarchy */
d8fdc620
LP
1142 return 0;
1143
1144 if (m->cgroups_agent_fd < 0) {
254d1313 1145 _cleanup_close_ int fd = -EBADF;
d8fdc620
LP
1146
1147 /* First free all secondary fields */
5dcadb4c 1148 m->cgroups_agent_event_source = sd_event_source_disable_unref(m->cgroups_agent_event_source);
d8fdc620
LP
1149
1150 fd = socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0);
1151 if (fd < 0)
1152 return log_error_errno(errno, "Failed to allocate cgroups agent socket: %m");
1153
28e7e934 1154 fd_increase_rxbuf(fd, CGROUPS_AGENT_RCVBUF_SIZE);
d8fdc620 1155
155b6876 1156 (void) sockaddr_un_unlink(&sa.un);
d8fdc620
LP
1157
1158 /* Only allow root to connect to this socket */
2053593f 1159 WITH_UMASK(0077)
fc2fffe7 1160 r = bind(fd, &sa.sa, SOCKADDR_UN_LEN(sa.un));
d8fdc620
LP
1161 if (r < 0)
1162 return log_error_errno(errno, "bind(%s) failed: %m", sa.un.sun_path);
1163
0b7e8b32 1164 m->cgroups_agent_fd = TAKE_FD(fd);
d8fdc620
LP
1165 }
1166
1167 if (!m->cgroups_agent_event_source) {
1168 r = sd_event_add_io(m->event, &m->cgroups_agent_event_source, m->cgroups_agent_fd, EPOLLIN, manager_dispatch_cgroups_agent_fd, m);
1169 if (r < 0)
1170 return log_error_errno(r, "Failed to allocate cgroups agent event source: %m");
1171
cbe83389
LP
1172 /* Process cgroups notifications early. Note that when the agent notification is received
1173 * we'll just enqueue the unit in the cgroup empty queue, hence pick a high priority than
1174 * that. Also see handling of cgroup inotify for the unified cgroup stuff. */
1175 r = sd_event_source_set_priority(m->cgroups_agent_event_source, SD_EVENT_PRIORITY_NORMAL-9);
d8fdc620
LP
1176 if (r < 0)
1177 return log_error_errno(r, "Failed to set priority of cgroups agent event source: %m");
1178
1179 (void) sd_event_source_set_description(m->cgroups_agent_event_source, "manager-cgroups-agent");
1180 }
1181
1182 return 0;
1183}
1184
00d9ef85
LP
1185static int manager_setup_user_lookup_fd(Manager *m) {
1186 int r;
1187
1188 assert(m);
1189
1190 /* Set up the socket pair used for passing UID/GID resolution results from forked off processes to PID
1191 * 1. Background: we can't do name lookups (NSS) from PID 1, since it might involve IPC and thus activation,
1192 * and we might hence deadlock on ourselves. Hence we do all user/group lookups asynchronously from the forked
1193 * off processes right before executing the binaries to start. In order to be able to clean up any IPC objects
1194 * created by a unit (see RemoveIPC=) we need to know in PID 1 the used UID/GID of the executed processes,
1195 * hence we establish this communication channel so that forked off processes can pass their UID/GID
1196 * information back to PID 1. The forked off processes send their resolved UID/GID to PID 1 in a simple
1197 * datagram, along with their unit name, so that we can share one communication socket pair among all units for
1198 * this purpose.
1199 *
1200 * You might wonder why we need a communication channel for this that is independent of the usual notification
1201 * socket scheme (i.e. $NOTIFY_SOCKET). The primary difference is about trust: data sent via the $NOTIFY_SOCKET
1202 * channel is only accepted if it originates from the right unit and if reception was enabled for it. The user
1203 * lookup socket OTOH is only accessible by PID 1 and its children until they exec(), and always available.
1204 *
1205 * Note that this function is called under two circumstances: when we first initialize (in which case we
1206 * allocate both the socket pair and the event source to listen on it), and when we deserialize after a reload
1207 * (in which case the socket pair already exists but we still need to allocate the event source for it). */
1208
1209 if (m->user_lookup_fds[0] < 0) {
1210
1211 /* Free all secondary fields */
1212 safe_close_pair(m->user_lookup_fds);
5dcadb4c 1213 m->user_lookup_event_source = sd_event_source_disable_unref(m->user_lookup_event_source);
00d9ef85
LP
1214
1215 if (socketpair(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0, m->user_lookup_fds) < 0)
1216 return log_error_errno(errno, "Failed to allocate user lookup socket: %m");
1217
28e7e934 1218 (void) fd_increase_rxbuf(m->user_lookup_fds[0], NOTIFY_RCVBUF_SIZE);
00d9ef85
LP
1219 }
1220
1221 if (!m->user_lookup_event_source) {
1222 r = sd_event_add_io(m->event, &m->user_lookup_event_source, m->user_lookup_fds[0], EPOLLIN, manager_dispatch_user_lookup_fd, m);
1223 if (r < 0)
1224 return log_error_errno(errno, "Failed to allocate user lookup event source: %m");
1225
1226 /* Process even earlier than the notify event source, so that we always know first about valid UID/GID
1227 * resolutions */
67ae4e8d 1228 r = sd_event_source_set_priority(m->user_lookup_event_source, SD_EVENT_PRIORITY_NORMAL-11);
00d9ef85 1229 if (r < 0)
5238e957 1230 return log_error_errno(errno, "Failed to set priority of user lookup event source: %m");
00d9ef85
LP
1231
1232 (void) sd_event_source_set_description(m->user_lookup_event_source, "user-lookup");
1233 }
1234
1235 return 0;
1236}
1237
23a177ef 1238static unsigned manager_dispatch_cleanup_queue(Manager *m) {
595ed347 1239 Unit *u;
23a177ef
LP
1240 unsigned n = 0;
1241
1242 assert(m);
1243
595ed347
MS
1244 while ((u = m->cleanup_queue)) {
1245 assert(u->in_cleanup_queue);
23a177ef 1246
595ed347 1247 unit_free(u);
23a177ef
LP
1248 n++;
1249 }
1250
1251 return n;
1252}
1253
6ac62d61
LP
1254static unsigned manager_dispatch_release_resources_queue(Manager *m) {
1255 unsigned n = 0;
1256 Unit *u;
1257
1258 assert(m);
1259
52e3671b 1260 while ((u = LIST_POP(release_resources_queue, m->release_resources_queue))) {
6ac62d61 1261 assert(u->in_release_resources_queue);
6ac62d61
LP
1262 u->in_release_resources_queue = false;
1263
1264 n++;
1265
1266 unit_release_resources(u);
1267 }
1268
1269 return n;
1270}
1271
eced69b3 1272enum {
35b8ca3a 1273 GC_OFFSET_IN_PATH, /* This one is on the path we were traveling */
eced69b3
LP
1274 GC_OFFSET_UNSURE, /* No clue */
1275 GC_OFFSET_GOOD, /* We still need this unit */
1276 GC_OFFSET_BAD, /* We don't need this unit anymore */
1277 _GC_OFFSET_MAX
1278};
1279
00d9ef85 1280static void unit_gc_mark_good(Unit *u, unsigned gc_marker) {
4892084f
LN
1281 Unit *other;
1282
1283 u->gc_marker = gc_marker + GC_OFFSET_GOOD;
1284
1285 /* Recursively mark referenced units as GOOD as well */
15ed3c3a 1286 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_REFERENCES)
4892084f
LN
1287 if (other->gc_marker == gc_marker + GC_OFFSET_UNSURE)
1288 unit_gc_mark_good(other, gc_marker);
1289}
1290
eced69b3 1291static void unit_gc_sweep(Unit *u, unsigned gc_marker) {
701cc384 1292 Unit *other;
eced69b3 1293 bool is_bad;
701cc384
LP
1294
1295 assert(u);
1296
4c701096
YW
1297 if (IN_SET(u->gc_marker - gc_marker,
1298 GC_OFFSET_GOOD, GC_OFFSET_BAD, GC_OFFSET_UNSURE, GC_OFFSET_IN_PATH))
701cc384
LP
1299 return;
1300
ac155bb8 1301 if (u->in_cleanup_queue)
701cc384
LP
1302 goto bad;
1303
f2f725e5 1304 if (!unit_may_gc(u))
701cc384
LP
1305 goto good;
1306
ac155bb8 1307 u->gc_marker = gc_marker + GC_OFFSET_IN_PATH;
eced69b3
LP
1308
1309 is_bad = true;
1310
15ed3c3a 1311 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_REFERENCED_BY) {
701cc384
LP
1312 unit_gc_sweep(other, gc_marker);
1313
ac155bb8 1314 if (other->gc_marker == gc_marker + GC_OFFSET_GOOD)
701cc384 1315 goto good;
eced69b3 1316
ac155bb8 1317 if (other->gc_marker != gc_marker + GC_OFFSET_BAD)
eced69b3 1318 is_bad = false;
701cc384
LP
1319 }
1320
ef3fc326
ZJS
1321 LIST_FOREACH(refs_by_target, ref, u->refs_by_target) {
1322 unit_gc_sweep(ref->source, gc_marker);
2641f02e 1323
ef3fc326
ZJS
1324 if (ref->source->gc_marker == gc_marker + GC_OFFSET_GOOD)
1325 goto good;
2641f02e 1326
ef3fc326
ZJS
1327 if (ref->source->gc_marker != gc_marker + GC_OFFSET_BAD)
1328 is_bad = false;
2641f02e 1329 }
701cc384 1330
eced69b3
LP
1331 if (is_bad)
1332 goto bad;
1333
1334 /* We were unable to find anything out about this entry, so
1335 * let's investigate it later */
ac155bb8 1336 u->gc_marker = gc_marker + GC_OFFSET_UNSURE;
eced69b3
LP
1337 unit_add_to_gc_queue(u);
1338 return;
1339
701cc384 1340bad:
eced69b3
LP
1341 /* We definitely know that this one is not useful anymore, so
1342 * let's mark it for deletion */
ac155bb8 1343 u->gc_marker = gc_marker + GC_OFFSET_BAD;
eced69b3 1344 unit_add_to_cleanup_queue(u);
701cc384
LP
1345 return;
1346
1347good:
4892084f 1348 unit_gc_mark_good(u, gc_marker);
701cc384
LP
1349}
1350
c5a97ed1
LP
1351static unsigned manager_dispatch_gc_unit_queue(Manager *m) {
1352 unsigned n = 0, gc_marker;
595ed347 1353 Unit *u;
701cc384
LP
1354
1355 assert(m);
1356
cf1265e1 1357 /* log_debug("Running GC..."); */
701cc384 1358
eced69b3
LP
1359 m->gc_marker += _GC_OFFSET_MAX;
1360 if (m->gc_marker + _GC_OFFSET_MAX <= _GC_OFFSET_MAX)
c9c0cadb 1361 m->gc_marker = 1;
701cc384 1362
eced69b3
LP
1363 gc_marker = m->gc_marker;
1364
52e3671b 1365 while ((u = LIST_POP(gc_queue, m->gc_unit_queue))) {
595ed347 1366 assert(u->in_gc_queue);
701cc384 1367
595ed347 1368 unit_gc_sweep(u, gc_marker);
eced69b3 1369
595ed347 1370 u->in_gc_queue = false;
701cc384
LP
1371
1372 n++;
1373
4c701096
YW
1374 if (IN_SET(u->gc_marker - gc_marker,
1375 GC_OFFSET_BAD, GC_OFFSET_UNSURE)) {
cc3bc3e6 1376 if (u->id)
f2341e0a 1377 log_unit_debug(u, "Collecting.");
595ed347
MS
1378 u->gc_marker = gc_marker + GC_OFFSET_BAD;
1379 unit_add_to_cleanup_queue(u);
701cc384
LP
1380 }
1381 }
1382
701cc384
LP
1383 return n;
1384}
1385
c5a97ed1
LP
1386static unsigned manager_dispatch_gc_job_queue(Manager *m) {
1387 unsigned n = 0;
1388 Job *j;
1389
1390 assert(m);
1391
52e3671b 1392 while ((j = LIST_POP(gc_queue, m->gc_job_queue))) {
c5a97ed1 1393 assert(j->in_gc_queue);
c5a97ed1
LP
1394 j->in_gc_queue = false;
1395
1396 n++;
1397
2ab3050f 1398 if (!job_may_gc(j))
c5a97ed1
LP
1399 continue;
1400
1401 log_unit_debug(j->unit, "Collecting job.");
1402 (void) job_finish_and_invalidate(j, JOB_COLLECTED, false, false);
1403 }
1404
1405 return n;
1406}
1407
7223d500
LB
1408static int manager_ratelimit_requeue(sd_event_source *s, uint64_t usec, void *userdata) {
1409 Unit *u = userdata;
1410
1411 assert(u);
1412 assert(s == u->auto_start_stop_event_source);
1413
1414 u->auto_start_stop_event_source = sd_event_source_unref(u->auto_start_stop_event_source);
1415
1416 /* Re-queue to all queues, if the rate limit hit we might have been throttled on any of them. */
1417 unit_submit_to_stop_when_unneeded_queue(u);
1418 unit_submit_to_start_when_upheld_queue(u);
1419 unit_submit_to_stop_when_bound_queue(u);
1420
1421 return 0;
1422}
1423
1424static int manager_ratelimit_check_and_queue(Unit *u) {
1425 int r;
1426
1427 assert(u);
1428
1429 if (ratelimit_below(&u->auto_start_stop_ratelimit))
1430 return 1;
1431
1432 /* Already queued, no need to requeue */
1433 if (u->auto_start_stop_event_source)
1434 return 0;
1435
1436 r = sd_event_add_time(
1437 u->manager->event,
1438 &u->auto_start_stop_event_source,
1439 CLOCK_MONOTONIC,
1440 ratelimit_end(&u->auto_start_stop_ratelimit),
1441 0,
1442 manager_ratelimit_requeue,
1443 u);
1444 if (r < 0)
1445 return log_unit_error_errno(u, r, "Failed to queue timer on event loop: %m");
1446
1447 return 0;
1448}
1449
a3c1168a
LP
1450static unsigned manager_dispatch_stop_when_unneeded_queue(Manager *m) {
1451 unsigned n = 0;
1452 Unit *u;
1453 int r;
1454
1455 assert(m);
1456
52e3671b 1457 while ((u = LIST_POP(stop_when_unneeded_queue, m->stop_when_unneeded_queue))) {
a3c1168a 1458 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
a3c1168a
LP
1459
1460 assert(u->in_stop_when_unneeded_queue);
a3c1168a
LP
1461 u->in_stop_when_unneeded_queue = false;
1462
1463 n++;
1464
1465 if (!unit_is_unneeded(u))
1466 continue;
1467
1468 log_unit_debug(u, "Unit is not needed anymore.");
1469
1470 /* If stopping a unit fails continuously we might enter a stop loop here, hence stop acting on the
1471 * service being unnecessary after a while. */
1472
7223d500
LB
1473 r = manager_ratelimit_check_and_queue(u);
1474 if (r <= 0) {
1475 log_unit_warning(u,
1476 "Unit not needed anymore, but not stopping since we tried this too often recently.%s",
1477 r == 0 ? " Will retry later." : "");
a3c1168a
LP
1478 continue;
1479 }
1480
1481 /* Ok, nobody needs us anymore. Sniff. Then let's commit suicide */
50cbaba4 1482 r = manager_add_job(u->manager, JOB_STOP, u, JOB_FAIL, NULL, &error, NULL);
a3c1168a
LP
1483 if (r < 0)
1484 log_unit_warning_errno(u, r, "Failed to enqueue stop job, ignoring: %s", bus_error_message(&error, r));
1485 }
1486
1487 return n;
1488}
1489
0bc488c9
LP
1490static unsigned manager_dispatch_start_when_upheld_queue(Manager *m) {
1491 unsigned n = 0;
1492 Unit *u;
1493 int r;
1494
1495 assert(m);
1496
52e3671b 1497 while ((u = LIST_POP(start_when_upheld_queue, m->start_when_upheld_queue))) {
0bc488c9
LP
1498 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1499 Unit *culprit = NULL;
1500
1501 assert(u->in_start_when_upheld_queue);
0bc488c9
LP
1502 u->in_start_when_upheld_queue = false;
1503
1504 n++;
1505
1506 if (!unit_is_upheld_by_active(u, &culprit))
1507 continue;
1508
1509 log_unit_debug(u, "Unit is started because upheld by active unit %s.", culprit->id);
1510
1511 /* If stopping a unit fails continuously we might enter a stop loop here, hence stop acting on the
1512 * service being unnecessary after a while. */
1513
7223d500
LB
1514 r = manager_ratelimit_check_and_queue(u);
1515 if (r <= 0) {
1516 log_unit_warning(u,
1517 "Unit needs to be started because active unit %s upholds it, but not starting since we tried this too often recently.%s",
1518 culprit->id,
1519 r == 0 ? " Will retry later." : "");
0bc488c9
LP
1520 continue;
1521 }
1522
1523 r = manager_add_job(u->manager, JOB_START, u, JOB_FAIL, NULL, &error, NULL);
1524 if (r < 0)
1525 log_unit_warning_errno(u, r, "Failed to enqueue start job, ignoring: %s", bus_error_message(&error, r));
1526 }
1527
1528 return n;
1529}
1530
56c59592
LP
1531static unsigned manager_dispatch_stop_when_bound_queue(Manager *m) {
1532 unsigned n = 0;
1533 Unit *u;
1534 int r;
1535
1536 assert(m);
1537
52e3671b 1538 while ((u = LIST_POP(stop_when_bound_queue, m->stop_when_bound_queue))) {
56c59592
LP
1539 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1540 Unit *culprit = NULL;
1541
1542 assert(u->in_stop_when_bound_queue);
56c59592
LP
1543 u->in_stop_when_bound_queue = false;
1544
1545 n++;
1546
1547 if (!unit_is_bound_by_inactive(u, &culprit))
1548 continue;
1549
1550 log_unit_debug(u, "Unit is stopped because bound to inactive unit %s.", culprit->id);
1551
1552 /* If stopping a unit fails continuously we might enter a stop loop here, hence stop acting on the
1553 * service being unnecessary after a while. */
1554
7223d500
LB
1555 r = manager_ratelimit_check_and_queue(u);
1556 if (r <= 0) {
1557 log_unit_warning(u,
1558 "Unit needs to be stopped because it is bound to inactive unit %s it, but not stopping since we tried this too often recently.%s",
1559 culprit->id,
1560 r == 0 ? " Will retry later." : "");
56c59592
LP
1561 continue;
1562 }
1563
1564 r = manager_add_job(u->manager, JOB_STOP, u, JOB_REPLACE, NULL, &error, NULL);
1565 if (r < 0)
1566 log_unit_warning_errno(u, r, "Failed to enqueue stop job, ignoring: %s", bus_error_message(&error, r));
1567 }
1568
1569 return n;
1570}
1571
a16e1123 1572static void manager_clear_jobs_and_units(Manager *m) {
a16e1123 1573 Unit *u;
60918275
LP
1574
1575 assert(m);
1576
87f0e418
LP
1577 while ((u = hashmap_first(m->units)))
1578 unit_free(u);
964e0949
LP
1579
1580 manager_dispatch_cleanup_queue(m);
1581
1582 assert(!m->load_queue);
da8e1782 1583 assert(prioq_isempty(m->run_queue));
964e0949
LP
1584 assert(!m->dbus_unit_queue);
1585 assert(!m->dbus_job_queue);
1586 assert(!m->cleanup_queue);
c5a97ed1
LP
1587 assert(!m->gc_unit_queue);
1588 assert(!m->gc_job_queue);
13e72103
MK
1589 assert(!m->cgroup_realize_queue);
1590 assert(!m->cgroup_empty_queue);
1591 assert(!m->cgroup_oom_queue);
1592 assert(!m->target_deps_queue);
a3c1168a 1593 assert(!m->stop_when_unneeded_queue);
0bc488c9 1594 assert(!m->start_when_upheld_queue);
56c59592 1595 assert(!m->stop_when_bound_queue);
cb3c6aec 1596 assert(!m->release_resources_queue);
964e0949 1597
964e0949
LP
1598 assert(hashmap_isempty(m->jobs));
1599 assert(hashmap_isempty(m->units));
9e9e2b72
MS
1600
1601 m->n_on_console = 0;
1602 m->n_running_jobs = 0;
1e75824c
MK
1603 m->n_installed_jobs = 0;
1604 m->n_failed_jobs = 0;
a16e1123
LP
1605}
1606
06d8d842 1607Manager* manager_free(Manager *m) {
06d8d842
ZJS
1608 if (!m)
1609 return NULL;
a16e1123
LP
1610
1611 manager_clear_jobs_and_units(m);
23a177ef 1612
24b45970 1613 for (UnitType c = 0; c < _UNIT_TYPE_MAX; c++)
7824bbeb
LP
1614 if (unit_vtable[c]->shutdown)
1615 unit_vtable[c]->shutdown(m);
1616
86036b26 1617 /* Keep the cgroup hierarchy in place except when we know we are going down for good */
13ffc607 1618 manager_shutdown_cgroup(m, /* delete= */ IN_SET(m->objective, MANAGER_EXIT, MANAGER_REBOOT, MANAGER_POWEROFF, MANAGER_HALT, MANAGER_KEXEC));
8e274523 1619
07a78643 1620 lookup_paths_flush_generator(&m->lookup_paths);
5a1e9937 1621
5e8d1c9a 1622 bus_done(m);
19d22d43 1623 manager_varlink_done(m);
ea430986 1624
e76506b7
DDM
1625 exec_shared_runtime_vacuum(m);
1626 hashmap_free(m->exec_shared_runtime_by_id);
e8a565cb 1627
29206d46
LP
1628 dynamic_user_vacuum(m, false);
1629 hashmap_free(m->dynamic_users);
1630
87f0e418 1631 hashmap_free(m->units);
4b58153d 1632 hashmap_free(m->units_by_invocation_id);
60918275 1633 hashmap_free(m->jobs);
62a76913 1634 hashmap_free(m->watch_pids);
05e343b7 1635 hashmap_free(m->watch_bus);
9152c765 1636
da8e1782
MO
1637 prioq_free(m->run_queue);
1638
95ae05c0 1639 set_free(m->startup_units);
f755e3b7
LP
1640 set_free(m->failed_units);
1641
718db961 1642 sd_event_source_unref(m->signal_event_source);
575b300b 1643 sd_event_source_unref(m->sigchld_event_source);
718db961 1644 sd_event_source_unref(m->notify_event_source);
d8fdc620 1645 sd_event_source_unref(m->cgroups_agent_event_source);
718db961 1646 sd_event_source_unref(m->time_change_event_source);
bbf5fd8e 1647 sd_event_source_unref(m->timezone_change_event_source);
718db961 1648 sd_event_source_unref(m->jobs_in_progress_event_source);
752b5905 1649 sd_event_source_unref(m->run_queue_event_source);
00d9ef85 1650 sd_event_source_unref(m->user_lookup_event_source);
29e6b0c1 1651 sd_event_source_unref(m->memory_pressure_event_source);
718db961 1652
03e334a1
LP
1653 safe_close(m->signal_fd);
1654 safe_close(m->notify_fd);
d8fdc620 1655 safe_close(m->cgroups_agent_fd);
00d9ef85 1656 safe_close_pair(m->user_lookup_fds);
718db961 1657
e46b13c8
ZJS
1658 manager_close_ask_password(m);
1659
718db961
LP
1660 manager_close_idle_pipe(m);
1661
1662 sd_event_unref(m->event);
60918275 1663
c952c6ec
LP
1664 free(m->notify_socket);
1665
84e3543e 1666 lookup_paths_free(&m->lookup_paths);
1ad6e8b3
LP
1667 strv_free(m->transient_environment);
1668 strv_free(m->client_environment);
036643a2 1669
4ad49000 1670 hashmap_free(m->cgroup_unit);
e8630e69 1671 manager_free_unit_name_maps(m);
33be102a 1672
664f88a7
LP
1673 free(m->switch_root);
1674 free(m->switch_root_init);
1675
c9e120e0 1676 unit_defaults_done(&m->defaults);
c93ff2e9 1677
a57f7e2c
LP
1678 assert(hashmap_isempty(m->units_requiring_mounts_for));
1679 hashmap_free(m->units_requiring_mounts_for);
1680
00d9ef85
LP
1681 hashmap_free(m->uid_refs);
1682 hashmap_free(m->gid_refs);
1683
24b45970 1684 for (ExecDirectoryType dt = 0; dt < _EXEC_DIRECTORY_TYPE_MAX; dt++)
35aba85a 1685 m->prefix[dt] = mfree(m->prefix[dt]);
2ad591a3
LP
1686 free(m->received_credentials_directory);
1687 free(m->received_encrypted_credentials_directory);
35aba85a 1688
aff3a9e1
LB
1689 free(m->watchdog_pretimeout_governor);
1690 free(m->watchdog_pretimeout_governor_overridden);
1691
b1994387
ILG
1692#if BPF_FRAMEWORK
1693 lsm_bpf_destroy(m->restrict_fs);
1694#endif
1695
6b430fdb 1696 return mfree(m);
60918275
LP
1697}
1698
04eb582a 1699static void manager_enumerate_perpetual(Manager *m) {
04eb582a
LP
1700 assert(m);
1701
1545051c 1702 if (FLAGS_SET(m->test_run_flags, MANAGER_TEST_RUN_MINIMAL))
b1d5246d
ZJS
1703 return;
1704
04eb582a 1705 /* Let's ask every type to load all units from disk/kernel that it might know */
24b45970 1706 for (UnitType c = 0; c < _UNIT_TYPE_MAX; c++) {
04eb582a
LP
1707 if (!unit_type_supported(c)) {
1708 log_debug("Unit type .%s is not supported on this system.", unit_type_to_string(c));
1709 continue;
1710 }
1711
1712 if (unit_vtable[c]->enumerate_perpetual)
1713 unit_vtable[c]->enumerate_perpetual(m);
1714 }
1715}
1716
a1113e08 1717static void manager_enumerate(Manager *m) {
f50e0a01
LP
1718 assert(m);
1719
1545051c 1720 if (FLAGS_SET(m->test_run_flags, MANAGER_TEST_RUN_MINIMAL))
b1d5246d
ZJS
1721 return;
1722
04eb582a 1723 /* Let's ask every type to load all units from disk/kernel that it might know */
24b45970 1724 for (UnitType c = 0; c < _UNIT_TYPE_MAX; c++) {
1c2e9646 1725 if (!unit_type_supported(c)) {
03afec3c 1726 log_debug("Unit type .%s is not supported on this system.", unit_type_to_string(c));
0faacd47 1727 continue;
a57f7e2c 1728 }
f50e0a01 1729
94b01dae
ZJS
1730 if (unit_vtable[c]->enumerate)
1731 unit_vtable[c]->enumerate(m);
0faacd47
LP
1732 }
1733
f50e0a01 1734 manager_dispatch_load_queue(m);
a16e1123
LP
1735}
1736
007c6337 1737static void manager_coldplug(Manager *m) {
a16e1123
LP
1738 Unit *u;
1739 char *k;
007c6337 1740 int r;
a16e1123
LP
1741
1742 assert(m);
f50e0a01 1743
28e5e1e9 1744 log_debug("Invoking unit coldplug() handlers%s", special_glyph(SPECIAL_GLYPH_ELLIPSIS));
f0831ed2
LP
1745
1746 /* Let's place the units back into their deserialized state */
90e74a66 1747 HASHMAP_FOREACH_KEY(u, k, m->units) {
f50e0a01
LP
1748
1749 /* ignore aliases */
ac155bb8 1750 if (u->id != k)
f50e0a01
LP
1751 continue;
1752
007c6337
LP
1753 r = unit_coldplug(u);
1754 if (r < 0)
1755 log_warning_errno(r, "We couldn't coldplug %s, proceeding anyway: %m", u->id);
f50e0a01 1756 }
a16e1123
LP
1757}
1758
f0831ed2 1759static void manager_catchup(Manager *m) {
f0831ed2
LP
1760 Unit *u;
1761 char *k;
1762
1763 assert(m);
1764
28e5e1e9 1765 log_debug("Invoking unit catchup() handlers%s", special_glyph(SPECIAL_GLYPH_ELLIPSIS));
f0831ed2
LP
1766
1767 /* Let's catch up on any state changes that happened while we were reloading/reexecing */
90e74a66 1768 HASHMAP_FOREACH_KEY(u, k, m->units) {
f0831ed2
LP
1769
1770 /* ignore aliases */
1771 if (u->id != k)
1772 continue;
1773
1774 unit_catchup(u);
1775 }
1776}
1777
9ff1a6f1 1778static void manager_distribute_fds(Manager *m, FDSet *fds) {
9ff1a6f1 1779 Unit *u;
9588bc32
LP
1780
1781 assert(m);
1782
90e74a66 1783 HASHMAP_FOREACH(u, m->units) {
9588bc32
LP
1784
1785 if (fdset_size(fds) <= 0)
1786 break;
1787
9ff1a6f1
LP
1788 if (!UNIT_VTABLE(u)->distribute_fds)
1789 continue;
9588bc32 1790
9ff1a6f1
LP
1791 UNIT_VTABLE(u)->distribute_fds(u, fds);
1792 }
9588bc32
LP
1793}
1794
2b680534 1795static bool manager_dbus_is_running(Manager *m, bool deserialized) {
8559b3b7
LP
1796 Unit *u;
1797
1798 assert(m);
1799
1800 /* This checks whether the dbus instance we are supposed to expose our APIs on is up. We check both the socket
1801 * and the service unit. If the 'deserialized' parameter is true we'll check the deserialized state of the unit
1802 * rather than the current one. */
1803
638cece4 1804 if (MANAGER_IS_TEST_RUN(m))
8559b3b7
LP
1805 return false;
1806
8559b3b7
LP
1807 u = manager_get_unit(m, SPECIAL_DBUS_SOCKET);
1808 if (!u)
1809 return false;
1810 if ((deserialized ? SOCKET(u)->deserialized_state : SOCKET(u)->state) != SOCKET_RUNNING)
1811 return false;
1812
1813 u = manager_get_unit(m, SPECIAL_DBUS_SERVICE);
1814 if (!u)
1815 return false;
845824ac 1816 if (!IN_SET((deserialized ? SERVICE(u)->deserialized_state : SERVICE(u)->state),
1817 SERVICE_RUNNING,
1818 SERVICE_RELOAD,
1819 SERVICE_RELOAD_NOTIFY,
1820 SERVICE_RELOAD_SIGNAL))
8559b3b7
LP
1821 return false;
1822
1823 return true;
1824}
1825
9d4c195c
LP
1826static void manager_setup_bus(Manager *m) {
1827 assert(m);
1828
1829 /* Let's set up our private bus connection now, unconditionally */
1830 (void) bus_init_private(m);
1831
1832 /* If we are in --user mode also connect to the system bus now */
1833 if (MANAGER_IS_USER(m))
1834 (void) bus_init_system(m);
1835
1836 /* Let's connect to the bus now, but only if the unit is supposed to be up */
2b680534 1837 if (manager_dbus_is_running(m, MANAGER_IS_RELOADING(m))) {
9d4c195c
LP
1838 (void) bus_init_api(m);
1839
1840 if (MANAGER_IS_SYSTEM(m))
1841 (void) bus_init_system(m);
1842 }
1843}
1844
159f1e76
LP
1845static void manager_preset_all(Manager *m) {
1846 int r;
1847
1848 assert(m);
1849
1850 if (m->first_boot <= 0)
1851 return;
1852
1853 if (!MANAGER_IS_SYSTEM(m))
1854 return;
1855
638cece4 1856 if (MANAGER_IS_TEST_RUN(m))
159f1e76
LP
1857 return;
1858
1859 /* If this is the first boot, and we are in the host system, then preset everything */
93651582
JL
1860 UnitFilePresetMode mode = FIRST_BOOT_FULL_PRESET ? UNIT_FILE_PRESET_FULL : UNIT_FILE_PRESET_ENABLE_ONLY;
1861
4870133b 1862 r = unit_file_preset_all(RUNTIME_SCOPE_SYSTEM, 0, NULL, mode, NULL, 0);
159f1e76
LP
1863 if (r < 0)
1864 log_full_errno(r == -EEXIST ? LOG_NOTICE : LOG_WARNING, r,
1865 "Failed to populate /etc with preset unit settings, ignoring: %m");
1866 else
1867 log_info("Populated /etc with preset unit settings.");
1868}
1869
5ce5e1ad
LP
1870static void manager_ready(Manager *m) {
1871 assert(m);
1872
1873 /* After having loaded everything, do the final round of catching up with what might have changed */
1874
1875 m->objective = MANAGER_OK; /* Tell everyone we are up now */
1876
1877 /* It might be safe to log to the journal now and connect to dbus */
1878 manager_recheck_journal(m);
1879 manager_recheck_dbus(m);
1880
5ce5e1ad
LP
1881 /* Let's finally catch up with any changes that took place while we were reloading/reexecing */
1882 manager_catchup(m);
c6e892bc 1883
15b9243c 1884 /* Create a file which will indicate when the manager started loading units the last time. */
4b3ad81b
LB
1885 if (MANAGER_IS_SYSTEM(m))
1886 (void) touch_file("/run/systemd/systemd-units-load", false,
1887 m->timestamps[MANAGER_TIMESTAMP_UNITS_LOAD].realtime ?: now(CLOCK_REALTIME),
1888 UID_INVALID, GID_INVALID, 0444);
5ce5e1ad
LP
1889}
1890
a01ba4b2 1891Manager* manager_reloading_start(Manager *m) {
d147e2b6 1892 m->n_reloading++;
49fbe940 1893 dual_timestamp_get(m->timestamps + MANAGER_TIMESTAMP_UNITS_LOAD);
d147e2b6
ZJS
1894 return m;
1895}
49fbe940 1896
a01ba4b2 1897void manager_reloading_stopp(Manager **m) {
d147e2b6
ZJS
1898 if (*m) {
1899 assert((*m)->n_reloading > 0);
1900 (*m)->n_reloading--;
1901 }
1902}
1903
2a7cf953 1904int manager_startup(Manager *m, FILE *serialization, FDSet *fds, const char *root) {
17f01ace 1905 int r;
a16e1123
LP
1906
1907 assert(m);
1908
a1f31f47
ZJS
1909 /* If we are running in test mode, we still want to run the generators,
1910 * but we should not touch the real generator directories. */
4870133b 1911 r = lookup_paths_init_or_warn(&m->lookup_paths, m->runtime_scope,
99aad9a2
ZJS
1912 MANAGER_IS_TEST_RUN(m) ? LOOKUP_PATHS_TEMPORARY_GENERATED : 0,
1913 root);
e801700e 1914 if (r < 0)
99aad9a2 1915 return r;
5a1e9937 1916
d4ee7bd8 1917 dual_timestamp_get(m->timestamps + manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_GENERATORS_START));
eb523bfb
LP
1918 r = manager_run_environment_generators(m);
1919 if (r >= 0)
1920 r = manager_run_generators(m);
d4ee7bd8 1921 dual_timestamp_get(m->timestamps + manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_GENERATORS_FINISH));
07719a21
LP
1922 if (r < 0)
1923 return r;
1924
159f1e76 1925 manager_preset_all(m);
572986ca 1926
581fef8d 1927 lookup_paths_log(&m->lookup_paths);
572986ca 1928
4df7d537
ZJS
1929 {
1930 /* This block is (optionally) done with the reloading counter bumped */
d7ac0952 1931 _unused_ _cleanup_(manager_reloading_stopp) Manager *reloading = NULL;
4df7d537 1932
45f540a2
ZJS
1933 /* Make sure we don't have a left-over from a previous run */
1934 if (!serialization)
1935 (void) rm_rf(m->lookup_paths.transient, 0);
1936
4df7d537
ZJS
1937 /* If we will deserialize make sure that during enumeration this is already known, so we increase the
1938 * counter here already */
1939 if (serialization)
1940 reloading = manager_reloading_start(m);
1941
1942 /* First, enumerate what we can from all config files */
1943 dual_timestamp_get(m->timestamps + manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_UNITS_LOAD_START));
1944 manager_enumerate_perpetual(m);
1945 manager_enumerate(m);
1946 dual_timestamp_get(m->timestamps + manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_UNITS_LOAD_FINISH));
1947
1948 /* Second, deserialize if there is something to deserialize */
1949 if (serialization) {
1950 r = manager_deserialize(m, serialization, fds);
1951 if (r < 0)
1952 return log_error_errno(r, "Deserialization failed: %m");
1953 }
01e10de3 1954
4df7d537
ZJS
1955 /* Any fds left? Find some unit which wants them. This is useful to allow container managers to pass
1956 * some file descriptors to us pre-initialized. This enables socket-based activation of entire
1957 * containers. */
1958 manager_distribute_fds(m, fds);
d86f9d52 1959
4df7d537
ZJS
1960 /* We might have deserialized the notify fd, but if we didn't then let's create the bus now */
1961 r = manager_setup_notify(m);
1962 if (r < 0)
1963 /* No sense to continue without notifications, our children would fail anyway. */
1964 return r;
d8fdc620 1965
4df7d537
ZJS
1966 r = manager_setup_cgroups_agent(m);
1967 if (r < 0)
1968 /* Likewise, no sense to continue without empty cgroup notifications. */
1969 return r;
00d9ef85 1970
4df7d537
ZJS
1971 r = manager_setup_user_lookup_fd(m);
1972 if (r < 0)
1973 /* This shouldn't fail, except if things are really broken. */
1974 return r;
8559b3b7 1975
4df7d537
ZJS
1976 /* Connect to the bus if we are good for it */
1977 manager_setup_bus(m);
e3dd987c 1978
5238e957 1979 /* Now that we are connected to all possible buses, let's deserialize who is tracking us. */
4df7d537
ZJS
1980 r = bus_track_coldplug(m, &m->subscribed, false, m->deserialized_subscribed);
1981 if (r < 0)
1982 log_warning_errno(r, "Failed to deserialized tracked clients, ignoring: %m");
1983 m->deserialized_subscribed = strv_free(m->deserialized_subscribed);
a16e1123 1984
19d22d43
LP
1985 r = manager_varlink_init(m);
1986 if (r < 0)
064a5c14 1987 log_warning_errno(r, "Failed to set up Varlink, ignoring: %m");
19d22d43 1988
4df7d537
ZJS
1989 /* Third, fire things up! */
1990 manager_coldplug(m);
3ad2afb6 1991
4df7d537
ZJS
1992 /* Clean up runtime objects */
1993 manager_vacuum(m);
71445ae7 1994
4df7d537
ZJS
1995 if (serialization)
1996 /* Let's wait for the UnitNew/JobNew messages being sent, before we notify that the
1997 * reload is finished */
1998 m->send_reloading_done = true;
9f611ad8
LP
1999 }
2000
5ce5e1ad 2001 manager_ready(m);
f0831ed2 2002
d35fe8c0
FB
2003 manager_set_switching_root(m, false);
2004
17f01ace 2005 return 0;
f50e0a01
LP
2006}
2007
50cbaba4
LP
2008int manager_add_job(
2009 Manager *m,
2010 JobType type,
2011 Unit *unit,
2012 JobMode mode,
2013 Set *affected_jobs,
2014 sd_bus_error *error,
2015 Job **ret) {
2016
c7e3eb5d 2017 _cleanup_(transaction_abort_and_freep) Transaction *tr = NULL;
50cbaba4 2018 int r;
e5b5ae50
LP
2019
2020 assert(m);
2021 assert(type < _JOB_TYPE_MAX);
87f0e418 2022 assert(unit);
e5b5ae50 2023 assert(mode < _JOB_MODE_MAX);
60918275 2024
7358dc02 2025 if (mode == JOB_ISOLATE && type != JOB_START)
1b09b81c 2026 return sd_bus_error_set(error, SD_BUS_ERROR_INVALID_ARGS, "Isolate is only valid for start.");
c497c7a9 2027
7358dc02 2028 if (mode == JOB_ISOLATE && !unit->allow_isolate)
1b09b81c 2029 return sd_bus_error_set(error, BUS_ERROR_NO_ISOLATION, "Operation refused, unit may not be isolated.");
2528a7a6 2030
1f0f9f21 2031 if (mode == JOB_TRIGGERING && type != JOB_STOP)
1b09b81c 2032 return sd_bus_error_set(error, SD_BUS_ERROR_INVALID_ARGS, "--job-mode=triggering is only valid for stop.");
1f0f9f21 2033
09d04ad3
LP
2034 if (mode == JOB_RESTART_DEPENDENCIES && type != JOB_START)
2035 return sd_bus_error_set(error, SD_BUS_ERROR_INVALID_ARGS, "--job-mode=restart-dependencies is only valid for start.");
2036
f2341e0a 2037 log_unit_debug(unit, "Trying to enqueue job %s/%s/%s", unit->id, job_type_to_string(type), job_mode_to_string(mode));
9f04bd52 2038
c6497ccb 2039 type = job_type_collapse(type, unit);
e0209d83 2040
23ade460 2041 tr = transaction_new(mode == JOB_REPLACE_IRREVERSIBLY);
7527cb52
MS
2042 if (!tr)
2043 return -ENOMEM;
11dd41ce 2044
b0904249
LP
2045 r = transaction_add_job_and_dependencies(
2046 tr,
2047 type,
2048 unit,
2049 /* by= */ NULL,
2050 TRANSACTION_MATTERS |
2051 (IN_SET(mode, JOB_IGNORE_DEPENDENCIES, JOB_IGNORE_REQUIREMENTS) ? TRANSACTION_IGNORE_REQUIREMENTS : 0) |
09d04ad3
LP
2052 (mode == JOB_IGNORE_DEPENDENCIES ? TRANSACTION_IGNORE_ORDER : 0) |
2053 (mode == JOB_RESTART_DEPENDENCIES ? TRANSACTION_PROPAGATE_START_AS_RESTART : 0),
b0904249 2054 error);
7527cb52 2055 if (r < 0)
c7e3eb5d 2056 return r;
c497c7a9 2057
7527cb52
MS
2058 if (mode == JOB_ISOLATE) {
2059 r = transaction_add_isolate_jobs(tr, m);
2060 if (r < 0)
c7e3eb5d 2061 return r;
7527cb52
MS
2062 }
2063
1f0f9f21
KK
2064 if (mode == JOB_TRIGGERING) {
2065 r = transaction_add_triggering_jobs(tr, unit);
2066 if (r < 0)
c7e3eb5d 2067 return r;
1f0f9f21
KK
2068 }
2069
50cbaba4 2070 r = transaction_activate(tr, m, mode, affected_jobs, error);
7527cb52 2071 if (r < 0)
c7e3eb5d 2072 return r;
e5b5ae50 2073
f2341e0a 2074 log_unit_debug(unit,
66870f90
ZJS
2075 "Enqueued job %s/%s as %u", unit->id,
2076 job_type_to_string(type), (unsigned) tr->anchor_job->id);
f50e0a01 2077
50cbaba4
LP
2078 if (ret)
2079 *ret = tr->anchor_job;
60918275 2080
c7e3eb5d 2081 tr = transaction_free(tr);
e5b5ae50
LP
2082 return 0;
2083}
60918275 2084
50cbaba4 2085int manager_add_job_by_name(Manager *m, JobType type, const char *name, JobMode mode, Set *affected_jobs, sd_bus_error *e, Job **ret) {
4440b27d 2086 Unit *unit = NULL; /* just to appease gcc, initialization is not really necessary */
28247076
LP
2087 int r;
2088
2089 assert(m);
2090 assert(type < _JOB_TYPE_MAX);
2091 assert(name);
2092 assert(mode < _JOB_MODE_MAX);
2093
c3090674
LP
2094 r = manager_load_unit(m, name, NULL, NULL, &unit);
2095 if (r < 0)
28247076 2096 return r;
4440b27d 2097 assert(unit);
28247076 2098
50cbaba4 2099 return manager_add_job(m, type, unit, mode, affected_jobs, e, ret);
53f18416
LP
2100}
2101
50cbaba4 2102int manager_add_job_by_name_and_warn(Manager *m, JobType type, const char *name, JobMode mode, Set *affected_jobs, Job **ret) {
4afd3348 2103 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
53f18416
LP
2104 int r;
2105
2106 assert(m);
2107 assert(type < _JOB_TYPE_MAX);
2108 assert(name);
2109 assert(mode < _JOB_MODE_MAX);
2110
50cbaba4 2111 r = manager_add_job_by_name(m, type, name, mode, affected_jobs, &error, ret);
53f18416
LP
2112 if (r < 0)
2113 return log_warning_errno(r, "Failed to enqueue %s job for %s: %s", job_mode_to_string(mode), name, bus_error_message(&error, r));
2114
2115 return r;
28247076
LP
2116}
2117
15d167f8
JW
2118int manager_propagate_reload(Manager *m, Unit *unit, JobMode mode, sd_bus_error *e) {
2119 int r;
32620826 2120 _cleanup_(transaction_abort_and_freep) Transaction *tr = NULL;
15d167f8
JW
2121
2122 assert(m);
2123 assert(unit);
2124 assert(mode < _JOB_MODE_MAX);
2125 assert(mode != JOB_ISOLATE); /* Isolate is only valid for start */
2126
2127 tr = transaction_new(mode == JOB_REPLACE_IRREVERSIBLY);
2128 if (!tr)
2129 return -ENOMEM;
2130
2131 /* We need an anchor job */
b0904249 2132 r = transaction_add_job_and_dependencies(tr, JOB_NOP, unit, NULL, TRANSACTION_IGNORE_REQUIREMENTS|TRANSACTION_IGNORE_ORDER, e);
15d167f8 2133 if (r < 0)
32620826 2134 return r;
15d167f8
JW
2135
2136 /* Failure in adding individual dependencies is ignored, so this always succeeds. */
b0904249
LP
2137 transaction_add_propagate_reload_jobs(
2138 tr,
2139 unit,
2140 tr->anchor_job,
3044510d 2141 mode == JOB_IGNORE_DEPENDENCIES ? TRANSACTION_IGNORE_ORDER : 0);
15d167f8 2142
50cbaba4 2143 r = transaction_activate(tr, m, mode, NULL, e);
15d167f8 2144 if (r < 0)
32620826 2145 return r;
15d167f8 2146
32620826 2147 tr = transaction_free(tr);
15d167f8 2148 return 0;
15d167f8
JW
2149}
2150
60918275
LP
2151Job *manager_get_job(Manager *m, uint32_t id) {
2152 assert(m);
2153
2154 return hashmap_get(m->jobs, UINT32_TO_PTR(id));
2155}
2156
87f0e418 2157Unit *manager_get_unit(Manager *m, const char *name) {
60918275
LP
2158 assert(m);
2159 assert(name);
2160
87f0e418 2161 return hashmap_get(m->units, name);
60918275
LP
2162}
2163
19496554
MS
2164static int manager_dispatch_target_deps_queue(Manager *m) {
2165 Unit *u;
19496554
MS
2166 int r = 0;
2167
19496554
MS
2168 assert(m);
2169
52e3671b 2170 while ((u = LIST_POP(target_deps_queue, m->target_deps_queue))) {
15ed3c3a
LP
2171 _cleanup_free_ Unit **targets = NULL;
2172 int n_targets;
2173
19496554
MS
2174 assert(u->in_target_deps_queue);
2175
19496554
MS
2176 u->in_target_deps_queue = false;
2177
15ed3c3a
LP
2178 /* Take an "atomic" snapshot of dependencies here, as the call below will likely modify the
2179 * dependencies, and we can't have it that hash tables we iterate through are modified while
2180 * we are iterating through them. */
2181 n_targets = unit_get_dependency_array(u, UNIT_ATOM_DEFAULT_TARGET_DEPENDENCIES, &targets);
2182 if (n_targets < 0)
2183 return n_targets;
19496554 2184
15ed3c3a
LP
2185 for (int i = 0; i < n_targets; i++) {
2186 r = unit_add_default_target_dependency(u, targets[i]);
2187 if (r < 0)
2188 return r;
19496554
MS
2189 }
2190 }
2191
2192 return r;
2193}
2194
c1e1601e 2195unsigned manager_dispatch_load_queue(Manager *m) {
595ed347 2196 Unit *u;
c1e1601e 2197 unsigned n = 0;
60918275
LP
2198
2199 assert(m);
2200
223dabab
LP
2201 /* Make sure we are not run recursively */
2202 if (m->dispatching_load_queue)
c1e1601e 2203 return 0;
223dabab
LP
2204
2205 m->dispatching_load_queue = true;
2206
87f0e418 2207 /* Dispatches the load queue. Takes a unit from the queue and
60918275
LP
2208 * tries to load its data until the queue is empty */
2209
595ed347
MS
2210 while ((u = m->load_queue)) {
2211 assert(u->in_load_queue);
034c6ed7 2212
595ed347 2213 unit_load(u);
c1e1601e 2214 n++;
60918275
LP
2215 }
2216
223dabab 2217 m->dispatching_load_queue = false;
19496554
MS
2218
2219 /* Dispatch the units waiting for their target dependencies to be added now, as all targets that we know about
2220 * should be loaded and have aliases resolved */
2221 (void) manager_dispatch_target_deps_queue(m);
2222
c1e1601e 2223 return n;
60918275
LP
2224}
2225
81be2388 2226bool manager_unit_cache_should_retry_load(Unit *u) {
cda66772
LB
2227 assert(u);
2228
81be2388
ZJS
2229 /* Automatic reloading from disk only applies to units which were not found sometime in the past, and
2230 * the not-found stub is kept pinned in the unit graph by dependencies. For units that were
2231 * previously loaded, we don't do automatic reloading, and daemon-reload is necessary to update. */
cda66772
LB
2232 if (u->load_state != UNIT_NOT_FOUND)
2233 return false;
2234
81be2388
ZJS
2235 /* The cache has been updated since the last time we tried to load the unit. There might be new
2236 * fragment paths to read. */
c2911d48 2237 if (u->manager->unit_cache_timestamp_hash != u->fragment_not_found_timestamp_hash)
cda66772 2238 return true;
d904afc7 2239
81be2388 2240 /* The cache needs to be updated because there are modifications on disk. */
c2911d48 2241 return !lookup_paths_timestamp_hash_same(&u->manager->lookup_paths, u->manager->unit_cache_timestamp_hash, NULL);
d904afc7
LB
2242}
2243
c2756a68
LP
2244int manager_load_unit_prepare(
2245 Manager *m,
2246 const char *name,
2247 const char *path,
718db961 2248 sd_bus_error *e,
4b6a2b3f 2249 Unit **ret) {
c2756a68 2250
4b6a2b3f 2251 _cleanup_(unit_freep) Unit *cleanup_unit = NULL;
a99626c1 2252 _cleanup_free_ char *nbuf = NULL;
60918275
LP
2253 int r;
2254
2255 assert(m);
4b6a2b3f 2256 assert(ret);
a99626c1 2257 assert(name || path);
60918275 2258
526e3cbb 2259 /* This will prepare the unit for loading, but not actually load anything from disk. */
0301abf4 2260
526e3cbb 2261 if (path && !path_is_absolute(path))
718db961 2262 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS, "Path %s is not absolute.", path);
9e2f7c11 2263
08f46856 2264 if (!name) {
a99626c1
LP
2265 r = path_extract_filename(path, &nbuf);
2266 if (r < 0)
2267 return r;
2268 if (r == O_DIRECTORY)
2269 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS, "Path '%s' refers to directory, refusing.", path);
2270
2271 name = nbuf;
08f46856 2272 }
9e2f7c11 2273
4b6a2b3f 2274 UnitType t = unit_name_to_type(name);
7d17cfbc 2275
5d512d54
LN
2276 if (t == _UNIT_TYPE_INVALID || !unit_name_is_valid(name, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE)) {
2277 if (unit_name_is_valid(name, UNIT_NAME_TEMPLATE))
2278 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS, "Unit name %s is missing the instance name.", name);
2279
718db961 2280 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS, "Unit name %s is not valid.", name);
5d512d54 2281 }
60918275 2282
4b6a2b3f
ZJS
2283 Unit *unit = manager_get_unit(m, name);
2284 if (unit) {
d904afc7
LB
2285 /* The time-based cache allows to start new units without daemon-reload,
2286 * but if they are already referenced (because of dependencies or ordering)
2287 * then we have to force a load of the fragment. As an optimization, check
2288 * first if anything in the usual paths was modified since the last time
7233e91a
LB
2289 * the cache was loaded. Also check if the last time an attempt to load the
2290 * unit was made was before the most recent cache refresh, so that we know
81be2388 2291 * we need to try again — even if the cache is current, it might have been
7233e91a
LB
2292 * updated in a different context before we had a chance to retry loading
2293 * this particular unit. */
4b6a2b3f
ZJS
2294 if (manager_unit_cache_should_retry_load(unit))
2295 unit->load_state = UNIT_STUB;
d904afc7 2296 else {
4b6a2b3f 2297 *ret = unit;
535b7fcb 2298 return 0; /* The unit was already loaded */
d904afc7
LB
2299 }
2300 } else {
4b6a2b3f
ZJS
2301 unit = cleanup_unit = unit_new(m, unit_vtable[t]->object_size);
2302 if (!unit)
d904afc7 2303 return -ENOMEM;
034c6ed7 2304 }
60918275 2305
7d17cfbc 2306 if (path) {
4b6a2b3f 2307 r = free_and_strdup(&unit->fragment_path, path);
d904afc7
LB
2308 if (r < 0)
2309 return r;
7d17cfbc 2310 }
0301abf4 2311
4b6a2b3f 2312 r = unit_add_name(unit, name);
dc409696 2313 if (r < 0)
1ffba6fe 2314 return r;
60918275 2315
4b6a2b3f
ZJS
2316 unit_add_to_load_queue(unit);
2317 unit_add_to_dbus_queue(unit);
2318 unit_add_to_gc_queue(unit);
c1e1601e 2319
4b6a2b3f
ZJS
2320 *ret = unit;
2321 TAKE_PTR(cleanup_unit);
db06e3b6 2322
535b7fcb 2323 return 1; /* The unit was added the load queue */
db06e3b6
LP
2324}
2325
c2756a68
LP
2326int manager_load_unit(
2327 Manager *m,
2328 const char *name,
2329 const char *path,
718db961 2330 sd_bus_error *e,
4b6a2b3f 2331 Unit **ret) {
db06e3b6
LP
2332 int r;
2333
2334 assert(m);
4b6a2b3f 2335 assert(ret);
db06e3b6 2336
4b6a2b3f 2337 /* This will load the unit config, but not actually start any services or anything. */
db06e3b6 2338
4b6a2b3f 2339 r = manager_load_unit_prepare(m, name, path, e, ret);
535b7fcb 2340 if (r <= 0)
db06e3b6
LP
2341 return r;
2342
535b7fcb 2343 /* Unit was newly loaded */
f50e0a01 2344 manager_dispatch_load_queue(m);
4b6a2b3f 2345 *ret = unit_follow_merge(*ret);
4109ede7
ZJS
2346 return 0;
2347}
2348
2349int manager_load_startable_unit_or_warn(
2350 Manager *m,
2351 const char *name,
2352 const char *path,
2353 Unit **ret) {
2354
2355 /* Load a unit, make sure it loaded fully and is not masked. */
2356
2357 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2358 Unit *unit;
2359 int r;
2360
2361 r = manager_load_unit(m, name, path, &error, &unit);
2362 if (r < 0)
2363 return log_error_errno(r, "Failed to load %s %s: %s",
8ace1db7 2364 name ? "unit" : "unit file", name ?: path,
4109ede7 2365 bus_error_message(&error, r));
8ace1db7
LP
2366
2367 r = bus_unit_validate_load_state(unit, &error);
2368 if (r < 0)
2369 return log_error_errno(r, "%s", bus_error_message(&error, r));
9e2f7c11 2370
4109ede7 2371 *ret = unit;
60918275
LP
2372 return 0;
2373}
a66d02c3 2374
7fad411c
LP
2375void manager_clear_jobs(Manager *m) {
2376 Job *j;
2377
2378 assert(m);
2379
7fad411c 2380 while ((j = hashmap_first(m->jobs)))
5273510e 2381 /* No need to recurse. We're cancelling all jobs. */
833f92ad 2382 job_finish_and_invalidate(j, JOB_CANCELED, false, false);
7fad411c 2383}
83c60c9f 2384
f75f613d
FB
2385void manager_unwatch_pid(Manager *m, pid_t pid) {
2386 assert(m);
2387
2388 /* First let's drop the unit keyed as "pid". */
2389 (void) hashmap_remove(m->watch_pids, PID_TO_PTR(pid));
2390
2391 /* Then, let's also drop the array keyed by -pid. */
2392 free(hashmap_remove(m->watch_pids, PID_TO_PTR(-pid)));
2393}
2394
752b5905 2395static int manager_dispatch_run_queue(sd_event_source *source, void *userdata) {
99534007 2396 Manager *m = ASSERT_PTR(userdata);
83c60c9f 2397 Job *j;
034c6ed7 2398
752b5905 2399 assert(source);
9152c765 2400
da8e1782 2401 while ((j = prioq_peek(m->run_queue))) {
ac1135be 2402 assert(j->installed);
034c6ed7
LP
2403 assert(j->in_run_queue);
2404
6e64994d 2405 (void) job_run_and_invalidate(j);
9152c765 2406 }
034c6ed7 2407
a0b64226 2408 if (m->n_running_jobs > 0)
03b717a3
MS
2409 manager_watch_jobs_in_progress(m);
2410
31a7eb86
ZJS
2411 if (m->n_on_console > 0)
2412 manager_watch_idle_pipe(m);
2413
752b5905 2414 return 1;
c1e1601e
LP
2415}
2416
b0c4b282
LP
2417void manager_trigger_run_queue(Manager *m) {
2418 int r;
2419
2420 assert(m);
2421
2422 r = sd_event_source_set_enabled(
2423 m->run_queue_event_source,
2424 prioq_isempty(m->run_queue) ? SD_EVENT_OFF : SD_EVENT_ONESHOT);
2425 if (r < 0)
2426 log_warning_errno(r, "Failed to enable job run queue event source, ignoring: %m");
2427}
2428
9588bc32 2429static unsigned manager_dispatch_dbus_queue(Manager *m) {
e0a08581 2430 unsigned n = 0, budget;
595ed347 2431 Unit *u;
e0a08581 2432 Job *j;
c1e1601e
LP
2433
2434 assert(m);
2435
b8d381c4
LP
2436 /* When we are reloading, let's not wait with generating signals, since we need to exit the manager as quickly
2437 * as we can. There's no point in throttling generation of signals in that case. */
2438 if (MANAGER_IS_RELOADING(m) || m->send_reloading_done || m->pending_reload_message)
f5fbe71d 2439 budget = UINT_MAX; /* infinite budget in this case */
b8d381c4
LP
2440 else {
2441 /* Anything to do at all? */
2442 if (!m->dbus_unit_queue && !m->dbus_job_queue)
2443 return 0;
2444
2445 /* Do we have overly many messages queued at the moment? If so, let's not enqueue more on top, let's
2446 * sit this cycle out, and process things in a later cycle when the queues got a bit emptier. */
2447 if (manager_bus_n_queued_write(m) > MANAGER_BUS_BUSY_THRESHOLD)
2448 return 0;
2449
2450 /* Only process a certain number of units/jobs per event loop iteration. Even if the bus queue wasn't
2451 * overly full before this call we shouldn't increase it in size too wildly in one step, and we
2452 * shouldn't monopolize CPU time with generating these messages. Note the difference in counting of
2453 * this "budget" and the "threshold" above: the "budget" is decreased only once per generated message,
5238e957
BB
2454 * regardless how many buses/direct connections it is enqueued on, while the "threshold" is applied to
2455 * each queued instance of bus message, i.e. if the same message is enqueued to five buses/direct
b8d381c4
LP
2456 * connections it will be counted five times. This difference in counting ("references"
2457 * vs. "instances") is primarily a result of the fact that it's easier to implement it this way,
2458 * however it also reflects the thinking that the "threshold" should put a limit on used queue memory,
2459 * i.e. space, while the "budget" should put a limit on time. Also note that the "threshold" is
2460 * currently chosen much higher than the "budget". */
2461 budget = MANAGER_BUS_MESSAGE_BUDGET;
2462 }
e0a08581 2463
b8d381c4 2464 while (budget != 0 && (u = m->dbus_unit_queue)) {
e0a08581 2465
595ed347 2466 assert(u->in_dbus_queue);
c1e1601e 2467
595ed347 2468 bus_unit_send_change_signal(u);
b8d381c4
LP
2469 n++;
2470
f5fbe71d 2471 if (budget != UINT_MAX)
b8d381c4 2472 budget--;
c1e1601e
LP
2473 }
2474
b8d381c4 2475 while (budget != 0 && (j = m->dbus_job_queue)) {
c1e1601e
LP
2476 assert(j->in_dbus_queue);
2477
2478 bus_job_send_change_signal(j);
b8d381c4
LP
2479 n++;
2480
f5fbe71d 2481 if (budget != UINT_MAX)
b8d381c4 2482 budget--;
c1e1601e
LP
2483 }
2484
b8d381c4 2485 if (m->send_reloading_done) {
71445ae7 2486 m->send_reloading_done = false;
718db961 2487 bus_manager_send_reloading(m, false);
b8d381c4 2488 n++;
71445ae7
LP
2489 }
2490
b8d381c4 2491 if (m->pending_reload_message) {
209de525 2492 bus_send_pending_reload_message(m);
e0a08581
LP
2493 n++;
2494 }
718db961 2495
c1e1601e 2496 return n;
9152c765
LP
2497}
2498
d8fdc620
LP
2499static int manager_dispatch_cgroups_agent_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
2500 Manager *m = userdata;
60473f0c 2501 char buf[PATH_MAX];
d8fdc620
LP
2502 ssize_t n;
2503
2504 n = recv(fd, buf, sizeof(buf), 0);
2505 if (n < 0)
2506 return log_error_errno(errno, "Failed to read cgroups agent message: %m");
2507 if (n == 0) {
2508 log_error("Got zero-length cgroups agent message, ignoring.");
2509 return 0;
2510 }
2511 if ((size_t) n >= sizeof(buf)) {
2512 log_error("Got overly long cgroups agent message, ignoring.");
2513 return 0;
2514 }
2515
2516 if (memchr(buf, 0, n)) {
2517 log_error("Got cgroups agent message with embedded NUL byte, ignoring.");
2518 return 0;
2519 }
2520 buf[n] = 0;
2521
2522 manager_notify_cgroup_empty(m, buf);
d5f15326 2523 (void) bus_forward_agent_released(m, buf);
d8fdc620
LP
2524
2525 return 0;
2526}
2527
5151b4cc 2528static bool manager_process_barrier_fd(char * const *tags, FDSet *fds) {
4f07ddfa
KKD
2529
2530 /* nothing else must be sent when using BARRIER=1 */
5151b4cc 2531 if (strv_contains(tags, "BARRIER=1")) {
46276454 2532 if (strv_length(tags) != 1)
5151b4cc 2533 log_warning("Extra notification messages sent with BARRIER=1, ignoring everything.");
46276454
LP
2534 else if (fdset_size(fds) != 1)
2535 log_warning("Got incorrect number of fds with BARRIER=1, closing them.");
5151b4cc
BR
2536
2537 /* Drop the message if BARRIER=1 was found */
4f07ddfa 2538 return true;
5151b4cc 2539 }
4f07ddfa
KKD
2540
2541 return false;
2542}
2543
db256aab
LP
2544static void manager_invoke_notify_message(
2545 Manager *m,
2546 Unit *u,
2547 const struct ucred *ucred,
5151b4cc 2548 char * const *tags,
db256aab
LP
2549 FDSet *fds) {
2550
5ba6985b
LP
2551 assert(m);
2552 assert(u);
db256aab 2553 assert(ucred);
5151b4cc 2554 assert(tags);
5ba6985b 2555
62a76913 2556 if (u->notifygen == m->notifygen) /* Already invoked on this same unit in this same iteration? */
5ba6985b 2557 return;
62a76913
LP
2558 u->notifygen = m->notifygen;
2559
5151b4cc 2560 if (UNIT_VTABLE(u)->notify_message)
db256aab 2561 UNIT_VTABLE(u)->notify_message(u, ucred, tags, fds);
62a76913 2562
5151b4cc
BR
2563 else if (DEBUG_LOGGING) {
2564 _cleanup_free_ char *buf = NULL, *x = NULL, *y = NULL;
a86b7675 2565
5151b4cc
BR
2566 buf = strv_join(tags, ", ");
2567 if (buf)
2568 x = ellipsize(buf, 20, 90);
a86b7675 2569 if (x)
da5fb861
LP
2570 y = cescape(x);
2571
a86b7675
ZJS
2572 log_unit_debug(u, "Got notification message \"%s\", ignoring.", strnull(y));
2573 }
5ba6985b
LP
2574}
2575
718db961 2576static int manager_dispatch_notify_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
3d0b8a55 2577
b215b0ed 2578 _cleanup_fdset_free_ FDSet *fds = NULL;
99534007 2579 Manager *m = ASSERT_PTR(userdata);
b215b0ed
DH
2580 char buf[NOTIFY_BUFFER_MAX+1];
2581 struct iovec iovec = {
2582 .iov_base = buf,
2583 .iov_len = sizeof(buf)-1,
2584 };
fb29cdbe
LP
2585 CMSG_BUFFER_TYPE(CMSG_SPACE(sizeof(struct ucred)) +
2586 CMSG_SPACE(sizeof(int) * NOTIFY_FD_MAX)) control;
b215b0ed
DH
2587 struct msghdr msghdr = {
2588 .msg_iov = &iovec,
2589 .msg_iovlen = 1,
2590 .msg_control = &control,
2591 .msg_controllen = sizeof(control),
2592 };
2593
2594 struct cmsghdr *cmsg;
2595 struct ucred *ucred = NULL;
62a76913 2596 _cleanup_free_ Unit **array_copy = NULL;
5151b4cc 2597 _cleanup_strv_free_ char **tags = NULL;
62a76913 2598 Unit *u1, *u2, **array;
b215b0ed 2599 int r, *fd_array = NULL;
da6053d0 2600 size_t n_fds = 0;
62a76913 2601 bool found = false;
8c47c732
LP
2602 ssize_t n;
2603
718db961
LP
2604 assert(m->notify_fd == fd);
2605
2606 if (revents != EPOLLIN) {
2607 log_warning("Got unexpected poll event for notify fd.");
2608 return 0;
2609 }
8c47c732 2610
3691bcf3 2611 n = recvmsg_safe(m->notify_fd, &msghdr, MSG_DONTWAIT|MSG_CMSG_CLOEXEC|MSG_TRUNC);
882321a1
ZJS
2612 if (ERRNO_IS_NEG_TRANSIENT(n))
2613 return 0; /* Spurious wakeup, try again */
2614 if (n == -EXFULL) {
2615 log_warning("Got message with truncated control data (too many fds sent?), ignoring.");
2616 return 0;
8add30a0 2617 }
882321a1
ZJS
2618 if (n < 0)
2619 /* If this is any other, real error, then stop processing this socket. This of course means
2620 * we won't take notification messages anymore, but that's still better than busy looping:
2621 * being woken up over and over again, but being unable to actually read the message from the
2622 * socket. */
2623 return log_error_errno(n, "Failed to receive notification message: %m");
a354329f 2624
882321a1 2625 CMSG_FOREACH(cmsg, &msghdr)
b215b0ed 2626 if (cmsg->cmsg_level == SOL_SOCKET && cmsg->cmsg_type == SCM_RIGHTS) {
a354329f 2627
3691bcf3 2628 assert(!fd_array);
b1d02191 2629 fd_array = CMSG_TYPED_DATA(cmsg, int);
b215b0ed 2630 n_fds = (cmsg->cmsg_len - CMSG_LEN(0)) / sizeof(int);
a354329f 2631
b215b0ed
DH
2632 } else if (cmsg->cmsg_level == SOL_SOCKET &&
2633 cmsg->cmsg_type == SCM_CREDENTIALS &&
2634 cmsg->cmsg_len == CMSG_LEN(sizeof(struct ucred))) {
a354329f 2635
3691bcf3 2636 assert(!ucred);
b1d02191 2637 ucred = CMSG_TYPED_DATA(cmsg, struct ucred);
a354329f
LP
2638 }
2639
b215b0ed
DH
2640 if (n_fds > 0) {
2641 assert(fd_array);
a354329f 2642
b215b0ed
DH
2643 r = fdset_new_array(&fds, fd_array, n_fds);
2644 if (r < 0) {
2645 close_many(fd_array, n_fds);
9987750e
FB
2646 log_oom();
2647 return 0;
a354329f 2648 }
b215b0ed 2649 }
8c47c732 2650
15e23e8c 2651 if (!ucred || !pid_is_valid(ucred->pid)) {
b215b0ed
DH
2652 log_warning("Received notify message without valid credentials. Ignoring.");
2653 return 0;
2654 }
8c47c732 2655
045a3d59 2656 if ((size_t) n >= sizeof(buf) || (msghdr.msg_flags & MSG_TRUNC)) {
b215b0ed
DH
2657 log_warning("Received notify message exceeded maximum size. Ignoring.");
2658 return 0;
2659 }
8c47c732 2660
8f41e6b6
ZJS
2661 /* As extra safety check, let's make sure the string we get doesn't contain embedded NUL bytes.
2662 * We permit one trailing NUL byte in the message, but don't expect it. */
875ca88d
LP
2663 if (n > 1 && memchr(buf, 0, n-1)) {
2664 log_warning("Received notify message with embedded NUL bytes. Ignoring.");
2665 return 0;
2666 }
2667
8f41e6b6 2668 /* Make sure it's NUL-terminated, then parse it to obtain the tags list. */
b215b0ed 2669 buf[n] = 0;
5151b4cc
BR
2670 tags = strv_split_newlines(buf);
2671 if (!tags) {
2672 log_oom();
2673 return 0;
2674 }
8c47c732 2675
8f41e6b6 2676 /* Possibly a barrier fd, let's see. */
7b0a1267
LP
2677 if (manager_process_barrier_fd(tags, fds)) {
2678 log_debug("Received barrier notification message from PID " PID_FMT ".", ucred->pid);
4f07ddfa 2679 return 0;
7b0a1267 2680 }
4f07ddfa 2681
62a76913
LP
2682 /* Increase the generation counter used for filtering out duplicate unit invocations. */
2683 m->notifygen++;
2684
2685 /* Notify every unit that might be interested, which might be multiple. */
b215b0ed 2686 u1 = manager_get_unit_by_pid_cgroup(m, ucred->pid);
62a76913
LP
2687 u2 = hashmap_get(m->watch_pids, PID_TO_PTR(ucred->pid));
2688 array = hashmap_get(m->watch_pids, PID_TO_PTR(-ucred->pid));
2689 if (array) {
2690 size_t k = 0;
5ba6985b 2691
62a76913
LP
2692 while (array[k])
2693 k++;
5ba6985b 2694
62a76913
LP
2695 array_copy = newdup(Unit*, array, k+1);
2696 if (!array_copy)
2697 log_oom();
2698 }
8f41e6b6
ZJS
2699 /* And now invoke the per-unit callbacks. Note that manager_invoke_notify_message() will handle
2700 * duplicate units make sure we only invoke each unit's handler once. */
62a76913 2701 if (u1) {
5151b4cc 2702 manager_invoke_notify_message(m, u1, ucred, tags, fds);
62a76913
LP
2703 found = true;
2704 }
2705 if (u2) {
5151b4cc 2706 manager_invoke_notify_message(m, u2, ucred, tags, fds);
62a76913
LP
2707 found = true;
2708 }
2709 if (array_copy)
2710 for (size_t i = 0; array_copy[i]; i++) {
5151b4cc 2711 manager_invoke_notify_message(m, array_copy[i], ucred, tags, fds);
62a76913
LP
2712 found = true;
2713 }
8c47c732 2714
62a76913
LP
2715 if (!found)
2716 log_warning("Cannot find unit for notify message of PID "PID_FMT", ignoring.", ucred->pid);
a354329f 2717
b215b0ed 2718 if (fdset_size(fds) > 0)
5fd2c135 2719 log_warning("Got extra auxiliary fds with notification message, closing them.");
8c47c732
LP
2720
2721 return 0;
2722}
2723
62a76913
LP
2724static void manager_invoke_sigchld_event(
2725 Manager *m,
2726 Unit *u,
2727 const siginfo_t *si) {
36f20ae3 2728
5ba6985b
LP
2729 assert(m);
2730 assert(u);
2731 assert(si);
2732
62a76913
LP
2733 /* Already invoked the handler of this unit in this iteration? Then don't process this again */
2734 if (u->sigchldgen == m->sigchldgen)
2735 return;
2736 u->sigchldgen = m->sigchldgen;
5ba6985b 2737
62a76913 2738 log_unit_debug(u, "Child "PID_FMT" belongs to %s.", si->si_pid, u->id);
5ba6985b 2739 unit_unwatch_pid(u, si->si_pid);
e57051f5 2740
62a76913
LP
2741 if (UNIT_VTABLE(u)->sigchld_event)
2742 UNIT_VTABLE(u)->sigchld_event(u, si->si_pid, si->si_code, si->si_status);
5ba6985b
LP
2743}
2744
575b300b 2745static int manager_dispatch_sigchld(sd_event_source *source, void *userdata) {
99534007 2746 Manager *m = ASSERT_PTR(userdata);
575b300b
LP
2747 siginfo_t si = {};
2748 int r;
2749
2750 assert(source);
9152c765 2751
8f41e6b6
ZJS
2752 /* First we call waitid() for a PID and do not reap the zombie. That way we can still access
2753 * /proc/$PID for it while it is a zombie. */
9152c765 2754
575b300b 2755 if (waitid(P_ALL, 0, &si, WEXITED|WNOHANG|WNOWAIT) < 0) {
acbb0225 2756
8afabc50
AJ
2757 if (errno != ECHILD)
2758 log_error_errno(errno, "Failed to peek for child with waitid(), ignoring: %m");
acbb0225 2759
8afabc50 2760 goto turn_off;
575b300b 2761 }
4112df16 2762
575b300b
LP
2763 if (si.si_pid <= 0)
2764 goto turn_off;
2765
2766 if (IN_SET(si.si_code, CLD_EXITED, CLD_KILLED, CLD_DUMPED)) {
62a76913 2767 _cleanup_free_ Unit **array_copy = NULL;
575b300b 2768 _cleanup_free_ char *name = NULL;
62a76913 2769 Unit *u1, *u2, **array;
575b300b
LP
2770
2771 (void) get_process_comm(si.si_pid, &name);
2772
2773 log_debug("Child "PID_FMT" (%s) died (code=%s, status=%i/%s)",
2774 si.si_pid, strna(name),
2775 sigchld_code_to_string(si.si_code),
2776 si.si_status,
2777 strna(si.si_code == CLD_EXITED
2778 ? exit_status_to_string(si.si_status, EXIT_STATUS_FULL)
2779 : signal_to_string(si.si_status)));
2780
62a76913
LP
2781 /* Increase the generation counter used for filtering out duplicate unit invocations */
2782 m->sigchldgen++;
2783
2784 /* And now figure out the unit this belongs to, it might be multiple... */
575b300b 2785 u1 = manager_get_unit_by_pid_cgroup(m, si.si_pid);
62a76913
LP
2786 u2 = hashmap_get(m->watch_pids, PID_TO_PTR(si.si_pid));
2787 array = hashmap_get(m->watch_pids, PID_TO_PTR(-si.si_pid));
2788 if (array) {
2789 size_t n = 0;
2790
5238e957 2791 /* Count how many entries the array has */
62a76913
LP
2792 while (array[n])
2793 n++;
2794
2795 /* Make a copy of the array so that we don't trip up on the array changing beneath us */
2796 array_copy = newdup(Unit*, array, n+1);
2797 if (!array_copy)
2798 log_oom();
2799 }
2800
2801 /* Finally, execute them all. Note that u1, u2 and the array might contain duplicates, but
2802 * that's fine, manager_invoke_sigchld_event() will ensure we only invoke the handlers once for
2803 * each iteration. */
2ba6ae6b
ZJS
2804 if (u1) {
2805 /* We check for oom condition, in case we got SIGCHLD before the oom notification.
2806 * We only do this for the cgroup the PID belonged to. */
2807 (void) unit_check_oom(u1);
2808
288bd406 2809 /* We check if systemd-oomd performed a kill so that we log and notify appropriately */
fe8d22fb
AZ
2810 (void) unit_check_oomd_kill(u1);
2811
62a76913 2812 manager_invoke_sigchld_event(m, u1, &si);
2ba6ae6b 2813 }
62a76913
LP
2814 if (u2)
2815 manager_invoke_sigchld_event(m, u2, &si);
2816 if (array_copy)
2817 for (size_t i = 0; array_copy[i]; i++)
2818 manager_invoke_sigchld_event(m, array_copy[i], &si);
575b300b 2819 }
9152c765 2820
575b300b
LP
2821 /* And now, we actually reap the zombie. */
2822 if (waitid(P_PID, si.si_pid, &si, WEXITED) < 0) {
2823 log_error_errno(errno, "Failed to dequeue child, ignoring: %m");
2824 return 0;
2825 }
9152c765 2826
575b300b 2827 return 0;
8c47c732 2828
575b300b
LP
2829turn_off:
2830 /* All children processed for now, turn off event source */
4112df16 2831
575b300b
LP
2832 r = sd_event_source_set_enabled(m->sigchld_event_source, SD_EVENT_OFF);
2833 if (r < 0)
2834 return log_error_errno(r, "Failed to disable SIGCHLD event source: %m");
9152c765
LP
2835
2836 return 0;
2837}
2838
5f968096
ZJS
2839static void manager_start_special(Manager *m, const char *name, JobMode mode) {
2840 Job *job;
398ef8ba 2841
5f968096
ZJS
2842 if (manager_add_job_by_name_and_warn(m, JOB_START, name, mode, NULL, &job) < 0)
2843 return;
1e001f52 2844
5f968096
ZJS
2845 const char *s = unit_status_string(job->unit, NULL);
2846
2847 log_info("Activating special unit %s...", s);
3889fc6f
ZJS
2848
2849 sd_notifyf(false,
2850 "STATUS=Activating special unit %s...", s);
2851 m->status_ready = false;
28247076
LP
2852}
2853
24dd31c1
LN
2854static void manager_handle_ctrl_alt_del(Manager *m) {
2855 /* If the user presses C-A-D more than
2856 * 7 times within 2s, we reboot/shutdown immediately,
2857 * unless it was disabled in system.conf */
2858
7994ac1d 2859 if (ratelimit_below(&m->ctrl_alt_del_ratelimit) || m->cad_burst_action == EMERGENCY_ACTION_NONE)
5f968096 2860 manager_start_special(m, SPECIAL_CTRL_ALT_DEL_TARGET, JOB_REPLACE_IRREVERSIBLY);
ae8c7939 2861 else
7af67e9a 2862 emergency_action(m, m->cad_burst_action, EMERGENCY_ACTION_WARN, NULL, -1,
ae8c7939 2863 "Ctrl-Alt-Del was pressed more than 7 times within 2s");
24dd31c1
LN
2864}
2865
718db961 2866static int manager_dispatch_signal_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
99534007 2867 Manager *m = ASSERT_PTR(userdata);
9152c765
LP
2868 ssize_t n;
2869 struct signalfd_siginfo sfsi;
dacd6cee 2870 int r;
9152c765 2871
718db961
LP
2872 assert(m->signal_fd == fd);
2873
2874 if (revents != EPOLLIN) {
2875 log_warning("Got unexpected events from signal file descriptor.");
2876 return 0;
2877 }
9152c765 2878
575b300b 2879 n = read(m->signal_fd, &sfsi, sizeof(sfsi));
8add30a0
YW
2880 if (n < 0) {
2881 if (ERRNO_IS_TRANSIENT(errno))
575b300b 2882 return 0;
9152c765 2883
575b300b
LP
2884 /* We return an error here, which will kill this handler,
2885 * to avoid a busy loop on read error. */
2886 return log_error_errno(errno, "Reading from signal fd failed: %m");
2887 }
8add30a0 2888 if (n != sizeof(sfsi)) {
c0f86d66 2889 log_warning("Truncated read from signal fd (%zi bytes), ignoring!", n);
8add30a0
YW
2890 return 0;
2891 }
9152c765 2892
575b300b
LP
2893 log_received_signal(sfsi.ssi_signo == SIGCHLD ||
2894 (sfsi.ssi_signo == SIGTERM && MANAGER_IS_USER(m))
2895 ? LOG_DEBUG : LOG_INFO,
2896 &sfsi);
1e001f52 2897
575b300b 2898 switch (sfsi.ssi_signo) {
b9cd2ec1 2899
575b300b
LP
2900 case SIGCHLD:
2901 r = sd_event_source_set_enabled(m->sigchld_event_source, SD_EVENT_ON);
2902 if (r < 0)
8afabc50 2903 log_warning_errno(r, "Failed to enable SIGCHLD event source, ignoring: %m");
b9cd2ec1 2904
575b300b 2905 break;
84e9af1e 2906
575b300b
LP
2907 case SIGTERM:
2908 if (MANAGER_IS_SYSTEM(m)) {
ba0c7754 2909 /* This is for compatibility with the original sysvinit */
c52b19d6
LP
2910 if (verify_run_space_and_log("Refusing to reexecute") < 0)
2911 break;
2912
2913 m->objective = MANAGER_REEXECUTE;
a1b256b0 2914 break;
575b300b 2915 }
84e9af1e 2916
575b300b
LP
2917 _fallthrough_;
2918 case SIGINT:
2919 if (MANAGER_IS_SYSTEM(m))
2920 manager_handle_ctrl_alt_del(m);
2921 else
5f968096 2922 manager_start_special(m, SPECIAL_EXIT_TARGET, JOB_REPLACE_IRREVERSIBLY);
575b300b 2923 break;
84e9af1e 2924
575b300b 2925 case SIGWINCH:
ba0c7754 2926 /* This is a nop on non-init */
575b300b 2927 if (MANAGER_IS_SYSTEM(m))
5f968096 2928 manager_start_special(m, SPECIAL_KBREQUEST_TARGET, JOB_REPLACE);
84e9af1e 2929
575b300b 2930 break;
84e9af1e 2931
575b300b 2932 case SIGPWR:
ba0c7754 2933 /* This is a nop on non-init */
575b300b 2934 if (MANAGER_IS_SYSTEM(m))
5f968096 2935 manager_start_special(m, SPECIAL_SIGPWR_TARGET, JOB_REPLACE);
6632c602 2936
575b300b 2937 break;
57ee42ce 2938
8559b3b7 2939 case SIGUSR1:
2b680534 2940 if (manager_dbus_is_running(m, false)) {
575b300b 2941 log_info("Trying to reconnect to bus...");
575b300b 2942
8559b3b7
LP
2943 (void) bus_init_api(m);
2944
2945 if (MANAGER_IS_SYSTEM(m))
2946 (void) bus_init_system(m);
5f968096
ZJS
2947 } else
2948 manager_start_special(m, SPECIAL_DBUS_SERVICE, JOB_REPLACE);
57ee42ce 2949
575b300b 2950 break;
575b300b
LP
2951
2952 case SIGUSR2: {
2953 _cleanup_free_ char *dump = NULL;
2954
d1d8786c 2955 r = manager_get_dump_string(m, /* patterns= */ NULL, &dump);
575b300b
LP
2956 if (r < 0) {
2957 log_warning_errno(errno, "Failed to acquire manager dump: %m");
57ee42ce
LP
2958 break;
2959 }
2960
575b300b
LP
2961 log_dump(LOG_INFO, dump);
2962 break;
2963 }
2149e37c 2964
575b300b 2965 case SIGHUP:
c52b19d6
LP
2966 if (verify_run_space_and_log("Refusing to reload") < 0)
2967 break;
2968
2969 m->objective = MANAGER_RELOAD;
575b300b
LP
2970 break;
2971
2972 default: {
2973
2974 /* Starting SIGRTMIN+0 */
2975 static const struct {
2976 const char *target;
2977 JobMode mode;
2978 } target_table[] = {
13ffc607
LP
2979 [0] = { SPECIAL_DEFAULT_TARGET, JOB_ISOLATE },
2980 [1] = { SPECIAL_RESCUE_TARGET, JOB_ISOLATE },
2981 [2] = { SPECIAL_EMERGENCY_TARGET, JOB_ISOLATE },
2982 [3] = { SPECIAL_HALT_TARGET, JOB_REPLACE_IRREVERSIBLY },
2983 [4] = { SPECIAL_POWEROFF_TARGET, JOB_REPLACE_IRREVERSIBLY },
2984 [5] = { SPECIAL_REBOOT_TARGET, JOB_REPLACE_IRREVERSIBLY },
2985 [6] = { SPECIAL_KEXEC_TARGET, JOB_REPLACE_IRREVERSIBLY },
2986 [7] = { SPECIAL_SOFT_REBOOT_TARGET, JOB_REPLACE_IRREVERSIBLY },
575b300b
LP
2987 };
2988
2989 /* Starting SIGRTMIN+13, so that target halt and system halt are 10 apart */
af41e508 2990 static const ManagerObjective objective_table[] = {
575b300b
LP
2991 [0] = MANAGER_HALT,
2992 [1] = MANAGER_POWEROFF,
2993 [2] = MANAGER_REBOOT,
2994 [3] = MANAGER_KEXEC,
13ffc607 2995 [4] = MANAGER_SOFT_REBOOT,
575b300b 2996 };
b2cdc666 2997
575b300b
LP
2998 if ((int) sfsi.ssi_signo >= SIGRTMIN+0 &&
2999 (int) sfsi.ssi_signo < SIGRTMIN+(int) ELEMENTSOF(target_table)) {
3000 int idx = (int) sfsi.ssi_signo - SIGRTMIN;
5f968096 3001 manager_start_special(m, target_table[idx].target, target_table[idx].mode);
1005d14f 3002 break;
2149e37c 3003 }
1005d14f 3004
575b300b 3005 if ((int) sfsi.ssi_signo >= SIGRTMIN+13 &&
af41e508
LP
3006 (int) sfsi.ssi_signo < SIGRTMIN+13+(int) ELEMENTSOF(objective_table)) {
3007 m->objective = objective_table[sfsi.ssi_signo - SIGRTMIN - 13];
575b300b
LP
3008 break;
3009 }
3010
3011 switch (sfsi.ssi_signo - SIGRTMIN) {
3012
29e6b0c1
LP
3013 case 18: {
3014 bool generic = false;
3015
3016 if (sfsi.ssi_code != SI_QUEUE)
3017 generic = true;
3018 else {
3019 /* Override a few select commands by our own PID1-specific logic */
3020
3021 switch (sfsi.ssi_int) {
3022
3023 case _COMMON_SIGNAL_COMMAND_LOG_LEVEL_BASE..._COMMON_SIGNAL_COMMAND_LOG_LEVEL_END:
3024 manager_override_log_level(m, sfsi.ssi_int - _COMMON_SIGNAL_COMMAND_LOG_LEVEL_BASE);
3025 break;
3026
3027 case COMMON_SIGNAL_COMMAND_CONSOLE:
3028 manager_override_log_target(m, LOG_TARGET_CONSOLE);
3029 break;
3030
3031 case COMMON_SIGNAL_COMMAND_JOURNAL:
3032 manager_override_log_target(m, LOG_TARGET_JOURNAL);
3033 break;
3034
3035 case COMMON_SIGNAL_COMMAND_KMSG:
3036 manager_override_log_target(m, LOG_TARGET_KMSG);
3037 break;
3038
3039 case COMMON_SIGNAL_COMMAND_NULL:
3040 manager_override_log_target(m, LOG_TARGET_NULL);
3041 break;
3042
3043 default:
3044 generic = true;
3045 }
3046 }
3047
3048 if (generic)
3049 return sigrtmin18_handler(source, &sfsi, NULL);
3050
3051 break;
3052 }
3053
575b300b 3054 case 20:
43bba15a 3055 manager_override_show_status(m, SHOW_STATUS_YES, "signal");
a16e1123
LP
3056 break;
3057
575b300b 3058 case 21:
43bba15a 3059 manager_override_show_status(m, SHOW_STATUS_NO, "signal");
575b300b 3060 break;
7d793605 3061
575b300b 3062 case 22:
a6ecbf83 3063 manager_override_log_level(m, LOG_DEBUG);
575b300b
LP
3064 break;
3065
3066 case 23:
a6ecbf83 3067 manager_restore_original_log_level(m);
575b300b 3068 break;
0003d1ab 3069
575b300b
LP
3070 case 24:
3071 if (MANAGER_IS_USER(m)) {
af41e508 3072 m->objective = MANAGER_EXIT;
575b300b 3073 return 0;
0658666b 3074 }
9152c765 3075
575b300b
LP
3076 /* This is a nop on init */
3077 break;
3078
463aef23
FB
3079 case 25:
3080 m->objective = MANAGER_REEXECUTE;
3081 break;
3082
575b300b
LP
3083 case 26:
3084 case 29: /* compatibility: used to be mapped to LOG_TARGET_SYSLOG_OR_KMSG */
bda7d78b 3085 manager_restore_original_log_target(m);
575b300b
LP
3086 break;
3087
3088 case 27:
bda7d78b 3089 manager_override_log_target(m, LOG_TARGET_CONSOLE);
575b300b
LP
3090 break;
3091
3092 case 28:
bda7d78b 3093 manager_override_log_target(m, LOG_TARGET_KMSG);
575b300b
LP
3094 break;
3095
3096 default:
3097 log_warning("Got unhandled signal <%s>.", signal_to_string(sfsi.ssi_signo));
3098 }
3099 }}
034c6ed7
LP
3100
3101 return 0;
3102}
3103
718db961 3104static int manager_dispatch_time_change_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
99534007 3105 Manager *m = ASSERT_PTR(userdata);
718db961 3106 Unit *u;
034c6ed7 3107
a80c1575 3108 log_struct(LOG_DEBUG,
2b044526 3109 "MESSAGE_ID=" SD_MESSAGE_TIME_CHANGE_STR,
a1230ff9 3110 LOG_MESSAGE("Time has been changed"));
034c6ed7 3111
718db961 3112 /* Restart the watch */
7feedd18 3113 (void) manager_setup_time_change(m);
4e434314 3114
90e74a66 3115 HASHMAP_FOREACH(u, m->units)
718db961
LP
3116 if (UNIT_VTABLE(u)->time_change)
3117 UNIT_VTABLE(u)->time_change(u);
ea430986 3118
718db961
LP
3119 return 0;
3120}
ea430986 3121
bbf5fd8e
LP
3122static int manager_dispatch_timezone_change(
3123 sd_event_source *source,
3124 const struct inotify_event *e,
3125 void *userdata) {
3126
99534007 3127 Manager *m = ASSERT_PTR(userdata);
bbf5fd8e 3128 int changed;
bbf5fd8e
LP
3129 Unit *u;
3130
bbf5fd8e
LP
3131 log_debug("inotify event for /etc/localtime");
3132
3133 changed = manager_read_timezone_stat(m);
f20db199 3134 if (changed <= 0)
bbf5fd8e 3135 return changed;
bbf5fd8e
LP
3136
3137 /* Something changed, restart the watch, to ensure we watch the new /etc/localtime if it changed */
3138 (void) manager_setup_timezone_change(m);
3139
3140 /* Read the new timezone */
3141 tzset();
3142
3143 log_debug("Timezone has been changed (now: %s).", tzname[daylight]);
3144
90e74a66 3145 HASHMAP_FOREACH(u, m->units)
bbf5fd8e
LP
3146 if (UNIT_VTABLE(u)->timezone_change)
3147 UNIT_VTABLE(u)->timezone_change(u);
3148
3149 return 0;
3150}
3151
718db961 3152static int manager_dispatch_idle_pipe_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
99534007 3153 Manager *m = ASSERT_PTR(userdata);
8742514c 3154
718db961 3155 assert(m->idle_pipe[2] == fd);
8742514c 3156
8f41e6b6
ZJS
3157 /* There's at least one Type=idle child that just gave up on us waiting for the boot process to
3158 * complete. Let's now turn off any further console output if there's at least one service that needs
3159 * console access, so that from now on our own output should not spill into that service's output
3160 * anymore. After all, we support Type=idle only to beautify console output and it generally is set
3161 * on services that want to own the console exclusively without our interference. */
718db961 3162 m->no_console_output = m->n_on_console > 0;
03b717a3 3163
30fd9a2d 3164 /* Acknowledge the child's request, and let all other children know too that they shouldn't wait
8f41e6b6 3165 * any longer by closing the pipes towards them, which is what they are waiting for. */
718db961 3166 manager_close_idle_pipe(m);
03b717a3 3167
718db961
LP
3168 return 0;
3169}
31a7eb86 3170
718db961 3171static int manager_dispatch_jobs_in_progress(sd_event_source *source, usec_t usec, void *userdata) {
99534007 3172 Manager *m = ASSERT_PTR(userdata);
fd08a840 3173 int r;
31a7eb86 3174
fd08a840 3175 assert(source);
9152c765 3176
718db961 3177 manager_print_jobs_in_progress(m);
fd08a840 3178
39cf0351 3179 r = sd_event_source_set_time_relative(source, JOBS_IN_PROGRESS_PERIOD_USEC);
fd08a840
ZJS
3180 if (r < 0)
3181 return r;
3182
3183 return sd_event_source_set_enabled(source, SD_EVENT_ONESHOT);
9152c765
LP
3184}
3185
3186int manager_loop(Manager *m) {
8c227e7f 3187 RateLimit rl = { .interval = 1*USEC_PER_SEC, .burst = 50000 };
9152c765 3188 int r;
9152c765
LP
3189
3190 assert(m);
1fb70e66 3191 assert(m->objective == MANAGER_OK); /* Ensure manager_startup() has been called */
9152c765 3192
b0c918b9
LP
3193 manager_check_finished(m);
3194
575b300b
LP
3195 /* There might still be some zombies hanging around from before we were exec()'ed. Let's reap them. */
3196 r = sd_event_source_set_enabled(m->sigchld_event_source, SD_EVENT_ON);
e96d6be7 3197 if (r < 0)
575b300b 3198 return log_error_errno(r, "Failed to enable SIGCHLD event source: %m");
a4312405 3199
af41e508 3200 while (m->objective == MANAGER_OK) {
9152c765 3201
ae4a0ec4 3202 (void) watchdog_ping();
e96d6be7 3203
7994ac1d 3204 if (!ratelimit_below(&rl)) {
ea430986
LP
3205 /* Yay, something is going seriously wrong, pause a little */
3206 log_warning("Looping too fast. Throttling execution a little.");
3207 sleep(1);
3208 }
3209
37a8e683 3210 if (manager_dispatch_load_queue(m) > 0)
23a177ef
LP
3211 continue;
3212
c5a97ed1
LP
3213 if (manager_dispatch_gc_job_queue(m) > 0)
3214 continue;
3215
3216 if (manager_dispatch_gc_unit_queue(m) > 0)
701cc384
LP
3217 continue;
3218
cf1265e1 3219 if (manager_dispatch_cleanup_queue(m) > 0)
c1e1601e 3220 continue;
034c6ed7 3221
91a6073e 3222 if (manager_dispatch_cgroup_realize_queue(m) > 0)
c1e1601e
LP
3223 continue;
3224
0bc488c9
LP
3225 if (manager_dispatch_start_when_upheld_queue(m) > 0)
3226 continue;
3227
56c59592
LP
3228 if (manager_dispatch_stop_when_bound_queue(m) > 0)
3229 continue;
3230
a3c1168a
LP
3231 if (manager_dispatch_stop_when_unneeded_queue(m) > 0)
3232 continue;
3233
6ac62d61
LP
3234 if (manager_dispatch_release_resources_queue(m) > 0)
3235 continue;
3236
c1e1601e 3237 if (manager_dispatch_dbus_queue(m) > 0)
ea430986 3238 continue;
ea430986 3239
c5f8a179 3240 /* Sleep for watchdog runtime wait time */
12663295 3241 r = sd_event_run(m->event, watchdog_runtime_wait());
23bbb0de
MS
3242 if (r < 0)
3243 return log_error_errno(r, "Failed to run event loop: %m");
a16e1123 3244 }
957ca890 3245
af41e508 3246 return m->objective;
83c60c9f 3247}
ea430986 3248
718db961 3249int manager_load_unit_from_dbus_path(Manager *m, const char *s, sd_bus_error *e, Unit **_u) {
ede3a796 3250 _cleanup_free_ char *n = NULL;
4b58153d 3251 sd_id128_t invocation_id;
ea430986 3252 Unit *u;
80fbf05e 3253 int r;
ea430986
LP
3254
3255 assert(m);
3256 assert(s);
3257 assert(_u);
3258
ede3a796
LP
3259 r = unit_name_from_dbus_path(s, &n);
3260 if (r < 0)
3261 return r;
ea430986 3262
da890466 3263 /* Permit addressing units by invocation ID: if the passed bus path is suffixed by a 128-bit ID then
8f41e6b6 3264 * we use it as invocation ID. */
4b58153d
LP
3265 r = sd_id128_from_string(n, &invocation_id);
3266 if (r >= 0) {
3267 u = hashmap_get(m->units_by_invocation_id, &invocation_id);
3268 if (u) {
3269 *_u = u;
3270 return 0;
3271 }
3272
930c124c
ZJS
3273 return sd_bus_error_setf(e, BUS_ERROR_NO_UNIT_FOR_INVOCATION_ID,
3274 "No unit with the specified invocation ID " SD_ID128_FORMAT_STR " known.",
3275 SD_ID128_FORMAT_VAL(invocation_id));
4b58153d
LP
3276 }
3277
00c83b43 3278 /* If this didn't work, we check if this is a unit name */
930c124c
ZJS
3279 if (!unit_name_is_valid(n, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE)) {
3280 _cleanup_free_ char *nn = NULL;
3281
3282 nn = cescape(n);
3283 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS,
3284 "Unit name %s is neither a valid invocation ID nor unit name.", strnull(nn));
3285 }
00c83b43 3286
80fbf05e 3287 r = manager_load_unit(m, n, NULL, e, &u);
80fbf05e
MS
3288 if (r < 0)
3289 return r;
ea430986
LP
3290
3291 *_u = u;
ea430986
LP
3292 return 0;
3293}
86fbf370
LP
3294
3295int manager_get_job_from_dbus_path(Manager *m, const char *s, Job **_j) {
718db961 3296 const char *p;
86fbf370 3297 unsigned id;
718db961 3298 Job *j;
86fbf370
LP
3299 int r;
3300
3301 assert(m);
3302 assert(s);
3303 assert(_j);
3304
718db961
LP
3305 p = startswith(s, "/org/freedesktop/systemd1/job/");
3306 if (!p)
86fbf370
LP
3307 return -EINVAL;
3308
718db961 3309 r = safe_atou(p, &id);
8742514c 3310 if (r < 0)
86fbf370
LP
3311 return r;
3312
8742514c
LP
3313 j = manager_get_job(m, id);
3314 if (!j)
86fbf370
LP
3315 return -ENOENT;
3316
3317 *_j = j;
3318
3319 return 0;
3320}
dfcd764e 3321
4927fcae 3322void manager_send_unit_audit(Manager *m, Unit *u, int type, bool success) {
e537352b 3323
349cc4a5 3324#if HAVE_AUDIT
2ba11090 3325 _cleanup_free_ char *p = NULL;
0aa281df 3326 const char *msg;
7410616c 3327 int audit_fd, r;
e537352b 3328
463d0d15 3329 if (!MANAGER_IS_SYSTEM(m))
a1a078ee
LP
3330 return;
3331
c1165f82
LP
3332 audit_fd = get_audit_fd();
3333 if (audit_fd < 0)
e537352b
LP
3334 return;
3335
bbd3a7ba
LP
3336 /* Don't generate audit events if the service was already
3337 * started and we're just deserializing */
2c289ea8 3338 if (MANAGER_IS_RELOADING(m))
bbd3a7ba
LP
3339 return;
3340
7410616c
LP
3341 r = unit_name_to_prefix_and_instance(u->id, &p);
3342 if (r < 0) {
d52b8493 3343 log_warning_errno(r, "Failed to extract prefix and instance of unit name, ignoring: %m");
e537352b
LP
3344 return;
3345 }
3346
63c372cb 3347 msg = strjoina("unit=", p);
0aa281df 3348 if (audit_log_user_comm_message(audit_fd, type, msg, "systemd", NULL, NULL, NULL, success) < 0) {
d52b8493
LP
3349 if (ERRNO_IS_PRIVILEGE(errno)) {
3350 /* We aren't allowed to send audit messages? Then let's not retry again. */
3351 log_debug_errno(errno, "Failed to send audit message, closing audit socket: %m");
c1165f82 3352 close_audit_fd();
d52b8493
LP
3353 } else
3354 log_warning_errno(errno, "Failed to send audit message, ignoring: %m");
391ade86 3355 }
4927fcae 3356#endif
e537352b 3357
e537352b
LP
3358}
3359
e983b760 3360void manager_send_unit_plymouth(Manager *m, Unit *u) {
fc2fffe7 3361 static const union sockaddr_union sa = PLYMOUTH_SOCKET;
2ba11090 3362 _cleanup_free_ char *message = NULL;
254d1313 3363 _cleanup_close_ int fd = -EBADF;
fc2fffe7 3364 int n = 0;
e983b760
LP
3365
3366 /* Don't generate plymouth events if the service was already
3367 * started and we're just deserializing */
2c289ea8 3368 if (MANAGER_IS_RELOADING(m))
e983b760
LP
3369 return;
3370
463d0d15 3371 if (!MANAGER_IS_SYSTEM(m))
e983b760
LP
3372 return;
3373
75f86906 3374 if (detect_container() > 0)
3772995a
LP
3375 return;
3376
b2bfd121 3377 if (!UNIT_VTABLE(u)->notify_plymouth)
e983b760
LP
3378 return;
3379
3380 /* We set SOCK_NONBLOCK here so that we rather drop the
3381 * message then wait for plymouth */
e62d8c39
ZJS
3382 fd = socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0);
3383 if (fd < 0) {
56f64d95 3384 log_error_errno(errno, "socket() failed: %m");
e983b760
LP
3385 return;
3386 }
3387
fc2fffe7 3388 if (connect(fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0) {
f60a028a 3389 if (!IN_SET(errno, EAGAIN, ENOENT) && !ERRNO_IS_DISCONNECT(errno))
56f64d95 3390 log_error_errno(errno, "connect() failed: %m");
2ba11090 3391 return;
e983b760
LP
3392 }
3393
305757d8
ZJS
3394 if (asprintf(&message, "U\002%c%s%n", (int) (strlen(u->id) + 1), u->id, &n) < 0)
3395 return (void) log_oom();
e983b760
LP
3396
3397 errno = 0;
2ba11090 3398 if (write(fd, message, n + 1) != n + 1)
f60a028a 3399 if (!IN_SET(errno, EAGAIN, ENOENT) && !ERRNO_IS_DISCONNECT(errno))
56f64d95 3400 log_error_errno(errno, "Failed to write Plymouth message: %m");
e983b760
LP
3401}
3402
986935cf
FB
3403usec_t manager_get_watchdog(Manager *m, WatchdogType t) {
3404 assert(m);
3405
3406 if (MANAGER_IS_USER(m))
3407 return USEC_INFINITY;
3408
902ea119 3409 if (m->watchdog_overridden[t] != USEC_INFINITY)
986935cf
FB
3410 return m->watchdog_overridden[t];
3411
3412 return m->watchdog[t];
3413}
3414
3415void manager_set_watchdog(Manager *m, WatchdogType t, usec_t timeout) {
986935cf
FB
3416
3417 assert(m);
3418
3419 if (MANAGER_IS_USER(m))
3420 return;
3421
3422 if (m->watchdog[t] == timeout)
3423 return;
3424
902ea119
CK
3425 if (m->watchdog_overridden[t] == USEC_INFINITY) {
3426 if (t == WATCHDOG_RUNTIME)
f16890f8 3427 (void) watchdog_setup(timeout);
902ea119 3428 else if (t == WATCHDOG_PRETIMEOUT)
5717062e 3429 (void) watchdog_setup_pretimeout(timeout);
902ea119 3430 }
986935cf 3431
61927b9f 3432 m->watchdog[t] = timeout;
986935cf
FB
3433}
3434
aac47032 3435void manager_override_watchdog(Manager *m, WatchdogType t, usec_t timeout) {
902ea119 3436 usec_t usec;
986935cf
FB
3437
3438 assert(m);
3439
3440 if (MANAGER_IS_USER(m))
aac47032 3441 return;
986935cf
FB
3442
3443 if (m->watchdog_overridden[t] == timeout)
aac47032 3444 return;
986935cf 3445
9b5560f3 3446 usec = timeout == USEC_INFINITY ? m->watchdog[t] : timeout;
902ea119 3447 if (t == WATCHDOG_RUNTIME)
f16890f8 3448 (void) watchdog_setup(usec);
902ea119
CK
3449 else if (t == WATCHDOG_PRETIMEOUT)
3450 (void) watchdog_setup_pretimeout(usec);
986935cf 3451
61927b9f 3452 m->watchdog_overridden[t] = timeout;
986935cf
FB
3453}
3454
aff3a9e1
LB
3455int manager_set_watchdog_pretimeout_governor(Manager *m, const char *governor) {
3456 _cleanup_free_ char *p = NULL;
3457 int r;
3458
3459 assert(m);
3460
3461 if (MANAGER_IS_USER(m))
3462 return 0;
3463
3464 if (streq_ptr(m->watchdog_pretimeout_governor, governor))
3465 return 0;
3466
3467 p = strdup(governor);
3468 if (!p)
3469 return -ENOMEM;
3470
3471 r = watchdog_setup_pretimeout_governor(governor);
3472 if (r < 0)
3473 return r;
3474
3475 return free_and_replace(m->watchdog_pretimeout_governor, p);
3476}
3477
3478int manager_override_watchdog_pretimeout_governor(Manager *m, const char *governor) {
3479 _cleanup_free_ char *p = NULL;
3480 int r;
3481
3482 assert(m);
3483
3484 if (MANAGER_IS_USER(m))
3485 return 0;
3486
3487 if (streq_ptr(m->watchdog_pretimeout_governor_overridden, governor))
3488 return 0;
3489
3490 p = strdup(governor);
3491 if (!p)
3492 return -ENOMEM;
3493
3494 r = watchdog_setup_pretimeout_governor(governor);
3495 if (r < 0)
3496 return r;
3497
3498 return free_and_replace(m->watchdog_pretimeout_governor_overridden, p);
3499}
3500
a16e1123 3501int manager_reload(Manager *m) {
d7ac0952 3502 _unused_ _cleanup_(manager_reloading_stopp) Manager *reloading = NULL;
51d122af 3503 _cleanup_fdset_free_ FDSet *fds = NULL;
6a33af40
LP
3504 _cleanup_fclose_ FILE *f = NULL;
3505 int r;
a16e1123
LP
3506
3507 assert(m);
3508
07719a21
LP
3509 r = manager_open_serialization(m, &f);
3510 if (r < 0)
6a33af40 3511 return log_error_errno(r, "Failed to create serialization file: %m");
38c52d46 3512
07719a21 3513 fds = fdset_new();
6a33af40
LP
3514 if (!fds)
3515 return log_oom();
3516
d147e2b6
ZJS
3517 /* We are officially in reload mode from here on. */
3518 reloading = manager_reloading_start(m);
a16e1123 3519
b3680f49 3520 r = manager_serialize(m, f, fds, false);
d147e2b6 3521 if (r < 0)
d68c645b 3522 return r;
a16e1123 3523
d147e2b6
ZJS
3524 if (fseeko(f, 0, SEEK_SET) < 0)
3525 return log_error_errno(errno, "Failed to seek to beginning of serialization: %m");
a16e1123 3526
6a33af40 3527 /* 💀 This is the point of no return, from here on there is no way back. 💀 */
d147e2b6 3528 reloading = NULL;
6a33af40
LP
3529
3530 bus_manager_send_reloading(m, true);
3531
3532 /* Start by flushing out all jobs and units, all generated units, all runtime environments, all dynamic users
3533 * and everything else that is worth flushing out. We'll get it all back from the serialization — if we need
7802194a 3534 * it. */
6a33af40 3535
a16e1123 3536 manager_clear_jobs_and_units(m);
07a78643 3537 lookup_paths_flush_generator(&m->lookup_paths);
84e3543e 3538 lookup_paths_free(&m->lookup_paths);
e76506b7 3539 exec_shared_runtime_vacuum(m);
29206d46 3540 dynamic_user_vacuum(m, false);
00d9ef85
LP
3541 m->uid_refs = hashmap_free(m->uid_refs);
3542 m->gid_refs = hashmap_free(m->gid_refs);
2ded0c04 3543
4870133b 3544 r = lookup_paths_init_or_warn(&m->lookup_paths, m->runtime_scope, 0, NULL);
6a33af40 3545 if (r < 0)
99aad9a2 3546 return r;
5a1e9937 3547
6a33af40
LP
3548 (void) manager_run_environment_generators(m);
3549 (void) manager_run_generators(m);
64691d20 3550
581fef8d 3551 lookup_paths_log(&m->lookup_paths);
07719a21 3552
91e0ee5f 3553 /* We flushed out generated files, for which we don't watch mtime, so we should flush the old map. */
e8630e69 3554 manager_free_unit_name_maps(m);
5a1e9937 3555
6a33af40 3556 /* First, enumerate what we can from kernel and suchlike */
3ad2afb6 3557 manager_enumerate_perpetual(m);
ba64af90 3558 manager_enumerate(m);
a16e1123
LP
3559
3560 /* Second, deserialize our stored data */
6a33af40
LP
3561 r = manager_deserialize(m, f, fds);
3562 if (r < 0)
3563 log_warning_errno(r, "Deserialization failed, proceeding anyway: %m");
a16e1123 3564
6a33af40 3565 /* We don't need the serialization anymore */
62b0cbb3 3566 f = safe_fclose(f);
a16e1123 3567
6a33af40
LP
3568 /* Re-register notify_fd as event source, and set up other sockets/communication channels we might need */
3569 (void) manager_setup_notify(m);
3570 (void) manager_setup_cgroups_agent(m);
3571 (void) manager_setup_user_lookup_fd(m);
00d9ef85 3572
a16e1123 3573 /* Third, fire things up! */
007c6337 3574 manager_coldplug(m);
a16e1123 3575
5197be06
LP
3576 /* Clean up runtime objects no longer referenced */
3577 manager_vacuum(m);
e8a565cb 3578
3deed59a
AA
3579 /* Clean up deserialized tracked clients */
3580 m->deserialized_subscribed = strv_free(m->deserialized_subscribed);
3581
6a33af40 3582 /* Consider the reload process complete now. */
31dc1ca3
LP
3583 assert(m->n_reloading > 0);
3584 m->n_reloading--;
3585
5ce5e1ad 3586 manager_ready(m);
8936a5e3 3587
71445ae7 3588 m->send_reloading_done = true;
6a33af40 3589 return 0;
a16e1123
LP
3590}
3591
fdf20a31 3592void manager_reset_failed(Manager *m) {
5632e374 3593 Unit *u;
5632e374
LP
3594
3595 assert(m);
3596
90e74a66 3597 HASHMAP_FOREACH(u, m->units)
fdf20a31 3598 unit_reset_failed(u);
5632e374
LP
3599}
3600
31afa0a4 3601bool manager_unit_inactive_or_pending(Manager *m, const char *name) {
8f6df3fa
LP
3602 Unit *u;
3603
3604 assert(m);
3605 assert(name);
3606
3607 /* Returns true if the unit is inactive or going down */
bd0af849
ZJS
3608 u = manager_get_unit(m, name);
3609 if (!u)
8f6df3fa
LP
3610 return true;
3611
31afa0a4 3612 return unit_inactive_or_pending(u);
8f6df3fa
LP
3613}
3614
d8eb10d6
ZJS
3615static void log_taint_string(Manager *m) {
3616 _cleanup_free_ char *taint = NULL;
3617
3618 assert(m);
3619
3620 if (MANAGER_IS_USER(m) || m->taint_logged)
3621 return;
3622
3623 m->taint_logged = true; /* only check for taint once */
3624
3625 taint = manager_taint_string(m);
3626 if (isempty(taint))
3627 return;
3628
3629 log_struct(LOG_NOTICE,
3630 LOG_MESSAGE("System is tainted: %s", taint),
3631 "TAINT=%s", taint,
a1230ff9 3632 "MESSAGE_ID=" SD_MESSAGE_TAINTED_STR);
d8eb10d6
ZJS
3633}
3634
56dacdbc 3635static void manager_notify_finished(Manager *m) {
915b3753 3636 usec_t firmware_usec, loader_usec, kernel_usec, initrd_usec, userspace_usec, total_usec;
b0c918b9 3637
638cece4 3638 if (MANAGER_IS_TEST_RUN(m))
b0c918b9
LP
3639 return;
3640
463d0d15 3641 if (MANAGER_IS_SYSTEM(m) && detect_container() <= 0) {
dc3c9f5e
ZJS
3642 char buf[FORMAT_TIMESPAN_MAX + STRLEN(" (firmware) + ") + FORMAT_TIMESPAN_MAX + STRLEN(" (loader) + ")]
3643 = {};
3644 char *p = buf;
3645 size_t size = sizeof buf;
e03ae661 3646
9f9f0342
LP
3647 /* Note that MANAGER_TIMESTAMP_KERNEL's monotonic value is always at 0, and
3648 * MANAGER_TIMESTAMP_FIRMWARE's and MANAGER_TIMESTAMP_LOADER's monotonic value should be considered
915b3753
LP
3649 * negative values. */
3650
9f9f0342
LP
3651 firmware_usec = m->timestamps[MANAGER_TIMESTAMP_FIRMWARE].monotonic - m->timestamps[MANAGER_TIMESTAMP_LOADER].monotonic;
3652 loader_usec = m->timestamps[MANAGER_TIMESTAMP_LOADER].monotonic - m->timestamps[MANAGER_TIMESTAMP_KERNEL].monotonic;
3653 userspace_usec = m->timestamps[MANAGER_TIMESTAMP_FINISH].monotonic - m->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic;
3654 total_usec = m->timestamps[MANAGER_TIMESTAMP_FIRMWARE].monotonic + m->timestamps[MANAGER_TIMESTAMP_FINISH].monotonic;
18fa6b27 3655
dd1db3c2 3656 if (firmware_usec > 0)
5291f26d 3657 size = strpcpyf(&p, size, "%s (firmware) + ", FORMAT_TIMESPAN(firmware_usec, USEC_PER_MSEC));
dd1db3c2 3658 if (loader_usec > 0)
5291f26d 3659 size = strpcpyf(&p, size, "%s (loader) + ", FORMAT_TIMESPAN(loader_usec, USEC_PER_MSEC));
dd1db3c2 3660
9f9f0342 3661 if (dual_timestamp_is_set(&m->timestamps[MANAGER_TIMESTAMP_INITRD])) {
18fa6b27 3662
7802194a 3663 /* The initrd case on bare-metal */
9f9f0342
LP
3664 kernel_usec = m->timestamps[MANAGER_TIMESTAMP_INITRD].monotonic - m->timestamps[MANAGER_TIMESTAMP_KERNEL].monotonic;
3665 initrd_usec = m->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic - m->timestamps[MANAGER_TIMESTAMP_INITRD].monotonic;
18fa6b27 3666
e12919e8 3667 log_struct(LOG_INFO,
2b044526 3668 "MESSAGE_ID=" SD_MESSAGE_STARTUP_FINISHED_STR,
e12919e8
LP
3669 "KERNEL_USEC="USEC_FMT, kernel_usec,
3670 "INITRD_USEC="USEC_FMT, initrd_usec,
3671 "USERSPACE_USEC="USEC_FMT, userspace_usec,
dd1db3c2
YW
3672 LOG_MESSAGE("Startup finished in %s%s (kernel) + %s (initrd) + %s (userspace) = %s.",
3673 buf,
5291f26d
ZJS
3674 FORMAT_TIMESPAN(kernel_usec, USEC_PER_MSEC),
3675 FORMAT_TIMESPAN(initrd_usec, USEC_PER_MSEC),
3676 FORMAT_TIMESPAN(userspace_usec, USEC_PER_MSEC),
3677 FORMAT_TIMESPAN(total_usec, USEC_PER_MSEC)));
18fa6b27 3678 } else {
7802194a 3679 /* The initrd-less case on bare-metal */
9f9f0342
LP
3680
3681 kernel_usec = m->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic - m->timestamps[MANAGER_TIMESTAMP_KERNEL].monotonic;
18fa6b27
LP
3682 initrd_usec = 0;
3683
81270860 3684 log_struct(LOG_INFO,
2b044526 3685 "MESSAGE_ID=" SD_MESSAGE_STARTUP_FINISHED_STR,
e12919e8 3686 "KERNEL_USEC="USEC_FMT, kernel_usec,
ccd06097 3687 "USERSPACE_USEC="USEC_FMT, userspace_usec,
dd1db3c2
YW
3688 LOG_MESSAGE("Startup finished in %s%s (kernel) + %s (userspace) = %s.",
3689 buf,
5291f26d
ZJS
3690 FORMAT_TIMESPAN(kernel_usec, USEC_PER_MSEC),
3691 FORMAT_TIMESPAN(userspace_usec, USEC_PER_MSEC),
3692 FORMAT_TIMESPAN(total_usec, USEC_PER_MSEC)));
e12919e8
LP
3693 }
3694 } else {
4adf314b 3695 /* The container and --user case */
e12919e8 3696 firmware_usec = loader_usec = initrd_usec = kernel_usec = 0;
9f9f0342 3697 total_usec = userspace_usec = m->timestamps[MANAGER_TIMESTAMP_FINISH].monotonic - m->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic;
e12919e8
LP
3698
3699 log_struct(LOG_INFO,
2b044526 3700 "MESSAGE_ID=" SD_MESSAGE_USER_STARTUP_FINISHED_STR,
e12919e8 3701 "USERSPACE_USEC="USEC_FMT, userspace_usec,
e2cc6eca 3702 LOG_MESSAGE("Startup finished in %s.",
5291f26d 3703 FORMAT_TIMESPAN(total_usec, USEC_PER_MSEC)));
18fa6b27 3704 }
b0c918b9 3705
718db961 3706 bus_manager_send_finished(m, firmware_usec, loader_usec, kernel_usec, initrd_usec, userspace_usec, total_usec);
530345e7 3707
d8eb10d6 3708 log_taint_string(m);
b0c918b9
LP
3709}
3710
6d932659 3711static void user_manager_send_ready(Manager *m) {
4bf4f50f
ZJS
3712 int r;
3713
4adf314b
LP
3714 assert(m);
3715
3716 /* We send READY=1 on reaching basic.target only when running in --user mode. */
3717 if (!MANAGER_IS_USER(m) || m->ready_sent)
3718 return;
3719
d4341b76
ZJS
3720 r = sd_notify(false,
3721 "READY=1\n"
3722 "STATUS=Reached " SPECIAL_BASIC_TARGET ".");
4bf4f50f
ZJS
3723 if (r < 0)
3724 log_warning_errno(r, "Failed to send readiness notification, ignoring: %m");
3725
6d932659
ZJS
3726 m->ready_sent = true;
3727 m->status_ready = false;
3728}
3729
3730static void manager_send_ready(Manager *m) {
4bf4f50f
ZJS
3731 int r;
3732
6d932659
ZJS
3733 if (m->ready_sent && m->status_ready)
3734 /* Skip the notification if nothing changed. */
3735 return;
3736
028f7d3a
ZJS
3737 r = sd_notify(false,
3738 "READY=1\n"
3739 "STATUS=Ready.");
4bf4f50f
ZJS
3740 if (r < 0)
3741 log_full_errno(m->ready_sent ? LOG_DEBUG : LOG_WARNING, r,
3742 "Failed to send readiness notification, ignoring: %m");
3743
6d932659 3744 m->ready_sent = m->status_ready = true;
4adf314b
LP
3745}
3746
3747static void manager_check_basic_target(Manager *m) {
3748 Unit *u;
3749
3750 assert(m);
3751
3752 /* Small shortcut */
3753 if (m->ready_sent && m->taint_logged)
3754 return;
3755
3756 u = manager_get_unit(m, SPECIAL_BASIC_TARGET);
3757 if (!u || !UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(u)))
3758 return;
3759
3760 /* For user managers, send out READY=1 as soon as we reach basic.target */
6d932659 3761 user_manager_send_ready(m);
4adf314b
LP
3762
3763 /* Log the taint string as soon as we reach basic.target */
3764 log_taint_string(m);
3765}
3766
56dacdbc 3767void manager_check_finished(Manager *m) {
56dacdbc
ZJS
3768 assert(m);
3769
2c289ea8 3770 if (MANAGER_IS_RELOADING(m))
aad1976f
LP
3771 return;
3772
4259d202
LP
3773 /* Verify that we have entered the event loop already, and not left it again. */
3774 if (!MANAGER_IS_RUNNING(m))
9771b62d
LP
3775 return;
3776
4adf314b 3777 manager_check_basic_target(m);
0c2826c6 3778
56dacdbc 3779 if (hashmap_size(m->jobs) > 0) {
56dacdbc 3780 if (m->jobs_in_progress_event_source)
2ae56591 3781 /* Ignore any failure, this is only for feedback */
1b4154a8
ZJS
3782 (void) sd_event_source_set_time(m->jobs_in_progress_event_source,
3783 manager_watch_jobs_next_time(m));
56dacdbc
ZJS
3784 return;
3785 }
3786
a4ac27c1
ZJS
3787 /* The jobs hashmap tends to grow a lot during boot, and then it's not reused until shutdown. Let's
3788 kill the hashmap if it is relatively large. */
3789 if (hashmap_buckets(m->jobs) > hashmap_size(m->units) / 10)
3790 m->jobs = hashmap_free(m->jobs);
3791
6d932659
ZJS
3792 manager_send_ready(m);
3793
9c1b17c3
YW
3794 /* Notify Type=idle units that we are done now */
3795 manager_close_idle_pipe(m);
3796
6d932659
ZJS
3797 if (MANAGER_IS_FINISHED(m))
3798 return;
3799
7365a296 3800 manager_flip_auto_status(m, false, "boot finished");
56dacdbc 3801
56dacdbc 3802 /* Turn off confirm spawn now */
7d5ceb64 3803 m->confirm_spawn = NULL;
56dacdbc
ZJS
3804
3805 /* No need to update ask password status when we're going non-interactive */
3806 manager_close_ask_password(m);
3807
3808 /* This is no longer the first boot */
3809 manager_set_first_boot(m, false);
3810
9f9f0342 3811 dual_timestamp_get(m->timestamps + MANAGER_TIMESTAMP_FINISH);
56dacdbc
ZJS
3812
3813 manager_notify_finished(m);
3814
e7ab4d1a 3815 manager_invalidate_startup_units(m);
56dacdbc
ZJS
3816}
3817
dd0ab174
LP
3818void manager_send_reloading(Manager *m) {
3819 assert(m);
3820
3821 /* Let whoever invoked us know that we are now reloading */
3822 (void) sd_notifyf(/* unset= */ false,
3823 "RELOADING=1\n"
3824 "MONOTONIC_USEC=" USEC_FMT "\n", now(CLOCK_MONOTONIC));
3825
3826 /* And ensure that we'll send READY=1 again as soon as we are ready again */
3827 m->ready_sent = false;
3828}
3829
64691d20 3830static bool generator_path_any(const char* const* paths) {
64691d20
ZJS
3831 bool found = false;
3832
3833 /* Optimize by skipping the whole process by not creating output directories
3834 * if no generators are found. */
2034c8b8 3835 STRV_FOREACH(path, paths)
64691d20
ZJS
3836 if (access(*path, F_OK) == 0)
3837 found = true;
3838 else if (errno != ENOENT)
3839 log_warning_errno(errno, "Failed to open generator directory %s: %m", *path);
3840
3841 return found;
3842}
3843
64691d20
ZJS
3844static int manager_run_environment_generators(Manager *m) {
3845 char **tmp = NULL; /* this is only used in the forked process, no cleanup here */
cccf5703 3846 _cleanup_strv_free_ char **paths = NULL;
1ad6e8b3
LP
3847 void* args[] = {
3848 [STDOUT_GENERATE] = &tmp,
3849 [STDOUT_COLLECT] = &tmp,
3850 [STDOUT_CONSUME] = &m->transient_environment,
3851 };
e3b8d063 3852 int r;
64691d20 3853
638cece4 3854 if (MANAGER_IS_TEST_RUN(m) && !(m->test_run_flags & MANAGER_TEST_RUN_ENV_GENERATORS))
e0a3da1f
ZJS
3855 return 0;
3856
361cacf4 3857 paths = env_generator_binary_paths(m->runtime_scope);
cccf5703
BB
3858 if (!paths)
3859 return log_oom();
64691d20 3860
cccf5703 3861 if (!generator_path_any((const char* const*) paths))
64691d20
ZJS
3862 return 0;
3863
2053593f 3864 WITH_UMASK(0022)
cccf5703 3865 r = execute_directories((const char* const*) paths, DEFAULT_TIMEOUT_USEC, gather_environment,
43f565c6
YW
3866 args, NULL, m->transient_environment,
3867 EXEC_DIR_PARALLEL | EXEC_DIR_IGNORE_ERRORS | EXEC_DIR_SET_SYSTEMD_EXEC_PID);
e3b8d063 3868 return r;
64691d20
ZJS
3869}
3870
82c5db16
LP
3871static int build_generator_environment(Manager *m, char ***ret) {
3872 _cleanup_strv_free_ char **nl = NULL;
3873 Virtualization v;
08951245 3874 ConfidentialVirtualization cv;
82c5db16
LP
3875 int r;
3876
3877 assert(m);
3878 assert(ret);
3879
3880 /* Generators oftentimes want to know some basic facts about the environment they run in, in order to
3881 * adjust generated units to that. Let's pass down some bits of information that are easy for us to
3882 * determine (but a bit harder for generator scripts to determine), as environment variables. */
3883
3884 nl = strv_copy(m->transient_environment);
3885 if (!nl)
3886 return -ENOMEM;
3887
4870133b 3888 r = strv_env_assign(&nl, "SYSTEMD_SCOPE", runtime_scope_to_string(m->runtime_scope));
82c5db16
LP
3889 if (r < 0)
3890 return r;
3891
3892 if (MANAGER_IS_SYSTEM(m)) {
3893 /* Note that $SYSTEMD_IN_INITRD may be used to override the initrd detection in much of our
3894 * codebase. This is hence more than purely informational. It will shortcut detection of the
3895 * initrd state if generators invoke our own tools. But that's OK, as it would come to the
3896 * same results (hopefully). */
3897 r = strv_env_assign(&nl, "SYSTEMD_IN_INITRD", one_zero(in_initrd()));
3898 if (r < 0)
3899 return r;
3900
3901 if (m->first_boot >= 0) {
3902 r = strv_env_assign(&nl, "SYSTEMD_FIRST_BOOT", one_zero(m->first_boot));
3903 if (r < 0)
3904 return r;
3905 }
3906 }
3907
3908 v = detect_virtualization();
3909 if (v < 0)
3910 log_debug_errno(v, "Failed to detect virtualization, ignoring: %m");
3911 else if (v > 0) {
3912 const char *s;
3913
3914 s = strjoina(VIRTUALIZATION_IS_VM(v) ? "vm:" :
3915 VIRTUALIZATION_IS_CONTAINER(v) ? "container:" : ":",
3916 virtualization_to_string(v));
3917
3918 r = strv_env_assign(&nl, "SYSTEMD_VIRTUALIZATION", s);
3919 if (r < 0)
3920 return r;
3921 }
3922
08951245
DB
3923 cv = detect_confidential_virtualization();
3924 if (cv < 0)
3925 log_debug_errno(cv, "Failed to detect confidential virtualization, ignoring: %m");
3926 else if (cv > 0) {
3927 r = strv_env_assign(&nl, "SYSTEMD_CONFIDENTIAL_VIRTUALIZATION", confidential_virtualization_to_string(cv));
3928 if (r < 0)
3929 return r;
3930 }
3931
82c5db16
LP
3932 r = strv_env_assign(&nl, "SYSTEMD_ARCHITECTURE", architecture_to_string(uname_architecture()));
3933 if (r < 0)
3934 return r;
3935
3936 *ret = TAKE_PTR(nl);
3937 return 0;
3938}
3939
ca6ce62d
ZJS
3940static int manager_execute_generators(Manager *m, char **paths, bool remount_ro) {
3941 _cleanup_strv_free_ char **ge = NULL;
3942 const char *argv[] = {
3943 NULL, /* Leave this empty, execute_directory() will fill something in */
3944 m->lookup_paths.generator,
3945 m->lookup_paths.generator_early,
3946 m->lookup_paths.generator_late,
3947 NULL,
3948 };
3949 int r;
3950
3951 r = build_generator_environment(m, &ge);
3952 if (r < 0)
3953 return log_error_errno(r, "Failed to build generator environment: %m");
3954
3955 if (remount_ro) {
3956 /* Remount most of the filesystem tree read-only. We leave /sys/ as-is, because our code
3957 * checks whether it is read-only to detect containerized execution environments. We leave
3958 * /run/ as-is too, because that's where our output goes. We also leave /proc/ and /dev/shm/
3959 * because they're API, and /tmp/ that safe_fork() mounted for us.
3960 */
3961 r = bind_remount_recursive("/", MS_RDONLY, MS_RDONLY,
3962 STRV_MAKE("/sys", "/run", "/proc", "/dev/shm", "/tmp"));
3963 if (r < 0)
3964 log_warning_errno(r, "Read-only bind remount failed, ignoring: %m");
3965 }
3966
3967 BLOCK_WITH_UMASK(0022);
3968 return execute_directories(
3969 (const char* const*) paths,
3970 DEFAULT_TIMEOUT_USEC,
3971 /* callbacks= */ NULL, /* callback_args= */ NULL,
3972 (char**) argv,
3973 ge,
3974 EXEC_DIR_PARALLEL | EXEC_DIR_IGNORE_ERRORS | EXEC_DIR_SET_SYSTEMD_EXEC_PID);
3975}
3976
e801700e 3977static int manager_run_generators(Manager *m) {
b8fba0cd 3978 ForkFlags flags = FORK_RESET_SIGNALS | FORK_WAIT | FORK_NEW_MOUNTNS | FORK_MOUNTNS_SLAVE;
ca6ce62d 3979 _cleanup_strv_free_ char **paths = NULL;
07719a21 3980 int r;
5a1e9937
LP
3981
3982 assert(m);
3983
638cece4 3984 if (MANAGER_IS_TEST_RUN(m) && !(m->test_run_flags & MANAGER_TEST_RUN_GENERATORS))
e0a3da1f
ZJS
3985 return 0;
3986
4870133b 3987 paths = generator_binary_paths(m->runtime_scope);
e801700e
ZJS
3988 if (!paths)
3989 return log_oom();
5a1e9937 3990
64691d20
ZJS
3991 if (!generator_path_any((const char* const*) paths))
3992 return 0;
5a1e9937 3993
cd64fd56 3994 r = lookup_paths_mkdir_generator(&m->lookup_paths);
7eb4f326
LP
3995 if (r < 0) {
3996 log_error_errno(r, "Failed to create generator directories: %m");
07719a21 3997 goto finish;
7eb4f326 3998 }
5a1e9937 3999
ca6ce62d
ZJS
4000 /* If we are the system manager, we fork and invoke the generators in a sanitized mount namespace. If
4001 * we are the user manager, let's just execute the generators directly. We might not have the
4002 * necessary privileges, and the system manager has already mounted /tmp/ and everything else for us.
4003 */
4004 if (MANAGER_IS_USER(m)) {
4005 r = manager_execute_generators(m, paths, /* remount_ro= */ false);
82c5db16
LP
4006 goto finish;
4007 }
5a1e9937 4008
b8fba0cd
LB
4009 /* On some systems /tmp/ doesn't exist, and on some other systems we cannot create it at all. Avoid
4010 * trying to mount a private tmpfs on it as there's no one size fits all. */
4011 if (is_dir("/tmp", /* follow= */ false) > 0)
4012 flags |= FORK_PRIVATE_TMP;
4013
4014 r = safe_fork("(sd-gens)", flags, NULL);
ca6ce62d
ZJS
4015 if (r == 0) {
4016 r = manager_execute_generators(m, paths, /* remount_ro= */ true);
4017 _exit(r >= 0 ? EXIT_SUCCESS : EXIT_FAILURE);
4018 }
a2275dcb 4019 if (r < 0) {
46801870 4020 if (!ERRNO_IS_PRIVILEGE(r) && r != -EINVAL) {
a2275dcb
YW
4021 log_error_errno(r, "Failed to fork off sandboxing environment for executing generators: %m");
4022 goto finish;
4023 }
4024
4025 /* Failed to fork with new mount namespace? Maybe, running in a container environment with
46801870
YW
4026 * seccomp or without capability.
4027 *
4028 * We also allow -EINVAL to allow running without CLONE_NEWNS.
4029 *
4030 * Also, when running on non-native userland architecture via systemd-nspawn and
4031 * qemu-user-static QEMU-emulator, clone() with CLONE_NEWNS fails with EINVAL, see
4032 * https://github.com/systemd/systemd/issues/28901.
4033 */
a2275dcb
YW
4034 log_debug_errno(r,
4035 "Failed to fork off sandboxing environment for executing generators. "
4036 "Falling back to execute generators without sandboxing: %m");
4037 r = manager_execute_generators(m, paths, /* remount_ro= */ false);
4038 }
5a1e9937 4039
718db961 4040finish:
cd64fd56 4041 lookup_paths_trim_generator(&m->lookup_paths);
e801700e 4042 return r;
5a1e9937
LP
4043}
4044
1ad6e8b3
LP
4045int manager_transient_environment_add(Manager *m, char **plus) {
4046 char **a;
4047
4048 assert(m);
4049
4050 if (strv_isempty(plus))
4051 return 0;
4052
4ab3d29f 4053 a = strv_env_merge(m->transient_environment, plus);
1ad6e8b3 4054 if (!a)
2fbbbf9a 4055 return log_oom();
1ad6e8b3
LP
4056
4057 sanitize_environment(a);
4058
4059 return strv_free_and_replace(m->transient_environment, a);
4060}
4061
4062int manager_client_environment_modify(
4063 Manager *m,
4064 char **minus,
4065 char **plus) {
4066
718db961 4067 char **a = NULL, **b = NULL, **l;
1ad6e8b3 4068
97d0e5f8 4069 assert(m);
bcd8e6d1 4070
1ad6e8b3
LP
4071 if (strv_isempty(minus) && strv_isempty(plus))
4072 return 0;
4073
4074 l = m->client_environment;
bcd8e6d1 4075
718db961
LP
4076 if (!strv_isempty(minus)) {
4077 a = strv_env_delete(l, 1, minus);
4078 if (!a)
4079 return -ENOMEM;
4080
4081 l = a;
4082 }
4083
4084 if (!strv_isempty(plus)) {
4ab3d29f 4085 b = strv_env_merge(l, plus);
aa9f8a30
AH
4086 if (!b) {
4087 strv_free(a);
718db961 4088 return -ENOMEM;
aa9f8a30 4089 }
bcd8e6d1 4090
718db961
LP
4091 l = b;
4092 }
4093
1ad6e8b3
LP
4094 if (m->client_environment != l)
4095 strv_free(m->client_environment);
4096
718db961
LP
4097 if (a != l)
4098 strv_free(a);
4099 if (b != l)
4100 strv_free(b);
4101
1ad6e8b3
LP
4102 m->client_environment = sanitize_environment(l);
4103 return 0;
4104}
4105
4106int manager_get_effective_environment(Manager *m, char ***ret) {
4107 char **l;
4108
4109 assert(m);
4110 assert(ret);
4111
4ab3d29f 4112 l = strv_env_merge(m->transient_environment, m->client_environment);
1ad6e8b3
LP
4113 if (!l)
4114 return -ENOMEM;
f069efb4 4115
1ad6e8b3 4116 *ret = l;
97d0e5f8
UTL
4117 return 0;
4118}
4119
bfb27b06
LP
4120int manager_set_unit_defaults(Manager *m, const UnitDefaults *defaults) {
4121 _cleanup_free_ char *label = NULL;
4122 struct rlimit *rlimit[_RLIMIT_MAX];
4123 int r;
4124
aa5ae971 4125 assert(m);
bfb27b06 4126 assert(defaults);
aa5ae971 4127
bfb27b06
LP
4128 if (streq_ptr(defaults->smack_process_label, "/"))
4129 label = NULL;
4130 else {
4131 const char *l = defaults->smack_process_label;
aa5ae971 4132#ifdef SMACK_DEFAULT_PROCESS_LABEL
bfb27b06
LP
4133 if (!l)
4134 l = SMACK_DEFAULT_PROCESS_LABEL;
aa5ae971 4135#endif
bfb27b06
LP
4136 if (l) {
4137 label = strdup(l);
4138 if (!label)
4139 return -ENOMEM;
4140 } else
4141 label = NULL;
4142 }
aa5ae971 4143
bfb27b06
LP
4144 r = rlimit_copy_all(rlimit, defaults->rlimit);
4145 if (r < 0)
4146 return r;
aa5ae971 4147
bfb27b06
LP
4148 m->defaults.std_output = defaults->std_output;
4149 m->defaults.std_error = defaults->std_error;
c93ff2e9 4150
bfb27b06
LP
4151 m->defaults.restart_usec = defaults->restart_usec;
4152 m->defaults.timeout_start_usec = defaults->timeout_start_usec;
4153 m->defaults.timeout_stop_usec = defaults->timeout_stop_usec;
4154 m->defaults.timeout_abort_usec = defaults->timeout_abort_usec;
4155 m->defaults.timeout_abort_set = defaults->timeout_abort_set;
4156 m->defaults.device_timeout_usec = defaults->device_timeout_usec;
d9814c76 4157
bfb27b06
LP
4158 m->defaults.start_limit_interval = defaults->start_limit_interval;
4159 m->defaults.start_limit_burst = defaults->start_limit_burst;
c93ff2e9 4160
bfb27b06
LP
4161 m->defaults.cpu_accounting = defaults->cpu_accounting;
4162 m->defaults.memory_accounting = defaults->memory_accounting;
4163 m->defaults.io_accounting = defaults->io_accounting;
4164 m->defaults.blockio_accounting = defaults->blockio_accounting;
4165 m->defaults.tasks_accounting = defaults->tasks_accounting;
4166 m->defaults.ip_accounting = defaults->ip_accounting;
4167
4168 m->defaults.tasks_max = defaults->tasks_max;
4169 m->defaults.timer_accuracy_usec = defaults->timer_accuracy_usec;
4170
4171 m->defaults.oom_policy = defaults->oom_policy;
4172 m->defaults.oom_score_adjust = defaults->oom_score_adjust;
4173 m->defaults.oom_score_adjust_set = defaults->oom_score_adjust_set;
4174
4175 m->defaults.memory_pressure_watch = defaults->memory_pressure_watch;
4176 m->defaults.memory_pressure_threshold_usec = defaults->memory_pressure_threshold_usec;
4177
4178 free_and_replace(m->defaults.smack_process_label, label);
4179 rlimit_free_all(m->defaults.rlimit);
4180 memcpy(m->defaults.rlimit, rlimit, sizeof(struct rlimit*) * _RLIMIT_MAX);
c93ff2e9
FC
4181
4182 return 0;
4183}
4184
8559b3b7
LP
4185void manager_recheck_dbus(Manager *m) {
4186 assert(m);
4187
8f41e6b6
ZJS
4188 /* Connects to the bus if the dbus service and socket are running. If we are running in user mode
4189 * this is all it does. In system mode we'll also connect to the system bus (which will most likely
4190 * just reuse the connection of the API bus). That's because the system bus after all runs as service
4191 * of the system instance, while in the user instance we can assume it's already there. */
8559b3b7 4192
31dc1ca3
LP
4193 if (MANAGER_IS_RELOADING(m))
4194 return; /* don't check while we are reloading… */
4195
2b680534 4196 if (manager_dbus_is_running(m, false)) {
8559b3b7
LP
4197 (void) bus_init_api(m);
4198
4199 if (MANAGER_IS_SYSTEM(m))
4200 (void) bus_init_system(m);
4201 } else {
4202 (void) bus_done_api(m);
4203
4204 if (MANAGER_IS_SYSTEM(m))
4205 (void) bus_done_system(m);
4206 }
4207}
4208
d075092f 4209static bool manager_journal_is_running(Manager *m) {
f1dd0c3f
LP
4210 Unit *u;
4211
4212 assert(m);
4213
638cece4 4214 if (MANAGER_IS_TEST_RUN(m))
7d814a19
LP
4215 return false;
4216
d075092f 4217 /* If we are the user manager we can safely assume that the journal is up */
463d0d15 4218 if (!MANAGER_IS_SYSTEM(m))
d075092f 4219 return true;
f1dd0c3f 4220
d075092f 4221 /* Check that the socket is not only up, but in RUNNING state */
731a676c 4222 u = manager_get_unit(m, SPECIAL_JOURNALD_SOCKET);
d075092f
LP
4223 if (!u)
4224 return false;
4225 if (SOCKET(u)->state != SOCKET_RUNNING)
4226 return false;
f1dd0c3f 4227
d075092f 4228 /* Similar, check if the daemon itself is fully up, too */
731a676c 4229 u = manager_get_unit(m, SPECIAL_JOURNALD_SERVICE);
d075092f
LP
4230 if (!u)
4231 return false;
217677ab 4232 if (!IN_SET(SERVICE(u)->state, SERVICE_RELOAD, SERVICE_RUNNING))
d075092f
LP
4233 return false;
4234
4235 return true;
4236}
4237
6123dfaa
ZJS
4238void disable_printk_ratelimit(void) {
4239 /* Disable kernel's printk ratelimit.
4240 *
4241 * Logging to /dev/kmsg is most useful during early boot and shutdown, where normal logging
4242 * mechanisms are not available. The semantics of this sysctl are such that any kernel command-line
4243 * setting takes precedence. */
4244 int r;
4245
4246 r = sysctl_write("kernel/printk_devkmsg", "on");
4247 if (r < 0)
4248 log_debug_errno(r, "Failed to set sysctl kernel.printk_devkmsg=on: %m");
4249}
4250
d075092f
LP
4251void manager_recheck_journal(Manager *m) {
4252
4253 assert(m);
4254
4255 /* Don't bother with this unless we are in the special situation of being PID 1 */
4256 if (getpid_cached() != 1)
731a676c 4257 return;
f1dd0c3f 4258
31dc1ca3
LP
4259 /* Don't check this while we are reloading, things might still change */
4260 if (MANAGER_IS_RELOADING(m))
4261 return;
4262
8f41e6b6
ZJS
4263 /* The journal is fully and entirely up? If so, let's permit logging to it, if that's configured. If
4264 * the journal is down, don't ever log to it, otherwise we might end up deadlocking ourselves as we
4265 * might trigger an activation ourselves we can't fulfill. */
cedf5088 4266 log_set_prohibit_ipc(!manager_journal_is_running(m));
cc2b9e6b 4267 log_open();
f1dd0c3f
LP
4268}
4269
44a41954
FB
4270static ShowStatus manager_get_show_status(Manager *m) {
4271 assert(m);
4272
4273 if (MANAGER_IS_USER(m))
4274 return _SHOW_STATUS_INVALID;
4275
4276 if (m->show_status_overridden != _SHOW_STATUS_INVALID)
4277 return m->show_status_overridden;
4278
4279 return m->show_status;
4280}
4281
4282bool manager_get_show_status_on(Manager *m) {
4283 assert(m);
4284
4285 return show_status_on(manager_get_show_status(m));
4286}
b309078a 4287
3ceb3471
FB
4288static void set_show_status_marker(bool b) {
4289 if (b)
4290 (void) touch("/run/systemd/show-status");
4291 else
4292 (void) unlink("/run/systemd/show-status");
4293}
4294
44a41954 4295void manager_set_show_status(Manager *m, ShowStatus mode, const char *reason) {
27d340c7 4296 assert(m);
44a41954 4297 assert(reason);
0d066dd1 4298 assert(mode >= 0 && mode < _SHOW_STATUS_MAX);
27d340c7 4299
44a41954 4300 if (MANAGER_IS_USER(m))
27d340c7
LP
4301 return;
4302
ef15d3e1
ZJS
4303 if (mode == m->show_status)
4304 return;
4305
44a41954
FB
4306 if (m->show_status_overridden == _SHOW_STATUS_INVALID) {
4307 bool enabled;
4308
4309 enabled = show_status_on(mode);
4310 log_debug("%s (%s) showing of status (%s).",
4311 enabled ? "Enabling" : "Disabling",
4312 strna(show_status_to_string(mode)),
4313 reason);
4314
3ceb3471 4315 set_show_status_marker(enabled);
44a41954
FB
4316 }
4317
4318 m->show_status = mode;
4319}
4320
43bba15a 4321void manager_override_show_status(Manager *m, ShowStatus mode, const char *reason) {
44a41954
FB
4322 assert(m);
4323 assert(mode < _SHOW_STATUS_MAX);
4324
4325 if (MANAGER_IS_USER(m))
4326 return;
4327
4328 if (mode == m->show_status_overridden)
4329 return;
4330
4331 m->show_status_overridden = mode;
4332
4333 if (mode == _SHOW_STATUS_INVALID)
4334 mode = m->show_status;
4335
ef15d3e1 4336 log_debug("%s (%s) showing of status (%s).",
44a41954 4337 m->show_status_overridden != _SHOW_STATUS_INVALID ? "Overriding" : "Restoring",
ef15d3e1
ZJS
4338 strna(show_status_to_string(mode)),
4339 reason);
b309078a 4340
3ceb3471 4341 set_show_status_marker(show_status_on(mode));
27d340c7
LP
4342}
4343
7d5ceb64
FB
4344const char *manager_get_confirm_spawn(Manager *m) {
4345 static int last_errno = 0;
7d5ceb64
FB
4346 struct stat st;
4347 int r;
4348
ea758432
LP
4349 assert(m);
4350
7d5ceb64
FB
4351 /* Here's the deal: we want to test the validity of the console but don't want
4352 * PID1 to go through the whole console process which might block. But we also
4353 * want to warn the user only once if something is wrong with the console so we
4354 * cannot do the sanity checks after spawning our children. So here we simply do
4355 * really basic tests to hopefully trap common errors.
4356 *
4357 * If the console suddenly disappear at the time our children will really it
4358 * then they will simply fail to acquire it and a positive answer will be
2aed63f4 4359 * assumed. New children will fall back to /dev/console though.
7d5ceb64
FB
4360 *
4361 * Note: TTYs are devices that can come and go any time, and frequently aren't
4362 * available yet during early boot (consider a USB rs232 dongle...). If for any
2aed63f4 4363 * reason the configured console is not ready, we fall back to the default
7d5ceb64
FB
4364 * console. */
4365
ea758432
LP
4366 if (!m->confirm_spawn || path_equal(m->confirm_spawn, "/dev/console"))
4367 return m->confirm_spawn;
7d5ceb64 4368
ea758432
LP
4369 if (stat(m->confirm_spawn, &st) < 0) {
4370 r = -errno;
7d5ceb64 4371 goto fail;
ea758432 4372 }
7d5ceb64
FB
4373
4374 if (!S_ISCHR(st.st_mode)) {
ea758432 4375 r = -ENOTTY;
7d5ceb64
FB
4376 goto fail;
4377 }
4378
4379 last_errno = 0;
ea758432
LP
4380 return m->confirm_spawn;
4381
7d5ceb64 4382fail:
ea758432
LP
4383 if (last_errno != r)
4384 last_errno = log_warning_errno(r, "Failed to open %s, using default console: %m", m->confirm_spawn);
4385
7d5ceb64
FB
4386 return "/dev/console";
4387}
4388
e2680723
LP
4389void manager_set_first_boot(Manager *m, bool b) {
4390 assert(m);
4391
463d0d15 4392 if (!MANAGER_IS_SYSTEM(m))
e2680723
LP
4393 return;
4394
ae2a2c53
LP
4395 if (m->first_boot != (int) b) {
4396 if (b)
4397 (void) touch("/run/systemd/first-boot");
4398 else
4399 (void) unlink("/run/systemd/first-boot");
4400 }
e2680723 4401
ae2a2c53 4402 m->first_boot = b;
e2680723
LP
4403}
4404
b0eb2944
FB
4405void manager_disable_confirm_spawn(void) {
4406 (void) touch("/run/systemd/confirm_spawn_disabled");
4407}
4408
4409bool manager_is_confirm_spawn_disabled(Manager *m) {
4410 if (!m->confirm_spawn)
4411 return true;
4412
4413 return access("/run/systemd/confirm_spawn_disabled", F_OK) >= 0;
4414}
4415
0d6d3cf0
FB
4416static bool manager_should_show_status(Manager *m, StatusType type) {
4417 assert(m);
4418
4419 if (!MANAGER_IS_SYSTEM(m))
4420 return false;
4421
4422 if (m->no_console_output)
4423 return false;
4424
4425 if (!IN_SET(manager_state(m), MANAGER_INITIALIZING, MANAGER_STARTING, MANAGER_STOPPING))
4426 return false;
4427
4428 /* If we cannot find out the status properly, just proceed. */
4429 if (type != STATUS_TYPE_EMERGENCY && manager_check_ask_password(m) > 0)
4430 return false;
4431
4432 if (type == STATUS_TYPE_NOTICE && m->show_status != SHOW_STATUS_NO)
4433 return true;
4434
44a41954 4435 return manager_get_show_status_on(m);
0d6d3cf0
FB
4436}
4437
127d5fd1 4438void manager_status_printf(Manager *m, StatusType type, const char *status, const char *format, ...) {
25cee550
MS
4439 va_list ap;
4440
cb6531be
ZJS
4441 /* If m is NULL, assume we're after shutdown and let the messages through. */
4442
0d6d3cf0 4443 if (m && !manager_should_show_status(m, type))
25cee550
MS
4444 return;
4445
03b717a3
MS
4446 /* XXX We should totally drop the check for ephemeral here
4447 * and thus effectively make 'Type=idle' pointless. */
cb6531be 4448 if (type == STATUS_TYPE_EPHEMERAL && m && m->n_on_console > 0)
03b717a3
MS
4449 return;
4450
25cee550 4451 va_start(ap, format);
a885727a 4452 status_vprintf(status, SHOW_STATUS_ELLIPSIZE|(type == STATUS_TYPE_EPHEMERAL ? SHOW_STATUS_EPHEMERAL : 0), format, ap);
25cee550
MS
4453 va_end(ap);
4454}
4455
ac19bdd0 4456Set* manager_get_units_requiring_mounts_for(Manager *m, const char *path) {
a57f7e2c
LP
4457 assert(m);
4458 assert(path);
4459
ac19bdd0
ZJS
4460 if (path_equal(path, "/"))
4461 path = "";
a57f7e2c 4462
ac19bdd0 4463 return hashmap_get(m->units_requiring_mounts_for, path);
a57f7e2c 4464}
e66cf1a3 4465
5269eb6b 4466int manager_update_failed_units(Manager *m, Unit *u, bool failed) {
03455c28 4467 unsigned size;
5269eb6b 4468 int r;
03455c28
LDM
4469
4470 assert(m);
4471 assert(u->manager == m);
4472
4473 size = set_size(m->failed_units);
4474
9fff8981 4475 if (failed) {
de7fef4b 4476 r = set_ensure_put(&m->failed_units, NULL, u);
5269eb6b
LP
4477 if (r < 0)
4478 return log_oom();
9fff8981 4479 } else
5269eb6b 4480 (void) set_remove(m->failed_units, u);
03455c28
LDM
4481
4482 if (set_size(m->failed_units) != size)
4483 bus_manager_send_change_signal(m);
5269eb6b
LP
4484
4485 return 0;
03455c28
LDM
4486}
4487
f755e3b7
LP
4488ManagerState manager_state(Manager *m) {
4489 Unit *u;
4490
4491 assert(m);
4492
f9d29f6d
JB
4493 /* Is the special shutdown target active or queued? If so, we are in shutdown state */
4494 u = manager_get_unit(m, SPECIAL_SHUTDOWN_TARGET);
4495 if (u && unit_active_or_pending(u))
4496 return MANAGER_STOPPING;
4497
f755e3b7 4498 /* Did we ever finish booting? If not then we are still starting up */
49d5666c 4499 if (!MANAGER_IS_FINISHED(m)) {
d81afec1
LP
4500
4501 u = manager_get_unit(m, SPECIAL_BASIC_TARGET);
4502 if (!u || !UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(u)))
4503 return MANAGER_INITIALIZING;
4504
f755e3b7 4505 return MANAGER_STARTING;
d81afec1 4506 }
f755e3b7 4507
45a7b16b
LP
4508 if (MANAGER_IS_SYSTEM(m)) {
4509 /* Are the rescue or emergency targets active or queued? If so we are in maintenance state */
4510 u = manager_get_unit(m, SPECIAL_RESCUE_TARGET);
4511 if (u && unit_active_or_pending(u))
4512 return MANAGER_MAINTENANCE;
f755e3b7 4513
45a7b16b
LP
4514 u = manager_get_unit(m, SPECIAL_EMERGENCY_TARGET);
4515 if (u && unit_active_or_pending(u))
4516 return MANAGER_MAINTENANCE;
4517 }
f755e3b7
LP
4518
4519 /* Are there any failed units? If so, we are in degraded mode */
4520 if (set_size(m->failed_units) > 0)
4521 return MANAGER_DEGRADED;
4522
4523 return MANAGER_RUNNING;
4524}
4525
00d9ef85 4526static void manager_unref_uid_internal(
010becd9 4527 Hashmap *uid_refs,
00d9ef85
LP
4528 uid_t uid,
4529 bool destroy_now,
4530 int (*_clean_ipc)(uid_t uid)) {
4531
4532 uint32_t c, n;
4533
00d9ef85
LP
4534 assert(uid_is_valid(uid));
4535 assert(_clean_ipc);
4536
8f41e6b6
ZJS
4537 /* A generic implementation, covering both manager_unref_uid() and manager_unref_gid(), under the
4538 * assumption that uid_t and gid_t are actually defined the same way, with the same validity rules.
00d9ef85 4539 *
da890466 4540 * We store a hashmap where the key is the UID/GID and the value is a 32-bit reference counter, whose
8f41e6b6
ZJS
4541 * highest bit is used as flag for marking UIDs/GIDs whose IPC objects to remove when the last
4542 * reference to the UID/GID is dropped. The flag is set to on, once at least one reference from a
4543 * unit where RemoveIPC= is set is added on a UID/GID. It is reset when the UID's/GID's reference
4544 * counter drops to 0 again. */
00d9ef85
LP
4545
4546 assert_cc(sizeof(uid_t) == sizeof(gid_t));
4547 assert_cc(UID_INVALID == (uid_t) GID_INVALID);
4548
4549 if (uid == 0) /* We don't keep track of root, and will never destroy it */
4550 return;
4551
010becd9 4552 c = PTR_TO_UINT32(hashmap_get(uid_refs, UID_TO_PTR(uid)));
00d9ef85
LP
4553
4554 n = c & ~DESTROY_IPC_FLAG;
4555 assert(n > 0);
4556 n--;
4557
4558 if (destroy_now && n == 0) {
010becd9 4559 hashmap_remove(uid_refs, UID_TO_PTR(uid));
00d9ef85
LP
4560
4561 if (c & DESTROY_IPC_FLAG) {
4562 log_debug("%s " UID_FMT " is no longer referenced, cleaning up its IPC.",
4563 _clean_ipc == clean_ipc_by_uid ? "UID" : "GID",
4564 uid);
4565 (void) _clean_ipc(uid);
4566 }
4567 } else {
4568 c = n | (c & DESTROY_IPC_FLAG);
010becd9 4569 assert_se(hashmap_update(uid_refs, UID_TO_PTR(uid), UINT32_TO_PTR(c)) >= 0);
00d9ef85
LP
4570 }
4571}
4572
4573void manager_unref_uid(Manager *m, uid_t uid, bool destroy_now) {
010becd9 4574 manager_unref_uid_internal(m->uid_refs, uid, destroy_now, clean_ipc_by_uid);
00d9ef85
LP
4575}
4576
4577void manager_unref_gid(Manager *m, gid_t gid, bool destroy_now) {
010becd9 4578 manager_unref_uid_internal(m->gid_refs, (uid_t) gid, destroy_now, clean_ipc_by_gid);
00d9ef85
LP
4579}
4580
4581static int manager_ref_uid_internal(
00d9ef85
LP
4582 Hashmap **uid_refs,
4583 uid_t uid,
4584 bool clean_ipc) {
4585
4586 uint32_t c, n;
4587 int r;
4588
00d9ef85
LP
4589 assert(uid_refs);
4590 assert(uid_is_valid(uid));
4591
8f41e6b6
ZJS
4592 /* A generic implementation, covering both manager_ref_uid() and manager_ref_gid(), under the
4593 * assumption that uid_t and gid_t are actually defined the same way, with the same validity
4594 * rules. */
00d9ef85
LP
4595
4596 assert_cc(sizeof(uid_t) == sizeof(gid_t));
4597 assert_cc(UID_INVALID == (uid_t) GID_INVALID);
4598
4599 if (uid == 0) /* We don't keep track of root, and will never destroy it */
4600 return 0;
4601
4602 r = hashmap_ensure_allocated(uid_refs, &trivial_hash_ops);
4603 if (r < 0)
4604 return r;
4605
4606 c = PTR_TO_UINT32(hashmap_get(*uid_refs, UID_TO_PTR(uid)));
4607
4608 n = c & ~DESTROY_IPC_FLAG;
4609 n++;
4610
4611 if (n & DESTROY_IPC_FLAG) /* check for overflow */
4612 return -EOVERFLOW;
4613
4614 c = n | (c & DESTROY_IPC_FLAG) | (clean_ipc ? DESTROY_IPC_FLAG : 0);
4615
4616 return hashmap_replace(*uid_refs, UID_TO_PTR(uid), UINT32_TO_PTR(c));
4617}
4618
4619int manager_ref_uid(Manager *m, uid_t uid, bool clean_ipc) {
010becd9 4620 return manager_ref_uid_internal(&m->uid_refs, uid, clean_ipc);
00d9ef85
LP
4621}
4622
4623int manager_ref_gid(Manager *m, gid_t gid, bool clean_ipc) {
010becd9 4624 return manager_ref_uid_internal(&m->gid_refs, (uid_t) gid, clean_ipc);
00d9ef85
LP
4625}
4626
4627static void manager_vacuum_uid_refs_internal(
010becd9 4628 Hashmap *uid_refs,
00d9ef85
LP
4629 int (*_clean_ipc)(uid_t uid)) {
4630
00d9ef85
LP
4631 void *p, *k;
4632
00d9ef85
LP
4633 assert(_clean_ipc);
4634
010becd9 4635 HASHMAP_FOREACH_KEY(p, k, uid_refs) {
00d9ef85
LP
4636 uint32_t c, n;
4637 uid_t uid;
4638
4639 uid = PTR_TO_UID(k);
4640 c = PTR_TO_UINT32(p);
4641
4642 n = c & ~DESTROY_IPC_FLAG;
4643 if (n > 0)
4644 continue;
4645
4646 if (c & DESTROY_IPC_FLAG) {
4647 log_debug("Found unreferenced %s " UID_FMT " after reload/reexec. Cleaning up.",
4648 _clean_ipc == clean_ipc_by_uid ? "UID" : "GID",
4649 uid);
4650 (void) _clean_ipc(uid);
4651 }
4652
010becd9 4653 assert_se(hashmap_remove(uid_refs, k) == p);
00d9ef85
LP
4654 }
4655}
4656
06a4eb07 4657static void manager_vacuum_uid_refs(Manager *m) {
010becd9 4658 manager_vacuum_uid_refs_internal(m->uid_refs, clean_ipc_by_uid);
00d9ef85
LP
4659}
4660
06a4eb07 4661static void manager_vacuum_gid_refs(Manager *m) {
010becd9 4662 manager_vacuum_uid_refs_internal(m->gid_refs, clean_ipc_by_gid);
00d9ef85
LP
4663}
4664
06a4eb07
FB
4665static void manager_vacuum(Manager *m) {
4666 assert(m);
4667
4668 /* Release any dynamic users no longer referenced */
4669 dynamic_user_vacuum(m, true);
4670
4671 /* Release any references to UIDs/GIDs no longer referenced, and destroy any IPC owned by them */
4672 manager_vacuum_uid_refs(m);
4673 manager_vacuum_gid_refs(m);
4674
4675 /* Release any runtimes no longer referenced */
e76506b7 4676 exec_shared_runtime_vacuum(m);
06a4eb07
FB
4677}
4678
00d9ef85
LP
4679int manager_dispatch_user_lookup_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
4680 struct buffer {
4681 uid_t uid;
4682 gid_t gid;
4683 char unit_name[UNIT_NAME_MAX+1];
4684 } _packed_ buffer;
4685
4686 Manager *m = userdata;
4687 ssize_t l;
4688 size_t n;
4689 Unit *u;
4690
4691 assert_se(source);
4692 assert_se(m);
4693
8f41e6b6
ZJS
4694 /* Invoked whenever a child process succeeded resolving its user/group to use and sent us the
4695 * resulting UID/GID in a datagram. We parse the datagram here and pass it off to the unit, so that
4696 * it can add a reference to the UID/GID so that it can destroy the UID/GID's IPC objects when the
4697 * reference counter drops to 0. */
00d9ef85
LP
4698
4699 l = recv(fd, &buffer, sizeof(buffer), MSG_DONTWAIT);
4700 if (l < 0) {
8add30a0 4701 if (ERRNO_IS_TRANSIENT(errno))
00d9ef85
LP
4702 return 0;
4703
4704 return log_error_errno(errno, "Failed to read from user lookup fd: %m");
4705 }
4706
4707 if ((size_t) l <= offsetof(struct buffer, unit_name)) {
4708 log_warning("Received too short user lookup message, ignoring.");
4709 return 0;
4710 }
4711
4712 if ((size_t) l > offsetof(struct buffer, unit_name) + UNIT_NAME_MAX) {
4713 log_warning("Received too long user lookup message, ignoring.");
4714 return 0;
4715 }
4716
4717 if (!uid_is_valid(buffer.uid) && !gid_is_valid(buffer.gid)) {
4718 log_warning("Got user lookup message with invalid UID/GID pair, ignoring.");
4719 return 0;
4720 }
4721
4722 n = (size_t) l - offsetof(struct buffer, unit_name);
4723 if (memchr(buffer.unit_name, 0, n)) {
4724 log_warning("Received lookup message with embedded NUL character, ignoring.");
4725 return 0;
4726 }
4727
4728 buffer.unit_name[n] = 0;
4729 u = manager_get_unit(m, buffer.unit_name);
4730 if (!u) {
4731 log_debug("Got user lookup message but unit doesn't exist, ignoring.");
4732 return 0;
4733 }
4734
4735 log_unit_debug(u, "User lookup succeeded: uid=" UID_FMT " gid=" GID_FMT, buffer.uid, buffer.gid);
4736
4737 unit_notify_user_lookup(u, buffer.uid, buffer.gid);
4738 return 0;
4739}
4740
63e8df04 4741static int short_uid_range(const char *path) {
8dcc66ce 4742 _cleanup_(uid_range_freep) UidRange *p = NULL;
63e8df04
LP
4743 int r;
4744
4745 assert(path);
4746
4747 /* Taint systemd if we the UID range assigned to this environment doesn't at least cover 0…65534,
4748 * i.e. from root to nobody. */
4749
8dcc66ce 4750 r = uid_range_load_userns(&p, path);
882321a1
ZJS
4751 if (ERRNO_IS_NEG_NOT_SUPPORTED(r))
4752 return false;
4753 if (r < 0)
63e8df04
LP
4754 return log_debug_errno(r, "Failed to load %s: %m", path);
4755
8dcc66ce 4756 return !uid_range_covers(p, 0, 65535);
63e8df04
LP
4757}
4758
83fe5d8a
ZJS
4759char* manager_taint_string(const Manager *m) {
4760 /* Returns a "taint string", e.g. "local-hwclock:var-run-bad". Only things that are detected at
4761 * runtime should be tagged here. For stuff that is known during compilation, emit a warning in the
63e8df04 4762 * configuration phase. */
198ce932 4763
af6b0ecc
LP
4764 assert(m);
4765
b0d3095f 4766 const char* stage[12] = {};
83fe5d8a 4767 size_t n = 0;
af6b0ecc 4768
31cd2dd9
LB
4769 _cleanup_free_ char *usrbin = NULL;
4770 if (readlink_malloc("/bin", &usrbin) < 0 || !PATH_IN_SET(usrbin, "usr/bin", "/usr/bin"))
4771 stage[n++] = "unmerged-usr";
4772
af6b0ecc 4773 if (access("/proc/cgroups", F_OK) < 0)
83fe5d8a 4774 stage[n++] = "cgroups-missing";
af6b0ecc 4775
82f30632 4776 if (cg_all_unified() == 0)
83fe5d8a 4777 stage[n++] = "cgroupsv1";
82f30632 4778
af6b0ecc 4779 if (clock_is_localtime(NULL) > 0)
83fe5d8a 4780 stage[n++] = "local-hwclock";
af6b0ecc 4781
6bfe9b3b 4782 if (os_release_support_ended(NULL, /* quiet= */ true, NULL) > 0)
4bd03515
ZJS
4783 stage[n++] = "support-ended";
4784
83fe5d8a
ZJS
4785 _cleanup_free_ char *destination = NULL;
4786 if (readlink_malloc("/var/run", &destination) < 0 ||
4787 !PATH_IN_SET(destination, "../run", "/run"))
4788 stage[n++] = "var-run-bad";
af6b0ecc 4789
83fe5d8a
ZJS
4790 _cleanup_free_ char *overflowuid = NULL, *overflowgid = NULL;
4791 if (read_one_line_file("/proc/sys/kernel/overflowuid", &overflowuid) >= 0 &&
4792 !streq(overflowuid, "65534"))
4793 stage[n++] = "overflowuid-not-65534";
4794 if (read_one_line_file("/proc/sys/kernel/overflowgid", &overflowgid) >= 0 &&
4795 !streq(overflowgid, "65534"))
4796 stage[n++] = "overflowgid-not-65534";
90d7464d 4797
83fe5d8a 4798 struct utsname uts;
40efaaed
LP
4799 assert_se(uname(&uts) >= 0);
4800 if (strverscmp_improved(uts.release, KERNEL_BASELINE_VERSION) < 0)
83fe5d8a 4801 stage[n++] = "old-kernel";
40efaaed 4802
63e8df04 4803 if (short_uid_range("/proc/self/uid_map") > 0)
83fe5d8a 4804 stage[n++] = "short-uid-range";
63e8df04 4805 if (short_uid_range("/proc/self/gid_map") > 0)
83fe5d8a 4806 stage[n++] = "short-gid-range";
63e8df04 4807
83fe5d8a 4808 assert(n < ELEMENTSOF(stage) - 1); /* One extra for NULL terminator */
af6b0ecc 4809
83fe5d8a 4810 return strv_join((char**) stage, ":");
af6b0ecc
LP
4811}
4812
adefcf28
LP
4813void manager_ref_console(Manager *m) {
4814 assert(m);
4815
4816 m->n_on_console++;
4817}
4818
4819void manager_unref_console(Manager *m) {
4820
4821 assert(m->n_on_console > 0);
4822 m->n_on_console--;
4823
4824 if (m->n_on_console == 0)
4825 m->no_console_output = false; /* unset no_console_output flag, since the console is definitely free now */
4826}
4827
a6ecbf83
FB
4828void manager_override_log_level(Manager *m, int level) {
4829 _cleanup_free_ char *s = NULL;
4830 assert(m);
4831
4832 if (!m->log_level_overridden) {
4833 m->original_log_level = log_get_max_level();
4834 m->log_level_overridden = true;
4835 }
4836
4837 (void) log_level_to_string_alloc(level, &s);
4838 log_info("Setting log level to %s.", strna(s));
4839
4840 log_set_max_level(level);
4841}
4842
4843void manager_restore_original_log_level(Manager *m) {
4844 _cleanup_free_ char *s = NULL;
4845 assert(m);
4846
4847 if (!m->log_level_overridden)
4848 return;
4849
4850 (void) log_level_to_string_alloc(m->original_log_level, &s);
4851 log_info("Restoring log level to original (%s).", strna(s));
4852
4853 log_set_max_level(m->original_log_level);
4854 m->log_level_overridden = false;
4855}
4856
bda7d78b
FB
4857void manager_override_log_target(Manager *m, LogTarget target) {
4858 assert(m);
4859
4860 if (!m->log_target_overridden) {
4861 m->original_log_target = log_get_target();
4862 m->log_target_overridden = true;
4863 }
4864
4865 log_info("Setting log target to %s.", log_target_to_string(target));
4866 log_set_target(target);
4867}
4868
4869void manager_restore_original_log_target(Manager *m) {
4870 assert(m);
4871
4872 if (!m->log_target_overridden)
4873 return;
4874
4875 log_info("Restoring log target to original %s.", log_target_to_string(m->original_log_target));
4876
4877 log_set_target(m->original_log_target);
4878 m->log_target_overridden = false;
4879}
4880
d4ee7bd8
YW
4881ManagerTimestamp manager_timestamp_initrd_mangle(ManagerTimestamp s) {
4882 if (in_initrd() &&
4883 s >= MANAGER_TIMESTAMP_SECURITY_START &&
4884 s <= MANAGER_TIMESTAMP_UNITS_LOAD_FINISH)
4885 return s - MANAGER_TIMESTAMP_SECURITY_START + MANAGER_TIMESTAMP_INITRD_SECURITY_START;
4886 return s;
4887}
4888
c9e120e0
LP
4889void unit_defaults_done(UnitDefaults *defaults) {
4890 assert(defaults);
4891
4892 defaults->smack_process_label = mfree(defaults->smack_process_label);
4893 rlimit_free_all(defaults->rlimit);
4894}
4895
f755e3b7 4896static const char *const manager_state_table[_MANAGER_STATE_MAX] = {
d81afec1 4897 [MANAGER_INITIALIZING] = "initializing",
48d83e33
ZJS
4898 [MANAGER_STARTING] = "starting",
4899 [MANAGER_RUNNING] = "running",
4900 [MANAGER_DEGRADED] = "degraded",
4901 [MANAGER_MAINTENANCE] = "maintenance",
4902 [MANAGER_STOPPING] = "stopping",
f755e3b7
LP
4903};
4904
4905DEFINE_STRING_TABLE_LOOKUP(manager_state, ManagerState);
9f9f0342
LP
4906
4907static const char *const manager_timestamp_table[_MANAGER_TIMESTAMP_MAX] = {
48d83e33
ZJS
4908 [MANAGER_TIMESTAMP_FIRMWARE] = "firmware",
4909 [MANAGER_TIMESTAMP_LOADER] = "loader",
4910 [MANAGER_TIMESTAMP_KERNEL] = "kernel",
4911 [MANAGER_TIMESTAMP_INITRD] = "initrd",
4912 [MANAGER_TIMESTAMP_USERSPACE] = "userspace",
4913 [MANAGER_TIMESTAMP_FINISH] = "finish",
4914 [MANAGER_TIMESTAMP_SECURITY_START] = "security-start",
4915 [MANAGER_TIMESTAMP_SECURITY_FINISH] = "security-finish",
4916 [MANAGER_TIMESTAMP_GENERATORS_START] = "generators-start",
4917 [MANAGER_TIMESTAMP_GENERATORS_FINISH] = "generators-finish",
4918 [MANAGER_TIMESTAMP_UNITS_LOAD_START] = "units-load-start",
4919 [MANAGER_TIMESTAMP_UNITS_LOAD_FINISH] = "units-load-finish",
49fbe940 4920 [MANAGER_TIMESTAMP_UNITS_LOAD] = "units-load",
48d83e33
ZJS
4921 [MANAGER_TIMESTAMP_INITRD_SECURITY_START] = "initrd-security-start",
4922 [MANAGER_TIMESTAMP_INITRD_SECURITY_FINISH] = "initrd-security-finish",
4923 [MANAGER_TIMESTAMP_INITRD_GENERATORS_START] = "initrd-generators-start",
d4ee7bd8 4924 [MANAGER_TIMESTAMP_INITRD_GENERATORS_FINISH] = "initrd-generators-finish",
48d83e33 4925 [MANAGER_TIMESTAMP_INITRD_UNITS_LOAD_START] = "initrd-units-load-start",
d4ee7bd8 4926 [MANAGER_TIMESTAMP_INITRD_UNITS_LOAD_FINISH] = "initrd-units-load-finish",
9f9f0342
LP
4927};
4928
4929DEFINE_STRING_TABLE_LOOKUP(manager_timestamp, ManagerTimestamp);
afcfaa69
LP
4930
4931static const char* const oom_policy_table[_OOM_POLICY_MAX] = {
4932 [OOM_CONTINUE] = "continue",
48d83e33
ZJS
4933 [OOM_STOP] = "stop",
4934 [OOM_KILL] = "kill",
afcfaa69
LP
4935};
4936
4937DEFINE_STRING_TABLE_LOOKUP(oom_policy, OOMPolicy);