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