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