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