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