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